Viewing profile — minhajuddin
minhajuddin
HN member- Joined
- Tue, Sep 28, 2010, 10:35 AM UTC
- HN karma
- 457
- Public activity
- 343 items
- HN profile
- View on Hacker News ↗
About minhajuddin
Recent public activity
- story
-
comment
Comment #30536485
I have started fiddling with rust, and one thing that I miss from the Elixir world is binary pattern parsing/matching. The elixir model is so much nicer, I've used byteorder to con…
- story
-
comment
Comment #27193743
I've been using Elixir/Erlang for more than 6 years and absolutely love it. The community is a lovely place to be, tooling is great. Concurrency is awesome. Erlang is battle tested…
-
comment
Comment #27193712
> We also found many times missing libraries, or found libraries which are incomplete, or unmaintained or just not well documented Can you give some examples here. This may have be…
- story
-
comment
Comment #23314410
A neat thing about this is that it doesn't send your tokens over the wire which is good security-wise :)
-
comment
Comment #23301193
I originally had this need when we were deploying test servers and needed the ability to view the logs by the QA team.
-
comment
Comment #23294526
This is a small opensource utility built using Elixir and Server Side Events. Would love to hear feedback from HN :)
- story
-
comment
Comment #21983736
Yeah, all my projects are web apps and Phoenix (The web framework for Elixir) is a joy to work with and highly performant.
-
comment
Comment #21983275
I used to program professionally in Elixir where we talked to a ton of external providers. So, our app was heavy on the network (http) and Elixir was a really good fit for it. Now,…
-
comment
Comment #21983246
Check out hex: https://github.com/hexpm/hexpm
-
comment
Comment #21983233
The Elixir ecosystem is really healthy. You can find almost any package you want on hex ( https://hex.pm/ ). Moreover, because it is built on top of erlang you can seamlessly use a…
-
comment
Comment #21600022
Love the game! It would be nice to wrap this up in an Android app and put it on the market place just because when I build games like these my kids end up closing the browser someh…
-
comment
Comment #21466959
It would be nice to see how this compares to Firecracker ( https://firecracker-microvm.github.io/ ) the runtime behind AWS Lambda
-
comment
Comment #21466218
Their speeds look impressive. If it can do cold starts with a response time of https://wasm.fastlylabs.com/
-
comment
Comment #19775329
This is going to be a real problem and it is hard for small sites to tackle this. I have simple service ( https://liveformhq.com ) which allowed users to sign up for an account wit…
-
comment
Comment #19432411
For vim users, there is an awesome plugin to talk to postgres and a ton of other databases called dbext.vim https://github.com/vim-scripts/dbext.vim Setting it up takes a little ef…
- story
-
comment
Comment #19007177
This is really useful for building one of utility websites. I used this in one of my previous companies to tail the logs on our little QA server and push them via websocktd to an i…
- story
-
comment
Comment #17615305
We use docker with AWS ECS, it has been a great combination. My colleague has written a few blog posts on how we do it: https://engineering.tripping.com/jenkins-elixir-and-ecs-cicd…
- story
-
comment
Comment #17116452
I'll share our deployment stack with Elixir, which is pretty hands off. We use docker with AWS ECS and have a simple release process: 1. Our jenkins CI builds a docker image which …