Skip to content

Instantly share code, notes, and snippets.

View shashankmehta's full-sized avatar

Shashank Mehta shashankmehta

View GitHub Profile
/* Flatten das boostrap */
.well, .navbar-inner, .popover, .btn, .tooltip, input, select, textarea, pre, .progress, .modal, .add-on, .alert, .table-bordered, .nav>.active>a, .dropdown-menu, .tooltip-inner, .badge, .label, .img-polaroid {
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
-webkit-border-radius: 0px !important;
-moz-border-radius: 0px !important;
border-radius: 0px !important;
border-collapse: collapse !important;
background-image: none !important;
@shashankmehta
shashankmehta / gist:3508831
Created August 29, 2012 09:02 — forked from abhshkdz/hubot.sh
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",
@shashankmehta
shashankmehta / Automate Ineffeciencies.mkd
Created June 11, 2012 09:08 — forked from captn3m0/01-Introduction.mkd
Quick Primer to Software Development

From a github talk about how to improve your organization:

  1. Find shit that you don't want to do.
  2. Automate it.

(I can't seem to be able to find the exact talk, so this is paraphrased.)

After all, that is what software development is all about. Reducing human effort, so it can be put into better things.

Learn the basics of shell scripts. Or just write scripts in your favorite language. I wrote a program in php to sync my playlists with my cell phone (after compressing them). And several other such small things.