12
submitted 6 days ago* (last edited 6 days ago) by paequ2@lemmy.today to c/mealtimevideos@lemmy.cafe

cross-posted from: https://lemmy.ca/post/63249242

AI slop has hit the science creators - it's impossible to go on social media without coming across it. Here's why you can't trust AI science slop, and tips on how to spot it.

[-] paequ2@lemmy.today 60 points 1 month ago

God I hate those stupid magic links. They're WAAAAYYY slower than just using my password manager.

AND they kinda contribute to locking you into Big Tech. I sometimes have problems with those stupid links because I don't have a Gmail account. Somewhere along the stupid chain there's probably some stupid check that delays or blackholes emails to non-big-tech domains.

13
submitted 1 month ago* (last edited 1 month ago) by paequ2@lemmy.today to c/selfhosted@lemmy.world

I still haven't found a Google Drive replacement. Nextcloud is way too bloated. Seafile is way too complicated to install.

FileGator seemed like another possible solution...

92
submitted 2 months ago by paequ2@lemmy.today to c/opensource@lemmy.ml

Hello! I currently maintain a small/medium-small open source project. I know I have some active users. It's been fun, but I no longer feel like I can properly maintain it. I've been considering two options: archive the project or transfer the ownership to someone else.

Does anyone have any experience doing either of these things?

Transferring the project to someone else who would actively maintain the project seems like a good option. However, what would that process look like? How do I vet or trust random people on the internet? What if I transfer it to someone and then they add a bitcoin miner a year later?

11
submitted 3 months ago by paequ2@lemmy.today to c/selfhosting@slrpnk.net

A family member is interested in self-hosting their photos! They asked me if there is a NAS I would recommend.

They're not very technical. They can manage their own Macbook, but not much else.

I can't recommend them my setup because I built my own computer and just run Debian and Docker.

They would definitely need a ton of hand holding. I think they can manage clicking a web UI though. Any terminal stuff will probably scare them away.

Anyone have any recommendations? Something from QNAP, Ugreen, Zima, or something else?

They're mainly interested in self-hosting photos. I was hoping to get them on Immich. I could see them doing some file hosting too. So maaaybe running Seafile would be nice. Or maybe just NFS.

1
submitted 3 months ago by paequ2@lemmy.today to c/selfhosted@lemmy.world

Can anyone share their experiences of running a NAS with ZimaOS or similar software vs just using Debian?

I'm pretty comfortable on the command line and like having full control over my system. I'm happily running Debian and using Docker Compose to run Immich, Home Assistant, Jellyfin, and a few other services. I also use Tailscale and have https setup.

However, I am curious to learn more about these more turnkey solutions. Are they worth switching to? I guess ZimaOS comes with a mobile app? Is that useful? Does ZimaOS make it easier for end users to use? Is managing ZimaOS annoying?

Is ZimaOS even worth considering if is not Open Source?

7
submitted 3 months ago* (last edited 3 months ago) by paequ2@lemmy.today to c/showerthoughts@lemmy.world

I'm taking a shower at someone else's house and I noticed they have 1 bottle that says "3-in-1, shampoo, conditioner, and body wash".

Why isn't this the standard? Why do we even need 3 different types of soaps to bathe?? Have I bought into Big Soap capitalist propaganda without even noticing??

I just finished showering with the 3-1 soap and I don't feel any difference between the 1 soap vs the 3 soaps I have at home.

[-] paequ2@lemmy.today 49 points 4 months ago

I started using Claude Code myself. I got kind of obsessed with it.

Over the last several months, the GitHub username with the most merged PRs in Bun's repo is now a Claude Code bot. We have it set up in our internal Discord and we mostly use it to help fix bugs. It opens PRs with tests that fail in the earlier system-installed version of Bun before the fix and pass in the fixed debug build of Bun. It responds to review comments. It does the whole thing.

Seems like they've bought into the hype.

4

The new Home Assistant Connect ZBT-2 is here.

I just bought and setup the Connect ZBT-1 a few weeks ago... 😭

1
submitted 5 months ago by paequ2@lemmy.today to c/selfhosted@lemmy.world

cross-posted from: https://discuss.online/post/30666278

Headscale - The main objective of Headscale is to provide a non-proprietary implementation of the Tailscale protocol & control server for hobbyists and self-hosters. Acts as a replacement for the listening servers while allowing you to continue using your existing clients applications. Funnel functionality is currently considered in beta status. Does not include a web ui by default.

Netbird - Connect your devices into a secure WireGuard®-based overlay network with SSO, MFA and granular access controls. You can try their hosted service or selfhost it, or whatever.

