Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)MB
Posts
1
Comments
293
Joined
2 yr. ago
  • I’m using Strongbox on iOS and macOS with iCloud Sync and never had any merge issue. Well, maybe once when I deliberately edited the same entry on two different devices. But during normal use, the sync and merge works great.

  • And if you want some customisation, e.g. some repeating string over and over, you can use something like this:

     undefined
        
    yes "b0M" | tr -d '\n' | head -c 10G | gzip -c > 10GB.gz
    
      

    yes repeats the given string (followed by a line feed) indefinitely - originally meant to type "yes" + ENTER into prompts. tr then removes the line breaks again and head makes sure to only take 10GB and not have it run indefinitely.

    If you want to be really fancy, you can even add some HTML header and footer to some files like header and footer and then run it like this:

     undefined
        
    yes "b0M" | tr -d '\n' | head -c 10G | cat header - footer | gzip -c > 10GB.gz
    
      
  • I was going by this thread and this comment. Those other websites are mostly selling SIMs for industrial IoT or CCTV stuff and are either acting as a MVNO (where I don’t know how much influence they have on the network configuration) or probably selling foreign cards with free roaming or something like that.

  • Fixed IP might be a problem as basically all carriers use CGNAT. From what I could gathergoogle, Three seems to be the only one where you can manually change the APN to 3internet to get assigned a proper IP address.

  • If you’ve got a slow-ish SD card and a game that compresses very well, then this might be the case. But with a modern card from e.g. SanDisk or Samsung with U3 and A2 certifications, this probably won’t do that much.

  • Get an OBD2 adapter. If you're on Android, a cheap ELM327-clone with Bluetooth will do. If you're on iOS, you'll need one with WiFi. There are apps (Android: Torque Pro, iOS: OBD Fusion) to read out any error codes and they can also give you the values from all the different sensors. Helps a lot with troubleshooting.

  • This gives basically no headaches at all. I am running this schema on all my Linux devices. And swap is done using a swapfile instead of a partition. This way, you can easily increase it later on.

  • Ohh, SQLite isn't "one" db. SQLite is file-based. I.e. a database in e.g. PostgreSQL (containing several tables, views, indexes, etc.) would translate to one SQLite file (e.g. mydatabase.db3 or myappdata.sqlite). And each app has its own file/database. If the file corrupts, then it's only affecting that specific app. (However, SQLite is pretty robust.) And since these are just files, you can backup them together with the application. No need to export data or shutdown the database first.

  • There are smart valves. You can just unscrew/unclip the existing dumb ones and replace them with smart ones. They usually even report the temperature (well, near the radiator - so you might want to get extra temp sensors for the other end of the room).

  • Selfhosted @lemmy.world
    mbirth @lemmy.ml

    Selfhosted Trakt.tv alternative?

    Now with Trakt doing their best to get rid of their non-paying users, I'm looking for self-hosted alternatives to track my movie/show catalog and my progress in watching it.

    So far, I've found:

    • devfake/flox - the original, hasn't been updated in 5 years
    • Simounet/flox - fork of flox - started further development early 2024, added ActivityPub, reviews and some more features
    • MediaTracker - "highly inspired by flox" and also tracks books and computer games

    These all come with (one-way) Plex integration to track what you're watching.

    Before trying all the other ones mentioned in MediaTracker's README - is anybody using one of those already? Or some similar product?

    EDIT: Suggestions from t