#!/usr/bin/env bash
# Assuming OS X Yosemite 10.10.4
# Install XCode and command line tools
# See https://itunes.apple.com/us/app/xcode/id497799835?mt=12#
# See https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man1/xcode-select.1.html
xcode-select --install
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>ANSIBlackColor</key> | |
<data> | |
YnBsaXN0MDDUAQIDBAUGFRZYJHZlcnNpb25YJG9iamVjdHNZJGFyY2hpdmVyVCR0b3AS | |
AAGGoKMHCA9VJG51bGzTCQoLDA0OVU5TUkdCXE5TQ29sb3JTcGFjZVYkY2xhc3NPECcw | |
LjE2MDU0NTMwNDQgMC4xODU0NjI4MTc1IDAuMTk4NDg3MDEzNgAQAoAC0hAREhNaJGNs | |
YXNzbmFtZVgkY2xhc3Nlc1dOU0NvbG9yohIUWE5TT2JqZWN0XxAPTlNLZXllZEFyY2hp |
I hereby claim:
- I am policecar on github.
- I am priska (https://keybase.io/priska) on keybase.
- I have a public key whose fingerprint is 5A93 AF0A CAD9 5EB9 8D6D 6D48 3632 7179 59AF 351A
To claim this, I am signing this object:
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
# install setuptools and pip to user local | |
wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py | |
python ez_setup.py --user | |
curl -O https://raw.github.com/pypa/pip/master/contrib/get-pip.py | |
python get-pip.py --user | |
# install virtualenv and virtualenvwrapper to user local directory | |
pip install --install-option="--user" virtualenv | |
pip install --install-option="--user" virtualenvwrapper | |
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
# Minimal script to remove Amazon's ID3 tags from your music: amazon -> uozewe ^^ ( h/t plinz ) | |
# Requirements: id3v2, eyeD3(-2.7) | |
# Version: 0.1 alpha | |
# Author: priska | |
# | |
# Process: migrates ID3v1 tags to ID3v2, then removes incorrigible IDv1 tags like Amazon's ID3v1 COMM, | |
# finally removes the IDv2 COMM tag; preserves the original timestamp. | |
# Tested with: id3info ./* | grep -i amazon | |
tmpfile=`mktemp usinikimbilie` ; |