Skip to content

Instantly share code, notes, and snippets.

@bitemyapp
bitemyapp / gist:8739525
Last active May 7, 2021 23:22
Learning Haskell
@harith
harith / shellmarks.sh
Last active September 18, 2022 07:50
Utilities to let you easily reach frequently visited but deeply nested directories.
# Utilities for quickly accessing frequently used directories in bash.
# Usage:
# $ cd /path/to/project/src/
# $ mark code # Will create a new shortcut.
# # Becomes interactive if a shortcut already exists
# # m is an alias for mark. You can also `m code`
#
# $ code # From now on, running this anywhere in the shell
# # will put you in /path/to/project/src/code
@rkjha
rkjha / programs-installer.sh
Created April 28, 2012 20:30
Install necessary Programs in Ubuntu 12.04 LTS
#!/bin/sh
# A simple shell script for installing my favorite stuffs on
# Ubuntu 12.04 LTS
# Author : Ramesh Jha <rameshjha420@gmail.com>, <http://blog.sudobits.com>
# License : MIT
# update your system
sudo apt-get update
sudo apt-get upgrade