Randall’s timing is impeccable sometimes
- 3 Posts
- 88 Comments
Starfighter@discuss.tchncs.deto
Electric Vehicles@slrpnk.net•GEN4 - The Next Evolution | FIA Formula E World Championship
2·25 days agoWhy not? And you probably need the additional traction for that kind of acceleration out of corners
Starfighter@discuss.tchncs.deto
SpaceflightMemes@sh.itjust.works•Launch recap March 30 - April 4English
2·1 month agoA little unfair towards SLS which did land its capsule xD
Starfighter@discuss.tchncs.deto
Spaceflight@sh.itjust.works•[Eric Berger] Artemis II is going so well that we're left to talk about frozen urineEnglish
4·1 month agoYes
Within the same gravitational field, all bodies accelerate in vacuum at the same rate, regardless of the masses or compositions of the bodies; [1]
Wikipedia: Gravitational Acceleration first paragraph. Follow the [1] citation for a better source than Wikipedia.
Additionally orbital mechanics would break down. If a dragon spacecraft at the same altitude as the ISS wouldn’t experience the same gravitational acceleration they would have differing orbital periods and thus velocities and could never dock (or perform proximity operations).
Starfighter@discuss.tchncs.deto
Spaceflight@sh.itjust.works•[Eric Berger] Artemis II is going so well that we're left to talk about frozen urineEnglish
4·1 month agoNo it doesn’t. That’s literally its main distinguishing point.
Classic physics experiment: Drop a block of steel and a feather in a vacuum. Which hits the ground first? (On earth, with the same fall height, etc)
Tap for spoiler
Both impact the ground at the same time
Losing both
uvandruffin one fell swoop sucks.
Sorry to ruin your day but solar frickin roadways is currently doing another funding round.
And for some unexplainable reason people are still giving them more money.
Starfighter@discuss.tchncs.deto
Rust@programming.dev•Is the async_trait still necessary for dync Trait with async methods?
1·4 months agoI ran into the same issue not so long ago and at least for
no_stdI had to resort to using theasync_traitcrate. (The project isno_stdbut hasalloc)I can’t recall the exact error so it might have been due to mixing async and non-async methods in the same trait. I would have to look at it again…
Starfighter@discuss.tchncs.deto
Science@beehaw.org•World’s first megawatt-level airborne 'windmill' feeds power to grid
1·4 months agoAbsolutely. Maybe a poor choice of words on my part. My intention was to state that this is not a thing you simply hang out in the wind and leave, but instead a vehicle that needs to be controlled to stay within its operational envelope.
I can imagine problems like tethers or lines getting crossed when the vehicle makes fast turns due to wind shear or frequent direction changes. You probably can’t operate it in those conditions.
Starfighter@discuss.tchncs.deto
Science@beehaw.org•World’s first megawatt-level airborne 'windmill' feeds power to grid
5·4 months agoYou would think so but even normal ground-fastened wind turbines shut off when winds get too strong.
This being somewhat of an aircraft I absolutely expect them having to land it before storms roll in.
If you land it facing up- or downwards and deflate the balloon segments it would probably be fairly flat and compact for storage.
I have never used them but there are some tools that advertise being able to run GitHub Actions locally, like WRKFLW.
Indeed
Starfighter@discuss.tchncs.deto
Electric Vehicles@slrpnk.net•2026 Ford Lightning will have all-electric drive train and gasoline-powered range extender
25·5 months agoIts a fully electric drivetrain with a gas generator. When the battery runs low you can recharge it (even while driving) using the generator.
So you don’t have the complexity of a combined hybrid drivetrain, but instead a normal BEV one plus a power generator, both of which are very well understood problems.
Another benefit is that the generator can always run at its most efficient rpm/power point and is decoupled from the speed of the wheels.
Interestingly Wankel engines have been making a bit of a comeback for this purpose since they can be built more compactly for the same output power.
A drawback compared to hybrid drivetrains is that both components need to be built for “full” load, whilst a hybrid drivetrain can combine powers to reach maximum performance, meaning each of the motors only has to carry half (or part) of the total load.
Starfighter@discuss.tchncs.deto
Programmer Humor@programming.dev•JPEG XL is Dead. Long Live JPEG XL
19·6 months agoI assume you mean AVIF? Because AV1 is not an image (file) format but a video compression format (that needs to be wrapped in container file formats to be storable).
Well the front didn’t fall off, so this could be typical for the new boosters.
Starfighter@discuss.tchncs.deto
Rust@programming.dev•Project goals update — September 2025
2·6 months agoThe
std::offloadproject is kinda cool. Hadn’t heard about that before.It’ll be interesting to see where that leads.
Starfighter@discuss.tchncs.deto
Spaceflight@sh.itjust.works•[Andrew Jones] China to launch Shenzhou-22 spacecraft Nov. 25 to provide lifeboat for astronautsEnglish
2·6 months agoI mean it sounds like they do have a working lifeboat in case of problems on the station.
Its just that their lifeboat can’t (safely) return to earth.
Starfighter@discuss.tchncs.deto
Rust@programming.dev•Just call clone (or alias) · baby steps
3·6 months agoI was under the impression that the compiler already optimizes out a lot of clones where the clone is primarily used to satisfy the borrow checker. Is that not the case?



QR codes come with (differing levels of) error correction. You could decode it and take the amount of corrected errors as a score.
I don’t know what unit/chunk of data the error correction works on but you could alternatively dive a bit into information theory and calculate how close any of the chunks are to an uncorrectable error and use that as a score.
Since the first uncorrectable error will cause the scan to fail this would match your problem definition fairly well.
One benefit of this approach would be that it’s a single scan and done vs searching n permutations of the same code.
Or maybe you’d want to scan it a couple of times to rule out any additional errors introduced by the camera or environment.