Live data from Hacker News

Viewing profile — ecaradec

ecaradec

HN member
Joined
Sat, Sep 05, 2009, 2:22 PM UTC
HN karma
1,263
Public activity
307 items

About ecaradec

Contact : emmanuel.caradec@gmail.com

Recent public activity

  1. comment
    Comment #46937085

    I would suggest "In the Mothers’ Land" from Élisabeth Vonarburg. It also talk about alternate society centered around gender. I didnt really liked the left hand of the night, but l…

  2. comment
    Comment #46185451

    When working with kanban I maintained a average number of card done per days. if someone asked when some card woud be done, I just multiplied the number of card ahead of that one b…

  3. comment
    Comment #41557295

    vscode has some code coloring extension but no code completion that I'm aware of. If you found one, please consider sharing it :). I would happily switch to another editor if one h…

  4. comment
    Comment #41553635

    Is there an text editor that is able to autocomplete the categories in hledger format ? It would be great to type Assets:: and then get a list of the possible categories, but I hav…

  5. comment
    Comment #40688649

    Yes I did. The result is perfect as far as I can tell. Not everyone is eligible to that method: you need to have enough space in your eye so that it is doable. So checking for that…

  6. comment
    Comment #40463859

    If you want to go further and go for rigid body dynamics and constraint, I found that series of blog post very useful: https://www.toptal.com/game/video-game-physics-part-i-an-int.…

  7. comment
    Comment #40235009

    Antivirus are really stupid tools, but not that stupid. I said that from a time where I had to work around tools flagged by antivirus. Among stupid things they do are flagging a pa…

  8. comment
    Comment #39984193

    A lot of the information here are present in the journal of Jordan Mechner which I found was a very interesting dive into the making of Prince of Persia including doubts and diffic…

  9. comment
    Comment #39500619

    Git blame -w -C -C -C would also keep author in case of moved lines

  10. story
  11. comment
    Comment #36402124

    Does anyone know if there are libraries for writing fakes ? I wonder why there is a lot of mock libraries but I know none for writing fakes.

  12. comment
    Comment #36402111

    Can you summarize what that good way look like for those of us that haven't read it ?

  13. comment
    Comment #36323382

    One trick I learned from https://craftinginterpreters.com/hash-tables.html is that you don't need an extra linked list for each bucket... But how do you handle collisions then ? Th…

  14. comment
    Comment #36186644

    What matter is not whether nuclear energy produce wastes, but how much waste and how manageable it is relatively to other sources of energy. If you look at nuclear only, then obvio…

  15. comment
    Comment #33729130

    Make uses timestamp, so if you checkout code or switch branches even if the files are the same, make rebuild them. Also when you switch branches the ccache cache still have copy of…

  16. comment
    Comment #32316797

    Actually there is two type of leave: Paternity leave and parental education leave. Paternity leave is 25 days for each parent with full pay usually. Parental education leave is up …

  17. comment
    Comment #31911226

    My understand is that having the copyright they have the right to acknowledge any copy happening even if it’s in a cache somewhere, on a wire somewhere. If you mount a drive remote…

  18. comment
    Comment #24802526

    I think it's more that people are not familiar with the formal presentation of the problem. I doubt many people would have difficulty understanding a less abstract statement: dog =…

  19. comment
    Comment #24208601

    It's interesting how different solving issues in a pixel sharer is.

  20. comment
    Comment #23974241

    I didn't see the purpose of it when I got told of the principle at school. The supposed control of error detection feel like a very vague benefit to me. Especially now with compute…

  21. comment
    Comment #23932258

    Http://agner.org is a good resource once you know the basics. It explains a lot of how microprocessors interpret instructions, caches, decoding, microinstructions. Assembler is not…

  22. comment
    Comment #23400504

    Start looking around 4 minutes from the start

  23. story
  24. comment
    Comment #23327855

    I just posted https://github.com/ecaradec/j86 today. Its a compiler for a mini language to optimized x86 assembly register. It does a few optimisations like register allocation and…

  25. comment
    Comment #23323993

    This is a project I start wanting to know how to best assign registers to variables. It grew from that and went into exploring things like SSA forms and constants propagation. It w…