Testing methods can be categorized by the development process. Behavior Driven Development Functional testing Acceptance testing Test Driven Development Unit testing Integration testing TDD: In Test Driven Development developers first write the tests and then write code that passes the tests. Unit testing: Is a TDD based process which covers... read more →
Jan
07
Dec
31
First lets install Bitnami Lamp stack Step-1: Download Bitnami Lamp stack for Linux. Assume the filename is called some-app.run and is in the folder /home/user/Downloads. You will need to modify these instructions to fit your situation. Open a terminal (Applications->Accessories->Terminal). enter cd /home/user/Downloads enter chmod +x some-app.run enter ./some-app.run This... read more →
Dec
29
All you need to know before using Docker Docker Docker is an umbrella term that encompasses several complementary tools. Together, these tools help you segregate an application's infrastructure into logical parts (or containers). You can piece together only the parts necessary to build a portable application infrastructure that can be... read more →
Dec
24
Install Dependencies We need to install additional php5 dependencies and the git and curl dependencies to retrieve needed files. 1. sudo apt-get install python-software-properties 2. sudo apt-get install php5-gd php5-curl php5-mcrypt git curl 3. sudo apt-get install php5-cli 4. sudo apt-get install mysql-server php5-mysql 5. Troubleshoot: If mysqli is not... read more →
Nov
29
Dear friends, Here I am going to explain how to change your laravel web application from non www to www. For changing non www to www you should change your laravel application's .htaccess. Just use this code instead of your default .htaccess <IfModule mod_rewrite.c> <IfModule mod_negotiation.c> Options -MultiViews </IfModule> RewriteEngine... read more →
Nov
27
In this article we are copying Folder ABC To Folder XYZ. Step1: Login in to your hosting panel and come to your file directory. Step2: Copy all Files From Folder ABC To Folder XYZ. Step3: Login in to your data base and go to your wp_option table Step4: Change your Home and site url... read more →
Nov
26
In this article i am going to show how to upload data to AWS Elastic Bean stalk from Bit Bucket via Codeship. Before You create a codeship respo you should create a elastic beanstalk sample project with default sample application Step 1: Step 2: I am Preferring Bitbucket :-) Step... read more →
Nov
18
This Post is to highlight tools that a Developer will normally need or use. I Highly recommend that developer start using these tools & familiarize themselves with it Browser Add-ons: Firebug Colorzila - To Pick any colors from any website Wappalyzer - To check what platform particular website/portal is build... read more →