@Dran_Arcana@lemmy.world
Dran
member since 20 Jun 2023 15:12
comments
- on Needed to replace an older server while on a budget. Went for a rackmount chassis with "normal" ATX hardware inside in c/selfhosted@lemmy.world · 11 Sep 2026
-
on Microsoft announces Project Zenith, a clutter-free Windows experience meant to entice developers - Engadget in c/technology@lemmy.world · 6 Sep 2026
Win 11 IOT enterprise LTSC already exists and doesn’t even require a TPM.
Unless this is a legitimate channel for regular users to get IOT enterprise LTSC, this is a non-story. The thing we want already exists, they just refuse to sell it.
-
on Would you use a privacy-first mobile app that watches your whole self-hosted stack — nothing phoning home? in c/selfhosted@lemmy.world · 4 Sep 2026
I don’t understand what you’re proposing that nagios/chrck_mk doesn’t already do
-
on Pre-enshittification tech. [discussion/fun] in c/privacy@lemmy.ml · 4 Sep 2026
Only if you pay for premium. Regular users it refuses to play in the background.
-
on US government sides with OpenAI on issue of training LLMs on copyrighted material: »it is critical for the United States to ‘retain global leadership in artificial intelligence.« in c/technology@lemmy.world · 3 Sep 2026
You can absolutely train a nontrivial task model on a gaming gpu (image classifier, sound classifier, text model with a very structured input and output, etc). You can also post-train addon layers on top of existing open-weight models (LORA).
-
on Happy Manjaro Certificate expiration day! To all who celebrate! in c/linuxmemes@lemmy.world · 24 Aug 2026
Ubuntu and bad updates
This is the only drama in your list I’m not familiar with already. What/when did they last break?
-
on GitHub Has an Availability Problem. Is It Time to Look Elsewhere? in c/technology@lemmy.world · 19 Aug 2026
I would argue that Linux kernel scale basically doesn’t work. It is a huge barrier to would-be developers to get into. You might argue that’s a feature, but it’s pretty hard to argue that it doesn’t add a lot of friction to the process
-
on GitHub Has an Availability Problem. Is It Time to Look Elsewhere? in c/technology@lemmy.world · 18 Aug 2026
Genuinely, pull requests being off platform without good integrated diff and merge conflict resolution tooling just doesn’t work at a certain scale.
-
on Plaintiff busted trying to use AI prompt injection to win court case, hides text instruction in filing — demands AI model reviewing the text should side with him, rumbled because of strange white spa… in c/technology@lemmy.world · 15 Aug 2026
I’m not aware of any public frontier LLM provider that uses a static seed for inference. Meaning, even with an identical prompt and identical model you will not get the same output. Seeds should absolutely come back with the streaming metadata on requests imho, but they don’t in any api/harness I’m aware of.
-
on How Claude marks AI-generated content: (1) watermarks embedded in text, and (2) signed provenance metadata attached to files. in c/technology@lemmy.world · 11 Aug 2026
my guess is something like this
-
on How Claude marks AI-generated content: (1) watermarks embedded in text, and (2) signed provenance metadata attached to files. in c/technology@lemmy.world · 11 Aug 2026
A model could hypothetically be trained to insert zero-width characters (I doubt any have though). But any other layer could also very trivially insert these codes. The inference engine could be designed to delay output streaming by however many tokens is required to embed their coding and ninja-insert them during the decode stream. A proxy between the inference engine could insert them. A harness could insert them. Hell, even the rendering javascript frontend in your browser could insert them.
Either the inference engine or proxy would be the prime target if they want to enable this on api responses as well as copy/paste from a chat interface. They could also do a combination of the above depending on final output mode.
You are definitely correct though that it’d be trivial to detect and strip by someone aware of it.
-
on How Claude marks AI-generated content: (1) watermarks embedded in text, and (2) signed provenance metadata attached to files. in c/technology@lemmy.world · 11 Aug 2026
Not necessarily, there are valid “characters” that are not rendered in most text parsers, or are rendered as whitespace. A great example of this is the byte-order-mark (BOM). You can embed a BOM code in the whitespaces of a text string and it looks exactly the same to a human as one without.
I assume that’s what they’re talking about here
Here’s an example of a steganography encoding technique using this method. 330k.github.io/…/unicode_steganography.html
+1 for pikvm. Expensive, but very powerful and very portable. My favorite part of them is their APL that lets me noninteractively, programmatically, interact with hardware buttons