There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

@quaff@lemmy.ca cover

This profile is from a federated server and may be incomplete. Browse more on the original instance.

quaff ,
@quaff@lemmy.ca avatar

I’ve switched from Quad9 to Mullvad DNS a month ago, and I’ve been noticing some domains aren’t resolving. Domains that shouldn’t be blocked. It feels like Mullvad’s rules are extra restrictive.

quaff ,
@quaff@lemmy.ca avatar

The key for me was being told: it’s okay to ride (to hold) the clutch a little before/during/after you’re switching gears.

quaff ,
@quaff@lemmy.ca avatar

Are there any updates regarding microphone and Touch ID support in this release?

quaff , (edited )
@quaff@lemmy.ca avatar

Pretty simple to switch (if you have a little docker experience). Create a folder (e.g. ./postgres), add the folder as a volume in the postgres portion of the compose file (maybe something like /db), then run just the database with newly mounted folder, shell in, and copy everything from the Postgres folder to this new folder. After that, swap mounts so the new folder is used as Postgres db and you’re good. If something went wrong, the pgdata volume is still there to switch back to.

Rectangle for Linux?

To preface this, I’ve used Linux from the CLI for the better part of 15 years. I’m a software engineer and my personal projects are almost always something that runs in a Linux VM or a Docker container somewhere, but I’ve always used a Mac to work on personal and professional projects. I have a Windows desktop that I use...

quaff ,
@quaff@lemmy.ca avatar

It’s funny. I have been forced to use macOS because of work, and I use rectangle to mimic what KDE plasma does out of the box. I’d suggest using KDE if you wanted something powerfully customizable and user friendly. If you find something that works with other windows decorations (non-KDE), I’d love to know about them too for when I inevitably switch back to Linux Desktop!

quaff ,
@quaff@lemmy.ca avatar

True that. Small victories 🥲

quaff ,
@quaff@lemmy.ca avatar

Asahi Linux is shaping up nicely. I’ll probably install that soon. 👀

quaff ,
@quaff@lemmy.ca avatar

Make one, if for nothing else as a portfolio piece!

quaff ,
@quaff@lemmy.ca avatar

Is there an overview of what is being used? 🙏

quaff ,
@quaff@lemmy.ca avatar

Got a DM from the OP:

Hey! Sorry, I’m replying in PM instead for this thread. Since I’m new to lemmy, the post was removed on my instance because I didn’t have enough karma to post pictures but it still got published to lemmy.ml.

The things I’m using are:

  • OS: Nix
  • WM: Sway
  • Bar: Waybar
  • Fonts: Iosevka Aile + Pragmata Pro
  • Emacs windows: Eww + Mu4e + .emacs config

Full dots are here git.mccd.space/pub/dotfiles/

quaff ,
@quaff@lemmy.ca avatar

Good share. I saw the nudge in the mobile app, but I didn’t realize there was breaking changes and upgraded in the middle of the night before bed (what the hell was I thinking???). Spent a good extra hour trying to figure out why.

Key take away, the pgvecto.rs version needs to be upgraded. If you are using docker, update the docker-compose.yml. If you’re not, upgrade your pgvector.rs version first. 🙏

quaff ,
@quaff@lemmy.ca avatar

If only I had access to a windows machine to patch my old ass motherboard 🥹🫡

quaff , (edited )
@quaff@lemmy.ca avatar

I tried it out with my Linux box. There’s a step that requires MMtools that I can’t run with out windows unfortunately 🥲

quaff , (edited )
@quaff@lemmy.ca avatar

Managed to get MMtools working with wine. But now I am running up against issues with my motherboard and failing the security verification of the modified bios 😅

Stay tuned… 🤓

quaff ,
@quaff@lemmy.ca avatar

Whoa. I didn’t know this was a thing! Windows live CD! That’s awesome. Thank you for this! I managed to get MMtools working with wine. But definitely gonna try a few things with this since I’m getting some security verification failures with the modified bios 👀

