- 0 Posts
- 20 Comments
panda_abyss@lemmy.cato Selfhosted@lemmy.world•Backblaze is slow for Nextcloud. Any recommendations for faster s3 compatible storage?English31·15 days agoEazy backup has s3 compatible storage
panda_abyss@lemmy.cato Technology@beehaw.org•LLMs’ “simulated reasoning” abilities are a “brittle mirage,” researchers find18·15 days agoChain of thought is basically garbage.
It works with coding agents because they get an automated hard failure.
The rest of the time it’s just sampling the latent space around a response and should be trimmed out.
That could work with diffusion models but autoregresive models it’s just polluting the context window with the hopes of finding longer tail tokens.
panda_abyss@lemmy.cato Technology@beehaw.org•OpenAI claims new GPT-5 model boosts ChatGPT to ‘PhD level’3·18 days agoBlackBerry toast
panda_abyss@lemmy.cato Technology@beehaw.org•OpenAI claims new GPT-5 model boosts ChatGPT to ‘PhD level’6·18 days agoI don’t feel this is a good example of why LLMs shouldn’t be treated like PhDs.
My first interactions with gpt5 have been pretty awful, and I’d test it but it’s not available to me anymore
Edit: I am not having a stroke, I’m bad at typing and autocorrect hates me
Yeah a mix of regex and heuristics to validate before parsing
It was a long time ago now
It also had to parse ipv4 because they can be embedded (IIRC) and the different octet formats
I wrote and ipv6 parser once.
Never again.
panda_abyss@lemmy.cato Open Source@lemmy.ml•PixiEditor 2.0 - a FOSS Universal 2D Graphics Editor is here2·27 days agoThat is way too much scope but looks awesome
You would destroy this woman’s home world just to get to World 3 faster?
Please don’t do this.
Every use of warp destabilizes the zone and eventually warp will be impossible altogether in the unstable zone, possibly the whole quadrant.
panda_abyss@lemmy.cato Selfhosted@lemmy.world•The future is NOT Self-Hosted, but Self-SovereignEnglish8·29 days agoI appreciate that they mentioned it.
I’m not particularly good at writing, I can understand why someone would ask an LLM to help them clarify their ideas. The intent here is obviously to improve their content rather than as a crutch to feed us shit. Whether it’s better than just writing this personally I don’t know.
panda_abyss@lemmy.cato Selfhosted@lemmy.world•The future is NOT Self-Hosted, but Self-SovereignEnglish21·29 days agoI’m not going to let LLMs enstupidify my writing.
I’ll continue using en dashes and em dashes — they’re very easy to type on macos, iOS, and Android.
panda_abyss@lemmy.cato Selfhosted@lemmy.world•The future is NOT Self-Hosted, but Self-SovereignEnglish41·29 days agoCaldav, carddav, and email are probably the only easily portable data interops.
I guess photos can be re-uploaded but that’s not easy.
Do notes transfer though? I know Outlook, Gmail/GSuite, and Apple all have notes but I don’t know if they transfer.
panda_abyss@lemmy.cato Selfhosted@lemmy.world•Inside China's Mini PC Production: How Tiny Computers Are MadeEnglish1·1 month agoAll I’ve got is a nubby yubikey nano
panda_abyss@lemmy.cato Selfhosted@lemmy.world•Inside China's Mini PC Production: How Tiny Computers Are MadeEnglish2·1 month agoWhat do they do with the daddy computers? All of mine only have female ports.
panda_abyss@lemmy.cato Programmer Humor@programming.dev•Object oriented programming in Python be like:1·1 month agoWell it is owned by Oracle now
I don’t know rust, but for example in Swift the type system can make things way more difficult.
Before they added macros if you wanted to write ORM code on a SQL database it was brutal, and if you need to go into raw buffers it’s generally easier to just write C/objc code and a bridging header. The type system can make it harder to reason about performance too because you lose some visibility in what actually gets compiled.
The Swift type system has improved, but I’ve spent a lot of time fighting with it. I just try to avoid generics and type erasure now.
I’ve had similar experiences with Java and Scala.
That’s what I mean about it being nice to drop out of setting up some type hierarchy and interfaces and just working with a raw buffers or function pointers.
I actually do like that C/C++ let you do this stuff.
Sometimes it’s nice to acknowledge that I’m writing software for a computer and it’s all just bytes. Sometimes I don’t really want to wrestle with the ivory tower of abstract type theory mixed with vague compiler errors, I just want to allocate a block of memory and apply a minimal set rules on top.
panda_abyss@lemmy.cato Programmer Humor@programming.dev•Object oriented programming in Python be like:29·1 month agoReminds me of java
I have
Toolkit toolkit = Toolkit.getDefaultToolkit();
seared into my brain. Then there were the bean factories…
I didn’t know this existed, but it’s obviously a bad idea