Live data from Hacker News

Viewing profile — glic3rinu

glic3rinu

HN member
Joined
Fri, Jul 18, 2014, 11:40 AM UTC
HN karma
70
Public activity
34 items

About glic3rinu

No profile information was provided.

Recent public activity

  1. comment
    Comment #45061730

    Last year I bought a 4bay WTR PRO NAS with an N100. It idles at 13W, after some tuning (mostly putting drives to sleep after ~10min of inactivity). I briefly looked into TrueNAS/un…

  2. comment
    Comment #43902547

    What you are describing sounds precisely like your brain trying to do some emotional processing and you are shutting it down because you think it's not useful. If you are looking f…

  3. comment
    Comment #41479654

    I was wondering about that too. Compared to my peers I consider myself having a below average short term memory (not really good at raw computation power), but in contrast, I am pr…

  4. comment
    Comment #41014826

    you are assuming hidden costs, I am assuming hidden incentives. It’s not that they are stupid or incompetent, but bad incentives within the org can and do produce stupid outcomes.

  5. comment
    Comment #36936196

    Jim Keller himself talks about this a little bit here https://www.youtube.com/live/oIG9ztQw2Gc?feature=share&t=122... I think I've listen to asianometry (YT channel) talk about thi…

  6. comment
    Comment #36928780

    masks dont have the actual shape, but shapes accounting for wave interference patterns that will end up producing the final shape when EUV light passes through. I believe the proce…

  7. comment
    Comment #33711760

    Indeed, I recently built one for my old storage heater https://github.com/glic3rinu/SmartStorageHeater

  8. comment
    Comment #32143665

    I’ve always thought it might be PHP legacy of returning 200 even on critical errors. AFAIK Slack and FB APIs work like that, and they are, or have been, PHP based…

  9. comment
    Comment #28857515

    Building on the web form example given by the author, there is a lot of extra that one could do: Improve the design, improve user experience, improve performance, format/cleanup th…

  10. comment
    Comment #26747539

    vector clocks?

  11. comment
    Comment #26747532

    OP is talking about concurrent execution of the task without serialization on the database (serializable isolation is almost never the default). Which results in 2 concurrent queri…

  12. comment
    Comment #25060764

    when you say parallel you mean the work is distributed across multiple cores? e.g. multiple python worker processes. Or is all work running single threaded in a single process (con…

  13. comment
    Comment #23518124

    When I add autoreload functionality to my programs I just spawn a thread that checks for last modified date and then re-executes the program with os.execlp(sys.argv[0], *sys.argv) …

  14. comment
    Comment #22551046

    > Consider the incubation time of 5 days avg, 14 days max during which you're already infectious." I have seen several comments like this on this thread suggesting people are conta…

  15. comment
    Comment #22313556

    Then this talk from David Beazley will blow your mind https://www.youtube.com/watch?v=VUT386_GKI8

  16. comment
    Comment #21646734

    you missed the part when he says browsers do not send the bits after the hash character.

  17. comment
    Comment #21565380

    I do too, it’s quite easy to produce diagrams that look better than any modern diagram too. And things look exactly as you want.

  18. comment
    Comment #21490577

    A common solution is to wrap all code within a function. This way nothing gets executed until the last line, the one that calls the function, is executed. function main () { # all …

  19. comment
    Comment #21371887

    I wouldn’t categorize this as technical debt unless you’ve deriberatly choosen to implement the wrong abstraction first, to get the product out the door earlier, or some other shor…

  20. comment
    Comment #21263821

    The interpreter loads reasonably fast, takes around 20-40ms. And it's even faster if "import site on initialization" is disabled. But startup time increases an order of magnitude o…

  21. comment
    Comment #21256508

    I wouldn’t mind cpython performance improvements over language features. Specifically startup time. Py cli tools can easily take up to 300-600ms to start. Now, try to use them for …

  22. comment
    Comment #19651829

    By "state" I think OP is referring to an style of programming heavily based on global variables (global state). Function calls set global variables that the caller can read after. …

  23. comment
    Comment #18042912

    The C in there is for "Strong Consistency"; CAP allows for lessers forms of consistency, like "Eventual Consistency", without giving up on Availability.

  24. story
  25. comment
    Comment #17628777

    would be nice if plots scale according to terminal width, so they fit in the screen without line wrapping :)