Skip to content

Instantly share code, notes, and snippets.

if [ "$(uname)" == 'Darwin' ]; then
OS='Mac'
elif [ "$(expr substr $(uname -s) 1 5)" == 'Linux' ]; then
OS='Linux'
elif [ "$(expr substr $(uname -s) 1 10)" == 'MINGW32_NT' ]; then
OS='Cygwin'
else
echo "Your platform ($(uname -a)) is not supported."
exit 1
fi
@kuetemeier
kuetemeier / zsh-5.0.5.sh
Last active August 29, 2015 14:14 — forked from solar/zsh-5.0.0.sh
# install zsh-5.0.0
# prerequisite: gcc ncurses-devel readline-devel pcre-devel zlib-devel
curl -L http://jaist.dl.sourceforge.net/project/zsh/zsh/5.0.5/zsh-5.0.5.tar.bz2 | tar jx
cd zsh-5.0.5/
./configure --prefix=/usr/local/zsh/5.0.5 --enable-cap --enable-pcre --enable-multibyte
make
sudo make install
sudo alternatives --install /usr/local/bin/zsh zsh /usr/local/zsh/5.0.5/bin/zsh 50000

Kuetemeier.NET - Contributor License Agreement

Version 1.1.0 - 2016-03-11

Thank you for your interest in contributing to open source software projects made available by Kuetemeier.NET GmbH and / or Jörg Kütemeier as an individual (combined as "Kuetemeier.NET").

**You agree that the following terms apply to all of your past, present and future contributions. Except for the licenses granted in this Agreement, you

@kuetemeier
kuetemeier / .gitattributes
Last active March 30, 2018 06:49 — forked from dreftymac/.gitattributes
Sample Git Attributes File
# Encrypt the repository
# Remove/modify this line if the repository is meant to be open-source
*.* filter=git-crypt diff=git-crypt
.gitattributes !filter !diff
# These files are text and should be normalized (Convert crlf => lf)
*.php text
*.css text
*.js text
*.htm text