Friday, December 2, 2016

Upgrade PHP version to PHP7 quickly on LAMP environment

Run Following commands: $ sudo add-apt-repository ppa:ondrej/php $ sudo apt-get update $ sudo apt-get install -y php7.0 After that run following command: sudo apt install php libapache2-mod-php Now restart  Apache server : sudo service apache2 stop sudo service apache2 start Repository...

Thursday, November 3, 2016

Laravel 5.3 default authentication

In this tutorial i'll give  basic idea of authentication system provided by laravel 5.3. You can find more details about authentication system in this video tutorial. Authentication system is...

Sunday, October 23, 2016

Thursday, September 29, 2016

Python Connect Database Using peewee

First install peewee using pip pip3 install peewee Now we have to install MySQLdb or PyMySQL To install PyMySQL run following command: sudo pip3 install PyMySQL Now our basic Configuration done. Lets...

Thursday, September 1, 2016

Up & Running With Gulp

Check Older version if installed $ npm rm --global gulp   Install Gulp Globally $ npm install --global gulp-cli Initializing Project directory npm init Installing Dependencies npm install --save-dev gulp Creatng gulpfile.js in root directory var gulp = require('gulp'); gulp.task('default',...

Tuesday, August 23, 2016

Install laravel 5.3 in Ubuntu 14.04

Once again Laravel comes with many amazing features and i can't wait more to try this all out. In this post i am going to write how to setup laravel 5.3 in Ubuntu 14.04. I am planning on making...

Laravel Elixir Setup and Uses

Laravel Elixir provides a clean, fluent API for defining basic Gulp tasks for your Laravel application. Elixir supports several common CSS and JavaScript pre-processors, and even testing tools....