Live data from Hacker News

Viewing profile — mdellavo

mdellavo

HN member
Joined
Sun, May 15, 2011, 12:28 AM UTC
HN karma
320
Public activity
104 items

About mdellavo

[ my public key: https://keybase.io/mdellavo; ]

Recent public activity

  1. comment
    Comment #39952863

    Using stimulants prescribed for ADHD to have extra pep in your step is drug abuse - just sayin. You see this a lot with adults taking stimulants for ADHD.

  2. comment
    Comment #37910012

    One suggestion to the authors - every serious codebase I've ever worked on had their own set of linters and plugins for whatever linter they were using. How do I extend Ruff? Can I…

  3. comment
    Comment #37909964

    it's version 0.x - breakages are expected

  4. comment
    Comment #35474029

    It's not an open standard but the JVM spec is publically available and intended for multiple implementations https://docs.oracle.com/javase/specs/jvms/se8/html/

  5. comment
    Comment #30780661

    sure but three days in a row?

  6. comment
    Comment #30711382

    simply rendering tables - most of the (python) pdf generation libraries I evaluated a few years ago all had the same limitations (reflow is hard) around laying out large multipage …

  7. comment
    Comment #30710899

    How well does this handle large tables that span pages? That seems to be a key differentiator for most PDF libs I sampled. I'd assume this works well if it's coming from Chromium

  8. comment
    Comment #30685537

    you can pick a alternate browser on IOS and as I said - it was multiple instances Go in your google/android settings and make sure location tracking is off - come back and tell me …

  9. comment
    Comment #30685032

    It's pretty much BS like that that had me switch to IOS after years on Android.

  10. comment
    Comment #30632413

    Why would some be branded damaged because they have knowledge of a tool? That's ludicrous. I've used many databases including mongo. They are all tools like any other with pros and…

  11. comment
    Comment #30428261

    hmm didnt this happen once before after a long weekend?

  12. comment
    Comment #30418257

    fully typed? it used dicts for queryinb - should maybe look at sqlalchemy for comparison

  13. comment
    Comment #30379220

    browserpass is the killer addon for pass - just calling it out

  14. comment
    Comment #30379206

    I typically use the generate pass command to generate a new password - that isnt in history

  15. comment
    Comment #30379193

    browserpass for the pass password manager does this

  16. comment
    Comment #30376343

    https://www.passwordstore.org/

  17. comment
    Comment #30296892

    what about applying a GIN index on the JSONB?

  18. comment
    Comment #30295681

    EAV is a pattern you can easily roll out - https://docs.sqlalchemy.org/en/14/orm/examples.html#module-e... Another commenter illustrated some of the issues you will run into with t…

  19. comment
    Comment #30293226

    Are you unrolling the nested JSON data structures and storing as traditional K/Vs in an EAV pattern? Possibly using one table for each datatype or using a sparse table? I'd be curi…

  20. comment
    Comment #30073119

    I was taking Armodafinil for a bit and this was my experience - it was too strong and would lead to insomnia for me.

  21. comment
    Comment #29733430

    people were without power for over two weeks after hurricane Sandy - no unrest

  22. comment
    Comment #29486936

    It seems to be to be a misrepresentation to call this a mongodb alternative.

  23. comment
    Comment #28781076

    if you delete the key - the data is effectively gone

  24. comment
    Comment #28316660

    SQLModel is brand new? why not just use sqlalchemy which is more mature?

  25. comment
    Comment #28315621

    optimistic locking is a useful technique that seems unfamiliar to many - it's worth looking into