token = aio_XoSD69IcBnZXuIaRrpgQPgx5yBWw
View index.html
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Vibrancy Example</title> | |
<style> | |
* { | |
color: rgba(100, 100, 100, 0.9); | |
} | |
h1 { |
View transcript.coffee
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 coffee | |
fs = require 'fs' | |
log = fs.readFileSync('log.txt', 'utf8') | |
lines = log.split('\n') | |
lines = lines.filter (line) -> not /\thas entered the room$/.test(line) | |
lines = lines.filter (line) -> not /\thas left the room$/.test(line) |
View Fork.java
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
import java.io.IOException; | |
import org.eclipse.egit.github.core.RepositoryId; | |
import org.eclipse.egit.github.core.client.GitHubClient; | |
import org.eclipse.egit.github.core.service.RepositoryService; | |
public class Fork { | |
public static void main(String... args) throws IOException { | |
GitHubClient client = new GitHubClient(); |
View GistCreator.java
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
GitHubClient client = new GitHubClient().setCredentials("user", "p4ssw0rd"); | |
Gist gist = new Gist().setDescription("Prints a string to standard out"); | |
GistFile file = new GistFile().setContent("System.out.println(\"Hello World\");"); | |
gist.setFiles(Collections.singletonMap("Hello.java", file)); | |
gist = new GistService(client).createGist(gist); |
View toners-pub.geojson
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View .gitignore
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
node_modules |
View gist:4228261
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
a | |
b | |
c |
View stork.sh
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 bash | |
curl -s "http://www.google.com/finance/historical?q=$1&startdate=jan+1&2c+$2&enddate=dec+31%2c+$2&output=csv&histperiod=weekly" \ | |
| sed -e '1d' \ | |
| tac \ | |
| cut -d, -f5 \ | |
| spark |
View EclipseMirrors.java
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
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
import java.net.URL; | |
import java.util.Collection; | |
import java.util.HashMap; | |
import java.util.Map; | |
import org.eclipse.egit.github.core.Repository; | |
import org.eclipse.egit.github.core.service.RepositoryService; |
NewerOlder