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
/* | |
** Pascal Sebah : September 1999 | |
** | |
** Subject: | |
** | |
** A very easy program to compute Pi with many digits. | |
** No optimisations, no tricks, just a basic program to learn how | |
** to compute in multiprecision. | |
** | |
** Formulae: |
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') | |
http.createServer(function(request, response){ | |
var request_options = { | |
host: request.headers['host'], | |
port: 80, | |
path: request.url, | |
method: request.method | |
} | |
var proxy_request = http.request(request_options, function(proxy_response){ |
NewerOlder