This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import( | |
. "bytes" | |
"crypto/aes" | |
"crypto/rand" | |
. "crypto/block" | |
"os" | |
"io" | |
"io/ioutil" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p: (obj) -> | |
if console and console.debug | |
console.debug obj | |
Array::index: (member) -> | |
for element, index in this | |
if element is member | |
return index | |
null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'open-uri' | |
require 'cgi' | |
require 'pp' | |
require 'yaml' | |
require 'rake' | |
module GitHub | |
module Connectivity |