Skip to content

Instantly share code, notes, and snippets.

View abhshkdz's full-sized avatar

Abhishek Das abhshkdz

View GitHub Profile
@abhshkdz
abhshkdz / sublime-text-installation.md
Last active December 19, 2015 01:58
Sublime Text 2 Installation Instructions for Ubuntu 13.04

Sublime Text 2 Installation Guide: Ubuntu 13.04

1. Install Sublime Text 2

Open terminal

sudo add-apt-repository ppa:webupd8team/sublime-text-2
sudo apt-get update
sudo apt-get install sublime-text

2. Install Sublime Package Control

@abhshkdz
abhshkdz / tweets
Created November 27, 2012 01:30
Self-updating list of my tweets
http://t.co/1fWalynZ #nowplaying
http://t.co/RvC1kqkl
Dropbox Space Race! https://t.co/Fb8mMBQS
RT @verge: First strike: how tech's superpowers could start an ecosystem war http://t.co/I5pu18fg
RT @firefox: Firefox introduces new Social API and previews integration with Facebook  http://t.co/wPrOEVfL
Just logged into my account and this is what Google Now came up with! #nexus7 http://t.co/zRibmAi8
@leostatic Remember this? RT @hackaday: 8x8x8 LED cube and the board that drives it http://t.co/BR1mY2hw
RT @jjenzz: discovery of Sass placeholder selectors has just made my morning <3 how did I not know about these! http://t.co/K7qjkFMZ
RT @saurabhsahni: Geeks on a Plane India is Back: — 500 Startups’ Tech + Startup Tour. Feb 16-18 http://t.co/IOmInD46
RT @pzerger: Microsoft patent application details head-mounted display used to augment live events http://t.co/R8wEn4RL <-- looks lik ...
@abhshkdz
abhshkdz / nvm
Created November 26, 2012 12:47
Source nvm + tab completion
# NVM
export NVM_HOME="$HOME/.nvm"
if [[ -f "$NVM_HOME/nvm.sh" ]]; then
source "$NVM_HOME/nvm.sh"
fi
# NVM TAB COMPLETION
if [[ -f "$NVM_HOME/bash_completion" ]]; then
source "$NVM_HOME/bash_completion"
fi
@abhshkdz
abhshkdz / hubot.sh
Created August 11, 2012 17:42
Building up Hubot on Gtalk (deployed on Heroku)
wget https://github.com/downloads/github/hubot/hubot-2.2.0.tar.gz
tar zxvf hubot-*.tar.gz
cd hubot/
vim Procfile
app: bin/hubot -a gtalk -n Hubot
vim package.json
{
"name": "hosted-hubot",
"version": "2.2.0",