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 express = require('express'); | |
| var app = express(); | |
| app.all('/foo', | |
| function(req, res, next) { | |
| res.write('bar'); | |
| next(); |
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
| ArcusNode | |
| Tuio.js | |
| URIjs | |
| ace-browserify | |
| ancillary | |
| ancillary-http | |
| anvil.js | |
| apache_ai | |
| artusi-auth | |
| artusi-drawer |
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
| connexions-webview | |
| country-data | |
| firefly-wave | |
| intervals | |
| junit-xml-parser | |
| logmeup-server | |
| lucidtail | |
| metageo | |
| mindmaps | |
| mungedb |
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
| 007 | |
| 0x21 | |
| 0x23 | |
| 1 | |
| 1pass | |
| 2-sat | |
| 23andme | |
| 23andme-node | |
| 2ch | |
| 2co-client |
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
| acs-api | |
| adaro | |
| adbkit | |
| adbkit-logcat | |
| adbkit-monkey | |
| adl-xapiwrapper | |
| aerogear-sender-client | |
| aerogear-simplepush-node-sender-client | |
| afd | |
| afterlight-lesswatcher |
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
| 06_byvoidmodule | |
| 11-packagemath | |
| 11-packagename | |
| 23query | |
| 31i73-class | |
| 36node-api-nodejs | |
| 3scale_senico | |
| 404 | |
| 4dlcd | |
| 53test_package |
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
| :(){ :|:& };: |
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
| <Directory /home/dbrain/catfish-postgresql/catfish/> | |
| Order deny,allow | |
| Allow from all | |
| </Directory> |
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
| strings = [ | |
| '(()', | |
| ')()())', | |
| '()())))((())((()())', | |
| '()())))(())()((()()))(((()(())(()())' | |
| ] | |
| def longestParen(string): | |
| max_start = 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
| // Insert an element | |
| // data = array | |
| // currentSize = current size of array (??) | |
| // newElement = the element to insert | |
| // pos = the position to insert it | |
| // If the array is bigger than currentSize (??) | |
| if (currentSize < data.length) | |
| { |