• 0 Posts
  • 10 Comments
Joined 1 year ago
cake
Cake day: October 13th, 2023

help-circle



  • curledtoCool Guides@lemmy.caA cool guide to soldering
    link
    fedilink
    English
    arrow-up
    34
    arrow-down
    2
    ·
    edit-2
    5 months ago
    • touch the tip of the solder where the iron meets the pad or the pin

    • try to get as much contact with both the pad as the pin as you can

    • the pad could be dirty or not hot enough. Especially when the pad is connected to a ground or power plane layer in the PCB it may take longer than expected to reach a sufficient temperature. Usually adding some flux helps remove any dirt.




  • Just upgraded to 10.9.0, server didn’t close properly so there were sqlite .db-wal files left besides the jellyfin.db and library.db files which caused an error about the database tables being locked.:

    Microsoft.Data.Sqlite.SqliteException (0x80004005): SQLite Error 6: 'database table is locked'.
    

    Solved it by running

    systemctl stop jellyfin
    cd /var/lib/jellyfin/data
    sqlite3 jellyfin.db
    > .recover
    > .quit
    sqlite3 library.db
    > .recover
    > .quit
    

    Now the .db-wal files were gone and I could

    systemctl start jellyfin
    

    I did lose a bunch of music metadata, but the advantage of contributing to musicbrainz is that it’s easily recovered :)