HN user

thecodedmessage

72 karma
Posts0
Comments57
View on HN
No posts found.

The way they’re using hard-fork and soft-fork, is that based on the blockchain usage of the words? If so, that makes it hard for me to take seriously!

Scrolling shitty cable is much less fun and therefore less addictive. It’s also not always available.

But both are terrible ways to spend your time and bad for your brain.

The word “method” already has a definition in Rust, which includes all intrinsic and trait methods. I feel like ‘dyn’ is relatively rarely useful and defining the term “method” based on what’s compatible with it is a bad idea.

“Ethics” for what is almost certainly an honest mistake with a reasonable diligence of research? Accusing someone of ethics violations should require more research than you’ve done!

Would you have found out about those earlier sources without Wikipedia? I think it really depends on how obscure they actually were. I’d take the fact that neither Wikipedia nor this article knew about these earlier sources in 2014 as evidence that they were pretty obscure.

This is a surprising take.

Linux as a project is the kernel. Unlike most OSes, the most commonly used libc is maintained separately. As a result, Linux the operating system is the one where it’s the most common and supported to avoid the “standard” libc because the kernel itself has a stable interface.

Yeah, I remember reading the code in the kernel that handles shebang a long time ago. ld.so is not involved.

Polars 3 years ago

The Rust docs are for some reason much worse than the Python docs, or at least that used to be the case

Polars 3 years ago

I mean, pretty high. What if your boss just tells you to learn polars, and you don’t know why? Saying what something is, is just good communication, and can help clarify for people who are confused.

I am literally asking whether this can run on DOS. It’s become clear that it can’t, and words mean things. Given the article is about running web servers literally on DOS, I think we can safely say it’s been brought.

Modern Windows command line is not DOS.

Reforming Unix 3 years ago

If at first you don’t succeed with a big company’s resources, try again as a hobbyist!

Nicotine (2016) 3 years ago

For the word “dangerous” to be appropriate, it needs to be established (1) that nicotine is bad for you or (2) that this introduction ever leads to smoking. Or are you just taking all the harms of smoking and applying them to nicotine because of cultural reasons?

Was Rust Worth It? 3 years ago

You know what slows me down in Python? The fact that you need to actually go down a code path to make sure you’ve spelled everything right.

But nothing that Rust does slows me down because I’m used to it.

The example is for the child process. The threads in Rust is meant as an implementation detail. This is super unclear and should’ve been explained.

The level of debt we have is fine, and we could have a lot more and still be fine. The idea that the debt is a number worth minimizing is just bad economics.

When property does not serve its purpose it is no longer morally binding, just legally. And that’s if you convince me proprietary code ownership has any moral standing at all. Sometimes, I follow the law not because it’s particularly the right thing to do but because I don’t want to get in any trouble.

C++ Papercuts 3 years ago

How do you represent state machines, ASTs, or messages of different types? Sum types are great for those! I assume you don’t use std::variant for that? Have you ever written a tagged union when std::variant was available for clarity? Why the tagging boilerplate?