quaff ,
@quaff@lemmy.ca avatar

I’m running up against the wall of breaking the signature. I guess my motherboard protects itself from unsigned modifications and idiot tinkerers 😂

quaff ,
@quaff@lemmy.ca avatar

Welp. My skills end at #1. So I guess I’m SOL 😂 Thanks for this though! I like knowing that it’s possible, even if it’s outside of my current ability 🙂

quaff ,
@quaff@lemmy.ca avatar

For sure haha I meant I don’t have soldering skills. I know there’s a hardware BIOS programmer device I could get, but I feel like at that point, I may as well get a new motherboard 👀

quaff ,
@quaff@lemmy.ca avatar

Honestly. I suspect in this scenario, the popular use case for enabling Resizable Bar is for gaming. I was hoping to improve my video transcoding experience. 🥸

quaff ,
@quaff@lemmy.ca avatar

Love Steam for that. That reminds me… gotta get me a Steam Deck!

quaff , (edited )
@quaff@lemmy.ca avatar

I’ve pushed up my setup if you’d like to check it out! I use it with ProtonVPN, but can be adapted to be used with others.

Removed link: see other comments for a working docker-compose

quaff , (edited )
@quaff@lemmy.ca avatar

I removed mine since I moved away from Gitlab. There’s other comments with working docker composes, but here’s the latest working version of mine if you’re interested:


<span style="color:#323232;">services:
</span><span style="color:#323232;">  gluetun:
</span><span style="color:#323232;">    image: ghcr.io/qdm12/gluetun:latest
</span><span style="color:#323232;">    container_name: gluetun
</span><span style="color:#323232;">    # line above must be uncommented to allow external containers to connect. See https://github.com/qdm12/gluetun/wiki/Connect-a-container-to-gluetun#external-container-to-gluetun
</span><span style="color:#323232;">    restart: always
</span><span style="color:#323232;">    cap_add:
</span><span style="color:#323232;">      - NET_ADMIN
</span><span style="color:#323232;">    devices:
</span><span style="color:#323232;">      - /dev/net/tun:/dev/net/tun
</span><span style="color:#323232;">    volumes:
</span><span style="color:#323232;">      - ./data:/gluetun
</span><span style="color:#323232;">    environment:
</span><span style="color:#323232;">      ## ProtonVPN Wireguard
</span><span style="color:#323232;">      - VPN_SERVICE_PROVIDER=custom
</span><span style="color:#323232;">      - VPN_TYPE=wireguard
</span><span style="color:#323232;">      - VPN_ENDPOINT_IP=${WIREGUARD_ENDPOINT_IP}
</span><span style="color:#323232;">      - VPN_ENDPOINT_PORT=${WIREGUARD_ENDPOINT_PORT}
</span><span style="color:#323232;">      - WIREGUARD_PUBLIC_KEY=${WIREGUARD_PUBLIC_KEY}
</span><span style="color:#323232;">      - WIREGUARD_PRIVATE_KEY=${WIREGUARD_PRIVATE_KEY}
</span><span style="color:#323232;">      - WIREGUARD_ADDRESSES=${WIREGUARD_ADDRESSES}
</span><span style="color:#323232;">      - TZ=Etc/UTC
</span><span style="color:#323232;">    ports:
</span><span style="color:#323232;">      - ${QBITTORRENT_EXPOSED_WEBUI_PORT}:8080/tcp # qBittorrent Web UI
</span><span style="color:#323232;">
</span><span style="color:#323232;">  qbittorrent:
</span><span style="color:#323232;">    # https://docs.linuxserver.io/images/docker-qbittorrent
</span><span style="color:#323232;">    build: .
</span><span style="color:#323232;">    container_name: qbittorrent
</span><span style="color:#323232;">    restart: always
</span><span style="color:#323232;">    volumes:
</span><span style="color:#323232;">      - ./config:/config
</span><span style="color:#323232;">      # using download path as mount so other services can play nice
</span><span style="color:#323232;">      - ${QBITTORRENT_DOWNLOAD_PATH}:${QBITTORRENT_DOWNLOAD_PATH}
</span><span style="color:#323232;">      - ${QBITTORRENT_THEMES_PATH}:/themes
</span><span style="color:#323232;">    environment:
</span><span style="color:#323232;">      # https://github.com/linuxserver/docker-qbittorrent#umask-for-running-applications
</span><span style="color:#323232;">      - PUID=${QBITTORRENT_WRITE_UID}
</span><span style="color:#323232;">      - PGID=${QBITTORRENT_WRITE_GID}
</span><span style="color:#323232;">      - UMASK=0002
</span><span style="color:#323232;">      - TZ=Etc/UTC
</span><span style="color:#323232;">      - WEBUI_PORT=8080
</span><span style="color:#323232;">    network_mode: "service:gluetun"
</span><span style="color:#323232;">    depends_on:
</span><span style="color:#323232;">      gluetun:
</span><span style="color:#323232;">        condition: service_healthy
</span><span style="color:#323232;">
</span><span style="color:#323232;">  portcheck:
</span><span style="color:#323232;">    image: eiqnepm/portcheck:latest
</span><span style="color:#323232;">    container_name: portcheck
</span><span style="color:#323232;">    restart: always
</span><span style="color:#323232;">    environment:
</span><span style="color:#323232;">      - QBITTORRENT_PORT=6881
</span><span style="color:#323232;">      - QBITTORRENT_WEBUI_PORT=8080
</span><span style="color:#323232;">      - QBITTORRENT_WEBUI_SCHEME=http
</span><span style="color:#323232;">      - QBITTORRENT_USERNAME=admin
</span><span style="color:#323232;">      - QBITTORRENT_PASSWORD=${QBITTORRENT_ADMIN_PASSOWRD}
</span><span style="color:#323232;">      - TIMEOUT=300
</span><span style="color:#323232;">      - DIAL_TIMEOUT=5
</span><span style="color:#323232;">    network_mode: "service:gluetun"
</span><span style="color:#323232;">    depends_on:
</span><span style="color:#323232;">      qbittorrent:
</span><span style="color:#323232;">        condition: service_healthy
</span>
quaff ,
@quaff@lemmy.ca avatar

