Skip to content

Instantly share code, notes, and snippets.

View arpunk's full-sized avatar
🚴‍♂️

Ricardo Lanziano arpunk

🚴‍♂️
View GitHub Profile
@arpunk
arpunk / keybase.md
Last active January 21, 2017 20:19

Keybase proof

I hereby claim:

  • I am arpunk on github.
  • I am arpunk (https://keybase.io/arpunk) on keybase.
  • I have a public key ASDeIFLJgTphr_VKNDGxDYOAHDzQygiTGtKoRtnkIhk01go

To claim this, I am signing this object:

λ rebar3 eunit
===> Skipping lfe (from {git,"git://github.com/rvirding/lfe.git",
{tag,"v0.10.0"}}) as an app of the same name has already been fetched
===> Skipping lfe (from {git,"git://github.com/rvirding/lfe.git",
{tag,"v0.10.0"}}) as an app of the same name has already been fetched
===> Skipping lfe (from {git,"git://github.com/rvirding/lfe.git",
{tag,"v0.10.0"}}) as an app of the same name has already been fetched
===> Skipping lfe (from {git,"git://github.com/rvirding/lfe.git",
{tag,"v0.10.0"}}) as an app of the same name has already been fetched
===> Verifying dependencies...
@arpunk
arpunk / basic_example.js
Created February 23, 2012 23:29
restify
var restify = require('restify');
var server = restify.createServer();
server.get('/hola/mundo/:nombre', function(req, res) {
res.send(200, {
message: req.params.nombre + ' le dice hola mundo a todos!'
});
});
openssl genrsa -out privatekey.pem 1024
openssl req -new -key privatekey.pem -out certrequest.csr
openssl x509 -req -in certrequest.csr -signkey privatekey.pem -out certificate.pem