- akolkarsohan.com:8081
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |