This file contains 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/sh | |
# Build Zsh from sources on Ubuntu. | |
# From http://zsh.sourceforge.net/Arc/git.html and sources INSTALL file. | |
# Some packages may be missing | |
sudo apt-get install -y git-core gcc make autoconf yodl libncursesw5-dev texinfo | |
git clone git://zsh.git.sf.net/gitroot/zsh/zsh | |
cd zsh |
This file contains 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/sh | |
# Build Zsh from sources on Ubuntu. | |
# From http://zsh.sourceforge.net/Arc/git.html and sources INSTALL file. | |
# Some packages may be missing | |
sudo apt-get install -y git-core gcc make autoconf yodl libncursesw5-dev texinfo | |
git clone git://zsh.git.sf.net/gitroot/zsh/zsh | |
cd zsh |
This file contains 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
worldclock() { | |
ADDIS_ABABA=`TZ=Africa/Addis_Ababa date +"%a %d/%m/%Y %T (%z %Z)"` | |
BERLIN=`TZ=Europe/Berlin date +"%a %d/%m/%Y %T (%z %Z)"` | |
CHICAGO=`TZ=America/Chicago date +"%a %d/%m/%Y %T (%z %Z)"` | |
HONK_KONG=`TZ=Asia/Hong_Kong date +"%a %d/%m/%Y %T (%z %Z)"` | |
LONDON=`TZ=Europe/London date +"%a %d/%m/%Y %T (%z %Z)"` | |
LOS_ANGELES=`TZ=America/Los_Angeles date +"%a %d/%m/%Y %T (%z %Z)"` | |
MOSCOW=`TZ=Europe/Moscow date +"%a %d/%m/%Y %T (%z %Z)"` | |
NEW_YORK=`TZ=America/New_York date +"%a %d/%m/%Y %T (%z %Z)"` | |
SOFIA=`TZ=Europe/Sofia date +"%a %d/%m/%Y %T (%z %Z)"` |
This file contains 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
;; processing-mode.el | |
;; Processing.org language based on Java mode. Adds keyword | |
;; highlighting for all recognized Processing language functions. | |
;; Allows compilation of buffers and "sketches" from within Emacs but | |
;; only for more recent versions of Processing. | |
;; Copyright (C) 2008, 2009 Rudolf Olah <[email protected]> | |
;; Modified for Processing 2.0 by Bunny Blake <[email protected]> |