Laravel | CakePHP comparison

Laravel | CakePHP comparison

Introduction Laravel is a PHP open source frammework. Laravel is developed and maintanced by Taylor Otwell. Its architectural patterns are majorly  based on Symfony. Although Laravel was created quite late (2011) compared to other PHP frameworks such as Symfony (2010), CakePHP (2005). But to now, Laravel is framewok leading in the number of users, stars on Github and also searches on Google or StackOverflow. Star […]

Read More

Using external Diff in Sourcetree

Using external Diff in Sourcetree

Source Tree Diff External Git is one of the best and most preferred version control system available. Many projects implement Git repositories for storing and managing codes, regardless of whether it for a big enterprise or a small-scale project. With Git, it becomes easy to code and offer exciting integration features, which would help you to work with ease on any project or along with […]

Read More

Android Studio 3.5 Release Note Summary

Android Studio 3.5 Release Note Summary

Android Studio 3.5 focuses on improving three main areas of the IDE: system health, feature polish, and fixing bugs. I) New Function 1) Recommended memory settings By default, Android Studio has a maximum heap size of 1280MB. If you are working on a large project, or your system has a lot of RAM, you can improve performance by increasing the maximum heap size for Android Studio processes, such […]

Read More

AWS Toolkit for Visual Studio Code

AWS Toolkit for Visual Studio Code

AWS Toolkit ♦ This extension makes it easier for developers to develop, debug locally, and deploy serverless applications that use Amazon Web Services (AWS). You can use the AWS Toolkit for Visual Studio Code as follows: Develop serverless applications locally, and then deploy them to an AWS account (see Usage). Manage certain supported AWS resources in an AWS account (see Usage). This includes: Listing and […]

Read More

Navigation App

Navigation App

1.   Introduction 1.1 Navigation App An application that helps you easily to find places around your location using GPS. Especially the app is integrated Augmented Reality[1], which allows places to be placed within the Augmented Reality world using real-world coordinates. Written for both iOS (use ARKit[2] – Apple) and Android (use ARCore[3] – Google). 1.2 How Navigation App Works Uses GPS to get your location. […]

Read More

Debug CakePHP in VSCode with Xdebug

Debug CakePHP in VSCode with Xdebug

Introduce Xdebug – Xdebug is an extension for PHP to assist with debugging and development. It contains a single step debugger to use with IDEs; it upgrades PHP’s var_dump() function; it adds stack traces for Notices, Warnings, Errors and Exceptions; it features functionality for recording every function call and variable assignment to disk; it contains a profiler; and it provides code coverage functionality for use with PHPUnit. – Go to Xdebug page, choose and download Xdebug extension in this link. – Add this code to file php.ini. [XDebug] […]

Read More