y0din

joined 2 years ago
[–] [email protected] 2 points 1 day ago

Just happy to help 🙂

[–] [email protected] 1 points 1 day ago (2 children)

Yes, this is the layout I get in landscape, but it's not picked up in portrait, so that it's just a bit too narrow would make sense for it not to be picked up as a large screen as the resolution is kind of weird when tilted into portrait instead of landscape.

Do you need anything more from my part? If so, or if you want me to test/change anything, let me know, I am happy to supply with whatever I can to help 🙂

[–] [email protected] 1 points 1 day ago (4 children)

Here is a screenshot of the setting, and if I read this correctly it's off, which makes sense for me as I mostly use the app in "small screen mode" where I prefer it to be on the bottom.

The problem surfaces when used in unfolded (big screen) portrait mode, as for landscape view of the same unfolded screen, it's split and works as usual.

[–] [email protected] 1 points 1 day ago (6 children)

As far as I can tell, rail mode is off and large screen is on?

For reference the resolution for the folded out display is 1856 × 2160 pixels and it happens in "portrait" mode, where the resolution will be weird I guess.

If I switch to landscape the issue is not present, I didn't think to test for that until you mentioned "weird screen size".

Thanks for looking into it, and it's probably a corner case since the foldable screens are not all that common, at least not yet.

[–] [email protected] 2 points 1 day ago (8 children)

There is a new bug in the current version if you use a Galaxy fold big screen, kind of hard to describe so here is a screenshot:

As always, thanks for your great work!

[–] [email protected] 7 points 1 month ago* (last edited 1 month ago)

If you want a second attempt, this might help.

To get USB devices working inside a container, you need to map the device into the container, which can be tricky—especially if you’re running rootless containers.

If you’re on Linux and want to avoid complicated setups with user namespaces, groups, or messing with udev rules, the easiest way to start is by manually recreating the device node inside a folder you control (like where your config is stored) using mknod.

For example, if your USB device is /dev/ttyUSB0:

  1. Run ls -l /dev/ttyUSB0 You should see output like: crw-rw---- 1 root dialout 188, 0 Jan 1 1970 /dev/ttyUSB0

  2. Note the major (188) and minor (0) numbers.

  3. Change directory to the folder where you want to create the "clone" device node, then run: sudo mknod -m 666 ttyUSB0 c 188 0 (Use the major/minor numbers from your device — they differ by device.) This will create a device readable and writeable by anyone on the system so perhaps consider changing the mode from 666 to 660 and/or chown the file afterwards to your user and group. As I said, this is HACKY and not a secure solution.

You will now have a device file you can then pass into your container with the Docker/PODMAN option: --device /path/to/your/folder/ttyUSB0:/dev/ttyUSB0

I realize this is a pretty hacky and insecure workaround—feel free to downvote or ignore if you want something cleaner. But it’s a quick way to get your USB device accessible inside the container to get started. Later on, you can look into proper handling with udev or other methods if security is important.

If you use Windows, you are on your own unfortunately, I do not have experience with podman/docker in Windows environments.

[–] [email protected] 26 points 1 month ago

or got a very good deal on TEMU?

[–] [email protected] 3 points 1 month ago (1 children)

Thank you so much for all your hard work on Summit! I know you're probably already juggling a ton of feature requests, but I was wondering if it would be possible to add an option to organize downloads into folders based on their source—something like //.

Sync used to have this, and it made my (admittedly excessive) image and meme collections so much more organized, even if I rarely look at them again. Definitely not a big deal, just a nice-to-have. Thanks again for everything you do!

[–] [email protected] 16 points 1 month ago* (last edited 1 month ago)

Subtitles are not always simple text files in the source. They can come in various formats like SRT, WebVTT, Teletext, and VobSub—if they are present at all.

To integrate them into WebM, you must first determine if they exist, ensure they have the correct language tags (and tag them properly if they don’t), then extract them, convert them into a format compatible with the player, and finally remux them alongside the video and audio. This process can easily fail in an automated workflow if any of these conditions are unmet or if the subtitle format is incompatible.

Given this complexity, it’s understandable why many choose to avoid the effort rather than addressing whether WebM supports subtitles.

I am not defending anyone, but the process of it all makes it understandable, at least for me.

[–] [email protected] 8 points 1 month ago* (last edited 1 month ago) (1 children)

It's always been there in the add-on, why they removed it as a base feature beats me, but I feel they are going down the "Google route", remove all that works and replace it with what you never asked for.

Google used to hold a lot of nice services and features, including Chromecast. Why kill something that worked so well for so many people?

Take a look at https://killedbygoogle.com/ if you have some spare time.

What the user wants does not matter anymore, seems to be a default all over these days.. 🙄

[–] [email protected] 17 points 1 month ago* (last edited 1 month ago) (3 children)

If you download Good Lock (https://apps.samsung.com/appquery/appDetail.as?appId=com.samsung.android.goodlock), you can still modify this through the Home Up add-on, along with many other tweaks and settings. I've almost managed to restore it to how it was before One UI 7 using these tools.

While what Samsung did isn't ideal, at least there's a solution for some of the changes at least.

It's a great tool by Samsung, but not promoted as much as it should 🙂

(edit: screenshot for reference)

[–] [email protected] 5 points 1 month ago* (last edited 1 month ago)

It could definitely be stress-related, especially if you had a particularly bad night of sleep before this started.

When you don’t sleep well, your body can reset its cortisol production cycle. Cortisol—the hormone tied to stress and alertness—typically starts rising in the early hours of the morning, around 3–4 a.m., as part of a normal circadian rhythm.

But if you're under even mild or subconscious stress, that spike can happen earlier or be stronger than usual, causing you to wake up prematurely and feel too alert to fall back asleep.

It's like your body's stuck in a "high alert" mode even if nothing obvious is triggering it.

Could be the birds that have already been mentioned as well, I am no expert, nor medical trained, but this reason is more common than you might think when waking up early. It's the same reason you might find yourself waking before the alarm when you really need to be on time, like before going on vacation and you cannot miss your flight.

Here is a link to one of many in regards to sleep and cortisol

https://sleepdoctor.com/pages/health/cortisol

(edit: added part of the sentence that got lost before posting and figured I might add a link if someone wants to read more)

view more: next ›