Skip to content

Instantly share code, notes, and snippets.

View rogeriopvl's full-sized avatar
🏄‍♂️

Rogério Vicente rogeriopvl

🏄‍♂️
View GitHub Profile
var sys = require('sys'),
http = require('http');
http.createServer(function(req, res) {
res.sendHeader(200, {'Content-Type': 'text/html'});
res.sendBody('<h1>Hello World</h1>');
res.finish();
}).listen(8080);
sys.puts('Server running at http://127.0.0.1:8080/');
{
"plaintext": "hello world",
"hash": "5eb63bbbe01eeed093cb22bb8f5acdc3",
"algo": "md5",
"status": "ok",
"error_message": ""
}
<?xml version="1.0" encoding="UTF-8"?>
<response>
<plaintext>hello world<plaintext>
<hash>5eb63bbbe01eeed093cb22bb8f5acdc3<hash>
<algo>md5<algo>
<status>ok</status>
<error_message></error_message>
</response>
$params = is_array($urls) ? 'url='.implode('&url=', array_map('urlencode', $urls)) : 'url='.urlencode($urls);