Skip to content

Instantly share code, notes, and snippets.

@adolfont
adolfont / ElixirConf2014.md
Created November 13, 2019 19:00 — forked from rob-brown/ElixirConf2014.md
Notes from ElixirConf 2014

ElixirConf 2014

Dave Thomas—Opening Keynote

Twitter | Slides

Think different(ly)

Get out of your rut and learn new ways to think.

-module (base64ex).
-export ([urlsafe_decode64/1, urlsafe_encode64/1]).
urlsafe_decode64(Str) ->
Str2 = re:replace(Str, "-", "+", [global, {return,list}]),
Str3 = re:replace(Str2, "_", "/", [global, {return,list}]),
base64:decode(Str3).
urlsafe_encode64(Bin) ->
defmodule Mergesort do
@moduledoc """
Documentation for `Mergesort`.
Source: https://gist.github.com/coproduto/1c833523680628cd25884e047e64bd7b
"""
@doc """
Sorts a list.
@adolfont
adolfont / mostly-erlang-019-elixir-with-jose-valim-20131007.txt
Created April 10, 2024 20:05 — forked from lucian/mostly-erlang-019-elixir-with-jose-valim-20131007.txt
transcript for Mostly Erlang - episode 019 Elixir With José Valim / October 7, 2013
# --------------------------------------------------------------------------------------------
# Mostly Erlang - episode 019 Elixir With José Valim / October 7, 2013
#
# guests:
# - Joe Armstrong (@joeerl)
# - Robert Virding (@rvirding)
# - Jose Valim (@josevalim)
# - Fred Hebert (@mononcqc)
# - Eric Merit (@ericbmerritt)
#