This file contains hidden or 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
{ | |
"username" : "imjacobclark", | |
"email" : "[email protected]", | |
"website" : "http://fusionstrike.com" | |
} |
This file contains hidden or 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
var https = require('https'); | |
var options = { | |
host: 'httpss://stream.twitter.com/1.1/statuses/filter.json?', | |
path: 'track=bieber', | |
method: 'GET', | |
headers: { | |
"Authorization": "OAuth", | |
"oauth_consumer_key": "", |
This file contains hidden or 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
var https = require('https'); | |
var options = { | |
host: 'stream.twitter.com', | |
path: '/1.1/statuses/filter.json?track=bieber', | |
method: 'GET', | |
headers: { | |
authorization: 'OAuth oauth_consumer_key="", oauth_nonce="", oauth_signature="", oauth_signature_method="HMAC-SHA1", oauth_timestamp="", oauth_token="", oauth_version="1.0"' | |
} |
This file contains hidden or 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
<?php | |
$conn = new Mongo('localhost'); | |
$db = $conn->tweetograph; | |
$collection = $db->biebertweetTest; | |
$cursor = $collection->find(); | |
This file contains hidden or 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
var myArgs = process.argv.slice(2); | |
console.log("Streaming for " + myArgs[0]); | |
var MongoClient = require('mongodb').MongoClient; | |
var sys = require('sys'); | |
var OAuth = require('oauth').OAuth; | |
oa = new OAuth("credentials_here"); | |
var access_token = ""; |
This file contains hidden or 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
/* | |
For use with a 4 pin Ultrasonic Distance Sensor | |
VCC // 5v | |
GND // GND | |
TRIG // Pin 13 | |
ECHO // Pin 12 | |
(c) Jacob Clark 2013 - http://fusionstrike.com | |
*/ |
This file contains hidden or 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
/* | |
For use with a 4 Pin Ultrasonic Ranging Sensor, see: http://www.micropik.com/PDF/HCSR04.pdf | |
Read about this project: http://fusionstrike.com/arduino-ultrasonic-ranging-project/ | |
I have used Analog Pins over Digital Pins for a possible port to an ATtiny85 | |
VCC // 5v | |
GND // GND | |
TRIG // Analog Pin 5 |
This file contains hidden or 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
/* | |
For use with a 4 Pin Ultrasonic Ranging Sensor, see: http://www.micropik.com/PDF/HCSR04.pdf | |
Read about this project: http://fusionstrike.com/arduino-ultrasonic-ranging-project/ | |
I have used Analog Pins over Digital Pins for a possible port to an ATtiny85 | |
VCC // 5v | |
GND // GND | |
TRIG // Analog Pin 5 |
This file contains hidden or 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
/* | |
For use with a 4 Pin Ultrasonic Ranging Sensor, see: http://www.micropik.com/PDF/HCSR04.pdf | |
& an ATtiny85 Microprocessor | |
Power can be supplied to the ATtiny85 via the Arduino | |
VCC // 5v (+) | |
GND // GND (-) | |
TRIG // Analog Input 3 (Pin 3) | |
ECHO // Analog Input 2 (Pin 4) |
This file contains hidden or 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
<head> | |
<title></title> | |
</head> | |
<body> | |
{{> main}} | |
{{> about}} | |
</body> |