domi

joined 2 years ago
[–] domi@lemmy.secnd.me 1 points 2 hours ago

Did you ever get checked for sleep apnea or similar conditions?

One of the symptoms is waking up and feeling like a bulldozer just ran you over.

[–] domi@lemmy.secnd.me 3 points 15 hours ago (1 children)

I use the Flatpak and here's how to get VA-API working:

  • Run the following command: ls -lah /dev/dri/render* and note down the number behind renderD
  • Create a project
  • Go to Project -> Render
  • Select VAAPI AMD H264 and click Save current preset as new custom preset
  • In the new preset, replace renderD129 with the result of the command in step 1, e.g. renderD128

You should now be able to hardware encode with the custom preset. Since you have an 7900 XTX you can also use H265 and AV1 to encode. For that you can copy the preset again and replace h264_vaapi with av1_vaapi or hevc_vaapi. When using AV1, you also have to switch the audio codec to opus instead of aac.

[–] domi@lemmy.secnd.me 9 points 3 days ago (1 children)

The printing speed is slow AF...a 37min benchy on a coreXY in 2025, WTF!? My bedslinger does it in less than 30min.

The default Prusa profiles are incredibly conservative. They prioritize quality and part strength over speed. If you need the speed you can easily bump it to 200% with minimal issues.

[–] domi@lemmy.secnd.me 2 points 4 days ago

I'm not a composer but Kimai is indeed a very good time tracker. Beats the trash we use at work.

[–] domi@lemmy.secnd.me 2 points 5 days ago

Hey, if I want to see double I can just play Monster Hunter intoxicated. No need for new tech.

[–] domi@lemmy.secnd.me 6 points 6 days ago (1 children)

Dark Souls by far. Elden Ring was great but so much of the game was a slog to go through.

So much content just added to pad the world so they could call it an open world. Mindless copy-paste of the same enemies, same dungeons, same assets and same bosses. Would have greatly preferred a smaller but more unique world, more shortcuts and more interconnections.

I did enjoy the map of the Elden Ring DLC though. I don't think I have ever seen such a vertical map in a game before. Just looking down every time and thinking "can I go there?" felt great.

[–] domi@lemmy.secnd.me 8 points 1 week ago (2 children)

Maybe they could allocate some resources for optimization then. This game should run on Steam Deck without problems.

[–] domi@lemmy.secnd.me 3 points 1 week ago (1 children)

I'm on AMD but I already play in HDR without gamescope with Proton-Tkg (Wine master).

For games I then only have to set DISPLAY= ENABLE_HDR_WSI=1 %command%.

The HDR layer is here: https://github.com/Zamundaaa/VK_hdr_layer

It should not be needed anymore pretty soon.

[–] domi@lemmy.secnd.me 2 points 1 week ago

Ah, like the Android app. I think the Linux Nextcloud version has an experimental option for it but I never gave it a try.

I assume the partial sync is not sufficient for your use case? I usually only sync the folders I need on that machine.

[–] domi@lemmy.secnd.me 1 points 1 week ago (2 children)

and support for a virtual file synchronization a la Nextcloud (which I presume piggybacks off of what MS built for OneDrive.)

What's a virtual file synchronization?

[–] domi@lemmy.secnd.me 4 points 1 week ago (1 children)

I’m curious. Say you are getting a new computer, put Debian on, want to run e.g. DeepSeek via ollama via a container (e.g. Docker or podman) and also play, how easy or difficult is it?

On the host system, you don't need to do anything. AMDGPU and Mesa are included on most distros.

For LLMs you can go the easy route and just install the Alpaca flatpak and the AMD addon. It will work out of the box and uses ollama in the background.

If you need a Docker container for it: AMD provides the handy rocm/dev-ubuntu-${UBUNTU_VERSION}:${ROCM_VERSION}-complete images. They contain all the required ROCm dependencies and runtimes and you can just install your stuff ontop of it.

As for GPU passthrough, all you need to do is add a device link for /dev/kfd and /dev/dri and you are set. For example, in a docker-compose.yml you just add this:

    devices:
      - /dev/kfd:/dev/kfd
      - /dev/dri:/dev/dri

For example, this is the entire Dockerfile needed to build ComfyUI from scratch with ROCm. The user/group commands are only needed to get the container groups to align with my Fedora host system.

spoiler

ARG UBUNTU_VERSION=24.04
ARG ROCM_VERSION=6.3
ARG BASE_ROCM_DEV_CONTAINER=rocm/dev-ubuntu-${UBUNTU_VERSION}:${ROCM_VERSION}-complete

# For 6000 series
#ARG ROCM_DOCKER_ARCH=gfx1030
# For 7000 series
ARG ROCM_DOCKER_ARCH=gfx1100

FROM ${BASE_ROCM_DEV_CONTAINER}

