Skip to content

Instantly share code, notes, and snippets.

View karlosgliberal's full-sized avatar

karlos g liberal karlosgliberal

View GitHub Profile
@karlosgliberal
karlosgliberal / vlcrc.js
Created October 8, 2011 20:10 — forked from garth/vlcrc.js
Remote control multiple VLC apps via the command line using nodejs
// To start vlc with telnet remote control:
// ./VLC --extraintf rc --rc-host 0.0.0.0:3000
//
// To connect to multiple vlc's
// node vlcrc.js host1:3000 host2:3000
var net = require('net');
var readline = require('readline');
//addresses of servers
@karlosgliberal
karlosgliberal / .json
Created December 28, 2012 11:59 — forked from anonymous/.json
{
"info": {
"author": "meemoo",
"title": "Untitled",
"description": "Meemoo app description",
"parents": [],
"url": ""
},
"nodes": [
{
{
"info": {
"author": "meemoo",
"title": "pattern lab",
"description": "playing with layer tile",
"parents": [
"https://gist.github.com/5540121"
],
"url": "test-layers"
},
@karlosgliberal
karlosgliberal / echoHttpRequest.js
Last active August 29, 2015 14:08 — forked from Marak/echoHttpRequest.js
Echo HTTP requests
module['exports'] = function echoHttp (hook) {
hook.debug("Debug messages are sent to the debug console");
hook.debug(hook.params);
hook.debug(hook.req.path);
hook.debug(hook.req.method);