JaddedFauceet

joined 2 years ago
[–] JaddedFauceet@lemmy.world 4 points 1 month ago

Yes, but you still haven't explain how is this anti-user

[–] JaddedFauceet@lemmy.world 1 points 3 months ago

I have quite a different experience, can't tell if it is placebo or not, but my vr experience is slightly smoother in Arch Linux compared to my Windows 10.

i play VR via Proton using ALVR (steamvr) or Wivrn

But i havent tried playing Alyx on linux yet

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

i have a debian os running in termux.

I sometimes use it to debug websites on my phone running desktop version of firefox via vic

[–] JaddedFauceet@lemmy.world 3 points 3 months ago

They are probably moving to Chrome DevTools Protocol or WebDriver BiDi

[–] JaddedFauceet@lemmy.world 1 points 4 months ago

That's sad... i am not able to play battlefield 2042 after switching to linux too. For the same reason, their anti cheat is not compatible

[–] JaddedFauceet@lemmy.world 4 points 4 months ago (2 children)

But..... i am still curious.. what are you trying to run 😆

[–] JaddedFauceet@lemmy.world 7 points 4 months ago (6 children)

What software / game is that? it could still run in Wine or Bottle.

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

Wait, can we even update / install system package via Discover? i always thought it just contains KDE stuff and the flatpak installed through Discover.

if that's the case, is there a way to disable system packages in Discover?

[–] JaddedFauceet@lemmy.world 9 points 4 months ago

I really like my KDE plasma

[–] JaddedFauceet@lemmy.world 6 points 4 months ago

what are the things i will miss from plex's pre-enshittification?

[–] JaddedFauceet@lemmy.world 5 points 4 months ago* (last edited 4 months ago)

it will still shows stuff in the library even if it failed to pick up the metadata.

for jellyfin, folder structure is kinda important for auto detection to work.

For shows, you can organises your files like this:

series-name-a/
    season-01/
        episode-01
        episode-02

You can check out the doc, it is more detailed

[–] JaddedFauceet@lemmy.world 1 points 4 months ago* (last edited 4 months ago) (1 children)

Prettier doesn't make my markdown table prettier tho. This is what i did

prompt

Given the following markdown table

| input | output l
| -- | -- |
| 2.6 | 3 |
| 2.5 | 2 |
| 2.4 | 2 |
| 1.6 | 2 |
| 1.5 | 2 |
| 1.4 | 1 |

Align the vertical bar. Align number to the left

output

Here's the table with the vertical bars aligned and numbers left-aligned:

| input | output l |
|-------|----------|
| 2.6   | 3        |
| 2.5   | 2        |
| 2.4   | 2        |
| 1.6   | 2        |
| 1.5   | 2        |
| 1.4   | 1        |

Each column has been padded so that the vertical bars line up consistently, and the numbers are aligned to the left as requested.

view more: next ›