RUN apt-get update && apt-get install -y git python-is-python3 && rm -rf /var/lib/apt/lists/*
RUN pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/rocm6.3 --break-system-packages

# Change group IDs to match Fedora
RUN groupmod -g 1337 irc && groupmod -g 105 render && groupmod -g 39 video

# Rename user on newer 24.04 release and add to video/render group
RUN usermod -l ai ubuntu && \
    usermod -d /home/ai -m ai && \
    usermod -a -G video ai && \
    usermod -a -G render ai

USER ai
WORKDIR /app

ENV PATH="/home/ai/.local/bin:${PATH}"

RUN git clone https://github.com/comfyanonymous/ComfyUI .
RUN pip install -r requirements.txt --break-system-packages

COPY start.sh /start.sh
CMD /start.sh

[–] domi@lemmy.secnd.me 3 points 1 week ago

However, for some reason on PC it's often quirky (Windows or Linux). My PC bluetooth works through a dongle so I wonder if an integrated card would do better.

Is it an USB dongle?

If so, make sure to add a short USB-A to USB-A cable between your PC and the dongle. Interference is a serious issue on USB 2.4 GHz wireless dongles when directly connected to a mainboard.

 

It's not really a well-kept secret that the search in Jellyfin needs a lot of work. It's slow, doesn't deal with typos and commas correctly and doesn't allow searching multiple fields at once.

I made a quick and dirty proxy to enable a proper full-text search in Jellyfin while the dev team is working on the EFCore migration. It's not perfect but it's much better than what Jellyfin currently provides.

If you are running Jellyfin inside of Docker and use a Traefik reverse proxy, check out the image/repo below.

If you know what you're doing (this is Lemmy after all), the proxy is a simple ASP.NET application and works with pretty much every reverse proxy once configured.

https://gitlab.com/DomiStyle/jellysearch

https://hub.docker.com/r/domistyle/jellysearch

If you tested with any Jellyfin client not in the README, feel free to let me know. If you used any other reverse proxy than Traefik, also let me know.

 

Hey there,

I used to have a command run 10 seconds after the screen is locked which turned all displays off. I can't find the option to run a command when the screen locks anymore.

In Plasma 5 I used this:

This is what it looks like in Plasma 6:

Is there another place to do this now?

 

Dominik Wlazny, auch bekannt als Marco Pogo, hat heute in einer Pressekonferenz erklärt, mit seiner Bierpartei bei der kommenden Nationalratswahl antreten zu wollen. Um das zu schaffen, brauche es laut Wlazny aber vor allem finanzielle Mittel. Als Ziel gab er daher aus, bis Ende April 20.000 Mitglieder für die Bierpartei zu gewinnen.

„Es geht darum, die Bierpartei fit fürs Parlament zu machen“, so Wlazny. In den letzten Monaten habe man am Aufbau von Strukturen gearbeitet. Großspender, um die nötigen finanziellen Mittel zu erreichen, wolle man dafür nicht. Zentrale Themen der Bierpartei seien Chancengleichheit und Bewältigung des Lebensalltags, so Wlazny.

Wlazny, der bereits bei der Bundespräsidentschaftswahl 2022 hinter Alexander Van der Bellen und Walter Rosenkranz den dritten Platz belegt hatte, werden letzten Umfragen zufolge durchaus Chancen ausgerechnet, die Vierprozenthürde bei der Nationalratswahl zu nehmen.

Die Bierpartei stellte sich bereits 2019 der Wahl zum Nationalrat, allerdings nur in Wien, und verfehlte damals den Einzug ins Parlament deutlich.

 

Doesn't matter if it happened to you, a friend or a streamer. Bonus points if you have a video of it.

I know this is a fairly small community but let's see how this goes:

I just started a multiplayer playthrough recently with somebody who was constantly asking if he could have found X before finding the info that points him to it, hence this post.

My favorite skip:

spoilerI had a friend stream the game who accidentally walked into the Ash Twin Project after walking away backwards from the oncoming sand and stepping on the teleporter platform. He never figured out how he managed to do it all the way until the end of his playthrough but it was an interesting watch since he had information players wouldn't normally have right from the start.

 

I have a spare (unopened) Outer Wilds vinyl lying around which I'm willing to send to a non-scalper Outer Wilds fan for MSRP. The vinyl in question: https://www.iam8bit.com/products/outer-wilds-2xlp

Before selling it on eBay I thought I would try here. The price I paid including shipping and import customs is 50€, shipping is on me.

So if you live in the EU, have a record player and want it, just post a quick picture with your record player setup and your Lemmy username on a piece of paper so I can see that you can actually play it.

 

Since a bunch of new users are arriving from Reddit (including me) maybe it would make sense to port the /r/anime bot that creates episode discussions to Lemmy so there's regular content here?

The bot is open source: https://github.com/r-anime/holo

Looking at the source it should not be so difficult to add an option to post to Lemmy as well.

Thoughts?

Would something like this be allowed? @N3DSdude@lemmy.ml @Nami@lemmy.ml

view more: next ›