HN user

burch45

79 karma
Posts0
Comments25
View on HN
No posts found.

Not just inefficient, it was a large scale industrial accident. A canal wall was breached and not repaired for two years and the runoff all collected in this low lying area. It’s a very odd place to visit now though for marketing reasons they tried to make it into a resort destination before it became a place you can only tolerate for a very short time.

This post’s conclusions are odd. It has a bunch of extensive benchmarks showing that zstd is by far the worst performing across every metric except a slight increase in compression ratio and then says the conclusion is zstd is the best choice. Unless I’m missing something in the data.

Its entire purpose is an optimization. You have an expensive operation. A bloom filter can tell you that you definitely don’t need to do that operation. So rather than wasting a lot of time unnecessarily doing that operation, you get the cheap Bloom filter Che most of the time and only occasionally have the false positive where you do the expensive thing when it turns out you didn’t need to. That as far as I am aware of is the only use case for a bloom filter. That said, I have used it for that purpose effectively several times in my career.

The main issue with a premix is like the article. It’s fit for a single purpose. I only make pancakes from scratch, admittedly I use baking powder and regular whole milk instead of buttermilk and baking soda. But the benefit is those staple ingredients can be used for all sorts of other recipes. I’m not going to bread chicken with Krusteaz. A premix can’t be adjusted either such as for altitude. Premixes and single use kitchen gadgets are areas where corporations really seem to have done a good job marketing that their products are more convenient than the readily available alternatives.

A big part of that is “I will save you X” is a non-starter. That is not making the business more money. If you have something that will actually make the business more money then they will go “Great if I pay you twice as much will it make me 2X?” and if the answer is yes, that will be a sale every time.

I think the false advertising does great disservice to Clair Obscur. It turns off people who don’t like turn-based combat and ends up disappointing people who do like turn based combat. I very nearly bounced from what is a great game because it was not at all what I was expecting with respect to combat.

Clair Obscur’s combat would be better described as dodge and parry based as that is the primary mechanic. In terms of lineage, the combat is much closer to PunchOut than Final Fantasy 6.

It’s really fun if that is what you are expecting though.

Yes. Very funny for the author to spend a lot of time talking about null hypothesis testing, but not actually running a control experiment to test the null hypothesis that his dice are actually different from the stock dice.

It’s the basic math of the funding bill. The amount required to continue operating does not equal the amount allocated for social security, Medicare or Medicaid. So no matter what anyone says about “not cutting” there will be cuts. Lawmakers have been asked about this repeatedly with no answers.

It’s not about “giving secret information to a foundry”. It’s entirely the field programmable (FP) feature. It’s also not really programmable in the sense that you would be sending in new instructions in realtime. Reconfigurable is a better word. So giving everyone an FPGA in their laptop isn’t really going help anyone in except some enthusiast who wants to try out some different algorithms.

This has been covered before but saying that Mars would be a “humanity guarantee” is actually extremely illogical, not the most logical. Short of the Earth getting blasted to tiny pieces in some way there is no scenario where Mars is more habitable than Earth. This is the sort of sci-fi Utopianism that this sober article is standing in opposition to. Mars may be the second most habitable place in the solar system and it’s infinitely less habitable than a nuked-out fallout-ridden earth or an overheated green house earth. There is no magic scenario where Mars suddenly ends up with a magnetosphere and an atmosphere.

Yes. This is exactly the sort of information you’ll find in Bill Cleveland’s books.l (referenced at the start of the article then somewhat dismissed later). Bill Cleveland did all these sorts of studies with actual users about which visualizations are most accurate and quickest to parse. He did tons of work at IBM studying this stuff because they needed to use effective visualizations to convey information to decision makers. Unfortunately most of the visualization discourse has been taken over by people like Tufte who focus on style rather than measurable substance.

Branching is different instruction paths, so it requires reading the instructions from different memory that causes a delay jumping to those new instructions rather than plowing ahead on the current stream of instructions. So a conditional jump is a branch but a conditional move is just an instruction that moves one of two values into a register but doesn’t affect what code is executed next.