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',...