Live data from Hacker News

Viewing profile — aej

aej

HN member
Joined
Fri, Apr 30, 2021, 10:26 AM UTC
HN karma
12
Public activity
8 items

About aej

No profile information was provided.

Recent public activity

  1. comment
    Comment #36417101

    You can incrementally add client side only UI elements as you need - and if you want to use something more complex there are escape hatches which let you use your frontend framewor…

  2. comment
    Comment #30301199

    When it comes to refactoring, the fact that Elixir is compiled helps a lot - there are a set of mistakes you make during a refactor which the compiler will just catch for you.

  3. comment
    Comment #30180696

    This is really impressive. If I were tasked with building an app with a similar feature set in another language or runtime Id have to bring in a whole set of technologies and infra…

  4. comment
    Comment #29508440

    Tailwind feels like the correct abstraction on-top-of css which works for 90% of use-cases. I struggled with css for many years but Tailwind has actually helped me improve my css -…

  5. comment
    Comment #29477858

    Phoenix has a much smaller footprint than Django. I would put Phoenix closer to Flask in terms of how much work the framework does for you. Phoenix has lots of generators which mak…

  6. comment
    Comment #29440712

    Great article. It sounds like the same journey I’ve been through - initially enjoying Django and it’s ORM, then starting to wrestle with the fact that the data layer is hidden from…

  7. comment
    Comment #27687149

    I came to Elixir from another untyped language (python) but I've never had any issues. Elixir code often relies heavily on pattern matching return values (ok/error tuples or Struct…

  8. comment
    Comment #27194413

    Having done python for many years and coming to Elixir the things that I find Elixir does really well are: - mix and the general tooling (package management, testing, deployment) -…