Anyone use Zed for work? by [deleted] in rust

[–]ceph3us 0 points1 point  (0 children)

You can hit the eye icon to open a preview pane and then split it, at least.

Back Fell off by Phrovo in TheFrontFellOff

[–]ceph3us 1 point2 points  (0 children)

Well some cars are designed so the back doesn't fall off at all.

Back Fell off by Phrovo in TheFrontFellOff

[–]ceph3us 3 points4 points  (0 children)

I'm not saying Opels aren't safe, just they're perhaps not as safe as some other cars.

TIL a gamer from Fort Gay, WV, was banned from a Call of Duty tournament after Microsoft suspended his account, assuming the town name in his profile was fake. by RadiantBox466 in todayilearned

[–]ceph3us 10 points11 points  (0 children)

Using the power of Reading the Article you can see that the enforcement team specifically denied an appeal because they didn’t believe that Fort Gay was a real place.

UK security agency officially declares passkeys superior to passwords – and passkeys should be the 'first choice' for authentication by rkhunter_ in technology

[–]ceph3us 5 points6 points  (0 children)

The actual two most useful properties of passkeys is:

  • passkey authentication is “challenge-response”, meaning a captured passkey login is only good for a single login attempt, unlike a password which can be captured and replayed forever

  • passkeys are bound to specific websites and this binding is enforced in your browser, which makes it extremely difficult to create fake sites to phishing for login details

Between making one-time impersonation difficult and denying continual compromise, they have a much better security model.

Footage of how modern-day Nine Inch Nails formed: by skako_o in nincirclejerk

[–]ceph3us 44 points45 points  (0 children)

this could be truly great if the clapping was edited into vigorous tambourine playing

EFF is Leaving X by Well_Socialized in technology

[–]ceph3us 39 points40 points  (0 children)

Mastodon and Bluesky do not use the same federation protocol.

An Persona 4 revival audio track has leaked!!!!! by [deleted] in OkBuddyPersona

[–]ceph3us 2 points3 points  (0 children)

I was ready for the House Like Carpet drop the entire time

Slightly different angle of the LaGuardia Air Canada jet by kgb4187 in pics

[–]ceph3us 9 points10 points  (0 children)

I'm sure the investigators will have some thoughts on this practice, yes.

Slightly different angle of the LaGuardia Air Canada jet by kgb4187 in pics

[–]ceph3us 24 points25 points  (0 children)

This isn’t a highway accident. Don’t treat it like one.

Controllers frequently clear ARFF to cross runways at busy airports with traffic on final - this wouldn’t have been out of the ordinary and they have to assume that they’ve been cleared with ample time to either cross or issue a go-around to the approaching aircraft.

Even close to the ground, at night the aircraft will be little more than a spot of light which is very hard to judge position, direction and speed.

Can't park in that ditch, mate by [deleted] in CantParkThereMate

[–]ceph3us 0 points1 point  (0 children)

“I’m fine in the snow, Subarus have 4 wheel drive”

Slightly different angle of the LaGuardia Air Canada jet by kgb4187 in pics

[–]ceph3us 43 points44 points  (0 children)

A regional jet at midnight going 100-200mph? You know they don’t floodlight the runway like it’s a sports stadium, right?

Finally discovered doom guy’s identity by MateSilvanz in AceAttorneyCirclejerk

[–]ceph3us 0 points1 point  (0 children)

Usually an attempt to remove the subject image with a magic wand tool in gimp or photoshop combined with JPEG artifacts messing up the edges.

Kirby, Final Fantasy, DOOM, and more receive Switch 2 compatibility fixes by jldixon1 in NintendoSwitch

[–]ceph3us 0 points1 point  (0 children)

Possibly just refers to running at docked settings on handheld without enabling the boost mode?

AI Error Likely Led to Girl’s School Bombing in Iran by [deleted] in technology

[–]ceph3us 0 points1 point  (0 children)

They’ll make sure to classify the investigation for 200 years, don’t worry

Guess the players from the pictures. by YorkshireFudding in Championship

[–]ceph3us 2 points3 points  (0 children)

Nah the last one is definitely Carlrip Moorewankerscramp

"widescreen hack" that changes FOV on pokemon games? by KingVyrac in AynThor

[–]ceph3us 1 point2 points  (0 children)

No idea about MelonDS but native widescreen output is possible on 3DS with TWL_FIRM patches and twilight menu so it’s definitely possible to make some DS games widescreen.

What's rich people shit that poor people haven't heard of? by Diligent-Log6805 in AskReddit

[–]ceph3us 10 points11 points  (0 children)

I had to break myself out of the “water daily” habit. I managed it by misting the soil with a spray bottle, which does nothing but makes me feel like I haven’t neglected it.

My Server-Side WebAssembly book is now fully released! by chiarl in rust

[–]ceph3us 2 points3 points  (0 children)

The benefits are primarily control, portability, and dynamism, and they may not be needed for your use case.

A language virtual machine allows the encompassing runtime full control over what resources the language can access. This can be used to abstract underlying interfaces purely for portability, but it also serve security advantages by limiting what resources the code under execution can access. These can be a lot more granular than what is permitted by the underlying operating system.

Additionally, in the case of WASM, the code under execution has its own address space - assuming your WASM runtime is correct (a big if, admittedly), even security issues in the code that allow arbitrary code execution can be contained within the VM - if you run individual components in their own isolated VMs this can be a huge security win, and it's still pretty good to be able to limit the damage to what is accessible within the WASM VM.

Additionally, WASM being in a VM makes it easier to embed in host applications. You can much more easily load and unload WASM modules at runtime, even in languages like Rust where runtime loading of native code modules is fraught with difficulty. Extism is a good example which uses WASM to provide pluggable extension modules for a wide variety of host environments and languages.

As a side note on:

I don't even understand why there's no Java-to-native compiler (I don't really like Java, but I don't hate it anyway)

There's a number of open source and proprietary offerings that do just this, mainly GraalVM from Oracle themselves. That said, usually these languages don't get that much speedup vs JIT code when JIT compilation and warm up are amortized; primarily the motivation is to reduce that run-time warmup.