Skip to content

Instantly share code, notes, and snippets.

View akolkarsohan's full-sized avatar

akolkarsohan akolkarsohan

  • Pune, India
View GitHub Profile
@akolkarsohan
akolkarsohan / install-emacs-ubuntu.sh
Created October 14, 2016 10:35
Install Emacs from source on Ubuntu
#!/bin/bash
sudo apt-get update
sudo apt-get install build-essential
sudo apt-get build-dep emacs24
cd ~/Downloads
wget "http://gnu.mirrors.hoobly.com/gnu/emacs/emacs-24.5.tar.gz"
tar xvzf emacs-24.*.tar.gz
cd emacs-24.*
./configure --without-x
make
# COMMAND LINE CALENDAR
# Functions of the program include:
# - View the calendar
# - Add an event to the calendar
# - Update an existing event
# - Delete an existing event
# Module imports
from time import sleep, strftime