Skip to content

Instantly share code, notes, and snippets.

View lfamorim's full-sized avatar
🎯
Code is poetry that works, just like Jiu-jitsu.

Lucas Fernando Amorim lfamorim

🎯
Code is poetry that works, just like Jiu-jitsu.
View GitHub Profile
//
// SSH & SSL muxer - mux those restrictive proxies
//
// mux_interval
// |
// |\ |
// | \|
// ssl_port -----| \
// | |
// | |---- mux_port
@revolunet
revolunet / lzw_encoder.js
Created February 25, 2011 14:55
LZW javascript compress/decompress
// LZW-compress a string
function lzw_encode(s) {
var dict = {};
var data = (s + "").split("");
var out = [];
var currChar;
var phrase = data[0];
var code = 256;
for (var i=1; i<data.length; i++) {
currChar=data[i];
@PurpleBooth
PurpleBooth / README-Template.md
Last active July 22, 2024 02:29
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites