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
/*------------------------------------------------------------------ | |
Author: Jay Contonio - http://jcontonio.com/ | |
Last change: 2009-03-13 | |
Requires: jQuery | |
-------------------------------------------------------------------*/ | |
// The username for the twitter feed | |
var user = "TWITTER_USERNAME"; | |
// All our twitter data gets loaded into this array | |
var twitterData = new Array(); |
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
require 'rubygems' | |
require 'tinder' | |
require 'json' | |
require 'net/http' | |
# this will be something like "First L." | |
bot_name = "PERSON NAME" | |
campfire = Tinder::Campfire.new 'NAME_OF_CAMPFIRE_ACCOUNT' | |
campfire.login 'EMAIL_ADDRESS','PASSWORD' |
NewerOlder