Live data from Hacker News

Viewing profile — mmstick

mmstick

HN member
Joined
Tue, Dec 27, 2016, 10:14 PM UTC
HN karma
178
Public activity
136 items

About mmstick

No profile information was provided.

Recent public activity

  1. comment
    Comment #22674892

    Not if the gigabit ethernet adapter is also a USB3 hub, like so: https://www.amazon.com/USB-Ethernet-Splitter-HUB-Network/dp/...

  2. comment
    Comment #22672118

    They sell high end Linux systems, and maintain the Ubuntu-based Pop!_OS Linux distribution. The Lemur Pro — and other Intel-only laptops — are running open source firmware develope…

  3. comment
    Comment #22670510

    Options like so exist: https://www.amazon.com/USB-Ethernet-Splitter-HUB-Network/dp/...

  4. comment
    Comment #22668317

    You can purchase a USB3 to 1G ethernet adapter for $10.

  5. comment
    Comment #21301094

    Do you support the 19.10 release? The inability to compile or package every version and variant of TF, and GCC9 conflicts with both the CUDA SDK and Tensorflow, is precisely why we…

  6. comment
    Comment #19489230

    It did not have serious memory bugs. All of the unsafe code in Redox, of which only a small fraction is unsafe, is neatly compartmentalized so that it's easy to audit.

  7. comment
    Comment #19489199

    Having written Rust code for 4 years, I'd say it's not the biggest feature of Rust. It's just one of many good points. Among my favorite are the explicit & rich APIs, high level co…

  8. comment
    Comment #17040349

    He was given a notification by System76 back in January that we were busy with moving into the new warehouse, hardware testing, and developing our 18.04 release. Getting our firmwa…

  9. comment
    Comment #16784299

    Rust doesn't have a runtime, so there's no runtime code to ship in the first place. It's as low level as C, but with a modern syntax and accompanying core and standard libraries. T…

  10. comment
    Comment #16784281

    We've already thrown away POSIX compatibility. Linux isn't POSIX. Mac OS X isn't POSIX. Windows isn't POSIX. POSIX only continues to exist in varying degrees at different times.

  11. comment
    Comment #16784276

    Although, a lot of us are working towards replacement of C in a lot of areas. Being able to say you've written something in Rust is one thing, but having the whole stack Rust all t…

  12. comment
    Comment #16102176

    I landed a job w/ Rust, and the programming challenge I was given was a simple C programming challenge to implement a parser to parse gzip headers, to which I did it in both C and …

  13. comment
    Comment #15918839

    He's referring to how the language and it's ecosystem will evolve from this point forward in comparison to the C++ ecosystem. In addition, the programs that are there should be jus…

  14. comment
    Comment #15805125

    It doesn't really matter that Mozilla's a small organization. All they had to do was provide strong leadership and management expertise, and entice the open source community to vol…

  15. comment
    Comment #15800532

    You can mix them if you take your Options and convert them into Results with the Option::ok_or(E) method. do_this(x).ok_or(CustomError::ThisError)?;

  16. comment
    Comment #15800477

    I personally went from Go (slightly mingling with it) -> Rust 1.0 (wrote my first applications with it) and found it to be incredibly easy to learn in comparison to C, C++, Java, a…

  17. comment
    Comment #15800436

    What's funny is that if you ask different people the same question about Rust's selling point, you'll get a different answer most of the time. Rust has a lot of features, and it's …

  18. comment
    Comment #15621046

    Sounds like what you want is more along the lines of the Ion shell[1], rather than Elvish. It's written in Rust, and the performance well exceeds Dash (written in C), despite havin…

  19. comment
    Comment #15300418

    If you have ideas, then you should pitch them on the corresponding GitHub projects.

  20. comment
    Comment #14877582

    Here in Northern Virginia, near the DC area, it was so hot that winter never came. Grass, bushes and trees were still green during winter. It didn't snow this year. And it's been i…

  21. comment
    Comment #14827755

    The more experience you gain with Rust, the less you fight against the compiler, and the less you'll opt for the unsafe keyword. Fighting the compiler is just something that happen…

  22. comment
    Comment #14827744

    You should use crossbeam for #1. And as for strings, I wouldn't think of them as duplicate types any more than u32 and &u32 are duplicate types. They are semantically the same. Ref…

  23. comment
    Comment #14814907

    > You say that, yet you're still running a ton of software written in C and C++. Nice assumption. Much of the software I use is actually implemented in Rust. And soon, I'll be usin…

  24. comment
    Comment #14814888

    Rust refactor times are significantly faster than C++, and solutions can be implemented and deployed to production at a much faster rate, without the need to wait for Coverity scan…

  25. comment
    Comment #14814794

    It seems that you have a very misguided view of what Rust offers to the table. The main selling point of Rust is not safety. Safety is just a side effect of lowering the bar to ach…