Skip to content

Instantly share code, notes, and snippets.

View sinzin91's full-sized avatar

Tenzin Wangdhen sinzin91

View GitHub Profile

Keybase proof

I hereby claim:

  • I am sinzin91 on github.
  • I am sinzin91 (https://keybase.io/sinzin91) on keybase.
  • I have a public key ASAaQ-ifsTQ5fFbo4gZbtII_fLsaWA4kHzeaOZtNgbwgTgo

To claim this, I am signing this object:

04e821ab185f13bc5b4f1384ed9a455dfbf11de25cfd78bfde8ada330f077162a33e38ebb1ad12ec89c2fb05c572c9076cf22f3c4c3412e100cfddfc921540af45;grantnhoward
Verifying my Blockstack ID is secured with the address 1LUPHZpWo8haNTeQZpE674uwBB3HUPbWUv https://explorer.blockstack.org/address/1LUPHZpWo8haNTeQZpE674uwBB3HUPbWUv
@sinzin91
sinzin91 / ethereum_rinkeby_test_sinzin91
Created August 20, 2017 01:55
Ethereum Rinkeby Test Account
0x0AA9464E2B16420f54dABF8bc3Fe32FF29b98D28
module['exports'] = function csvDownload(hook) {
// hook.io has a range of node modules available - see
// https://hook.io/modules.
// We use request (https://www.npmjs.com/package/request) for an easy way to
// make the HTTP request.
var request = require('request');
// The parameters passed in via the slash command POST request.
@sinzin91
sinzin91 / highfive_hook_test.js
Created July 18, 2016 23:54
testing hook.io highfive slash command
module['exports'] = function highFive(hook) {
// hook.io has a range of node modules available - see
// https://hook.io/modules.
// We use request (https://www.npmjs.com/package/request) for an easy way to
// make the HTTP request.
var request = require('request');
// The parameters passed in via the slash command POST request.
var params = hook.params;
@sinzin91
sinzin91 / topkeywords.js
Created January 31, 2016 00:17 — forked from elliotbonneville/topkeywords.js
Find top keywords associated with a Google search with this Node.js application.
var request = require("request"),
cheerio = require("cheerio"),
url = "https://www.google.com/search?q=data+mining",
corpus = {},
totalResults = 0,
resultsDownloaded = 0;
function callback () {
resultsDownloaded++;