https://github.com/thayerw

My Lemmy themes at UserStyles.world:

  • 1 Post
  • 34 Comments
Joined 1 year ago
cake
Cake day: June 19th, 2023

help-circle
  • thayer@lemmy.catoSelfhosted@lemmy.worldNetworking Dilemma
    link
    fedilink
    English
    arrow-up
    5
    ·
    8 days ago

    If it were me and there was no way to have an additional drop installed from the exterior, I would still consider running a single cable through the living space to your desired location, as discreetly as possible.

    It’s difficult to suggest exactly how to do so without pics or a floorplan, but I would try to match the wall or trim color and keep the cable tucked close to the floor and/or ceiling throughout the run.

    Once in place, the cable will quickly disappear into your surroundings and you’ll be left with rock solid reliable networking.





  • You’re very welcome. For Markor, I wasn’t a fan of the default viewer theme, which is how I view most notes when on mobile, so I made some tweaks to improve its appearance…below is a screenshot:

    If you want something similar, add the following under Settings > View mode:

    • Open existing files in view mode: on (this may be default)
    • Link color: #71aaff

    And replace the <style>...</style> block under the inject -> head pop-up with the following CSS:

    <style> 
    html, body { 
      font-family: sans-serif-condensed;
      font-size: 110%;
      background: #0d1117; 
      color: #c9d1d9;
      margin: 0;
      padding: 0.5em;
    }
    
    a {
      color: 58a6ff;
      text-decoration: none;
    }
    
    h1, h2, h3, h4 {
      padding-bottom: 0.25em;
      border-bottom: 2px solid #222934;
    }
    
    hr {
      border: 2px solid #222934;
    }
    
    pre, code {
      color: #b5a5ee;
    }
    </style>
    

  • I write nearly everything in markdown. Like you, I don’t want databases, or other barriers that will complicate portability.

    I just use my text editor of choice, usually VSCodium or vim on the desktop, and Syncthing to keep the notes synced across all of our devices.

    On Android, I’ve been happily using the Markor markdown editor for years. I’ve tried several others but always return to its simplicity.

    All of the above editors support opening folders in a tree view, so you can easily keep your notes sorted under a traditional folder structure and find what you when you need it.

    Edit: Forgot to mention that Markor does have a dedicated to-do feature too, which also uses markdown.









  • thayer@lemmy.catoSelfhosted@lemmy.worldHelp me build a home server
    link
    fedilink
    English
    arrow-up
    11
    ·
    edit-2
    6 months ago

    I don’t think you’ll be able to build anything with €100, but you might be able to buy an old PC or laptop locally and use it as is. I’ve never run nextcloud myself, but from I’ve read it’ll be the most taxing service on your list. Everything seems pretty minimal, though I don’t know anything about Photoprism.


  • VSCodium on the desktop, and Markor on Android. I write everything in markdown, and VSCodium is already where I spend half my time editing and writing code, so it was an easy choice. I also use Vim for quick one-offs, especially if I’m already working on a project with it.

    Like others here, I also use Syncthing to keep my notes synced between home server, remote clients, and mobile devices.




  • thayer@lemmy.catoSelfhosted@lemmy.worldSSD only NAS/media server?
    link
    fedilink
    English
    arrow-up
    4
    ·
    edit-2
    7 months ago

    My home server is a NUC inside an Akasa Turing fanless case with an 8TB Samsung 870 QVO SSD for my file shares. Works great and it’s completely silent.

    It should go without saying that routine, off-site backups are an important element of server administration, regardless of drive type. Mine are completed monthly, and critical data (docs, keepass databases, etc.) is also synced across multiple devices using Syncthing.