Skip to content

Instantly share code, notes, and snippets.

View retrography's full-sized avatar

Mahmood S. Zargar retrography

  • VU Amsterdam
  • Amsterdam, Netherlands
  • X @mszargar
View GitHub Profile
@retrography
retrography / cdr2iso
Created February 4, 2015 17:28
Converts a .cdr image (CD/DVD master image obtained from Disk Utility under MacOSX) to a .iso image
#!/bin/sh
input=$1
output=$(echo $1 | sed s/\.cdr$/\.iso/)
hdiutil makehybrid -iso -joliet -o $output $input
@retrography
retrography / brm.bash
Last active August 29, 2015 14:16
brm: Brutally deletes everything under the current directory, even if the directory contains way too many files and folders with strange names containing special characters, etc...
#!/bin/bash
find . -maxdepth 1 ! -path . -exec rm -rf {} \;
@retrography
retrography / rubyrepl.sh
Last active October 21, 2015 21:01
Creates an Interactive Ruby RC file with decent history and color-coding.
#!/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
@retrography
retrography / osx_ver.sh
Created March 9, 2015 15:28
Detect MacOSX version (only major and minor versions)
sw_vers -productVersion | sed -e "s/^\([0-9]*\)\.\([0-9]*\).*/\1.\2/g"
@retrography
retrography / ohz.sh
Last active August 29, 2015 14:17
Install oh-my-zsh my way...
#!/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
@retrography
retrography / hashject.rb
Last active August 29, 2015 14:17
Converts a Ruby object into a hash. This is not intended for object serialization or mapping, but instead for saving the information contained in an object to a document database, JSON file, etc...
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
@retrography
retrography / git-log2tsv.sh
Last active August 29, 2015 14:17
Compiles most of the useful information in a git log into a chronologically-ordered tab-delimited list using pretty formatting and a combination of shell commands.
# 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.
@retrography
retrography / git-log2json.sh
Last active August 29, 2015 14:17
Compiles most of the useful information in a git log into a chronologically-ordered JSON array using pretty formatting and a combination of shell commands.
# 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.
@retrography
retrography / git-log2json.rb
Last active August 29, 2015 14:17
Compiles most of the useful information in a git log into a chronologically-ordered validated JSON array using pretty formatting and Ruby's JSON library.
# 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
@retrography
retrography / noip2setup.sh
Last active August 29, 2015 14:19
A script that installs and sets up NO-IP's dynamic IP updater engine on Ubuntu
#!/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