Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Elixir @ Evercam

Elixir @ Evercam

Slides for the "One project rebuilt 4 times: .NET, then Ruby, then Node ... and now Elixir" talk given on the ElixirConfEU: http://www.elixirconf.eu/elixirconf2015/milos-mosic

Miloš Mošić

April 23, 2015
Tweet

More Decks by Miloš Mošić

Other Decks in Programming

Transcript

  1. Tech Before After Elixir Elixir Elixir Elixir Websockets Background Jobs

    Long Requests Crash Recovery Upstart Pusher Sidekiq Node.js
  2. defp get_version do version = :os.cmd('git describe --always --tags') |>

    List.to_string |> String.strip(?\n) |> String.split("-") case version do [tag] -> tag [tag, _commits_since_tag, commit] -> "#{tag}-#{commit}" end end