I hereby claim:
- I am blake8086 on github.
- I am blake8086 (https://keybase.io/blake8086) on keybase.
- I have a public key ASCJ9bQUy-mn0I4dhINUpEAsu2a2gw4X8Ciy-GU0r4e3gAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| html() | |
| ('head') | |
| ('title', 'My awesome page') | |
| ('body') | |
| ('div') | |
| ('span', 'I am span contents!') | |
| global.server = require('http').createServer(function(request, response) { | |
| global.twitterFeed = require('https').get({ | |
| auth: 'username:password', | |
| host: 'stream.twitter.com', | |
| path: '/1/statuses/sample.json', | |
| }, function(res) { | |
| res.setEncoding('utf8'); | |
| response.writeHead(200, 'text/plain'); | |
| res.on('data', function(chunk) { | |
| response.write(chunk); |