Viewing profile — remkop22
remkop22
HN member- Joined
- Thu, Jul 14, 2022, 11:30 AM UTC
- HN karma
- 70
- Public activity
- 21 items
- HN profile
- View on Hacker News ↗
About remkop22
No profile information was provided.
Recent public activity
-
comment
Comment #41254738
Quantum number of dependencies for the uuid crate? By default it actually has none. If you were to enable the `v4` feature, it only pulls in `getrandom` for platform independent rn…
-
comment
Comment #37743376
You could make the exact same argument for something like git. Yet everybody would be totally fine if their remote/origin is down for a couple of hours. Offline support is about br…
-
comment
Comment #36740757
Lovely. > This page is copyright 2005 by Graeme Cole. What are you allowed to do with it? Pfft. Anything within the realms of common sense, really. I don't want to prescribe rigidl…
-
comment
Comment #36223944
I would make a distinction between managing memory (malloc, free) and then subsequently handling said memory in a safe manner. The first part Rust does for you. The second part you…
-
comment
Comment #36223698
Literally the whole point of rust is to not do manual memory management and let a compiler handle that for you.
-
comment
Comment #36188065
Don't forget python and c++
-
comment
Comment #36187876
I'm not sure what the relevance of your example is regarding your question. Aside from that, how did you come the to the conclusion that the second project is 'lacking when it come…
-
comment
Comment #36162795
I immediately closed the tab away as soon as it asked if I was sure.
-
comment
Comment #36102326
Probably some variation of WBNTH? (would be nice to have)
-
comment
Comment #36076101
This hits home. Manytime have I come to appreciate a library or technology only after delusionally attempting to create a 'better' version. Mid attempt I actually start to understa…
-
comment
Comment #35476303
It's not just about upsetting the other person, it's more about the end goal. If the end goal is to express superior knowledge, do strike down your hammer of truth. But if the end …
-
comment
Comment #35445518
I would gladly use it
-
comment
Comment #35437317
Using ballast in port operations is significantly different then using ballast while sailing especially for offsetting a non static moment. Container vessels are designed to sail a…
-
comment
Comment #35332270
Exactly. Compiler developers wrote the logic for the errors you see, they (mostly) have the knowledge to explain the error, why do we need a language model trained on all this deri…
-
comment
Comment #35319204
Firstly I think the most important thing in engineering is nothing is free. If you change a parameter in your design something else has got to give. If you increase the cargo capac…
-
comment
Comment #35318516
This exactly. There are many ways to remodel a bathroom. Some more optimal than others. Now imagine your plumber tells you he discovered a better layout for the plumbing just after…
-
comment
Comment #35318377
What ever model works for a group of people producing software I'm fine with. But as someone else said in this thread: If the question is more about who provides the estimate and l…
-
comment
Comment #35318126
We're performing applied mathematics, but we're performing that task as engineers. The key is in 'applied'. Going from theory to practice takes planning and is not as unbounded as …
-
comment
Comment #35317926
As someone who moved from a practical engineering field into software engineering, this separation in tasks between management and developers seems weird. Engineering in general is…
- story
-
comment
Comment #32094595
Rust actually accomplishes this with the unit '()' type which is similar but not the same as void in other languages. Any statement (or expression) produces a value, sometimes that…