Viewing profile — mrjoelkemp
mrjoelkemp
HN member- Joined
- Fri, Jun 08, 2012, 10:34 PM UTC
- HN karma
- 62
- Public activity
- 41 items
- HN profile
- View on Hacker News ↗
About mrjoelkemp
Recent public activity
-
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…
-
comment
Comment #28503153
Google does provide elixir clients for most of their products: https://github.com/googleapis/elixir-google-api
-
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…
-
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. …
-
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…
-
comment
Comment #24951758
Actor model with Elixir/Erlang and the BEAM VM.
-
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…
-
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…
-
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 …
-
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…
- story
- story
- story
-
comment
Comment #8023278
Thanks Kevin. This has been fixed. Thanks for trying linklink.
- story
- story
-
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?
- story
- story
- story
-
story
OSX open current terminal directory in finder
In the terminal, type 'open .' to open the current directory into a finder window.
- story
- story
-
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…
-
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…