How to build a successful team
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 moreIntroduction to SASS
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 moreHow to blink browser tab
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 moreHow to implement paypal payment gateway
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 moreImplementing Websocket Server Using Twisted.
Websocket, a technology to support modern web applications.
read moreHOW TO BUILD LFS
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 moreFlaskAPI
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