Skip to content

Instantly share code, notes, and snippets.

View elvisds's full-sized avatar
🏠
Working from home

Elvis D'Souza elvisds

🏠
Working from home
View GitHub Profile
@elvisds
elvisds / py-data-links.md
Created January 27, 2017 23:30
Data Analysis with Python

Data visualization in one of three most important steps in data mining (https://github.com/entaroadun/hnpickup#readme). Often times, it's impossible to understand data without proper visualization. I went looking for great tools to do that.

Two website list recent JS visualization frameworks:

Most of them are available on Github. My three favorite:

@elvisds
elvisds / gist:3075519
Created July 9, 2012 09:59
SSH port forwarding on mac
ssh -L 80:host_name_com:8080 -p 22 -l my_user_name -N host_name_com
80 - local port
8080 - remote port
@elvisds
elvisds / gist:2998893
Created June 26, 2012 20:54
colors command
/**
* colors command - Manages colors
* by me@elvis.co.in (@elvisds)
*
* use 'help colors' to explore
*
*/
var ntc = {
/*
@elvisds
elvisds / gist:2915877
Created June 12, 2012 07:25
Get linkedin hashes
def check_pass(offset=5):
from getpass import getpass
from hashlib import sha1
hashed = sha1(getpass()).hexdigest()
return (hashed, '0' * offset + hashed[offset:])