• 2 Posts
  • 7 Comments
Joined 2 years ago
cake
Cake day: October 16th, 2023

help-circle
  • CocaineShrimp@lemm.eetoAsklemmy@lemmy.mlRoad trip tips
    link
    fedilink
    English
    arrow-up
    9
    ·
    1 day ago
    • Check all the fluids in your car, and change em / top em up if it’s been a while.
    • Pack an emergency car kit. I’m sure there are loads of recommendations online, but I usually have:
      • Flashlight
      • Battery bank + charging cable for phone
      • Spare tire and wrenches (if you’ve got a charged phone, you could instead call for a tow if needed)
      • Blanket (it can get surprisingly cold at night, even in the summer)
      • Spare oil / coolant (water works as well for coolant in a pinch)
    • For misc stuff I like to bring on trips:
      • A pack of water. If there’s long stretches with no towns, water is always nice
      • Sunglasses
      • If you’re going to play stuff off your phone, I’d recommend downloading music and a variety of podcasts to go. Don’t just download 10 episodes from the same channel; mix it up. And mix up the genre too. I usually will have a mix of world news, tech news, stories, and self improvement stuff
      • Snacks & other drinks



  • CocaineShrimp@lemm.eetoLinux@lemmy.mlSSH managers on Linux?
    link
    fedilink
    English
    arrow-up
    42
    arrow-down
    1
    ·
    1 month ago

    Not a GUI, but I keep my ~/.ssh/config clean by splitting my configs into folders, and including them in the main ~/.ssh/config.

    I have the folder, ~/.ssh/config.d/, and here’s what it looks like:

    ~/.ssh/config.d
    .
    ├── work
    │   ├── dev.config
    │   ├── staging.config
    │   └── prod.config
    └── server
        ├── development.config
        ├── containers.config
        ├── home.config
        ├── pis.config
        └── server.config
    

    Then my ~/.ssh/config looks like this:

    Include config.d/work/*
    Include config.d/server/*
    Include config.d/other/*