HackerTrans
TopNewTrendsCommentsPastAskShowJobs

abrookewood

2,970 karmajoined 14 лет назад

comments

abrookewood
·позавчера·discuss
I game on Linux (have so for years) and the only thing I can't play is a few AAA FPS titles. Honestly not much of an issue depending on what games you play.
abrookewood
·позавчера·discuss
100% they look incredible.
abrookewood
·4 дня назад·discuss
Quick note to say that the article describing WHY you are different and why it matters was very well written. Congrats on the launch!
abrookewood
·5 дней назад·discuss
What is the process for adding different text? What are the limitations on that process? The demo is very cool by the way.
abrookewood
·5 дней назад·discuss
Am I right in thinking that Elm has lost a lot of momentum? It is barely discussed on HN anymore and I wonder if the releases/news have a lot to do with it. Look at the time between releases:

0.19.2 Faster builds, and the Road to Elm 1.0 Jul 2026

0.19.1 Friendly syntax hints, faster builds Oct 2019
abrookewood
·7 дней назад·discuss
This is such a ridiculous statement. The people who spent their time building up this body of work deserve to be compensated. Take whatever job you do and imagine people confidently stating that you should work for free.
abrookewood
·9 дней назад·discuss
Brilliant. Brutal.
abrookewood
·10 дней назад·discuss
Valve are one of the very few companies that I trust & respect. Of course, that could change ... which is why stores like GoG are so good as well (only sell DRM free games).
abrookewood
·10 дней назад·discuss
Yep, I love that stuff .. just crazy to think how it all came about.
abrookewood
·10 дней назад·discuss
That is way more comprehensible for me at least.
abrookewood
·10 дней назад·discuss
Hey, this is pretty cool and very fast. So there is no database? How do you handle the scraping etc? Do the businesses know you are doing this?

One thought, it might be good to list all of the products together,rather than only being able to view them by each business. Nice job :)
abrookewood
·11 дней назад·discuss
Yeah, that is pretty crazy. I wonder what it smells like? Has to be an enemy specific to that ant species right?
abrookewood
·17 дней назад·discuss
See above "if you're on Elixir, you can skip the separate process entirely and add it directly to your app's supervision tree - it runs inside your own app's process". About as lightweight as you can get.
abrookewood
·18 дней назад·discuss
I believe the term is Beg Bounties and they are constant and annoying.
abrookewood
·19 дней назад·discuss
Porn?
abrookewood
·24 дня назад·discuss
That is just madness. I think it is a good idea for people to periodically try other Operating Systems, but to be responsible for the design of an OS and not use it is just crazy.
abrookewood
·29 дней назад·discuss
Congrats on the launch. Using the Redis protocol was a pretty clever choice. Does it have to run as a stand-alone server?
abrookewood
·в прошлом месяце·discuss
Maybe, but I think they are handy for people who are trying to understand the language. I'd also congratulate you on writing them with such honesty.
abrookewood
·в прошлом месяце·discuss
Honestly, I think you're framing this incorrectly. Twitter, Airbnd and Shopify all managed to get massive using Ruby on Rails. Maybe that was part of the reason why? I.e. they were able to move fast and developers were happy.

I don't use Rails, so don't have any skin in the game. But who cares if you have to do a re-write once you get to that size?
abrookewood
·в прошлом месяце·discuss
There are two possible locations for comparison that I can see:

https://gleam.run/frequently-asked-questions/#Elixir Here’s a non-exhaustive list of differences:

    Elixir is gradually typed, while Gleam is fully statically typed.
    Elixir's type system does not have generics, while Gleam's type system does.
    Elixir has a powerful macro system, Gleam has no metaprogramming features.
    Elixir’s compiler is written in Erlang and Elixir, Gleam’s is written in Rust.
    Gleam has a more traditional C family style syntax.
    Elixir has a namespace for module functions and another for variables, Gleam has one unified namespace (so there’s no special fun.() syntax).
    Gleam standard library is distributed as Hex packages, which makes interoperability with other BEAM languages easier.
    Elixir is a larger language, featuring numerous language features not present in Gleam.
    Elixir has an official test framework with excellent support for concurrency, partitioning, parameterized tests, integrated error reports, and more. Gleam has no official test framework, but there are multiple community-maintained frameworks.
    Both languages compile to Erlang but Elixir compiles to Erlang abstract format, while Gleam compiles to Erlang source. Gleam can also compile to JavaScript.
    Elixir has superior BEAM runtime integration, featuring accurate stack traces and full support for tools such as code coverage, profiling, and more. Gleam’s support is much weaker due to going via Erlang source, resulting in less accurate line numbers with these tools.
    Elixir and Gleam both use Erlang's OTP framework. Both have additional modules for working with OTP, which provide APIs more in the style of each respective language. Both common use Erlang's OTP APIs directly, but Elixir can do so more conveniently and concisely due to having a less-strict type system.
    Elixir currently has superior deployment tooling, including support for OTP releases and OTP umbrella applications.
    Gleam’s editor tooling is superior due to having a more mature official language server, but Elixir has recently announced an official language server project which is in active development.
    Elixir is more mature than Gleam and has a much larger ecosystem.
    Gleam and Elixir compile at similar speeds due to using the Erlang compiler as their compiler backend. Elixir's macros are evaluated at compile time, so a program that uses macros will take longer to compile the larger the amount of work performed in macros. Gleam has no language features that result in slower compilation.
https://gleam.run/cheatsheets/gleam-for-elixir-users/ This has to much content to reproduce.