Live data from Hacker News

Viewing profile — mrjoelkemp

mrjoelkemp

HN member
Joined
Fri, Jun 08, 2012, 10:34 PM UTC
HN karma
62
Public activity
41 items

About mrjoelkemp

Educator and Tinkerer

Recent public activity

  1. comment
    Comment #35933641

    Not really. Working on a 2+ year, large, monolithic phoenix liveview app at Spotify. VS Code runs dialyzer on file save, which shows type mismatches. I also run dialyzer on pre-com…

  2. comment
    Comment #28503153

    Google does provide elixir clients for most of their products: https://github.com/googleapis/elixir-google-api

  3. comment
    Comment #27207391

    I have https://elixirdaily.link (an elixir/beam news aggregator running) on the smallest, free Gigalixir VM just fine. Does a ton of memory intensive work and doesn't go OOM (had t…

  4. comment
    Comment #27195267

    1.5 years in and Phoenix Liveview is perfect for internal webapps. Have personally seen development take half as much time with half as much people compared to traditional stacks. …

  5. comment
    Comment #26633451

    For completeness, you should check out Elixir and Phoenix (channels and presence) for the server. Easy websockets, isolated player processes, non-blocking VM, plus deep introspecti…

  6. comment
    Comment #24951758

    Actor model with Elixir/Erlang and the BEAM VM.

  7. comment
    Comment #24704116

    I find building a simple game (like tictactoe) in Phoenix Liveview to be a good learning project. You can layer on multiplayer using Phoenix pubsub once you have a working one play…

  8. comment
    Comment #24535763

    In my opinion, Java as a web language is good when you don't need to really understand what's happening (like in low-traffic situations). If concurrency isn't an issue, then the ma…

  9. comment
    Comment #24511977

    I found that my JS experience made a lot of Elixir feel very familiar (lambdas, destructuring, default args, string interpolation, optional typing). And compared to Node, the BEAM …

  10. comment
    Comment #24456920

    A talk in ElixirConf this year showed that the pipe operator in Elixir is just a macro. A Code BEAM V conf Q&A with Jose had a (playful, trolling) question about implementing right…

  11. story
  12. story
  13. story
  14. comment
    Comment #8023278

    Thanks Kevin. This has been fixed. Thanks for trying linklink.

  15. story
  16. story
  17. story
    Ask HN: Why do you star GitHub repos?

    Serious question. Issuing a star means different things to different people: bookmarking, encouraging, doing a favor for a friend, publicizing, and more I'm sure. Why do you star?

  18. story
  19. story
  20. story
  21. story
    OSX open current terminal directory in finder

    In the terminal, type 'open .' to open the current directory into a finder window.

  22. story
  23. story
  24. comment
    Comment #6907161

    Cheers for mentioning the closure compiler; I'll look into it. I haven't noticed much literature on its use in current build systems; I guess r.js gets all the fame due to its easi…

  25. comment
    Comment #6906889

    Interesting. Something else that I should have included as a con for 3 is that Backbone would then be a requirement for the model-based solution. It sacrifices flexibility for smal…