I hereby claim:
- I am durple on github.
- I am durple (https://keybase.io/durple) on keybase.
- I have a public key whose fingerprint is 9E00 B670 9DBE 5C13 8F60 2CE6 3A4A A5AC 2C1A 498B
To claim this, I am signing this object:
| #!/usr/bin/python | |
| from github import Github | |
| import os, subprocess, sys, getopt | |
| from sys import argv | |
| with open("repos") as fp: | |
| repos = [x.strip('\n') for x in fp.readlines()] | |
| #repos = ["nitro-sfdc"] | |
| user = '' | |
| pw = '' |
I hereby claim:
To claim this, I am signing this object:
| package main | |
| import ( | |
| "fmt" | |
| "github.com/bitly/go-nsq" | |
| ) | |
| func loop(inChan chan *nsq.Message) { | |
| for msg := range inChan { | |
| fmt.Println(string(msg.Body) + "\n") |
| /* | |
| * better-twitter-entities.js | |
| * This function converts a tweet with "entity" metadata | |
| * from plain text to linkified HTML. | |
| * | |
| * See the documentation here: http://dev.twitter.com/pages/tweet_entities | |
| * Basically, add ?include_entities=true to your timeline call | |
| * This is an extension of Wade Simmons' twitter-entities.js gist | |
| * https://gist.github.com/wadey/442463 | |
| * |
| # How to patch Ubuntu for Heartbleed | |
| sudo apt-get update | |
| sudo apt-get install -y libssl1.0.0 openssl | |
| openssl version -a | |
| sudo lsof -n | grep ssl | grep DEL | |
| API | |
| https://www.cascadeproject.com/api.pdf | |
| Top trending | |
| https://api.cascadeproject.com/dashboard/nyt/top/stories/tweets/1h?user=hackday&key=2f3b8a0eab489b0dd14f1959e85f8aca | |
| https://api.cascadeproject.com/dashboard/nyt/top/stories/clicks/1h?user=hackday&key=2f3b8a0eab489b0dd14f1959e85f8aca | |
| https://api.cascadeproject.com/dashboard/nyt/top/stories/tweets/12h?user=hackday&key=2f3b8a0eab489b0dd14f1959e85f8aca | |
| https://api.cascadeproject.com/dashboard/nyt/top/stories/clicks/12h?user=hackday&key=2f3b8a0eab489b0dd14f1959e85f8aca | |
| https://api.cascadeproject.com/dashboard/nyt/top/stories/tweets/24h?user=hackday&key=2f3b8a0eab489b0dd14f1959e85f8aca | |
| https://api.cascadeproject.com/dashboard/nyt/top/stories/clicks/24h?user=hackday&key=2f3b8a0eab489b0dd14f1959e85f8aca |
| #!/usr/bin/env ruby | |
| ## WP2TUMBLR: WordPress 2 Tumblr Importing tool | |
| ## | |
| ## Usage: wp2tumblr [OPTION] WORDPRESS_XML_FILE | |
| ## | |
| ## Import the WORDPRESS_XML_FILE to a Tumblr blog. | |
| ## Provide `--group` option to publish to a group. | |
| ## This could take a long time... | |
| ## | |
| ## To install, download the script and chmod to 755. |