Skip to content

Instantly share code, notes, and snippets.

View CKolkey's full-sized avatar
💭
Had babies - on a break

Cameron CKolkey

💭
Had babies - on a break
  • Karnov Group A/S
  • Denmark
  • 18:10 (UTC +02:00)
View GitHub Profile
@joechrysler
joechrysler / who_is_my_mummy.sh
Last active March 31, 2025 06:40
Find the nearest parent branch of the current git branch
#!/usr/bin/env zsh
git show-branch -a \
| grep '\*' \
| grep -v `git rev-parse --abbrev-ref HEAD` \
| head -n1 \
| sed 's/.*\[\(.*\)\].*/\1/' \
| sed 's/[\^~].*//'
# How it works:
@jbr
jbr / switch.rb
Created February 12, 2011 11:15
ruby 1.9.2 case-like switch
# In response to:
# http://mlomnicki.com/ruby/tricks-and-quirks/2011/02/10/ruby-tricks2.html
# Ruby 1.9.2 has some neat stuff that lets us make a readable
# alternative case statement that calls each method in turn.
# 1.9.2 features used:
# * hashes are ordered in 1.9.2
# * cool JSON-style hash syntax
# * concise lambda syntax