How 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