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.
HN user
burch45
I have never heard of “material footprint” and from the definition it seems entirely worthless. The article doesn’t start with any reason why anyone would be interested in this measure, just that comment it is starting to show up in reports.
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.
That is the standard acronym for the course in American universities and has been for many decades.
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.
This is such a weird example. Doctors are a professions with artificial limits specifically to raise the income of doctors in the profession. There are no starving doctors because they don’t let enough people become doctors to lower the wage.
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.
The first sentence of the article explains that this is about management and strategic consulting.
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.
Theranos wasn’t a great idea or even a good idea. The “idea” was
1. Get a drop of blood 2. … 3. Cure all diseases
That’s not even an idea. It’s just magical thinking.
Undefined behavior to access the uninitialized memory. A sanitizer would have flagged that.
This is about go not Java. Go makes different tradeoffs and does not have moving multigenerational GC.
Alexander Hamilton oversaw an explicit program to steal technology from England. https://apnews.com/general-news-b40414d22f2248428ce11ff36b88...
I believe that is what is being referenced.
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.
Brave New World.
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.
I actually much prefer go ‘s runtime tooling. Pprof has everything I need built in; heap, cpu, blocking, mutex contention. And don’t need additional tools to visualize the collected data. https://pkg.go.dev/net/http/pprof@go1.24.0
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.
Waffle means something very different though in the U.S., to “flip-flop” on a position. Not hold it for any fundamental reasons. But I don’t think you can say that an LLM holds a position whatsoever. Also, https://en.m.wikipedia.org/wiki/On_Bullshit the essay originally popularizing the definition of bullshit considered here. Note the references to LLM output at he bottom.
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.
Parent is referring to https://en.m.wikipedia.org/wiki/Mandatory_access_control As opposed to https://en.m.wikipedia.org/wiki/Medium_access_control