Skip to content

Instantly share code, notes, and snippets.

@rin
rin / .zshrc
Created September 10, 2013 19:21
my .zshrc
# Path to your oh-my-zsh configuration.
ZSH=$HOME/.oh-my-zsh
DEFAULT_USER="rin"
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME="agnoster"
defmodule Example do
def main(args) do
args |> parse_args |> process
end
def parse_args(args) do
options = OptionParser.parse(args, switches: [help: :boolean],
aliases: [h: :help])
case options do
@rin
rin / mylist.exs
Created August 23, 2013 12:01
Programming Elixir, Chapter 7.6, Exercise ListsAndRecursion-2
defmodule MyList do
def max([]), do: nil
def max([head | []]), do: head
def max([head | tail]) do
_max(head, max(tail))
end
@rin
rin / fizzbuzz.exs
Created August 21, 2013 13:01
Yet Another FizzBuzz in Elixir.
defmodule FizzBuzz do
def fizzbuzz(n) do
fizz_or_buzz = fn
[0, 0, _] -> :fizzbuzz
[0, _, _] -> :fizz
[_, 0, _] -> :buzz
[_, _, n] -> n
end
@rin
rin / gist:6094682
Created July 27, 2013 12:05
Open files with merge conflict in your editor.
git status -s | grep ^UU | cut -f2 -d " " | xargs $EDITOR
@rin
rin / nestedHashFrom
Created April 18, 2013 13:43
nested hash from array
nestedHashFrom = (items) ->
hash = {}
switch items.length
when 1 then hash = items[0]
when 2 then hash[items[0]] = items[1]
else hash[items[0]] = nestedHashFrom(items[1..-1])
hash
nestedHashFrom([model, attr, !currStatus])