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 http = require('http') | |
| var fork = require('child_process').fork; | |
| function fib(n) { | |
| if (n < 2) { | |
| return 1; | |
| } else { | |
| return fib(n - 2) + fib(n - 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
| class MercadoPago | |
| require 'rubygems' | |
| require 'json/add/core' | |
| require 'uri' | |
| require 'net/https' | |
| attr_accessor :client, :secret, :currency | |
| def initialize(options={}) | |
| @client = options[:client_id] |
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
| Africa/Abidjan | |
| Africa/Accra | |
| Africa/Addis_Ababa | |
| Africa/Algiers | |
| Africa/Asmara | |
| Africa/Asmera | |
| Africa/Bamako | |
| Africa/Bangui | |
| Africa/Banjul | |
| Africa/Bissau |
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 http = require('http'); | |
| exports.query = function(cb) { | |
| var cbCalled = false; | |
| http.get({ host: 'jsonip.com' }, function(res) { | |
| var buffer = ''; | |
| res.setEncoding('utf8'); | |
| res.on('data', function(d) { | |
| buffer += 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
| // Answer to http://github.com/ry/http-parser/issues/#issue/1 | |
| // UNTESTED | |
| struct line { | |
| char *field; | |
| size_t field_len; | |
| char *value; | |
| size_t value_len; | |
| }; |
NewerOlder