Viewing profile — shereadsthenews
shereadsthenews
HN member- Joined
- Thu, Jan 03, 2019, 5:49 AM UTC
- HN karma
- 2,268
- Public activity
- 514 items
- HN profile
- View on Hacker News ↗
About shereadsthenews
No profile information was provided.
Recent public activity
-
comment
Comment #20319308
There's a zillion things you can estimate this way. A lot of sites use sequential cookies, user IDs, etc. Until about a decade ago UPS tracking numbers were sequential for each shi…
-
comment
Comment #20316000
It's also pretty similar to `perf timechart`
-
comment
Comment #20313050
RE2 state graphs are not generated at compile time.
-
comment
Comment #20312997
The code of conduct is the #3 and #4 point of the Linux developer documentation. https://www.kernel.org/doc/html/latest/process/index.html
-
comment
Comment #20312967
Seems like for C++ builds you are always going to want the most cores for the money, even if the single core performance is a little worse.
-
comment
Comment #20309842
True, Intel's part numbering scheme has passed beyond all reason. Think about the i9-9900K/KF. Existing SKU, in stock at Newegg for $479. You don't get quite as many cores but you …
-
comment
Comment #20309451
The 9980XE is just a really large/fast Skylake CPU. Skylake is years old. If you wanted this level of performance from Intel you could have ordered the Xeon Gold 6154 way back in 2…
-
comment
Comment #20308426
Slack was also hard down 8 hours ago and been intermittently degraded since. https://downdetector.com/status/slack
-
comment
Comment #20298774
These railguns also have synchronized pulsed power systems that are quite complex. The University of Texas has been researching this stuff for decades. Here's a simple paper I Goog…
-
comment
Comment #20297993
In the West most "ranchers" are just running herds on BLM leases. It is not "their property" by any definition. By contrast virtually all ranches in Texas are on private holdings.
-
comment
Comment #20295568
Article doesn't indicate the road is private. How do you know? As a backcountry motorcyclist I'm accustomed to coming upon roads that are "private" because some rancher decided to …
-
comment
Comment #20290445
Alternate title: Until recently Brave was orders of magnitude slower than other blockers.
-
comment
Comment #20281402
Is that true across the nation? I know California isn't the whole energy market but their renewable energy mix is solar, hydro, fission, wind, geothermal, and biomass in that order…
-
comment
Comment #20281339
Chandler is as related to the person responsible for putting musl in Fuchsia as are any two randomly selected software developers from anywhere in the industry. Having to disqualif…
-
comment
Comment #20280669
That can’t really be the reason because SF has approved numerous such mergers and expansion of gigantic single-family structures and they steadfastly forbid subdivision of building…
-
comment
Comment #20280650
It isn’t city policy to prevent such mergers but it is city policy that you must get a permit for such a merger before actually doing it.
-
comment
Comment #20280476
Nobody would care except Peskin makes it his business to tell everyone else what they can’t do with -their- property.
-
comment
Comment #20276904
The amazing part is how they serve you the full content of the article but then fail to serve their javascript that would allow you to SCROLL DOWN and read it.
-
comment
Comment #20276882
When Pro Camera Rental still existed in SF, you left a deposit of the full value of the hardware you were renting.
-
comment
Comment #20266778
Sure. In this specific case of a kv store it's hard to imagine how to simplify it dramatically from protobuf. As a proto you might have: tag-length-key-tag-length-value. Instead yo…
-
comment
Comment #20266434
For simple protocols protobuf decoding has no taken branches. I.e. if you only use the first 15 field numbers (all your tags are 1 byte) and if all the types are the expected types…
-
comment
Comment #20266000
If you knew your keys were uniformly distributed you would never use a varint encoding to store them because you'd stand a very high chance of encoding them into a field longer tha…
-
comment
Comment #20265572
I find this chart by age and cohort to be a bit more illustrative. https://imgur.com/gallery/UZVEt
-
comment
Comment #20265492
Current USA antitrust doctrine dates from the 1970s.
-
comment
Comment #20264787
Encoding an image as a repeated sequence of variable-length integers would obviously be a poor choice.