BartyDeCanter
- 0 Posts
- 80 Comments
BartyDeCanter@piefed.socialto
Selfhosted@lemmy.world•Latest success Jellyfin rocks!English
8·3 days agoCongratulations! I’ve been using Jellyfin for several years now and the quality has consistently improved. It’s a great tool.
BartyDeCanter@piefed.socialto
Selfhosted@lemmy.world•Vaultwarden while allowing family emergency accessEnglish
14·4 days agoI run Vaultwarden on a VPS for some family and friends, along with a few other services. The way I have dealt with this is a physical printed out letter that explains the basic setup, where my digital notes/config/dockerfiles are, and most importantly what bills need paid to keep it all running. Next to that is a sealed envelope with recovery passwords to my vault and some other things.
Both of them are kept next to my will in a filing cabinet, so that if I’m hit by a bus my family will have the info on what to do. The system is stable and the bills are on autopay, so they won’t have to immediately deal with it, but the instructions are there when ready. As part of it I have designated a friend as my “digital executor” to follow the instructions.
The general outline of the letter is:
To whoever is handling my affairs, thank you for reading this. This letter explains a small collection of computers I run that some friends and family rely on for photos, passwords, and a few other things. Nothing here is an emergency in the first hours or days. The goal of this letter is to help you keep things running long enough for those people to copy their own data out, and then shut everything down cleanly. You do not need to be technical to do the first and most important parts. The later parts will need a technical person, and I name one below.
A companion to this letter is a SEALED ENVELOPE that contains the passwords, keys, and account logins. This letter deliberately contains NO passwords or secrets. If you have this letter but not the sealed envelope, find the envelope before going further - almost nothing can be accessed without it. Checklist of what the envelope should contain is in Section 7.
- Short Overview
- Service/Hardware/Users Chart
- The Bills to Pay
- The Password Manager
- What to Do
- Full Instructions and Notes Location
- The Sealed Envelope Contents
- Digital Executor
BartyDeCanter@piefed.socialto
Dull Men's Club@lemmy.world•I finally sorted through my GMail today, after like 15 years of accumulated mostly random garbage...English
53·6 days ago3600 email over 15 years? That’s… a rather small amount.
BartyDeCanter@piefed.socialto
Wholesome@reddthat.com•Would you rather receive thoughtful gifts or thoughtful words?English
13·8 days agoI’m a middle aged white guy. Most of the time a stranger talks to me in public it’s to ask me for money or try to convert me. But twice this year someone just wanted to compliment my outfit. I was flying high from that for days and still smile thinking about it.
So, thoughtful words every time.
20 years?!? 20 years ago I was reading documentation on open source projects that were 20 years old then.
BartyDeCanter@piefed.socialto
Programmer Humor@programming.dev•Meet Potential LanguageEnglish
12·8 days agoI remember hearing about D fairly early on and thought it sounded interesting, but there wasn’t a compiler for the kind of targets that I was working on. And then every time I’ve heard about it since it’s been that there was some interesting things being developed for it, but that some inscrutable community drama meant that it once again was floundering. ciiiiiircle of life
BartyDeCanter@piefed.socialto
Television@piefed.social•What's are some of the biggest "What if?" in television history?English
24·9 days agoWhat if Firefly’s release hadn’t been completely fucked over by Fox?
BartyDeCanter@piefed.socialto
Off My Chest@lemmy.world•I'm telling my spouse I'm leaving today and I'm crushed.English
5·9 days agoI hear ya. It will get better, a lot better.
My ex had cyclical depression and probably PTSD that she refused to deal with. The cyclical nature meant that when things were going well she was amazing. And then she would cycle downhill and it was awful. And just as I was about to walk away, she’d cycle up and things were great again. Over and over.
The first week after I told her I wanted a divorce was bad. And then it slowly started to get better. And then once we were able to move out it was so much better. The actual divorce process was intermittently difficult, the day of our mediation I cried in the car after. And I would still get randomly angry or sad from certain things.
But now? Everything is so much better. I have a partner who is an actual, active partner. Yeah, there are hard times, but being with someone who is always supportive, kind, and wants to work together instead of blaming me is truly amazing.
You’ll get through this, and it will hurt, and then you will be so much better that you won’t even recognize your old life.
BartyDeCanter@piefed.socialto
Dull Men's Club@lemmy.world•I bought a sefety razor todayEnglish
1·9 days agoI used a Merkur HD with Feather blades for about 20 years and was very happy with it as long as I didn’t rush and used a good shave soap. It was still a bit easy to nick myself, but good enough. I shave about 3 times a week, two rounds each time.
A few years back my partner bought me one of the Leaf razors, which use normal safety razor blades but split into half and as a triple blade setup. I do prefer it, less likely to nick while still having that nice blade feel. Changing blades is fussier with it, and the blade holder mechanism feels fragile, but it’s still fine three or four years later.
BartyDeCanter@piefed.socialto
Linux@lemmy.ml•Why are so many Linux projects on Microsoft GitHub? Shouldn't they all move to Codeberg?English
2·10 days agoHappy to help! And yes, I have no idea what they’re talking about. If you don’t have snapshots (commits) you don’t have version control.
Let me know when you get your game going, I’d love to check it out. I’m working on a few myself.
BartyDeCanter@piefed.socialto
linuxmemes@lemmy.world•When you accidentally say "folder" instead of "directory" in a Linux group.English
12·11 days agoThe biggest silicon wafer is going to be your CPU or GPU. The motherboard is mostly fiberglass and copper.
BartyDeCanter@piefed.socialto
Selfhosted@lemmy.world•Blackblaze B2 status and alternativesEnglish
2·11 days agoI don’t have an exact number, but backing from California to a Hetzner box in Germany via Borg has always been surprisingly fast for the price and that it’s going halfway around the world. I want to say 25-30MB/s? I think people in the EU are reporting getting over 100MB/s.
BartyDeCanter@piefed.socialto
Linux@lemmy.ml•Why are so many Linux projects on Microsoft GitHub? Shouldn't they all move to Codeberg?English
2·11 days agoIf you just want one point of truth, the minimal version is to create a bare repo somewhere that you have ssh access to or your local machine. Then you can clone/pull/push from it.
A bare repo is a special kind of repo meant for exactly this, but can be a bit confusing at first. A normal repo contains all of your current working files and a special
.gitdirectory that holds all the files/blobs/history that git needs to work. A bare repo is just the.gitas a top directory withbare=truein its config. So you can use it as a remote, but it never has a working set. They are usually named something likemy_repo.git.Edit:
Here’s a basic example for setting it all up in a fully local way:
mkdir ~/bares git init --bare ~/bares/my_repo.git mkdir ~/code git clone ~/bares/my_repo.git ~/code/my_repoAnd then you have remotes as your main source of truth in
~/baresand your working copies in~/code. If you want to access from another machine that has ssh access to the first, you can do:mkdir ~/code git clone user@host:~/bares/my_repo.git ~/code/my_repoAnd then use git pull/push to keep it all in sync. Don’t use Syncthing on a git repo, it eventually goes badly.
BartyDeCanter@piefed.socialto
Linux@lemmy.ml•Why are so many Linux projects on Microsoft GitHub? Shouldn't they all move to Codeberg?English
9·12 days agoThe number one thing to remember about git is that you don’t need a full hosting service around it for basic functionality. If it’s just you, a single local repo will probably serve you just fine, maybe use a bare repo on your main machine or a Pi-level device if you like as a remote/backup. Just
git initorgit init --bareand you’re good to go. GitHub, Codeberg, Forgejo, and all the others exist to serve multi-contributor and/or public project-level needs.The number two thing to remember is that it is based around graph theory.
BartyDeCanter@piefed.socialto
Linux@lemmy.ml•Why are so many Linux projects on Microsoft GitHub? Shouldn't they all move to Codeberg?English
9·12 days agoRemember that Git is a distributed VCS, so no git repo is dependent on a central server. Everything else about the project might be heavily dependent on GH, but any active developer is going to have a full copy of the code with history on their main workstation.
That being said, it highly depends on the project, but I’d put it into a few buckets.
- Un/barely maintained projects - This is by far the largest number of repos, and many of them are used as dependencies by all sorts of projects. The truly unmaintained ones would vanish, and I bet most of the barely maintained ones would as well. The most important of these would probably be resurrected since their code will be sitting on all sorts of drives, but it will be a mess. Take a look at https://nesbitt.io/2026/05/08/weekend-at-bernies.html for an idea.
- Small individually actively maintained projects - There are a lot of these and many of them could continue to be just fine, depending on how much of the full GH feature set they use. They would lose all the PRs, wiki spaces, discussions, issues, and maybe even the project page itself that are hosted on GH. For most projects it would be an annoyance to have lost all that, but if it’s a small enough project that one person is maintaining it, it’s probably small enough to pull over to something else reasonably easily depending on how all in they are on GH tools and their use of type 1repos. And a project with only one main contributor is unlikely to fragment.
- Mid-sized active projects - Probably the hardest hit. A lot of these are all-in on the GH tools, particularly issues and CI. Losing that would hurt a lot because the project is big enough to really need those tools and uses them at a volume that they can’t just host on the leads laptop. These are also going to take a lot of work to set up the project infrastructure elsewhere. And this would probably be the sort of thing to push and simmering tensions to erupt, leading to fragmentation.
- The big projects - Probably the least hardest hit. Most of these are just using GH as a push mirror. The core team probably has a functioning private communication and governance system, their own issue tracker (even if it pulls from GH), documentation, and public discussion groups. Most of these run their own private CI. And they are the ones most likely for another host to step in and offer to help.
So the little stuff? Probably going to be annoyed or not care a lot. The big stuff? Same thing. But that middle group would be hurt.
BartyDeCanter@piefed.socialto
Linux@lemmy.ml•Why are so many Linux projects on Microsoft GitHub? Shouldn't they all move to Codeberg?English
15·12 days ago- CI runners - GH offers free CI runners for a variety of OSs. I can automatically test my code on Linux/Mac/Windows for free on GH. No one else offers that because it is very expensive. You need windows licenses and Apple hardware. And Codeberg only offers it on Linux after a back and forth discussion. Plus, while simple GH CI Actions move to Forgejo Actions pretty easily, more complex ones require a complete rewrite.
- Better issue tracking - FJ’s issue tracking is pretty good, and perfetcly fine for small projects, but GH’s is better.
- Better CLI -
fjis decent and improving, butghis better - Better project pages - Codeberg Pages is decent and improving, but GH Pages are better.
- Lots of other small things - Codeberg is decent and improving, GH is better.
For most people, myself included, the only thing that really matters are the CI runners. But that is also the one thing that costs the most to support.


Take my upvote and get out.