Live data from Hacker News

Viewing profile — electrum

electrum

HN member
Joined
Sun, Sep 30, 2007, 3:36 PM UTC
HN karma
1,227
Public activity
276 items

About electrum

Software engineer. Co-creator of Trino (formerly Presto SQL).

https://trino.io/

https://www.linkedin.com/in/electrum

Recent public activity

  1. comment
    Comment #47806067

    Does Stage work for PRs that have multiple commits? These could be considered "stacked diffs", but in the same PR.

  2. comment
    Comment #45356999

    According to https://www.sfmta.com/getting-around/drive-park/how-avoid-pa... > During street sweeping hours, you may not park until the street has been physically swept.

  3. comment
    Comment #40305316

    You might be able to use FILE_FLAG_DELETE_ON_CLOSE, but this would likely require calling the Windows API functions directly.

  4. comment
    Comment #38824142

    Trino no longer depends on Hadoop/Hive for any of its data lake connectors. Removing that dependency was a huge effort.

  5. comment
    Comment #35024888

    Yeah, URL is from the first release of Java and should be avoided. You want to use URI instead.

  6. comment
    Comment #34866220

    tbgs is internal code search for Facebook: https://codesearchguide.org/story/facebook

  7. comment
    Comment #34303560

    JLine has a complete terminal library and includes a demo which is a full editor: https://github.com/jline/jline3

  8. story
  9. story
  10. comment
    Comment #28847935

    Procedures are very useful to enforce business logic in the database, rather than in the application. It’s like putting a higher level application-specific API on top of your datab…

  11. story
  12. comment
    Comment #28396090

    $49 for the device and data: https://blues.io/

  13. comment
    Comment #28260210

    The H2 embedded database has compatibility modes for other databases, which seems helpful for testing, but ends up being incompatible in various ways for anything non-trivial. You …

  14. comment
    Comment #26696872

    The Bing Maps Tile System has a similar projection system: https://docs.microsoft.com/en-us/bingmaps/articles/bing-maps...

  15. story
  16. comment
    Comment #26190567

    This is part of the IntelliJ IDEA platform, so all of the JetBrains IDE products have it. I don’t use it often, since I normally rely on Git, but it’s saved me several times after …

  17. comment
  18. comment
    Comment #25272511

    Even more confusing, the 404 on GET is caused by doing the HEAD when the object doesn't exist. Without the previous HEAD, the GET would usually succeed.

  19. comment
    Comment #25088940

    Tesla has a slider for the charge limit with 90%+ being designated as Trip and 50-90% as Daily. Even for a trip, I avoid charging above 90% because regenerative braking stops worki…

  20. comment
    Comment #24483959

    The indentation is removed at compile time, per the JLS: https://docs.oracle.com/javase/specs/jls/se15/html/jls-3.htm... > Incidental white space is removed, as if by execution of …

  21. comment
    Comment #24483831

    IntelliJ shows you exactly where the block starts, so if you have a line with less indentation (causing the entire block to start at that column), it is easy to spot.

  22. comment
    Comment #24476174

    This is common in home systems where you have a second power source like solar. Mine has markings like this: https://www.jadelearning.com/blog/pv-system-marking-and-labe...

  23. comment
    Comment #24369265

    Jdbi works the way you describe: https://jdbi.org/

  24. comment
    Comment #24002613

    That's not true for SMS-2FA, since text messages are often delivered to the device with the browser. Safari on both macOS and iOS will offer to automatically fill in the code recei…

  25. comment
    Comment #23983856

    This special encoding of the null character is Modified UTF-8 and is used by various Java and JVM APIs and in Java class files. https://en.wikipedia.org/wiki/UTF-8#Modified_UTF-8