Skip to content

Instantly share code, notes, and snippets.

View epsi95's full-sized avatar
🎯
Focusing

Probhakar Sarkar epsi95

🎯
Focusing
View GitHub Profile
@epsi95
epsi95 / hyper.js
Created May 17, 2020 10:05 — forked from coco-napky/hyper.js
Hyper config for git bash in Windows
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 12,
// font family with optional fallbacks
fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace',
// terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk)
cursorColor: 'rgba(248,28,229,0.8)',
@epsi95
epsi95 / app.js
Created April 3, 2020 19:06 — forked from RamadhanAmizudin/app.js
Decrypt Cordova Crypt File Plugin
// Blogpost: http://blog.rz.my/2017/11/decrypting-cordova-crypt-file-plugin.html
var fs = require("fs"),
path = require("path"),
crypto = require("crypto");
var config = {
key : 'CRYPT_KEY',
iv : 'CRYPT_IV'
}
@epsi95
epsi95 / gist:139a6c37ddc6e58c473e9324459ed585
Created February 1, 2020 17:26 — forked from abdurrahmanekr/gist:2747d704edec93a06e454eba2653e0df
WhatsApp original chat background image

WhatsApp original chat background image

@epsi95
epsi95 / country-bounding-boxes.py
Created November 12, 2019 15:51 — forked from graydon/country-bounding-boxes.py
country bounding boxes
# extracted from http//www.naturalearthdata.com/download/110m/cultural/ne_110m_admin_0_countries.zip
# under public domain terms
country_bounding_boxes = {
'AF': ('Afghanistan', (60.5284298033, 29.318572496, 75.1580277851, 38.4862816432)),
'AO': ('Angola', (11.6400960629, -17.9306364885, 24.0799052263, -4.43802336998)),
'AL': ('Albania', (19.3044861183, 39.624997667, 21.0200403175, 42.6882473822)),
'AE': ('United Arab Emirates', (51.5795186705, 22.4969475367, 56.3968473651, 26.055464179)),
'AR': ('Argentina', (-73.4154357571, -55.25, -53.628348965, -21.8323104794)),
'AM': ('Armenia', (43.5827458026, 38.7412014837, 46.5057198423, 41.2481285671)),