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
/* | |
* twitter-entities.js | |
* This function converts a tweet with "entity" metadata | |
* from plain text to linkified HTML. | |
* | |
* See the documentation here: http://dev.twitter.com/pages/tweet_entities | |
* Basically, add ?include_entities=true to your timeline call | |
* | |
* Copyright 2010, Wade Simmons | |
* Licensed under the MIT license |
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> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script> | |
<script src="http://cdn.simplegeo.com/js/1.2/simplegeo.context.jq.min.js"></script> | |
<script type="text/javascript" src="http://github.com/simplegeo/polymaps/raw/v2.4.0/polymaps.js"></script> | |
</head> | |
<body> | |
<script type="text/javascript"> |
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
client.getLocation({enableHighAccuracy: true}, function(err, position) { | |
if (err) { | |
// Could not retrieve location information. Check err for more information | |
} else { | |
// Latitude and longitude available in position.coords | |
} | |
}); |
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
var thrift = require('thrift'); | |
var JobExchange = require('./gen-nodejs/JobExchange'), | |
ttypes = require('./gen-nodejs/scheduler_types'); | |
var server = thrift.createServer(JobExchange, { | |
insert_job: function(job, callback) { | |
// job is an instance of ttypes.Job | |
process.nextTick(function() { | |
callback(1); |
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
// This example attempts to time out before the connection is established | |
var net = require('net'); | |
var start = Date.now(); | |
var stream = net.createConnection(9999, 'google.com'); | |
stream.setTimeout(1000); |
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
var thrift = require('thrift'); | |
var sys = require('sys'); | |
var scheduler_thrift = require('./gen-nodejs/JobExchange.js'), | |
scheduler_ttypes = require('./gen-nodejs/scheduler_types.js'); | |
var conn = thrift.createConnection('localhost', 8081), | |
client = thrift.createClient(scheduler_thrift, conn); | |
conn.on('error', function(err) { |
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> | |
<style type="text/css"> | |
@import url("http://github.com/simplegeo/polymaps/raw/v2.4.0/examples/example.css"); | |
html, body {height: 100%;} | |
svg {display: block;} | |
.layer circle {fill: #f00;stroke: #000;stroke-width: 2px;} | |
</style> |
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
# works | |
# func({a: 1, b: 2}) | |
func | |
a: 1 | |
b: 2 | |
# doesn't work | |
# func(1, 2) | |
func | |
1 |
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
Emoji: { | |
'sunny': '2600', | |
'zap': '26a1', | |
'leaves': '1f343', | |
'lipstick': '1f483', | |
'cop': '1f46c', | |
'wheelchair': '267f', | |
'fish': '1f413', | |
'hammer': '1f52c', | |
'moneybag': '1f4b0', |
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
$ npm install thrift --loglevel info | |
npm info it worked if it ends with ok | |
npm info using [email protected] | |
npm info using [email protected] | |
npm info addNamed [ 'thrift', '' ] | |
npm info into /Users/wade/sandbox/ttest [email protected] | |
npm info installOne [email protected] | |
npm info unbuild /Users/wade/sandbox/ttest/node_modules/thrift | |
npm info preinstall [email protected] | |
npm info build /Users/wade/sandbox/ttest/node_modules/thrift |
OlderNewer