There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

kbin.life

Tag365 , to nostupidquestions in Do you use the swipe to type feature on your phone?
@Tag365@lemmy.world avatar

I don’t use swiping motions to type, at most I’ve used it a few times over the years.

m15otw , to ukcasual in Thursday complaints

Yesterday (Thursday) I spent the day shifting stuff out of the garage (about to be knocked down) into a self store. The room we’ve got there is up some steps.

After a long day, I dropped a heavy thing on my foot. Felt like a fool, and also in amazing pain. Took my sock off there sat on/in the car boot to have a look (gross is all I’ll say). That’s all my race training postponed for a week at least (supposed to be Triathloning).

Then had to hulk the rest of the stuff up the stairs and finish up, because it was just me! Luckily that was the last car load.

Learned my lesson, next time I’m bringing a friend. And possibly steel capped boots.

pax , to technology in Mastodon?

I have an epic experience there

PreciousDeclaration , to android in Discussion: What Android devices are you using?
@PreciousDeclaration@lemmy.world avatar

Samsung A53 5G
It cost a whole lot less than the flagship phones, and for me, it works great. I’ve had it for over a year and it’s always been very fast and responsive, great battery life, and I like the fact that it still has a microSD card slot.

j4k3 , to fediverse in Deleted
@j4k3@lemmy.world avatar

Denied

squirrel ,
@squirrel@discuss.tchncs.de avatar

Unanswered

wildbus8979 , to linux in What's the best debian/ubuntu based distro featuring KDE?

Debian?

9488fcea02a9 ,

Q: “What’s the best debian-based _____?”

A: “debian”

eayavas ,
@eayavas@lemmy.ml avatar

Debian is Debian based.

-spam- ,
@-spam-@kbin.social avatar

Hmm yes this debian is made of debian

dontblink OP ,
@dontblink@feddit.it avatar

I would say i never considered Debian seriously, but after learning a bit more about it the perspective of a highly stable / not buggy OS on which i can easily switch between DEs , and without snaps really tingles me.

wildbus8979 ,

And if you want rolling release, Testing is a pretty decent experience, just be mindful that security updates come a little slower.

noro_lim_asfaloth ,

IMHO, Debian is not the best choice for KDE, especially if you are on Wayland. KDE is a bit more buggy than GNOME, but bugs are fixed constantly at a fast pace, and Wayland support gets better. With Debian, you are stuck with the old version and have to wait 2 years for bugfixes. Kubuntu would be a better pick since it has interim releases with more recent KDE and also official backports with fresher KDE version.

wildbus8979 , (edited )

Yes testing is probably better for KDE, it’s great on workstations if you want a rolling release.

iso , to linux in Why is snaps hated
@iso@lemy.lol avatar

Not generic as Docker containers, not native as package managers. If I’m trusting an app to install it, then I don’t want to care about security rules.

IronRain , to android in Discussion: What Android devices are you using?

Galaxy Note 20 Ultra

With the exception of a headphone jack, this phone is the last Samsung “flagship” to have “everything.” MicroSD card is a critical feature for me, and until Samsung brings it back in their upcoming flagships, I’m eyeing the Sony Xperia I V, although this device is still chugging along fine. A few slowdowns every now and then, but quite manageable.

j4k3 , to linux in Why is snaps hated
@j4k3@lemmy.world avatar

Snaps have centralized control. Canonical has to approve a snap package. Flatpak is like most of Linux. Anyone can make a Flatpak. Also, in my experience, Snaps had a lot of issues early on that were not present in Flatpaks. Now, Flatpak dominates and Snaps kinda feel like a irrelevant runner in a race long after the officials closed competition packed it up and went home.

Xepher , to selfhosted in If you build containers, you should be looking into Docker Slim

Are there any downsides to doing this?

Ramenator ,

AFAIK it works by analyzing your docker image, checking whats actually used and then throwing out anything else.
For example if you use the Ubuntu base image you have a full minimal OS install. If you’re now running a python server for example it’s highly unlikely that you will need the perl interpreter that’s in the default install so it can be thrown out.
It can get problematic if you want to run something that loads libraries or runs programs dynamically at runtime, since the tool can’t easily detect them then and you need to manually intervene. Tried it once on a custom machine learning container and it kept throwing out parts that I actually needed, so I gave up in the end.
It’s usefulness is also somewhat limited, since docker containers also share their base images. So if you have three containers running that are all based on Ubuntu 22.04 you will still only have to download it once

