Viewing profile — lukesandberg
lukesandberg
HN member- Joined
- Wed, Apr 29, 2009, 4:46 AM UTC
- HN karma
- 397
- Public activity
- 240 items
- HN profile
- View on Hacker News ↗
About lukesandberg
Recent public activity
-
comment
Comment #46784526
interesting. we had some reports like this of 'stuck errors' when filesystem caching was still very experimental, or back before we achieved 'stable' status. What version was this …
-
comment
Comment #46784475
We have invested a lot in webpack loaders which unblocked manmy ecosystem plugins. We don't particularly plan on creating a rust plugin API, when we do provide one it will be JS or…
-
comment
Comment #46784408
it is true that our plugin story is not fully fleshed out. We have good support for webpack loaders and have observed that that solves many (though not all usecases). This of cours…
-
comment
Comment #46784384
`fs` dependencies like that have caused issues before. the solution is typically something like ``` turbopack: { resolveAlias: { fs: { browser: './empty-module.js' }, }, }, ``` so …
-
comment
Comment #9715901
Is it? Isn't the bakery algorithm a demonstration of how to build a lock, not how to coordinate multiple locks?
-
comment
Comment #9715883
Which is why the maxim "don't hold locks while calling untrusted code" exists. Holding a lock while invoking a callback is extremely dangerous. Some situations demnd doing this (bu…
-
comment
Comment #8993156
And @shithnsays https://twitter.com/shit_hn_says
-
comment
Comment #8848668
This is most likely due to a script screwing up. A lot of these companies retain companies that specialize in filing these requests (see: www.google/com/transparencyreport/removals…
-
comment
Comment #8848636
http://www.google.com/transparencyreport/removals/copyright/... That page shows all the dmca requests to google that target github.com. Wicked pictures shows up in a number of requ…
-
comment
Comment #7870564
It's been a while since i have written c# but wouldn't a closer/fairer comparison have been to use the fluent methods? e.g. instead of var result = from p in numbers where p you co…
-
comment
Comment #7756046
what would a reasonable criteria be? Should the EFF create criteria that could only be met by criminals? The main issue with the gag orders that people are concerned about is not t…
-
comment
Comment #7756020
> Nearly all the data requests that people are concerned about have been coming with gag orders attached. citation? most data requests are run of the mill subpoenas (in non-crimina…
-
comment
Comment #7680145
to do that, wouldn't you have to look at every byte just to detect the runs of 0s, that would mean that you have to pull the whole file through the memory hierarchy of your system …
-
comment
Comment #7644286
They did try that, it was called OpenSocial ( http://en.wikipedia.org/wiki/OpenSocial ).
-
comment
Comment #7520355
how does the stock split affect income? afaict it is purely about governance
-
comment
Comment #7502040
I seriously doubt that threes was born in a vacuum. Threes was surely itself modeled after other games (mahjong comes to mind, though i'm sure there are better examples). To claim …
-
comment
Comment #7501998
...which just proves that 2048 had a better strategy.... price and platform are a major component of marketing
-
comment
Comment #7127971
fyi: abril uno (April 1st) appears to be a spoof news website like the onion
-
comment
Comment #6923102
The same thing that prevents sites from shipping sites that only support particular browsers today.
-
comment
Comment #6277988
There is a rounding formula that should make it possible to implement efficiently in inexact floating point arithmetic. (I think knuth gives a solution in TAOCP). Also, depending o…
-
comment
Comment #6277610
I think he was saying that this is a case of Hanlon's razor[1]. i.e. this situation could be easily explained by simple api churn (and the fact that the OP was using an undocumente…
-
comment
Comment #6276919
I was a little disappointed that he didn't point out that there is an O(1) formula for fibonacci numbers. http://en.wikipedia.org/wiki/Fibonacci_number#Closed-form_ex...
-
comment
Comment #5804673
Unions are typically only a good idea when an individual has no bargaining power in a negotiation with an employer, which is typically because it is an unskilled or low skilled job…
-
comment
Comment #5762793
Even if EV is the way everything should be going it doesn't mean that the current set of government incentives that Tesla is taking advantage of is the best way to get there. We sh…
-
comment
Comment #5499202
seeing as this is node you won't need a lock (and since it is single threaded there are no cross thread visibility issues). What you do need is a state variable that indicates if t…