How to build a successful team

Tue 16 June 2015 by Godson

One of the most prominent way to stand successful in the current software industry is to build a team which is highly skilled and competetive to almost everyone in the industry out there. When I say skilled it doesn't involve only technical background, team must be skilled in all ...

read more

AngularJS Directives

Mon 15 June 2015 by Godson

Introduction to SASS

Mon 15 June 2015 by Godson

About sass : Sass is an extension of CSS that adds power and elegance to the basic language. It allows you to use variables, nested rules, mixins, inline imports, and more, all with a fully CSS-compatible syntax. Sass helps keep large stylesheets well-organized, and get small stylesheets up and running quickly ...

read more

How to blink browser tab

Mon 15 June 2015 by Godson

Have you ever wanted to blink/flash browser tab on certain activity ?

Here is a scenario : Suppose there's a chat application installed on your website. Now what if the user of your website is having multiple tabs opened in his browser and there is an incoming message? How will ...

read more

How to implement paypal payment gateway

Sat 13 June 2015 by Godson

The PayPal REST APIs are supported in two environments. Use the Sandbox environment for testing purposes, then move to the live environment for production processing.

The following endpoints address are two environments:

Sandbox (for testing) : https://api.sandbox.paypal.com
Live (production) : https://api.paypal.com

A complete REST operation ...

read more

How to secure yourself with gpg

Sat 13 June 2015 by Godson

PGP tutorial

read more

Implementing Websocket Server Using Twisted.

Sat 13 June 2015 by Godson

Websocket, a technology to support modern web applications.

read more

HOW TO BUILD LFS

Fri 12 June 2015 by Godson

First take one system of centos or ubuntu which ever you like. Make sure have the seperate partitions for LFS and swap which we are going to use fo LFS. Login to the system and create 2 partitions

For Exapmle:
fdisk /dev/sda
n
enter
+8G
w
# partprobe

Follow same ...

read more

FlaskAPI

Fri 12 June 2015 by Godson

Overview: Flask API is an implementation of the same web browsable APIs that Django Rest Framework provides. It gives you properly content negotiated responses and smart request parsing.

Installation

Requirements:

Python 2.7+ or 3.3+

Flask 0.10+

install using pip

pip install Flask-API

Import and initialize your application ...

read more