Live data from Hacker News

Viewing profile — markus2012

markus2012

HN member
Joined
Mon, Apr 09, 2012, 7:44 PM UTC
HN karma
169
Public activity
73 items

About markus2012

No profile information was provided.

Recent public activity

  1. comment
    Comment #12689855

    If you follow the best practices for using Cargo you don't have a Cargo.lock file for libraries. This means your library tests will not be deterministic. Using the Cargo.lock file …

  2. comment
    Comment #12686359

    Well, now you can do that in Cargo as well :-) What we do currently is we lock everything to an explicit version - even libraries. At least it's possible to get deterministic build…

  3. comment
    Comment #12616483

    I built myself a setup like this a few years ago. Everything about it seemed glorious - but I soon started having trouble with the back of my head. I never noticed how heavy my hea…

  4. comment
    Comment #12564773

    I haven't read anywhere that they failed. Isn't the timeline: - Akamai mitigates attack just fine - After the attack is over, Akamai does the cost/benefit analysis and decides to s…

  5. comment
    Comment #12483572

    The first day in radar class the instructor put a piece of steel wool in front of a small dish and it instantly melted white and dropped molten metal onto the floor. It always made…

  6. comment
    Comment #12351799

    I think it's an inside joke: 2 people bet each other a dollar they could take a fundamentally simple concept and wax poetic insanity around it until the text was so insane no one c…

  7. comment
    Comment #12315721

    Amazing Rust announcements (core and third party) have been coming in constantly for quite a while now. So much win.

  8. comment
    Comment #12189186

    Yeah, I can't help but feel like I'm just 'walking the spreadsheet'. I do find helping my kids to 'save the world' is still enjoyable! Losing to my 12 y/o daughter at Rocket League…

  9. comment
    Comment #12149381

    As part of a recent project I had to: - build an AST from a large and complicated DSL - transform the AST into something that could be compiled into a DSO. I chose to write both pa…

  10. comment
    Comment #12149260

    Your 8-bit adder will have to wait ~225 CLKs (possibly x 2) to get the data it needs to add. Add a ton of transistors to intelligently prefetch and cache will in some cases decreas…

  11. comment
    Comment #12064588

    Where I work client auth is used for a good (and growing) number of internal services. Client auth is simple to use - our internal services are given the username from the CN, whic…

  12. comment
    Comment #12030855

    I'm just now completing a rather large event-driven system in Rust. It's also callback-based and has to interoperate with C. I do struggle with the ownership rules sometimes but it…

  13. comment
    Comment #12012826

    I quit doing the survey when I read the color question. If you had worded it something like, 'do you feel welcome' I would have answered (yes) and kept going.

  14. comment
    Comment #11911148

    So... build more detectors and pinpoint the direction the gravity wave is coming from?

  15. comment
    Comment #11827061

    Memory is terribly expensive and I have to fight all of the other developers/product folks/upper management for every byte in my environment (hundreds of thousands of servers). I h…

  16. comment
    Comment #11771051

    I wonder if times are changing again. It just seems that meeting vendors or walking down the street for resistor strips is no longer necessary. Rationale: you now just need to bulk…

  17. comment
    Comment #11568434

    Incredibly impressive! I solved this. The center required all of my soldiers to be maxed out, and all of them carrying lasers. Iirc... it feels like several lifetimes ago... I'd gi…

  18. comment
    Comment #11176689

    What about for using it as a headless browser with javascript and Rust manipulation of the DOM? We have a http proxy that would like to analyze html responses and rewrite parts of …

  19. comment
    Comment #11101214

    I've always felt that if I had done all of my calculus with Mathematica I would have left college with an excellent grasp on how to use higher level functions provided by Mathemati…

  20. comment
    Comment #11075325

    I randomly lie about my gender, age, and anything that could be used to identify me. I learned this from others, and have also encourage my spouse/children/etc. to do the same (whi…

  21. comment
    Comment #10889097

    Related: we're wondering how to use Rust because currently all non-Rust dependencies in our org are pulled from: - corporate source code control systems - corporate central reposit…

  22. comment
    Comment #10547467

    Ok, just to summarize: foo(some_struct) == memcpy() for both copy and move. foo(&some_struct) == copy usize ref/pointer value onto stack So, mostly the same as C++. The exception i…

  23. comment
    Comment #10546604

    Here's something I find confusing about Rust references/borrowing. Please correct me: The '&' character does not seem to mean 'pass by reference' ala C++ - it simply means borrow. …

  24. comment
    Comment #10450932

    I completely agree. unwrap() is a huge mistake in Rust. There are brilliant ideas implemented in Rust (primarily the borrow checker) but their advantages seem to be wiped out by th…

  25. comment
    Comment #10379780

    What bout HSAIL / LLVM: https://github.com/HSAFoundation/HLC-HSAIL-Development-LLVM (HSA Intermediate Language LLVM support) It would seem an IR is already available and it's alrea…