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 | |
input=$1 | |
output=$(echo $1 | sed s/\.cdr$/\.iso/) | |
hdiutil makehybrid -iso -joliet -o $output $input |
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/bash | |
find . -maxdepth 1 ! -path . -exec rm -rf {} \; |
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 | |
gem install awesome_print --conservative | |
# configuring irb | |
cat >> ~/.irbrc <<RCFromHere | |
IRB.conf[:SAVE_HISTORY] = 1000 | |
IRB.conf[:HISTORY_FILE] = "/Users/$USER/.irb-history" | |
IRB.conf[:EVAL_HISTORY] = 200 |
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
sw_vers -productVersion | sed -e "s/^\([0-9]*\)\.\([0-9]*\).*/\1.\2/g" |
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/bash | |
os=`uname` | |
if [[ "$os" == 'Linux' ]]; then | |
sudo apt-get install zsh zsh-common | |
chsh -s /bin/zsh | |
elif [[ "$os" == 'Darwin' ]]; then | |
brew install zsh | |
chsh -s /usr/local/bin/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
require 'yaml' | |
require 'json' | |
# The Ruby object called 'objie' contains information | |
# that need to be saved in a document database. 'objie' | |
# may or may not contain nested objects | |
yaml = objie.to_yaml | |
# Alternatively: yaml = YAML::load('objie.yml') | |
# Remove the Ruby object's YAML header |
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
# Requires GNU's implementation of sed, which is provided by default on Linux. | |
# If you are on a Mac try installing gnu-sed using Homebrew and replace | |
# all instances of `sed` with `gsed` in the script. | |
# Sets the date format to iso8601. Change it if you need to. | |
# Note that several fields may contain invalid characters and the script | |
# does not check for that. You may have to use an encoding detector to | |
# impose the right encoding on the concerned fields. |
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
# Requires GNU's implementation of sed, which is provided by default on Linux. | |
# If you are on a Mac try installing gnu-sed using Homebrew and replace | |
# all instances of `sed` with `gsed` in the script. | |
# Sets the date format to iso8601. Change it if you need to. | |
# Note that several fields may contain invalid JSON strings and the script | |
# does not check for that. You may wan to run the output through a linter | |
# in order to make sure the output is usable. |
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
# Requires Ruby's JSON gem, or any other gem with compatible interface. | |
# The JSON output, thus, is necessarily valid. | |
# Supports nested hashes (just one level of nesting). | |
# Tries to validate all ...date and ..time fields using Ruby time. | |
# The script removes all linefeeds=newlines from all the fields. | |
# Sets the date format to rfc2282 as it is easy to parse in Ruby. | |
# You can also use the git_log function programmatically to receive a Ruby hash. | |
# Git log reference: http://git-scm.com/docs/git-log | |
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/bash | |
# Usage: bash noip2setup.sh HOST USERNAME PASSWORD | |
echo noip2 noip2/forcenatoff select false | sudo /usr/bin/debconf-set-selections | |
echo noip2 noip2/matchlist select $1 | sudo /usr/bin/debconf-set-selections | |
echo noip2 noip2/netdevice select | sudo /usr/bin/debconf-set-selections | |
echo noip2 noip2/password select $3 | sudo /usr/bin/debconf-set-selections | |
echo noip2 noip2/updating select 30 | sudo /usr/bin/debconf-set-selections | |
echo noip2 noip2/username select $2 | sudo /usr/bin/debconf-set-selections |