Skip to content

Instantly share code, notes, and snippets.

Pre-Class Survey

For each question, supply an answer as specified by the text in []. When you respond, please erase this text as well as the brackets and put your answer in its place.

1. How interested are you in the topic of Big Data?

[On a scale from 1 to 10 where 1= Not at all interested & 10 = It's the topic I'm most interested in]

2. How excited are you for this class in comparison to your other courses?

[On a scale from 1 to 10 where 1 = All my other classes are more interesting & 10 = This is the class I'm most looking forward to]

In-class Learning Challenge

Name

fill-in-your-name

##Email fill-in-your-email-address

Checkpoint 1

Want to fork your own gists? No fork button? No problem! Install this user script by clicking refork.user.js' "raw" link down below: ⇓

@doubleshow
doubleshow / longer_log.txt
Created September 8, 2014 10:43
A longer log file for the Node.js tutorial.
2013-08-09T13:50:33.166Z A 2
2013-08-09T13:51:33.166Z B 1
2013-08-09T13:52:33.166Z C 6
2013-08-09T13:53:33.166Z B 8
2013-08-09T13:54:33.166Z B 5
2013-08-09T13:55:33.166Z E 8
2013-08-09T13:56:33.166Z F 4
2013-08-09T13:57:33.166Z A 2
2013-08-09T13:58:33.166Z G 3
2013-08-09T13:59:33.166Z F 2
@doubleshow
doubleshow / getforks.js
Created September 15, 2014 11:58
Get all forks from the repos of challenges 1, 2, and 3
var GitHubApi = require("github");
var async = require("async");
var github = new GitHubApi({
// required
version: "3.0.0",
// optional
timeout: 5000
});
@doubleshow
doubleshow / getevents.js
Created September 15, 2014 12:08
Template for a program to grab all the events about a repository
var GitHubApi = require("github");
var async = require("async");
var github = new GitHubApi({
// required
version: "3.0.0",
// optional
timeout: 5000
});
@doubleshow
doubleshow / mongo_github.js
Created September 28, 2014 15:00
Retrieve a list of repositories from Github and store them in a mongodb collection
var rest = require('restler');
var MongoClient = require('mongodb').MongoClient;
MongoClient.connect('mongodb://127.0.0.1:27017/test', function(err, db) {
if(err) throw err;
console.log(">> Dropping collection");
db.dropCollection('test_insert_github', function(err, result) {
console.log("dropped: ");
console.dir(result);
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>D3</title>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/d3/3.4.12/d3.min.js"></script>
<style type="text/css">
</style>
</head>
<body>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>D3</title>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/d3/3.4.12/d3.min.js"></script>
<style type="text/css">
</style>
</head>
<body>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>D3</title>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/d3/3.4.12/d3.min.js"></script>
<style type="text/css">
</style>
</head>
<body>