Skip to content

Instantly share code, notes, and snippets.

@iambibhas
iambibhas / food_delivery_startups
Last active June 26, 2017 09:34
Food delivery startups in Bangalore
brekkie.in
chefensa.co.in
chefkraft.com
dazo.in
delyver.com
dinerdeliver.com
dropkaffe.com
eatfresh.com
eatloapp.com
eatongo.in
@iambibhas
iambibhas / template.gerl
Created May 11, 2015 10:42
OpenRefine YAML export
{{cells["abbr"].value.toLowercase()}}:
- &{{row.index + 1}}
abbr: {{jsonize(cells["abbr"].value)}}
name: {{jsonize(cells["name"].value)}}
utcoffset: {{jsonize(cells["utcoffset"].value)}}
offset: {{jsonize(cells["offset"].value)}}
offset_seconds : {{jsonize(cells["offset_seconds"].value)}}
@iambibhas
iambibhas / slackmonofont.js
Created May 9, 2015 17:42
Make Slack's <pre> <code> use Consolas font
// ==UserScript==
// @name Slack Better Motospace Font
// @namespace slackmonofont
// @include https://*.slack.com/*
// @version 1
// @grant none
// ==/UserScript==
function addGlobalStyle(css) {
var head, style;
@iambibhas
iambibhas / country_date_format.csv
Created March 14, 2015 10:17
Date formats used in countries
Country YMD DMY MDY
Afghanistan Yes No No
Albania Yes Yes No
Algeria No Yes No
Argentina No Yes No
Armenia No Yes No
Australia No Yes No
Austria No Yes No
Azerbaijan No Yes No
Bahrain No Yes No
@iambibhas
iambibhas / test.md
Created February 28, 2015 17:30
Test

test title

this is good

Blah

@iambibhas
iambibhas / timezones.csv
Last active March 14, 2023 00:54
Commonly used Timezones and offsets
Abbr. Name UTC offset offset offset_seconds
ACDT Australian Central Daylight Savings Time UTC+10:30 10.5 37800
ACST Australian Central Standard Time UTC+09:30 9.5 34200
ACT ASEAN Common Time UTC+08 8 28800
ADT Atlantic Daylight Time UTC−03 -3 -10800
AEDT Australian Eastern Daylight Savings Time UTC+11 11 39600
AEST Australian Eastern Standard Time UTC+10 10 36000
AFT Afghanistan Time UTC+04:30 4.5 16200
AKDT Alaska Daylight Time UTC−08 -8 -28800
AKST Alaska Standard Time UTC−09 -9 -32400
This file has been truncated, but you can view the full file.
Total 23696 boundaries in DB
Values to update
+-------+-----------------+--------------------------------------------+---------------------------------------------+
| id | key | value in dubdubdub | value in ems |
+-------+-----------------+--------------------------------------------+---------------------------------------------+
| 29572 | moi | kannada | |
| 31322 | moi | kannada | |
| 29584 | inst_address_id | 135451 | |
| 29592 | moi | kannada | |
| 29626 | moi | kannada | |
@iambibhas
iambibhas / boundary.diff
Last active August 29, 2015 14:14
EMS Boundary Log
Total 2799 boundaries in DB
Values to update
+------+----------------------+-------------------+---------------------+
| id | key | value in ddd | value in ems |
+------+----------------------+-------------------+---------------------+
| 2382 | name | devanahalli town] | devanahalli |
| 1183 | name | mundaragi | mundaragi city west |
| 9119 | parent_id | 8779 | 9116 |
| 9119 | name | jayanagar | Masthi |
@iambibhas
iambibhas / .vimrc
Created January 9, 2015 18:37
Simple vim config for sane editing
" Sets line number
set number
" Set encoding to utf8
set encoding=utf8
" Set indentation
set shiftwidth=4
set tabstop=4
@iambibhas
iambibhas / twitter_tco_bypass.js
Created January 8, 2015 06:38
Twitter t.co bypass
// ==UserScript==
// @name Twitter T.co bypass
// @version 1
// @include http*://twitter.com/*
// @grant GM_deleteValue
// @grant GM_getValue
// @grant GM_setValue
// @grant GM_info
// ==/UserScript==
si = window.setInterval(clearanchors, 2000);