github.com

ElectroLisa , to Technology in Are we <INSERT_TECHNOLOGY_NAME> yet?
@ElectroLisa@lemmy.blahaj.zone avatar
avidseeker OP ,
@avidseeker@lemmy.world avatar

Added.

victorz , to Technology in Are we <INSERT_TECHNOLOGY_NAME> yet?

Are we JPEG XL yet?

Wow, I just saw this literally two posts above this one.

Haven't heard of JPEG XL pretty much since it died. And now twice in a few minutes.

Thank you, universe.

iopq ,

You haven't heard that Apple supports it now?

victorz ,

"Apple" supports it? Which apps? Not that I care much, I have zero Apple products or devices. 👍

iopq ,

Safari, which is the biggest one. But also in the OS, they committed to supporting it, but I'm not sure if they followed through yet

victorz ,

I mean, it's still insignificant enough that it won't matter yet, right?

But that's still good. It's on the right path. Google needs to get their head out of their ass on this one. Still no sign of it years later though.

GamingChairModel ,

Safari support means there's benefit to web server support. Server support means there's benefit to browser support in other browsers. Apple can kick start the network effects necessary to get this standard adopted.

Webp and heic are fine for web, but JPEG XL is special in that it actually has use for print-based and other ultra high resolution workflows, while also having the best path forward for migration from JPEG.

victorz ,

Very good points. 👌

gianni ,

Throughout the entire OS. Image CDNs are adopting JXL on some scale - Cloudinary reportedly ships billions of JXL images regularly

victorz ,

Ooh, well that's wonderful. It's like some grassroots thing. The inventors of the thing refuse to support it, but the people are adopting it on their own. ✊ I'm happy to hear these "news" (to me)! ❤️

dandi8 , to Fediverse in Open-Source, Language-Agnostic Mutation Testing Tool Using LLM Agents
@dandi8@fedia.io avatar

On the one hand, mutation testing is an important concept that more people should know about and use.

On the other, I fail to see how AI is helpful here, as mutation testing is an issue completely solvable by algorithms.

The need to use external LLMs like OpenAI is also a big no from me.

I think I'll stick to Pitest for my Java code.

Gallardo994 , to Fediverse in Open-Source, Language-Agnostic Mutation Testing Tool Using LLM Agents

Mutahar after reading the name: I'm in danger

Mutahar after reading the description: phew

smeg , to Fediverse in Open-Source, Language-Agnostic Mutation Testing Tool Using LLM Agents

Mutation testing is a cool concept, but what's it got to do with the fediverse?

wmrch , to Fediverse in Open-Source, Language-Agnostic Mutation Testing Tool Using LLM Agents

So you're saying i have to write tests for my test cases now? Ooof.

yo_scottie_oh ,

Yo dawg, I heard you like tests, so I got some tests for your tests so you can test while you test!

dandi8 ,
@dandi8@fedia.io avatar

Regarding mutation testing, you don't write any "tests for your test". Rather, a mutation testing tool automatically modifies ("mutates") your production code to see if the modification will be caught by any of your tests.

That way you can see how well your tests are written and how well-tested parts of your application are in general. Its extremely useful.

warmaster , to Fediverse in Open-Source, Language-Agnostic Mutation Testing Tool Using LLM Agents

What's the use case? ELI5.

Killing_Spark ,

You have written tests for your code and now feel safe because your code is tested. But test quality is really hard to measure. The idea seems to be to introduce "vulnerabilities" (whatever that means...) and see if your tests catch them. If they do that's supposed to show that the tests are good and vice versa.

mitram2 , to Beyond app in Beyond is now open source

What license are you using?

Tywele , to Gnome in Luminance 1.1.0 released with GTK4

Why was this reposted an hour after the first post?

petsoi OP Mod ,
@petsoi@discuss.tchncs.de avatar

I didn't see the previous one and now I hesitate to delete this one with the existing comments.

airbussy , to Gnome in Luminance 1.1.0 released with GTK4

Does this put an icon on the top panel as well? Couldn't find something about it in the git readme in a quick glance

jlow , to Gnome in Luminance 1.1.0 released with GTK4
@jlow@beehaw.org avatar
shitescalates , to 3DPrinting in OrcaSlicer V2.1.0 Official Release

Any plans to add belt printer support?

romano OP ,
@romano@lemmy.shtuf.eu avatar

There's a request made here. Haven't seen devs reply yet though.

DontTreadOnBigfoot , to Android in Introducing iCore: Simplify Your Android Development!
@DontTreadOnBigfoot@lemmy.world avatar

Kinda weird to use Apple naming convention for an Android product...

AaronMaria ,

well it could also be an intel one which is similarly weird

neclimdul , to 3DPrinting in OrcaSlicer V2.1.0 Official Release

Does it work on recent Linux releases yet?

