Viewing profile — rami3l
rami3l
HN member- Joined
- Thu, Jan 20, 2022, 8:02 PM UTC
- HN karma
- 52
- Public activity
- 20 items
- HN profile
- View on Hacker News ↗
About rami3l
No profile information was provided.
Recent public activity
-
comment
Comment #48250638
I was immediately reminded of this old piece on water quality issues and local politics... > An Enemy of the People [..] is an 1882 play [..] that [..] centers on Dr. Thomas Stockm…
-
comment
Comment #42745345
I've been playing around with Zig as a potential C alternative in my stack, and I think that it's pretty good at least for toy/learning projects actually. I especially like the way…
-
comment
Comment #40978610
The site's source code is already updated, but unfortunately the website itself is refreshed per Rustup release, so we might have to wait for a bit longer...
-
comment
Comment #40973200
Thanks for sharing the experience! At Rustup we're also getting ARM64 Windows-related requests recently, so I'm very curious about how well these machines actually do as a daily de…
-
comment
Comment #40595569
This reminds me of one issue that I've encountered at Rustup. Early versions of ARM64 Pi OS actually use a 32-bit userland. As a result, this has caused user complaints since our i…
-
comment
Comment #40138675
As a current Rustup maintainer with a bit of Ada background I gotta say: nice work! I do feel Ada as a language is way ahead of its time, but when I was learning it (a while before…
-
comment
Comment #39417979
Many thanks for this book! Think Python 2nd is the first book I've ever read in order to teach myself programming. Now I've come a long way to become an actual developer shipping r…
-
comment
Comment #38230765
Rust dev here. I really love the fact that most of the time people from the Golang community would like to say "look what I've made with Golang!" That's the sign of success: the us…
-
comment
Comment #36788109
I have also encountered this quite often. I'll say the ideal solution would be "postfix streaming methods" like `.filter` and `.map`. Unfortunately, Python doesn't have those (pref…
-
comment
Comment #36137875
The last time I gave F# a shot, I tried to write a simple Telegram bot in it. Just to test how much I would actually benefit from the .NET ecosystem, I chose to use a C# wrapper fo…
-
comment
Comment #36019906
Indeed, that has been a real problem, so now you can probably write `private Dictionary > road = new();`.
-
comment
Comment #35930560
Exactly. I recently started to write some LEAN which uses a ton of Unicode characters and I still use JetBrains Mono with ligatures on. ≠ is 1 unit wide but != is 2 units wide, so …
-
comment
Comment #35399175
As a PDM enthusiast for quite a while, I'm sorry to inform you that PEP 582 has been officially abandoned (which doesn't mean that it won't be revived someday, just not so easily).…
-
comment
Comment #34970283
Agreed. It seems to me that doctests (i.e. code examples in docs that also count as tests, common in Python and Rust codebases) can possibly cover parts of this.
-
comment
Comment #34594624
However the borrow checker is not only about new/delete, it also prevents other forms of reference invalidations (e.g. when holding a reference to a vector element while appending …
-
comment
Comment #33221718
With VSCode there doesn't seem to be such a technical limit. See: https://marketplace.visualstudio.com/items?itemName=sean10.m...
-
comment
Comment #33172001
* nain -> nvim
-
comment
Comment #33149580
I love to see that Helix tries its best to ensure an out-of-the-box experience, as well as to add so many interactive hints for key combinations (for example when you want to paste…
-
comment
Comment #30634074
Instead of enums, how about something similar to Scala's sealed trait syntax to tell the compiler that I'm actually doing a static dispatch?
- comment