Viewing profile — igorw
igorw
HN member- Joined
- Wed, Dec 08, 2010, 6:12 PM UTC
- HN karma
- 67
- Public activity
- 24 items
- HN profile
- View on Hacker News ↗
About igorw
No profile information was provided.
Recent public activity
-
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-...
-
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...
-
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
- story
- story
- story
- story
- story
- story
- story
- story
- story
-
comment
Comment #6839561
FYI, here's the follow-up post. https://igor.io/2013/12/03/stack-machines-shunting-yard.html
-
comment
Comment #6834433
Hi, author here. Shunting-yard is actually what the next post in the series will be about. ;-)
- story
- story
-
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…
- story
-
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…
-
comment
Comment #3200229
You've never tried to integrate two PHP projects, eh? As in: Whoops, you guys also have a class named "user"?
-
comment
Comment #3182718
API?
-
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…
-
comment
Comment #2691855
Next up: "text-align: centaur" ( http://textaligncentaur.com ).
-
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…