Fisch

joined 1 year ago
MODERATOR OF
[–] Fisch@discuss.tchncs.de 6 points 1 day ago

Can confirm that yt-dlp works perfectly for TikTok videos

[–] Fisch@discuss.tchncs.de 2 points 1 week ago (1 children)

Thank you for telling me about Podlet. I've been using podman-compose for all my containers but I've thought about converting them to systemd units. The only thing I'm unsure about is whether it'll still be easy to access the container files. Currently I have a containers folder with a folder for each service inside it. Inside that, there's the compose.yml and the folders with the container data. I map all container folders, with data that needs to be kept, to a folder that sits right next to the compose file. If it's just temporary data (like caches), I oftentimes map it to a volume because it doesn't matter if I lose it. Do you know if I can still do it like this (or in a similar way) if I use systemd units?

[–] Fisch@discuss.tchncs.de 2 points 1 week ago

I meant to write OnlyOffice 😭
But thanks for pointing it out, I fixed it

[–] Fisch@discuss.tchncs.de 11 points 1 week ago* (last edited 1 week ago) (4 children)

Those distros are fine, I haven't heard anything bad about them. The only distros I wouldn't recommend are Ububtu and Manjaro (I can explain why if you want).

About Excel, it doesn't work on Linux unfortunately. But you have some options. You can try LibreOffice and OnlyOffice (you can install them on Windows to try them out before switching) and see if they're enough for your needs. There's also a web version of Excel which you can use in your browser but it doesn't have all the features. If you really need Excel, you can also try using a virtual machine with Windows and run it inside of that but dual booting might be easier for you at that point.

[–] Fisch@discuss.tchncs.de 4 points 2 weeks ago* (last edited 1 week ago) (1 children)

I don't really know what you mean by checking. I'm pretty sure you can import from there but I haven't used that yet anyway because not a single food I've looked up there has had enough data for it to be usable for me and a lot haven't been added at all. Might be because I'm in Germany tho.

Edit: I've actually imported a product that did have all the information and it worked perfectly fine. You just share the link from OpenFoodFacts to Food You. Only monounsaturated and polyunsaturated fats didn't import but I've already opened and issue for that and it'll be fixed in version 3.

[–] Fisch@discuss.tchncs.de 10 points 2 weeks ago (5 children)

Food You is the one I use. Looks like they're pretty similar tho, at least from the screenshots.

[–] Fisch@discuss.tchncs.de 2 points 3 weeks ago (1 children)

Makes sense. I think it's similar to how email works, right?

[–] Fisch@discuss.tchncs.de 3 points 3 weeks ago* (last edited 3 weeks ago) (1 children)

I use podman too and I set up hardware acceleration for Jellyfin. I'll update this with how I did it once I'm home.

Edit: Here's my compose.yml (I use podman-compose):

services:
  jellyfin:
    image: lscr.io/linuxserver/jellyfin:latest
    container_name: jellyfin
    dns:
      - 9.9.9.9
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/Berlin
    volumes:
      - ./config:/config:Z
      - ~/drive/media:/media:z
    devices:
      - /dev/dri:/dev/dri
    ports:
      - 8096:8096
      - 7359:7359/udp
      - 1900:1900/udp
    restart: unless-stopped
[–] Fisch@discuss.tchncs.de 11 points 3 weeks ago (4 children)

Kinda interesting to hear about this stuff as someone who grew up when everyone was already on WhatsApp (at least here in Germany)

[–] Fisch@discuss.tchncs.de 12 points 3 weeks ago

Grok? Oh, they mean MechaHitler

[–] Fisch@discuss.tchncs.de 1 points 4 weeks ago

The one I have uses only one of those little puck batteries (or whatever they're called)

[–] Fisch@discuss.tchncs.de 1 points 4 weeks ago

I only buy ZigBee devices from Tuya, they do that too

 

cross-posted from: https://discuss.tchncs.de/post/21001865

I just installed Piped using podman-compose but when open up the frontend in my browser, the trending page is just showing the loading icon. The logs aren't really helping, the only error is in piped-backend:

java.net.SocketTimeoutException: timeout
	at okhttp3.internal.http2.Http2Stream$StreamTimeout.newTimeoutException(Http2Stream.kt:675)
	at okhttp3.internal.http2.Http2Stream$StreamTimeout.exitAndThrowIfTimedOut(Http2Stream.kt:684)
	at okhttp3.internal.http2.Http2Stream.takeHeaders(Http2Stream.kt:143)
	at okhttp3.internal.http2.Http2ExchangeCodec.readResponseHeaders(Http2ExchangeCodec.kt:97)
	at okhttp3.internal.connection.Exchange.readResponseHeaders(Exchange.kt:110)
	at okhttp3.internal.http.CallServerInterceptor.intercept(CallServerInterceptor.kt:93)
	at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109)
	at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.kt:34)
	at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109)
	at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.kt:95)
	at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109)
	at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.kt:83)
	at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109)
	at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.kt:76)
	at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109)
	at okhttp3.internal.connection.RealCall.getResponseWithInterceptorChain$okhttp(RealCall.kt:201)
	at okhttp3.internal.connection.RealCall.execute(RealCall.kt:154)
	at me.kavin.piped.utils.RequestUtils.getJsonNode(RequestUtils.java:34)
	at me.kavin.piped.utils.matrix.SyncRunner.run(SyncRunner.java:97)
	at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)

Would appreciate it if anyone could help me. I also wasn't sure what info to include, so please ask if there's any more info you need.

9
submitted 11 months ago* (last edited 11 months ago) by Fisch@discuss.tchncs.de to c/piped@feddit.rocks
 

