Skip to content

Instantly share code, notes, and snippets.

View buntine's full-sized avatar
💭
Gringo Starr

Andrew Buntine buntine

💭
Gringo Starr
View GitHub Profile
@buntine
buntine / Building SSH Key management tool with Elixir.md
Last active November 20, 2015 03:31 — forked from jayzz55/Building SSH Key management tool with Elixir.md
Building SSH Key management tool with Elixir

Building SSH Key management tool with Elixir

Sipping the Elixir

After being inspired by David's talk on Elixir at Hardhat, we decided to try and build our own SSH public key management tool PubKeys in Elixir. We're delighted to report back that Elixir is amazing and we've released the source code to the community at Github.

Things we love about Elixir:

  • Writing code in a functional style encourages us to break the code into small chunks of functions.
  • Through the use of function composition operator |>, this makes the code much more readable, and elegant.
  • Pattern matching is great.