Spyke

Replies

Comment on

Linux For Life

one of my favourite things when i switched to linux first was using the meta+Q hotkey to shutdown a program (this was with PopOS i think). with windows there is alt+F4 but some programs only use shift+alt+F4 which makes it a lot more confusing. on top of all that if youre using a laptop then its another keypress for the Fn key in some cases

Comment on

Is it time to get serious?

"We don't have some kind of platform where we can organise stuff without the algorithm just hiding it after a day"

theres a server/forum on Revolt called "EU Vibes" that would be a bit better for organising things than here or on mastodon. https://rvlt.gg/eSHZgSP9

they mention BuyEuropean and BuyFromEU in their description so im guessing it was set up recently enough.

Revolt is a Discord alternative if anyone isnt familar. its based in the UK but beggers cant be choosers eh!

Comment on

What is Docker?

good answers already so i will give you a different example.

my basic understanding of it is that docker was created originally for developers. im not sure if anyone planned for it to be a way to package up software for end users.

before docker existed you would have this issue where devs would be working on an app, say jellyfin, but each dev might be on a different platform (windows, mac, linux), or be using a different OS version, or different versions of whatever software... which meant it happened often that the app would work for one dev but not another. maybe one dev updated C# to version 2.3 and told everyone else to update, but someone missed the memo and is still running version 2.2 and now jellyfin wont work for them and time would be wasted trying to figure out where the mismatch was

so docker was a way to fix that "version hell" problem. every single thing that is needed for the app to run is kept inside the container. one dev will update something to a new version, then that container is shared to all other devs and each dev only has to worry about updating to the newest container before they start working on something.

app settings are kept in a separate location and the app data in another. in the case of jellyfin, the app data would be the movies or tv shows folder for example. then when you start the docker container, it will symlink those 2 locations/folders inside the container and the jellyfin app can access them as if they were folders that were actually stored inside the container.

so having the settings and data separate like that makes it very easy to update the container to a new version, or for a developer is probably useful being able to rollback to an older container for testing. its similar to how say windows puts the program files in one location and settings in the appdata folder

for end users its handy if theres a new version of jellyfin or whatever that isnt released yet but you want try it out, you can run 2 containers at the same time and both of them can access the same settings and data. (maybe with the newer one in read-only mode so it doesnt mess up your settings or data!)

Comment on

What's something that's free that everyone should know about?

KDE Connect. its an app that lets you share lots of different things between your devices, and it does this over your home network without needing any "cloud"

  • send files from one device to another
  • share the clipboard. handy for copying text or a link to your phone
  • get notifications from your phone on your laptop
  • have music playing on your laptop and pause or change the track from your phone
  • control your laptop from your phone, move the cursor around, left/right click etc

Comment on

Is it time to get serious?

Reply in thread

being able to store things would be a great help. like being able to have all the different flyers that people are making in one place so others can pick and choose what they want, or even have the original .svg or .xcf files if people want to modify them or make a translated version

Comment on

Can you change your Linux distro

Reply in thread

just in case you dont know, Distrosea lets you try various distros online which is handy just for getting a quick idea what the UI is like

for trying out different distros using the live USB method, Ventoy is a good option since it lets you have multiple ISO files on your USB drive at once, instead of having to reformat your USB each time