I'm stating that LLM models are not capable of predicting the consequences of their actions which makes in inept with spacial and temporal understanding of the environment state.
I like the Rubik's Cube because it is a harness that helps me try to develop a prompt to get reasoning models to reason about the consequence of an action.
Just run in the console window=null and you are good. It is valuable service until the websites get their shit together and finally fix their payments model.
False, if you're printing PLA or something sure, but you can print all sorts of exotic fiber reinforced materials, and maybe if you're clever enough you can even use the anisotropy of the print to give you extra strength in the relevant directions. I'm not claiming that it's possible to 3D print noctua quality fans, especially on consumer FDM machines, but I think "inability to find a rigid enough material" is not going to be the failure mode, at least not on it's own. I could believe "inability to find a rigid enough material that can also get the required surface quality".
One of the first things mentioned on that page is:
> To protect our intellectual property, certain features – such as fan impeller geometries – have been slightly modified while remaining visually very close to the actual product.
So you do have to 3d scan them yourself if you're trying to print a copy.
Depending on what printers you have available I'll put in the work to get you a ~0.02mm deviation scan of a blade off a 120mm noctua fan I broke. I expect it to under-perform notably due to the surface texture and the lack of rigidity under load causing contact with the shroud walls at high RPMs, but I wouldn't bet my lunch on it, would be fun to find out.
It really does not have any chance to help. Golf ball dimples don't like magically make the thing better at air, if they did don't you think you'd see these sorts of features on fans or other airfoils to begin with?
You want dimples to create turbulent air that stays attached for longer, this INCREASES skin friction but since the golf ball is a bluff body it's friction losses are dominated by form drag, not skin friction. Putting dimples on a wing will drastically lower it's lift to drag ratio (which could in some cases be desirable, but it will absolutely not make the wing more efficient).
Of course all of this is moot anyway because the dimples need to be tuned to the Reynolds number you're expecting to operate at. Random surface imperfection wouldn't help even if it could help, which it can't.
If the only people openly caring about the future of Europe are the Hugo Boss fans, then all the people caring about said future will go to them.
If the far right are the only people with sane immigration and asylum policies, I have no choice but to vote for them, even if I disagree with everything else they preach.
Monads are popular for side effects because they have an implicit notion of sequencing, so evaluating a monadic expression enforces the sequence of operations. Works out nice for IO and Futures and so on. But List is also a monad, and flatMap (as many other languages call it) doesn't inherently have any side effects at all. Same goes for Maybe/Option (essentially a list of zero or one element), and State (which does take advantage of sequencing).
It's all about getting an intuition for how many things fit the shape:
flatMap :: m a -> (a -> m b) -> m b
Where "flatMap" might have different names in different types. Once you see that pattern in some code, you'll start seeing it in a lot of other places.
reply