That’s odd. The project has been archived. No more active development. This seems like such a cool project too. I wonder what happened 🙏

petrescatraian , to piracy Romanian

is no longer shutting down

CC:@piracy

quaff ,
@quaff@lemmy.ca avatar

Anyone have an invite code for Filelist? 🫶

quaff ,
@quaff@lemmy.ca avatar

I’ve been seeing this in the All section… what is it?

quaff ,
@quaff@lemmy.ca avatar

Ahhh this makes a lot of sense! Thank you 🙏

quaff ,
@quaff@lemmy.ca avatar

It has a web UI that you can use to browse the RSS feeds you’re subscribed to. Also allows access to RSS apps.

quaff ,
@quaff@lemmy.ca avatar

Have you seen “Evil” or “From”? Both really great horror shows.

The dominance of cat content VS dog content on Lemmy reflects its current techie userbase

I originally joined Reddit in 2011, and in the beginning it was dominated by cat content. It was rare to see a post about dogs. Sometime in the mid 20-teens this phenomenon reversed. It’s always been a “pet theory” of mine that this reversal was due to Reddit becoming mainstream, and that it’s initial nerdy/techie user...

quaff ,
@quaff@lemmy.ca avatar

But I’m allergic to cats 🥲

quaff ,
@quaff@lemmy.ca avatar
quaff ,
@quaff@lemmy.ca avatar

Pictures, videos, audio. Anything that allows me to enjoy from afar works 🥲🙏

quaff ,
@quaff@lemmy.ca avatar

Does anyone happen to have an invite they could throw my way? 👀

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • lifeLocal
  • goranko
  • All magazines