Skip to content

Instantly share code, notes, and snippets.

View phoenisx's full-sized avatar
🏔️
busy working, will continue OSS contributions later.

Subroto phoenisx

🏔️
busy working, will continue OSS contributions later.
View GitHub Profile
@phoenisx
phoenisx / webpack.config.js
Created June 12, 2017 16:00
Basic set- up for Webpack Config with Proxy and Plugins
var webpack = require('webpack');
var path = require('path');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const config = require('./config')
const extractText = new ExtractTextPlugin({
filename: "[name].css"
})
@phoenisx
phoenisx / google_calls.py
Created February 13, 2017 04:39
A Simple Pinging API, to make calls to Google Geolocation API per second
#!/usr/bin/python
###############################################################################################
#
# Basic Pinging API, to make calls to Google Geolocation API per second
# Uses Ratelimiting, for limiting the calls to one second only...
#
# * This app, uses a `.json` file [calls.json], for getting Lat/Lons, that needs to be
# reversegeocoded using the Google API...
# * Uses Formatter, to format String, as required...