Grippler ,

What issues have you had? Ive been using orca for about a year without any issues all. I'm running Mint, both stable and beta branch have been without issues for me.

neclimdul ,

Appimage doesn't start because it relies on a system package that does exist anymore, dialogs with grey text on grey backgrounds in dark mode, stl repair not included...

Flatpak is in the works but honestly and hope that helps bit I get better prints out of prusaslicer for some reason so not holding my breath or anything.

Grippler ,

Weird, I'm using the appimage and it starts just fine...what distro are you using?

neclimdul ,

Ubuntu but it also affects fedora https://github.com/SoftFever/OrcaSlicer/issues/185

The image just isn't being built correctly which is more a problem with appimages but the fact it's still broken... Linux is clearly a neglected platform for them.

All the problems I listed have bug reports just nothings happening to fix them.

Damage ,

I run it on Nobara and Fedora, and I only have occasional graphic glitches with the windows

neclimdul ,

That's good. I assume you've got the old libwebkit installed somehow. There are a dozen reports around this though so it's a pretty real problem.
https://github.com/SoftFever/OrcaSlicer/issues?q=libwebkit2gtk-4.0.so.37

Damage ,

Well I have chromium installed, I use it to segregate Google services to a dedicated browser

neclimdul ,

Libwebkit isn't actually chromium, it uses blink which is a fork of part of webkit. Understandable confusion though because webkit was part of kde, forked by safari, and then used by through chrome variants for a long time.

The rest of this comment is going to necessarily be nerdy Linux internals. sorry.

Unfortunately, I'm pretty sure chromium includes it inside it's binary and does provide or use any webkit libraries.

Orca uses it internally for it's browser so it won't start unless it has access to the library. When you build a Linux app it includes the name of the library which includes the ABI (basically the version). Newer Linux release include a different version.

You can see how that specific library stops appearing in Ubuntu releases
https://packages.ubuntu.com/search?keywords=libwebkit2gtk-4.0-37

The new version is 6.0 I believe.

Appimage is one of the ways you get around this distro problem by including the versions of libraries. That's why they're so big. There are problems with that like how big the apps are stale bundled libraries with security issues but I digress.

Orca hasn't bundled webkit in the appimage and because of another problem/feature of appimage it falls back on the os library. Since new distros have dropped the older obsolete library version orca can't start.

That's a lot but I hope it explains the problem better.

I would like to help but my personal computer doesn't currently have enough memory to compile orca so back to just watching warning people it's a coming problem for them too.

GrayBackgroundMusic Mod , to 3DPrinting in OrcaSlicer V2.1.0 Official Release

Can someone give me a brief intro to orca slicer? Who is it made by and what's it's quirk?

For example prusa slicer, made by prusa, prioritizes user interface and has powerful almost modeling features (text, cutting etc)

rugburn ,

Orca slicer is a fork of Prusaslicer

xenspidey ,

And it's fantastic!

Edit: its actually a fork of bamboo slicer which is a fork of prusa slicer

GrayBackgroundMusic Mod ,

Fork of a fork of a fork.

xenspidey ,

The beauty of open source software

zelifcam ,
@zelifcam@lemmy.world avatar

What are the advantages over Prusa?

Ease of use or features? Both?

xenspidey ,

I'd say all of the above. Its integration with Kipper is also very good

xenspidey ,

I used to slicer hop around, then i discovered orca. Just the best imho

Edit: its an open source fork of bamboo slicer

Nilz ,

And Bambu Studio is a fork of PrusaSlicer

xenspidey ,

Which is a fork of Slic3r

IMALlama ,

You're four forks deep now
Slic3r to Prusa Slicer to Bamboo's slicer to Orca. It also borrowed a lot of ideas from Super Slicer. Since it's open source, and has been gaining some momentum, it seems to have a decent amount of contributors

Why Orca?

  • all the features you know and love from things up the tree
  • a revamped UI
  • built in tuning tests (temp tower, extrusion multiplier, volumetric flow, pressure advance, etc)
  • great Klipper integration if that's your jam
p1mrx ,

all the features you know and love from things up the tree

Did OrcaSlicer ever bring back the option to slice automatically when changing settings? It's called "Background processing" in PrusaSlicer.

Grippler ,

The UI of Prusa slicer is hot garbage though. I started with prusa slicer and moved to orca after a few months. Orca is a much nicer experience, and the built-in test-models (temp towers etc.) are nice.

GrayBackgroundMusic Mod ,

The UI of Prusa slicer is hot garbage though.

I'm comparing cura and prusa, so prusa wins by a lot. What are you comparing prusa to? Orca?

Grippler ,

Yes

lefixxx ,

It's worth giving a try

  • All
  • Subscribed
  • Moderated
  • Favorites
  • kbinchat
  • All magazines