dataprolet

joined 2 years ago
MODERATOR OF
[–] dataprolet@lemmy.dbzer0.com 6 points 2 days ago

Lol no, most Israelis are Zionists because the obviously support the general idea of an Israeli state despite the current fascist government.

[–] dataprolet@lemmy.dbzer0.com 10 points 4 days ago (1 children)

Not sure how lightweight it needs to be, but I use Ghost and it's pretty simple and basic.

[–] dataprolet@lemmy.dbzer0.com 48 points 1 week ago

An initial library scan with 19k assets: 1m40s down to 9 seconds.

Insane!

[–] dataprolet@lemmy.dbzer0.com 0 points 1 week ago

If you can't type a twelve word passphrase, nobody can help you..

1
submitted 2 weeks ago* (last edited 2 weeks ago) by dataprolet@lemmy.dbzer0.com to c/android@lemdro.id
 

I used to use Neo Launcher as an open source replacement for Nova Launcher. Unfortunately it's haunted by a terrible bug that regularly resets my home screen. Now I'm looking for a replacement. All I need is the ability to change the home screens grid size, the app icons (ideally also the names) and hide apps from the drawer. Any suggestions? EDIT: It should also be open source, obviously. EDIT #2: I've settled with Lawnchair and it looks quite promising so far!

 

I followed this tutorial to set up local domain names with SSL-certificates using DuckDNS: https://notthebe.ee/blog/easy-ssl-in-homelab-dns01/

I have three local domains for my Nginx Proxy Manager running on a VPS, for my self-hosted Nextcloud and my Proxmox-WebGUI both running on my local Homeserver. They follow the scheme service.dataprolet.duckdns.org.

Now I use Uptime-Kuma to monitor my services including the three domains and for some reason those three domains constantly time out after 48 seconds. I already set up the retries to 3, but to no avail.

I also use Pi-hole and Unbound and thought, that might be an issue, but testing my DNS using dig, mtr, traceroute, nslookup and host all returned normal values and no errors.

Does anybody have any idea what could cause this? I'm kind of clueless at this point. Thanks in advance!

EDIT: I don't get it.

  1. I can't ping duckdns.org on my home server. I only get 100 % packet loss. I can open the website in my browser though. I also can't ping www.duckdns.org, which redirects to appservers-duckdns-prod-1630339571.ca-central-1.elb.amazonaws.com. Also gets 100 % packet loss.
  2. I've added duckdns.org to my Uptime-Kuma and it got flagged as down because timeout of 48000ms exceeded but my other domains using DuckDNS were unaffected.
  3. I added another local domain to Uptime-Kuma to see the differences of having ignoring SSL errors tuned on or off and the number of retries:
  • Nextcloud
    • Ignore SSL error = false
    • Retries = 2
  • Proxmox
    • Ignore SSL error = true
    • Retries = 1
  • VPS
    • Ignore SSL error = false
    • Retries = 1
  • Homepage
    • Ignore SSL error = true
    • Retries = 2

Throughout the day only the newly added Homepage got flagged as down for 5 times. The 3 others were up the whole time.

1
submitted 7 months ago* (last edited 7 months ago) by dataprolet@lemmy.dbzer0.com to c/degoogle@lemmy.ml
 

I'm looking for an alternative Youtube front-end for Linux Desktop but FreeTube for example doesn't support resolutions higher than 1080p. Is there an easy to use client, that supports 1440p and higher out-of-the-box?

 

I noticed my home servers SSD running out of space and it ended up being my Jellyfin Docker container which wasn't clearing the directory for transcodes in /var/lib/jellyfin/transcodes correctly.

I simply created a new directory on my media hard drive and bind mounted the above mentioned directory to it. Now Jellyfin got over 1 TB of free space to theoretically clutter. To prevent this I simply created a cronjob to delete old files in case Jellyfin isn't.

@daily /usr/bin/find /path/to/transcodes -mtime +1 -delete

Easy!