Skip to content

Instantly share code, notes, and snippets.

View binario200's full-sized avatar

Victor Hernandez binario200

View GitHub Profile
@binario200
binario200 / README.md
Created April 29, 2018 19:10 — forked from JamesMenetrey/README.md
Install Oh-My-Zsh + iTerm2 with Solarized + System-wide console in 2017 (macOS)

Install iTerm2 with Solarized in 2017

Here is the looks and feel of your terminal once the tutorial has been applied on your system:

Install iTerm2

Using Homebrew:

@binario200
binario200 / nodejs-tcp-example.js
Created October 17, 2017 03:32 — forked from tedmiston/nodejs-tcp-example.js
Node.js TCP client and server example
/*
In the node.js intro tutorial (http://nodejs.org/), they show a basic tcp
server, but for some reason omit a client connecting to it. I added an
example at the bottom.
Save the following server in example.js:
*/
var net = require('net');
@binario200
binario200 / DockerGDL Demo
Last active March 10, 2016 16:17 — forked from iax7/DockerGDL Demo
DockerGDL Meetup Demo
docker search postgres
docker pull postgres
docker images
docker ps -a
docker run -e POSTGRES_PASSWORD=changeme -d postgres
docker log -f {name}
docker inspect {name} | less