• 1 Post
  • 73 Comments
Joined 1 year ago
cake
Cake day: June 2nd, 2023

help-circle

  • I never knew about it until now and I’ve used GIMP often enough, but if I was going to assign a keyboard shortcut, that makes sense. Ctrl +A select all. Ctrl + Shift + A select none.

    Shift is the oppositer (reverser?). Tab goes to next field, Shift + Tab goes in reverse order. Ctrl + T open new tab in browser, Ctrl + Shift + T reopen last closed tab - OK that’s not exactly opposite but close enough.




  • Ah shit the sheep thing! In fact, there were others I can’t remember. And I seem to remember somewhere along the line they went from fun to spam things walking around your screen trying to make you buy shit or maybe they were trying to scam you, I can’t remember but they weren’t fun anymore, and hard to get rid of.



  • I mean I guess you are supposed to take it to your computer repair shop and tell them it won’t stop playing Für Elise, and the shop is supposed to recognise it as a failure of CPU fan signal. If it just beeped a few times on startup then people would ignore it, and if it beeped constantly then well maybe Für Elise is nicer.





  • Dave@lemmy.nztoProgrammer Humor@programming.devCupholder.exe
    link
    fedilink
    arrow-up
    224
    arrow-down
    2
    ·
    edit-2
    23 days ago

    Haha I remember the days of downloading random EXEs off the internet and running them to see what they do (also the days of CD-rom drives).

    My auntie somehow managed to get a virus that played Für Elise through the motherboard speaker and never stopped so long as the thing was on. I don’t think they ever solved it, in the end they just got a new PC.







  • I have minor beef with Immich and basically any larger project and the way they go about their Docker Compose. Basically I feel they make the assumption that they’re the only thing running.

    ^Disclaimer: I fully accept this is all just me being too stupid and not the Immich development team.

    This might be my turn to be too stupid but isn’t the point of docker that they all run in containers so it doesn’t matter? They can all use the same database port, because the database is in a container and so doesn’t prevent another database container using the same port. The port doesn’t need to be exposed to the host.

    The only issue that comes up when running lots of services is accessing them all over http, and that’s what a reverse proxy is for. I run a dozen services on the same machine, mostly using the default docker compose files, and never have to mess with things like you have here.