Pangolin - is a self-hosted tunneled reverse proxy server with identity and context aware access control, designed to easily expose and protect applications running anywhere. Pangolin acts as a central hub and connects isolated networks — even those behind restrictive firewalls — through encrypted tunnels, enabling easy access to remote services without opening ports or requiring a VPN. Combines traefik reverse proxy with Single Sign On and Wireguard. Meant to be selfhosted, but they do offer a hosted instance.

Pin codes, temporary links, password links for exposing services as a “funnel”. Similar to cloudflare tunnels, where users cannot be bothered to sort things out and just want a service exposed.

28
submitted 5 months ago by paequ2@lemmy.today to c/linux@lemmy.ml
8
submitted 5 months ago by paequ2@lemmy.today to c/selfhosted@lemmy.world

I'm wondering if I'm starting to outgrow Tailscale... my wife keeps having networking issues on Android due to Tailscale, the Nvidia Shield kills the Tailscale app randomly, and my parents' TV doesn't have a Tailscale app...

I feel like the time is approaching to publicly expose some of my services to the internet...

Any other tips?

47
submitted 5 months ago by paequ2@lemmy.today to c/linux@lemmy.ml
2
submitted 5 months ago* (last edited 5 months ago) by paequ2@lemmy.today to c/homeassistant@lemmy.world

I have an Inovelli White Series Matter+Thread light switch. It has a custom button called Config that you can use for automations. Config is listed under Events in Device Info. I've noticed some unexpected behavior whenever I run sudo docker compose restart.

Here's what happens after compose restart exits.

  • Home Assistant WebUI comes up
  • Inovelli switch entities become unavailable
  • 5 minutes passes in the unavailable state
  • Inovelli switch comes back to life, setting all of its entity's values back to what they were before
  • Config event fires

The Config event firing on reboot is really bad because it triggers an automation I have that listens for the Config event to fire...

How should I be coding the automation to ignore Config events from reboots? I found some Event docs and also a forum post, but they didn't turn out too helpful.

Here's the automation I came up with based on the links above. Unfortunately, this still triggers the automation on reboot.

alias: Inovelli switch 
description: ""
triggers:
  - trigger: state
    entity_id:
      - event.inovelli_on_off_switch_config
conditions:
  - condition: not
    conditions:
      - condition: state
        entity_id: event.inovelli_on_off_switch_config
        state: unavailable
      - condition: state
        entity_id: event.inovelli_on_off_switch_config
        state: unknown
actions:
  - choose:
      - conditions:
          - condition: state
            entity_id: event.inovelli_on_off_switch_config
            attribute: event_type
            state: multi_press_1
        sequence:
          - action: script.inovelli_switch_turn_on
            metadata: {}
            data: {}
mode: single

Running HA 2025.10.4 in Docker Compose.

[-] paequ2@lemmy.today 46 points 5 months ago* (last edited 5 months ago)

Wow. wat. This is top??

top

The only reason I use htop is because I never bothered to learn top. I'm totally down to avoid downloading and installing another utility though. The time to learn top is TODAY!

[-] paequ2@lemmy.today 46 points 9 months ago

‘MechaHitler’ incident

Government: Shut up and take my money!

[-] paequ2@lemmy.today 57 points 10 months ago* (last edited 10 months ago)

Well, clearly this is gonna be something that every republican will oppose, right? Riiiight? The government tracking citizens with a database?? My conspiracy theory neighbor bitches about this all the time. He's gonna oppose this, right?????

[-] paequ2@lemmy.today 92 points 1 year ago* (last edited 1 year ago)

he’s back to Linux

^^^ Amazing parenting right here. 👏 👏 👏 👏 Bravo sir.

[-] paequ2@lemmy.today 108 points 1 year ago* (last edited 1 year ago)

United States: How do the Chinese and Russians fall for such obvious government propaganda!?!

Also United States: OMG, my favorite show CSI: Miami Law Blue Bloods Unit is on! OMG, my favorite movie is on Cop Show, but With More CGI and Colorful Costumes!

[-] paequ2@lemmy.today 46 points 1 year ago

LOL! Here. First try! 😹

[-] paequ2@lemmy.today 76 points 1 year ago

Usually projects (especially large projects) are kept in a version control system like git. This is a prime reason why. With version control, it wouldn't have mattered if you deleted the docker compose file, you could just bring it back. Also, usually every change has to go through version control, this way you always have a backup of the latest version of the file.

[-] paequ2@lemmy.today 173 points 1 year ago

HP, which is buying the company’s intellectual property for $116 million... Humane was seeking a $1 billion buyout

🤣 🤣 🤣

[-] paequ2@lemmy.today 46 points 1 year ago

My wired headphones.

[-] paequ2@lemmy.today 48 points 1 year ago

I've been using LibreOffice more these days for writing, slides, and spreadsheets. I can't remember now the last time I used a Google app for this.

view more: next ›

paequ2

joined 1 year ago