FancyGUI OP ,
@FancyGUI@lemmy.fancywhale.ca avatar

Great write up! That’s everything exactly right. It’s mostly useful to try and reduce the time it takes to pull images to run them. And also reduce the footprint of storing those in your registries.

maor ,
@maor@lemmy.org.il avatar

It ptraces the main container process and cuts off unused files. It also fires some customizable HTTP requests to trigger any dynamically loading libraries. Clever idea. If I understand correctly, the problems that arise to me are:

  1. Undoubtedly some essential files will be omitted. Unless my image consists merely of scratch and an executable, I can’t imagine myself successfully covering all edge cases.
  2. What about files that aren’t loaded by HTTP requests?

I’m not shitting on this program at all. These are two problems that I’m sure they could solve or just tell straight up “we can’t guarantee it’ll work in XYZ scenarios. Don’t use it if that’s your use case”. Then I saw that this is backed by some kinda SaaS with a domain that ends with .ai, and that explains why THAT FUCKING README IS WRITTEN like a FUCJik/INg MIND NUMBING LINKEDIN POST that my CEO could write bro what the fuck do you mean by simplifying the value of my digital assets in a seamless secure cost efficient way??? Who fucking cares??? ?WHat does your program ACTUALLY DO???

10000000s of seemingly AI-generated paragraphs going on and on about how convenient their product is, 1 measly line in a diagram that describes what it actually does. Again not to shit on the programmers at all, this is a great idea and I’m glad that it’s being explored I just hate this industry I can’t read another pile of gibberish like that. That ruined my night. Thanks for listening

FancyGUI OP ,
@FancyGUI@lemmy.fancywhale.ca avatar

COuldn’t agree more on this! Honestly. I understand that people want hefty descriptions with few inputs on their side, but this is sad.

Anyways! Some of my python cronjobs that I run on my cluster don’t have an exposed service, and I can still make it work just fine by passing along the --exec flag and the stuff that takes to run the app. The complicated part is to define properly your environment variables that are necessary to run your use-cases and make sure that you execute all the necessary files. It’s not a solution that fits all, for sure! And I honestly don’t use it for everything. It’s a tool to be used in some use-cases

maor ,
@maor@lemmy.org.il avatar

Oh there’s an –exec flag as well? That’s great. This seems like a totally viable solution for cases where the crux of the container is a small script, with a handful of decision branches so the surface area to cover is manageable, but it also needs to come in a non-alpine distro because I assume that’s the hefty part that we’re like to remove. But that’s just off the top of my head, I’m sure there’s more. It’s genuinely a good idea and it deserves a respectful README as well :(

MaxVerstappen ,

I can feel this reply. Cheers to a better weekend!

Remmy , to linux in Why is snaps hated
@Remmy@kbin.social avatar

Snap is not fully open source. It's slower than flatpak, it's centralized to Canonical's servers.Flatpaks so not update by default where snaps do, so if a feature breaking update is released and you haven't disabled automatic updates, you're screwed with snap. Flatpak does not need admin privileges where snaps do.

nosut , to android in Discussion: What Android devices are you using?
@nosut@lemmy.world avatar

Galaxy S20: I have not found a compelling reason to upgrade

RoxActually ,

Same. Need the micro sd

Nefyedardu , to linux in Thoughts on Windows and WSL?

I don't see how it would improve privacy at all. WSL is just for running Linux shell on Windows right? Your entire OS stack is still Microsoft's proprietary software.

ItsComplicated , to android in Discussion: What Android devices are you using?

Samsung Note20Ultra. My favorite phone to date. Fell in love with Spen, smart select, and Samsung Notes!!

curioushom , to programmerhumor in Embedded devs when allocating memory.

Missing an image?!

oshaboy OP ,

I was certain I uploaded it. Gonna try reposting it.

Edit: Oh I see the problem. I tried uploading a video and that’s not supported yet.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • lifeLocal
  • goranko
  • All magazines