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
| module['exports'] = function echoHttp (hook) { | |
| hook.debug("Debug messages are sent to the debug console"); | |
| hook.debug(hook.params); | |
| hook.debug(hook.req.path); | |
| hook.debug(hook.req.method); | |
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
| data = [1, 3, 8, 10, 15]; | |
| d3.select("body").selectAll("p") | |
| .data(data) | |
| .enter() | |
| .append("p") | |
| .text(function(d){return d;}); |
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
| case hand.gametype.limit | |
| when 'nl' | |
| - var lim = 'No Limit' | |
| case hand.gametype.flavour | |
| when 'holdem' | |
| - var flav = 'Holdem' | |
| case hand.session.buyincurrency | |
| when 'USD' |
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
| NAME: mrwooster_cathedral_st_pauls | |
| WEIGHT: 50000 | |
| PLACE: Temple | |
| TAGS: no_rotate, no_hmirror | |
| ORIENT: encompass | |
| MAP | |
| xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx | |
| xxxxxxxxxxxxxxxxxxxxxxxxxxx.......xxxxxxxxxxxxxxxxxxxxx | |
| xxxxxxxxxxxxxxxxxxxxxxxxxx...B.B...xxxxxxxxxxxxxxxxxxxx | |
| xxxxxxxxxxxxxxxxxxxxxxxxx...........xxxxxxxxxxxxxxxxxxx |
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
| NAME: mrwooster_entry_arrow | |
| TAGS: entry no_monster_gen | |
| ORIENT: float | |
| MAP | |
| xxxxxxxxxxxxx | |
| xxxxxx.xxxxxx | |
| xxxxx...xxxxx | |
| xxxx.....xxxx | |
| xxx.......xxx | |
| xx.........xx |
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 sys = require('sys'), | |
| smsified = require('smsified'), | |
| http = require('http'), | |
| spawn = require('child_process').spawn; | |
| var sms = new SMSified('USERNAME', 'PASSWORD'); | |
| var server = http.createServer(function(req, res) { | |
| req.addListener('data', function(data){ |
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
| /* | |
| * Load external modules and init variables | |
| */ | |
| var twitter = require('ntwitter'), | |
| http = require('http'), | |
| bitly = require('bitly'), | |
| b = new bitly('USER', 'API_KEY'), | |
| tweeted = {}, | |
| load_time = Math.round(new Date().getTime() / 1000), | |
| score_threshold = 100; |
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
| Incident Identifier: A2EAC453-F4AC-4240-B364-D4E29EEBCDAD | |
| CrashReporter Key: d80c282094567ce2b4a19bbc8aae0e3697976995 | |
| Hardware Model: iPhone3,1 | |
| Process: [APP_NAME [1037] | |
| Path: /var/mobile/Applications/71A84C67-8919-42FC-B3B2-55EAA143D757/[APP_NAME.app/[APP_NAME | |
| Identifier: [APP_NAME | |
| Version: ??? (???) | |
| Code Type: ARM (Native) | |
| Parent Process: launchd [1] |
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
| <div id="bbcode_div"></div> | |
| <textarea id="bbcode_ta" cols="20" rows="5"></textarea></pre> |
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
| function init() { | |
| document.parser = new Worker('https://raw.github.com/guyht/Giki/master/lib/gworker.js'); | |
| document.parser.onerror = function(event){ | |
| throw new Error(event.message + " (" + event.filename + ":" + event.lineno + ")"); | |
| }; | |
| document.parser.onmessage = function(event) { | |
| document.getElementById('wiki_div').innerHTML = event.data; | |
| }; | |
| document.parser.postMessage(document.getElementById('wiki_textarea').value); | |
| } |
NewerOlder