• 0 Posts
  • 11 Comments
Joined 10 days ago
cake
Cake day: April 18th, 2025

help-circle
  • dave@lemmy.wtftoSelfhosted@lemmy.worldWhat is Docker?
    link
    fedilink
    English
    arrow-up
    5
    ·
    6 hours ago

    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!)


  • yea it simulates keypresses somehow, like how autohotkey or xdotool does. i should probably throw out a disclaimer before i hype it up too much though :p

    it used to work a lot better back when most sites had both the username and password input box on the same page. sites like google have started putting them on different pages now which confuses things. the sequence of keys it sends is {USERNAME}{TAB}{PASSWORD}{ENTER} so it doesnt really have awareness of the actual input box elements the way a browser extension would

    the quick fix for this is to just use the separate hotkeys ctrl+1 to autotype the username and then ctrl+2 for the password



  • Keepass. ill skip the obvious and just mention the really neat features that other server/cloud based password managers dont or cant have.

    • on desktop, you dont need any browser extension to fill in passwords since the “autotype” feature in keepassXC handles that. this means your browser has no to access your database at all. any password manager thats connected to your browser in any way is a huge security risk imo.
      (i would recommend this extension that changes the window title though)

    • you can have 2 databases open at the same time (in keepassXC and keepassDX at least), which means you can have important logins in one and everything else in the other one. if you ever get annoyed having to unlock your vault using a really long master password just so you can autofill some crappy forum password then you might get why 2 databases is a good idea!

    • you can fill in login details for desktop programs. (maybe others do this now but they didnt when i switched to keepass years ago)

    Aegis authenticator. its been years since ive used google’s authenticator app so maybe its improved now, but it used to be very spartan. it showed you your OTP codes and thats about it.

    Aegis lets you add an icon to each entry and the different sized text makes things a lot easier to read. the visual timer is much clearer as well and the text turns red when its close to running out.

    you can also backup your codes so if you lose your phone its no big deal. you can unlock the app with your fingerprint. you can tap on a code and then have it add that to the clipboard and then go back to the previous app