I just installed Piped using podman-compose but when I open up the frontend in my browser, the trending page is just showing the loading icon. The logs aren't really helping, the only error is in piped-backend:

java.net.SocketTimeoutException: timeout
	at okhttp3.internal.http2.Http2Stream$StreamTimeout.newTimeoutException(Http2Stream.kt:675)
	at okhttp3.internal.http2.Http2Stream$StreamTimeout.exitAndThrowIfTimedOut(Http2Stream.kt:684)
	at okhttp3.internal.http2.Http2Stream.takeHeaders(Http2Stream.kt:143)
	at okhttp3.internal.http2.Http2ExchangeCodec.readResponseHeaders(Http2ExchangeCodec.kt:97)
	at okhttp3.internal.connection.Exchange.readResponseHeaders(Exchange.kt:110)
	at okhttp3.internal.http.CallServerInterceptor.intercept(CallServerInterceptor.kt:93)
	at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109)
	at okhttp3.internal.connection.ConnectInterceptor.intercept(ConnectInterceptor.kt:34)
	at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109)
	at okhttp3.internal.cache.CacheInterceptor.intercept(CacheInterceptor.kt:95)
	at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109)
	at okhttp3.internal.http.BridgeInterceptor.intercept(BridgeInterceptor.kt:83)
	at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109)
	at okhttp3.internal.http.RetryAndFollowUpInterceptor.intercept(RetryAndFollowUpInterceptor.kt:76)
	at okhttp3.internal.http.RealInterceptorChain.proceed(RealInterceptorChain.kt:109)
	at okhttp3.internal.connection.RealCall.getResponseWithInterceptorChain$okhttp(RealCall.kt:201)
	at okhttp3.internal.connection.RealCall.execute(RealCall.kt:154)
	at me.kavin.piped.utils.RequestUtils.getJsonNode(RequestUtils.java:34)
	at me.kavin.piped.utils.matrix.SyncRunner.run(SyncRunner.java:97)
	at java.base/java.lang.VirtualThread.run(VirtualThread.java:329)

Would appreciate it if anyone could help me. I also wasn't sure what info to include, so please ask if there's any more info you need.

 

cross-posted from: https://discuss.tchncs.de/post/20956700

All the public Piped instances are getting blocked by YouTube but do small selfhosted instances, that are only used by a handful of users or just yourself, still working? Thinking of just selfhosting it.

On a side note, if I do it, I'd also like to install the new EFY redesign or is that branch too far behind?

71
submitted 11 months ago* (last edited 11 months ago) by Fisch@discuss.tchncs.de to c/selfhosted@lemmy.world
 

All the public Piped instances are getting blocked by YouTube but do small selfhosted instances, that are only used by a handful of users or just yourself, still working? Thinking of just selfhosting it.

On a side note, if I do it, I'd also like to install the new EFY redesign or is that branch too far behind?

Edit: As you can see in the replies, private instances still work. I also found the instructions for running the new EFY redesign here

 

You need to hold down fn1 + page up for a few seconds until the keyboard flashes red, then let go of the keys. Now you can use page up as the print screen key. If you hold down fn1 + page up for a few seconds again, it will go back to working as the page up key.

Just had to search this up and found out how to do this from a Reddit post, so I thought I'd put this information on here as well.

43
Hatsune Miku (infosec.pub)
submitted 11 months ago* (last edited 11 months ago) by Fisch@discuss.tchncs.de to c/animewallpapers@ani.social
 

Source: https://w.wallhaven.cc/full/p9/wallhaven-p91xd3.jpg

Resolution is kinda low, I'll try upscaling it later

Edit: Here's the upscaled version at 3376 x 6000

 

I'm actually pretty new to the game but I've been playing it every day for the past few days and it's pretty fun. I saw that there wasn't a community for this game yet, so I went ahead and created it.

18
Sovol SV06 stringing issue (discuss.tchncs.de)
submitted 1 year ago* (last edited 1 year ago) by Fisch@discuss.tchncs.de to c/3dprinting@lemmy.world
 

I would really appreciate it if someone could help me with this. I'm having an issue with my Sovol SV06, which is that I get a lot of stringing. I'm still fairly new to 3D printing, so I have no idea what could cause this and how I could go about fixing this. I already searched for this issue online btw but didn't really find anything helpful.

The only change I made to this printer is that I hooked up a Raspberry Pi 4 to it and installed Klipper and Octoprint. I'm also using PrusaSlicer with the config from here.

Edit: Forgot to mention I was using PLA for this print

 

I'm trying to extract the frames of a video as individual images but it's really slow, except when I'm using jpeg. The obvious issue with jpegs is the data loss from the compression, I want the images to be lossless. Extracting them as jpegs manages about 50-70 fps but as pngs it's only 4 fps and it seems to continue getting slower, after 1 minute of the 11 minute video it's only 3.5 fps.

I suspect it's because I'm doing this on an external 5tb hard drive, connected over USB 3.0 and the write speed can't keep up. So my idea was to use a different image format. I tried lossless jpeg xl and lossless webp but both of them are even slower, only managing to extract at about 0.5 fps or something. I have no idea why that's so slow, the files are a lot smaller than png, so it can't be because of the write speed.

I would appreciate it if anyone could help me with this.

 

I installed a GRUB theme and changed some options in the config but now I need to run update-grub (alias for grub2-mkconfig -o /etc/grub2-efi.cfg) after every kernel update or else that new kernel version won't boot. Does anybody know a fix for this?

 

I recently found out that instead of just using online sources, you can also use something you can host yourself, like Komga, in Mihon. I'm just wondering if there's an advantage to it that I didn't think of because the only things I can think of are:

  • Progress is synced over multiple devices
  • Online sources can suddenly go offline, your self-hosted service won't
view more: next ›