Skip to content

Instantly share code, notes, and snippets.

@kyokpae
kyokpae / about.md
Last active October 30, 2017 20:11 — forked from jasonrudolph/about.md
Programming Achievements: How to Level Up as a Developer

Programming Achievements: How to Level Up as a Developer

  1. Select a particular experience to pursue.
  2. Pursue that experience to completion. (Achievement unlocked!)
  3. Reflect on that experience. Really soak it in. Maybe a blog post would be in order?
  4. Return to Step 1, this time selecting a new experience.

This gist is a fork of this other gist which is itself a fork of a gist from this blog post. And the introductions come from yet another gist.

@kyokpae
kyokpae / store.erl
Created March 26, 2012 16:17
dets bag example
#!/usr/bin/env escript
main(_) ->
dets:open_file(store, [{type, bag}, {file, 'store'}]),
dets:insert(store, {a, a}),
dets:insert(store, {a, b}),
dets:insert(store, {a, c}),
dets:insert(store, {b, b}),
dets:insert(store, {c, a}),
dets:insert(store, {c, b}),