Live data from Hacker News

Viewing profile — igorw

igorw

HN member
Joined
Wed, Dec 08, 2010, 6:12 PM UTC
HN karma
67
Public activity
24 items

About igorw

No profile information was provided.

Recent public activity

  1. comment
    Comment #47320901

    While Postgres did introduce skip scan in 18, it only works for equality matching: https://www.crunchydata.com/blog/get-excited-about-postgres-...

  2. comment
    Comment #47192928

    Another approach is to record at a lower level and then reconstruct the series of events, eg.g. https://engineering.fb.com/2021/04/27/developer-tools/revers...

  3. comment
    Comment #46779251

    Random but y'all might enjoy. Git client in PHP, supports reading packfiles, reftables, diff via LCS. Written by hand. https://github.com/igorwwwwwwwwwwwwwwwwwwww/gipht-horse

  4. story
  5. story
  6. story
  7. story
  8. story
  9. story
  10. story
  11. story
  12. story
  13. comment
    Comment #6839561

    FYI, here's the follow-up post. https://igor.io/2013/12/03/stack-machines-shunting-yard.html

  14. comment
    Comment #6834433

    Hi, author here. Shunting-yard is actually what the next post in the series will be about. ;-)

  15. story
  16. story
  17. comment
    Comment #6059092

    Without knowing too much about docker, service discovery over dns-sd and potentially mdns (aka bonjour/zeroconf) generally works quite well in a contained private network. And I wo…

  18. story
  19. comment
    Comment #3227940

    The reason why `this` is set to the window is because of the way the `this` keyword is bound in JavaScript. It is bound at call time. If at call time it is being called on an objec…

  20. comment
    Comment #3200229

    You've never tried to integrate two PHP projects, eh? As in: Whoops, you guys also have a class named "user"?

  21. comment
  22. comment
    Comment #2936703

    Actually, phpBB 2.0.0 which was released in 2002 supported: IBM DB2, MS Access, MS SQL, MySQL3, MySQL4, Oracle... and Postgres 7. But you are right, many of the other popular proje…

  23. comment
    Comment #2691855

    Next up: "text-align: centaur" ( http://textaligncentaur.com ).

  24. comment
    Comment #2216156

    > In JavaScript, there are two different ways to define a function: using the function expression and the function declaration statement, the latter having subtle restrictions. Mov…