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
# 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" |
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
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 |
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
defmodule MyList do | |
def max([]), do: nil | |
def max([head | []]), do: head | |
def max([head | tail]) do | |
_max(head, max(tail)) | |
end |
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
defmodule FizzBuzz do | |
def fizzbuzz(n) do | |
fizz_or_buzz = fn | |
[0, 0, _] -> :fizzbuzz | |
[0, _, _] -> :fizz | |
[_, 0, _] -> :buzz | |
[_, _, n] -> n | |
end |
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
git status -s | grep ^UU | cut -f2 -d " " | xargs $EDITOR |
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
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]) |
NewerOlder