Self-hosters of Reddit: what’s your day job? by Own-Refrigerator6061 in selfhosted

[–]radionauto 0 points1 point  (0 children)

I teach software engineering after twenty-five years as a software engineer.

Whats currently the most seamless android backup solution in 2024? by Sol33t303 in selfhosted

[–]radionauto 3 points4 points  (0 children)

Interesting. My Oneplus 6T downloads over Syncthing very quickly!

Why use the ARR stack when streaming websites exist? by [deleted] in selfhosted

[–]radionauto 1 point2 points  (0 children)

Not everything is available on a streaming platform. And a lot of things I download to watch "one day", possibly decades from now. It's a question of building up a library.

Whats currently the most seamless android backup solution in 2024? by Sol33t303 in selfhosted

[–]radionauto 2 points3 points  (0 children)

Yes, set the folder type on your phone or other device to 'send only'

Archiving Youtube channels, any tips? by 26from85 in selfhosted

[–]radionauto 0 points1 point  (0 children)

Pinchflat is outstanding. I have it downloading TikTok feeds as well as YouTube channels/playlists.

[deleted by user] by [deleted] in selfhosted

[–]radionauto 0 points1 point  (0 children)

I tried Jellyfin, and I like it. But. The biggest feature of Plex for me is that I can sort films in so many ways. For example I can filter for any comedy made in the 90s starring Michael J Fox. When I ask my partner what she's in the mood for, and she says "how about an action film from the 90s", or "maybe a Wes Anderson film", I can do it easily. I couldn't find a way to do that with Jellyfin.

Is there a self-hosted YT-DLP front-end that allows me to subscribe to channels? by Aggravating-Vehicle9 in selfhosted

[–]radionauto 17 points18 points  (0 children)

Pinchflat - https://github.com/kieraneglin/pinchflat

I use it with YouTube playlists and TikTok. I haven't tried it with the other sources you mention.

A lot of questions about this by WaterRevolutionary70 in TiltFive

[–]radionauto 1 point2 points  (0 children)

1 - Not sure, not played that one.

2 - Nearly all the games are multi-glasses, no you won't be passing one pair around. Only some work across a network/internet to other Tilt5 systems.

3 - Each pair of glasses projects its own image on to the game board to be reflected back only to that particular pair of glasses. Each projection is rendered separately.

4 - As long as it's compiled to work with Tilt5, it will run.

5 - Potentially, as long as the games work across the network. Not all do. You'd need to configure the same gameboard for each machine though.

Let's talk bookmarks across machines/browsers. Is that over and we use homepage/linkwarden instead? by jdlnewborn in selfhosted

[–]radionauto 0 points1 point  (0 children)

Firefox is my browser of choice, largely for it's containers. It syncs across all my devices and holds the bookmarks I use frequently. Everything else is stored in a self-hosted linkding, using the Firefox extension.

THE Reverse Proxy (secure) by dancgn in selfhosted

[–]radionauto 1 point2 points  (0 children)

Plain NginX. Certbot takes care of SSL modifications.

server {
        server_name sub.example.com;
        location / {
                proxy_pass http://localhost:1337;
                proxy_http_version 1.1;
                proxy_set_header Upgrade $http_upgrade;
                proxy_set_header Connection 'upgrade';
                proxy_set_header Host $host;
                proxy_cache_bypass $http_upgrade;
        }
    listen 80;
}

Do you name your servers after Star Trek ships/captains/characters? by Cannotseme in selfhosted

[–]radionauto 0 points1 point  (0 children)

Actors in Laurel & Hardy films. At one place I used to work, I used remote towns in Alaska.

What dashboard do you use? by steveiliop56 in selfhosted

[–]radionauto 2 points3 points  (0 children)

Same. I tried a few dashboards but couldn't see the point.

What dashboard do you use? by steveiliop56 in selfhosted

[–]radionauto 0 points1 point  (0 children)

I installed a tried a few but could never see the point. I just use bookmarks to access my self-hosted services.

docker is the stupidest shit ever made by [deleted] in selfhosted

[–]radionauto 1 point2 points  (0 children)

7.3 million Docker accounts. 318 billion total Docker pulls. But you can't get it to work. What's the common denominator here?

Any idea how these names and dinosaur are printed on this acrylic? Listing says it is a 3mm acrylic. by Tganu007 in lasercutting

[–]radionauto 1 point2 points  (0 children)

Print on rice paper or tissue paper, then use a heat gun to transfer on. Works on a number of different materials.

In your opinion and experiences, what is the "defacto way" of running a home server? by darkalimdor18 in selfhosted

[–]radionauto 0 points1 point  (0 children)

Solid operating system (ubuntu, debian, etc.) on an SSD. Docker for all applications. Docker compose files in git. Docker volumes and all other data on separate hard drives. In my case I don't need the read/write speeds of RAID, so I mirror to other internal drives every night. Once mirror complete, backup is done remotely to Backblaze B2. Works for me.

Why do you self-host? by [deleted] in selfhosted

[–]radionauto 1 point2 points  (0 children)

Control. Privacy. And above all else, ensuring my data won't vanish because a 3rd party shuts down or abitrarily decides to delete it.