Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
shereadsthenews
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
7 ms
·
1.
▲
by
shereadsthenews
7y ago
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 shipper which made it trivial to estimate output for onli
2.
▲
by
shereadsthenews
7y ago
It's also pretty similar to `perf timechart`
3.
▲
by
shereadsthenews
7y ago
RE2 state graphs are not generated at compile time.
4.
▲
by
shereadsthenews
7y ago
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
5.
▲
by
shereadsthenews
7y ago
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.
6.
▲
by
shereadsthenews
7y ago
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 get a lower price and higher single-core per
7.
▲
by
shereadsthenews
7y ago
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 2017. It seems fair to call this a 2-year-old part. A
8.
▲
by
shereadsthenews
7y ago
Slack was also hard down 8 hours ago and been intermittently degraded since. https://downdetector.com/status/slack
9.
▲
by
shereadsthenews
7y ago
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 Googled up https://apps.dtic.mil/dtic/
10.
▲
by
shereadsthenews
7y ago
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.
11.
▲
by
shereadsthenews
7y ago
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 hang a sign but in reality it's a
12.
▲
by
shereadsthenews
7y ago
Alternate title: Until recently Brave was orders of magnitude slower than other blockers.
13.
▲
by
shereadsthenews
7y ago
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. It's true that non-hydro, non-solar sources are
14.
▲
by
shereadsthenews
7y ago
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 disqualify someone from moderating a mailing list based on the union
15.
▲
by
shereadsthenews
7y ago
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 buildings no matter how large into duplexes in the vast majority of
16.
▲
by
shereadsthenews
7y ago
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.
17.
▲
by
shereadsthenews
7y ago
Nobody would care except Peskin makes it his business to tell everyone else what they can’t do with -their- property.
18.
▲
by
shereadsthenews
7y ago
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.
19.
▲
by
shereadsthenews
7y ago
When Pro Camera Rental still existed in SF, you left a deposit of the full value of the hardware you were renting.
20.
▲
by
shereadsthenews
7y ago
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 you could store the key and value lengths in host form
21.
▲
by
shereadsthenews
7y ago
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, and if all the variable-length items are < 128 bytes l
22.
▲
by
shereadsthenews
7y ago
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 than a primitive integer. A varint can only hold 28 bits
23.
▲
by
shereadsthenews
7y ago
I find this chart by age and cohort to be a bit more illustrative. https://imgur.com/gallery/UZVEt
24.
▲
by
shereadsthenews
7y ago
Current USA antitrust doctrine dates from the 1970s.
25.
▲
by
shereadsthenews
7y ago
Encoding an image as a repeated sequence of variable-length integers would obviously be a poor choice.
26.
▲
by
shereadsthenews
7y ago
I don't know but how does complaining that it takes a microsecond to encode 256 random numbers lead to the conclusion that remote KV caches are unworkable? That's just a non sequitur.
27.
▲
by
shereadsthenews
7y ago
I think it's irrelevant. In fact the protobuf might be the best choice. If it was just defined as so: bytes key = 1; bytes value = 2; ... your overhead can be as little as 4 bytes and you can alias the memory of the key and
28.
▲
by
shereadsthenews
7y ago
An interesting take. When borg was written the main machine class was dual-dual-core opteron. Now I imagine the typical borglet has dual Haswell or Skylake CPUs with I guess between 40 and 88 cores. Do you think (or do you have data that
29.
▲
by
shereadsthenews
7y ago
Yeah, the only thing we can really learn from this paper is that the authors aren't very familiar with protobuf. Anybody who claims it takes 10 microseconds to decode a 1KiB protocol message is either intentionally constructing the wor
30.
▲
by
shereadsthenews
7y ago
I have some real beefs with this paper. Their number about how long it takes to encode or decode a protobuf is wrong and misleading. It seems to be based on this benchmark[1] which encodes a huge repeated int32 stuffed with random numbers
More ›