k4j8

joined 2 years ago
[–] k4j8@lemmy.world 4 points 2 weeks ago

Any to-do app that supports recurrence with:

  • the next due date based on completion date for things like mowing the lawn, replacing filters, etc.
  • annual due dates for things like a spring check-up

I use Vikunja, but I think Donetick would be perfect for your use case! It has a log of task completions and fulfills both bullets above.

[–] k4j8@lemmy.world 4 points 1 month ago

But compared to Google and not owning your data? It's SO much better, not that it's really a fair comparison.

Sorry your experience has been so bad. I'm using the LinuxServer.io version. I've had to run some OCC commands when upgrading and it's sometimes slow, but for me it syncs my files and does version control + sharing well.

[–] k4j8@lemmy.world 2 points 1 month ago (5 children)

Nextcloud is awesome, you should definitely still use it. It's really big and has its issues when upgrading, but it's still one of—if not the—best for file sync and share.

Easy Docker solutions:

My two cents: try it yourself but don't start using their app store until you've gotten a better feel for things. They have some great app store apps, but it makes you dependent on Nextcloud.

[–] k4j8@lemmy.world 2 points 1 month ago

Have you considered Kanban apps? All of them should support A+C. I've used Wekan and Kanboard. Hope this helps your searching!

[–] k4j8@lemmy.world 12 points 2 months ago

Caddy has this feature built-in. It looks nice too.

recipes.local {
	root * /srv
	file_server
}

https://caddyserver.com/docs/caddyfile/directives/file_server

There's also File Browser.

[–] k4j8@lemmy.world 5 points 3 months ago (3 children)

wg-easy

Agree, highly recommend this and/or Tailscale.

[–] k4j8@lemmy.world 3 points 4 months ago (1 children)

Great list! If you already have the Raspberry Pi devices, great. If you were going to buy some, I would look at thin clients instead. Low-power, cheaper, more powerful, can use real hard drives instead of SD cards or adapters, and x86 instead of ARM. I have an HP T630 I like but I hear good things about the Dell Wyse 5070 too.

[–] k4j8@lemmy.world 3 points 5 months ago

I really like Vikunja and use it individually both personally and professionally. It meets all of your criteria except tracking hours. They have a nice demo too: https://try.vikunja.io/.

[–] k4j8@lemmy.world 1 points 5 months ago

I was going to say that Finamp doesn't support offline filtering by artists, but when looking for the open issue I just found out the beta does support this! Awesome!

[–] k4j8@lemmy.world 2 points 7 months ago

As others have said, Nextcloud for files/calendar and Tailscale for VPN is your answer.

Nextcloud can be installed in several ways, one of which is Docker Compose. Docker Compose is flexible but requires learning a bit, although you can use it for most self-hosted software.

[–] k4j8@lemmy.world 1 points 8 months ago

We’ve integrated a new REST API and embedded web server directly into the pihole-FTL binary. This eliminates the need for lighttpd and PHP, reducing the installation footprint and boosting performance.

Very nice!

[–] k4j8@lemmy.world 0 points 10 months ago (1 children)

I host Caddy and Vaultwarden using Docker. The traffic into the reverse proxy, Caddy, works over port 443, not 1808 or 1443. Using the Caddyfile, you can tell Caddy which port to send the traffic over.

Caddy docker-compose.yml

services:
  caddy:
    ports:
      - "80:80"
      - "443:443"

Caddyfile, although there are other ways to do this

*.example.com {
        @vaultwarden host vaultwarden.example.com
        handle @vaultwarden {
                reverse_proxy :11808
        }

Vaultwarden docker-compose.yml

services:
  vaultwarden:
    ports:
      - 11808:80
view more: next ›