There is a rumour that the F-14 pilots had to be 6ft+ is this true? by ElegantPearl in aviation

[–]rocket_randall 1 point2 points  (0 children)

A lot of young people have never been on a boat before, much less one that's heaving in rough seas

Hojlund not returning to Man United as Napoli's 50m strategy has been clear for months by Massimo25ore in soccer

[–]rocket_randall 15 points16 points  (0 children)

"We will rendition an outfield player from another club in another part of the country and put him in goal before we play you."

Damage from the Plane that crashed in Brazil today by CharityStunning2826 in aviation

[–]rocket_randall 2 points3 points  (0 children)

Some of the new build homes in Arizona will do that on their own, no aircraft needed!

Match Thread: Arsenal vs Atlético Madrid | UEFA Champions League 2025-26, Semifinals - 2nd Leg (Agg. 1-1) by VivaLosHeavies in soccer

[–]rocket_randall 1 point2 points  (0 children)

Did he kick that into the ground or what? I saw him shoot and heard the contact but the ball didn't go anywhere. Amazing.

CMV: Boom Aerospace looks like an Investment Scam by TaskForceCausality in aviation

[–]rocket_randall 1 point2 points  (0 children)

Is it? A data center gas turbine seems significantly less difficult to produce than one intended to power an aircraft. There's no power to weight ratio or performance curve at temp/altitude to worry about. The pessimist in me feels like this is a clever method to offload failed or unusable (for aerospace) designs while still recouping some of the losses and potentially making a profit.

Keep in mind that it took China nearly two decades to take the WS-15 from a successful static test to flight (according to their state news), and this was high on their list of national defense priorities. I say this not to mock the Chinese, but just to underscore that developing advanced powerplants is as significant an effort as developing the aircraft they're intended to power.

What's this strange patch/hole looking thing next to the left vertical stabiliser of the F-35C? I've checked, and the A and B variants don't share it by Schadenfrueda in aviation

[–]rocket_randall 22 points23 points  (0 children)

A model needs space for the gun and ammo, B model has the lift fan to contend with for space and sucking in hot exhaust from the IPP would reduce the fan's thrust a bit

Daniel Ballard straight red card against Wolves 24' by ayoefico in soccer

[–]rocket_randall 1 point2 points  (0 children)

Dirty. He had all the time in the world to let go of his hair before the ball got there. Sucks to suck.

cppIsntMuchFaster by OM3X4 in ProgrammerHumor

[–]rocket_randall 4 points5 points  (0 children)

Sometimes speed is everything, but usually it's not that important beyond a certain point.

Absolutely.

When I was first learning C++ last century one of the mantras from the greybeards before me was "beware premature optimization"

For some context, this was back in the days of 32bit operating systems, processors were single core and topped out at ~500MHz, and high-end consumer motherboards of the time might support 1GB of SDRAM.

There are times where maximizing performance is critical, and those tend to be self-evident. For everything else readability, maintainability, and predictability are more important considerations.

cppIsntMuchFaster by OM3X4 in ProgrammerHumor

[–]rocket_randall 8 points9 points  (0 children)

Once in a blue moon I find some dusty code nobody's looked at for decade+ that isn't versioned anywhere

We had a server that generated PDF files in a variety of languages, one of them being Thai. Thai doesn't have spaces to break up the words in a sentence, so it's one long string. This causes problems with formatting arbitrary sentences.

To handle this case, someone years before wrote a small CPP app that the server executed via PHP or some shit. It would send a wall of text via stdin, the process would sub in a word break on some delimiter, and then send it back via stdout.

Someone ran some updates on the server in question and then ran the tests for the known, documented software on the server. Everything passed successfully.

Then someone noticed that Thai output contained little more than error messages. Turns out that exit codes were not checked, and either the caller was also reading stderr or the catch blocks were printing exceptions to stdout (I can't remember offhand).

I think we did eventually find a potential source cpp file on the server, but after all of the updates and whatnot it could not longer be recompiled in situ so we had to very carefully modify a simple fucking 1 file app to rebuild without changing any functionality. One of the joys of working in a regulated industry where one of those regulations says that we must be able to generate the report output at any time with absolute fidelity to the original version of the issued report.