Live data from Hacker News

Viewing profile — passer-by-123

passer-by-123

HN member
Joined
Tue, Jul 11, 2017, 11:01 PM UTC
HN karma
59
Public activity
16 items

About passer-by-123

No profile information was provided.

Recent public activity

  1. comment
    Comment #17616203

    Both Erlang and Elixir have CI running on Windows and provide installers. I am aware of many using Windows for development, although I am not aware of people deploying on Windows.

  2. comment
    Comment #17616186

    While Dialyzer can be handy, it is not a type system. Elixir/Erlang do have typespecs, which helps on the documentation aspect, but a type system would give much more on the perfor…

  3. comment
    Comment #17616009

    Thanks! I would be great if you wrote an article on these with more details, as it would be really helpful to both Elixir and Erlang communities.

  4. comment
    Comment #17615909

    A type system will allow you to catch a certain category of errors. There are still whole categories of logical errors and runtime errors, such as the ones that arises with communi…

  5. comment
    Comment #17615468

    While I agree deployment is probably the major pain point, I don’t see a reason to add time zones or time formatting to Elixir, given those problems are well solved in the communit…

  6. comment
    Comment #15570226

    > If all of those extra characters are for extra flexibility (maybe for using more repositories in future?) then it smells of premature optimization. I'll happily do without it. I …

  7. comment
    Comment #15570108

    FWIW, deploying a non-Phoenix app with distillery is exactly the same as deploying a Phoenix app.

  8. comment
    Comment #15040849

    Not only strings, but better error messages, the new breakpoint support, functions for working with collections, protocols, tasks, etc. It goes quite beyond tooling.

  9. comment
    Comment #15040818

    I think your second point is unfair. It has nothing to do with Ruby but the fact a lot of people are joining the platform. It takes time for them to understand how everything fits …

  10. comment
    Comment #15038663

    There is no reason to use LFE. It doesn't add anything that Erlang does not have (besides macros) and it is very poor on the documentation side. Even if you don't like Elixir, it b…

  11. comment
    Comment #15038594

    We definitely use databases such as Postgres, MySQL, Riak, etc. It is just that when it comes to ephemeral data, the tools that ship with the Elixir and OTP may be enough. See how …

  12. comment
    Comment #14900161

    As many others said in the thread, forget about the relationship between Ruby and Elixir, and give Elixir a try. It is much more than syntax: structs, protocols, the test framework…

  13. comment
    Comment #14900045

    I would say the difference is that you can start small. You can start thinking about functions and data and you can build a large amount of software with the simpler abstractions. …

  14. comment
    Comment #14849338

    The performance aspect also makes a huge difference in development. The application boots fast and the live reloading experience is rewarding. Having a 100 test cases that hit your…

  15. comment
    Comment #14762193

    The push to new technologies are not based solely on performance. Rust brings a type-safe and memory-safe guarantees. Elixir brings concurrency and functional concepts that lead to…

  16. comment
    Comment #14750809

    5 million concurrent users , connected at the same time, sending and receiving data through a persistent connection. Phoenix itself got 2 million on a single node: http://www.phoen…