Skip to content

Instantly share code, notes, and snippets.

View tilap's full-sized avatar
🏠
Working from home

Tilap tilap

🏠
Working from home
View GitHub Profile
anonymous
anonymous / scrapfy-vp79nQtuCJV0HLn.js
Created July 26, 2015 21:45
Another Scrap from scrapfy.io
// Dynamic classnames
// ==================
// Question
// ==================
// Basic use
class User{
// ...
}
@thomastraum
thomastraum / download_gists.js
Created March 23, 2013 12:26
Gist to download all your gists
var request = require('request')
, path = require('path')
, fs = require('fs')
, url = "https://api.github.com/users/thomastraum/gists"
, savepath = './gists';
request(url, function (error, response, body) {
if (!error && response.statusCode == 200) {
@selvan
selvan / chrome-bookmarks
Created December 16, 2012 15:26
Chrome extension to export all bookmarks
//manifest.json
{
"name": "bookmark-search-export",
"version": "1.0",
"manifest_version": 2,
"description": "This extention will dump all bookmarks",
"browser_action": {
"default_icon": "icon.png"
},
"background": {