Live data from Hacker News

Viewing profile — Tobu

Tobu

HN member
Joined
Sun, Jun 07, 2009, 4:45 PM UTC
HN karma
1,120
Public activity
520 items

About Tobu

No profile information was provided.

Recent public activity

  1. comment
    Comment #48385863

    Is there a list of CMD builtins somewhere?

  2. comment
    Comment #48385788

    In the case of find and sort, the command invoked also depends on argument sniffing, with a fallback through the registry when that is indecisive: https://github.com/microsoft/core…

  3. comment
    Comment #42964851

    The method is called `CoherentAllocation::into_parts`. And it takes self by value, which means the struct is consumed (this is implied by the into_ prefix). Of course you would eit…

  4. comment
    Comment #42899095

    > will they abdicate their power Yeah, no. This is a coup and they are all in. They would not be this blatant about taking control illegally and fast if they expected to leave any …

  5. comment
    Comment #42115006

    Looks like the Steam team moved to control spawning and do execvpe. I would like to see at least in-process environment modification discouraged. Rust is dealing with the issue by …

  6. comment
    Comment #42114860

    It is possible to check for setenv/unsetenv/putenv with nm -D, and a quick sample of my ~/.cargo/bin/* shows far too many programs using those. Yeah they could be single threaded, …

  7. comment
    Comment #41829345

    There's a proof of concept here: https://sinrega.org/2024-03-06-enabling-containers-gpu-macos...

  8. comment
    Comment #41546569

    There was indeed sabotage, in the form of dismantling and not replacing hundreds of working mail sorting machines in an election year: https://www.forbes.com/sites/andrewsolender/2…

  9. comment
    Comment #41079774

    I've had my own bad experiences with Btrfs (it doesn't behave well when close to full), and my intuition is that Facebook's use of it is in a limited operational domain. It works w…

  10. comment
    Comment #41079623

    fclones for example covers it well for any filesystem with reflinks: https://lib.rs/crates/fclones fclones group |fclones dedupe

  11. comment
    Comment #41079581

    > Error handling on CRC read error > 2 or more copies of file, CRC on error, read other copy, data returned to userspace, does not correct bad copy That's been implemented; in Linu…

  12. comment
    Comment #41044135

    The Into argument feels a little too magical. Since you are not constrained by a trait, I would prefer something like Span::add_with_reference(&self, other: &Span, reference: impl …

  13. comment
    Comment #40456059

    The other actress wasn't the only one involved in the production; she provided input but OpenAI building a voice model would involve a lot of data and input. They had to have a mod…

  14. comment
    Comment #40086776

    Emergency braking feels more like shoving the wheel forward than shifting oneself behind the wheel. You ignore balance for a while, get yourself into a sitting position fast, the s…

  15. comment
    Comment #39996649

    Adept -> Guru is the logical association

  16. comment
    Comment #38346488

    There are two level of pointers: the environment block points to an array of pointers to C strings, this higher-level pointer can be updated and the previous one freed, which is a …

  17. comment
    Comment #38346270

    Who doesn't? libc itself calls getenv when getting system time: https://news.ycombinator.com/item?id=38344224 You may have a mutex on getenv/setenv, like the Rust stdlib does, but …

  18. comment
    Comment #38091380

    kernel developers are free to factor in common functionality, calling into it library style, without making it into an externally visible layer. IIRC fs encryption and case insensi…

  19. comment
    Comment #38074054

    Of course bcachefs can cache data; that was the main draw of bcache as well. Quoting an example from https://bcachefs.org/GettingStarted/ bcachefs format /dev/sd[ab]1 \ --foregroun…

  20. comment
    Comment #37869413

    I think the word they were looking for is "fragmented".

  21. comment
    Comment #37657052

    I was thinking of that around the "stack-based interpreted language" paragraph. Mozilla's RLBox/wasm2c approach would be good for this, for example. Postscript can still mix data a…

  22. comment
    Comment #37509685

    Thank you! I couldn't find it last time I needed it (it was on a Heroku domain that went https://http.cat/status/404 )

  23. comment
    Comment #37335688

    404 is handled exceptionally inside the sequence, and for a while it was double-exceptionally possible to land on it through the random button: https://web.archive.org/web/20190328…

  24. comment
    Comment #37334604

    https://xkcd.com/2822/ -> https://datatracker.ietf.org/doc/html/rfc2822 Any other fun easter eggs in the XKCD counter? - https://xkcd.com/404/ 404s (obviously) - https://xkcd.com/1…

  25. comment
    Comment #35741553

    https://www.cvedetails.com/vulnerability-search.php?f=1&prod... finds quite a few: double free, array out of bounds, buffer overflows in the stack and the heap… There's also a form…