@Max_P@lemmy.max-p.me avatar

Max_P

@Max_P@lemmy.max-p.me

Just some Internet guy

He/him/them šŸ³ļøā€šŸŒˆ

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

Max_P,
@Max_P@lemmy.max-p.me avatar

Iā€™d say mostly because the client is fairly good and works about the way people expect it to work.

It sounds very much like a DropBox/Google Drive kind of use case and from a user perspective it does exactly that, and itā€™s not Linux-specific either. I use mine to share my KeePass database among other things. The app is available on just about any platform as well.

Yeah NextCloud is a joke in how complex it is, but you can hide it all away using their all in one Docker/Podman container. Still much easier than getting into bcachefs over usbip and other things Iā€™ve seen in this thread.

Ultimately I donā€™t think there are many tools that can handle caching, downloads, going offline, reconcile differences when back online, in a friendly package. I looked and thereā€™s a page on Oracleā€™s website about a CacheFS but that might be enterprise only, thereā€™s catfs in Rust but itā€™s alpha, and canā€™t work without the backing filesystem for metadata.

Max_P,
@Max_P@lemmy.max-p.me avatar

Easiest for this might be NextCloud. Import all the files into it, then you can get the NextCloud client to download or cache the files you plan on needing with you.

Max_P,
@Max_P@lemmy.max-p.me avatar

They even used to be the best drivers, a long time ago when nobody cared about the graphics stack. Had ATI/AMD? You got the FGLRX proprietary driver and it was really bad.

12 years ago it was probably one of the least broken GPU drivers available. You actually got most of your GPUs capabilities.

Now with Intel and AMD going open-source, those are now the best drivers and NVIDIA is lagging behind and not keeping up with advancements in the Linux graphics stack. Hopefully the open driver and NVK catches up and brings everyone a good open-source NVIDIA experience so we can stop relying on the proprietary driver.

Max_P, (edited )
@Max_P@lemmy.max-p.me avatar

Yes, block means block. What else would you expect?

Apparently thatā€™s only true for the admin version, I stand corrected.

Max_P,
@Max_P@lemmy.max-p.me avatar

I get that you canā€™t stop people from commenting on your posts but you can still filter it out from the results.

Mastodon is arguably easier to deal with since youā€™re replying directly to someone, so the userā€™s server can reject it and be done with it. On Lemmy it really should behave as if you blocked the user: just hide it from view. Simply because if youā€™re on instance A, blocked instance is B and the community is on C, B has no problem posting to C as it doesnā€™t know youā€™ve blocked it on A. But even defederation doesnā€™t address that either: you can reply to defederated users and theyā€™ll never know for the same reason.

I think on this type of social media, not seeing it is the best you can do regardless.

Max_P,
@Max_P@lemmy.max-p.me avatar

Huh, guess I mixed it up with the admin version of it.

That seems dubiously useful to me, if a user blocks lemmygrad they probably want none of it, not just hide the posts.

Max_P,
@Max_P@lemmy.max-p.me avatar

I think it can also get weird when you call other makefiles, like if you go make -j64 at the top level and that thing goes on to call make on subprojects, that can be a looooot of threads of that -j gets passed down. So even on that 64 core machine, now you have possibly 4096 jobs going, and it surfaces bugs that might not have been a problem when we had 2-4 cores (oh no, make is running 16 jobs at once, the horror).

Max_P,
@Max_P@lemmy.max-p.me avatar

AI is basically like early access games but the entirety of big tech is rushing to roll it out first to as many people as possible.

Max_P,
@Max_P@lemmy.max-p.me avatar

Prometheus/VictoriaMetrics/Grafana are pretty good, had no issues with it and thereā€™s an exporter for damn near anything. Theyā€™re pretty easy to custom write too.

Max_P,
@Max_P@lemmy.max-p.me avatar

Paywalled medium article? Iā€™ll pass.

Fuck employers that steal from their employees paychecks though.

Max_P,
@Max_P@lemmy.max-p.me avatar

The page just deletes itself for me when using that. It loads and .5 second later it just goes blank. They really donā€™t want people to bypass it.

Max_P,
@Max_P@lemmy.max-p.me avatar

Note: do that from a live CD/USB or with the source drive mounted readonly. If you dd a mounted and used filesystem, youā€™ll most likely end up with a corrupted and useless filesystem on the target.

Max_P,
@Max_P@lemmy.max-p.me avatar

<span style="color:#323232;">25G     pictrs
</span><span style="color:#323232;">13G     postgres
</span><span style="color:#323232;">38G     total
</span>

Seems fairly reasonable to me

Did I just solve the packaging problem? (please feel free to tell me why I'm wrong)

You know what I just realised? These ā€œuniversal formatsā€ were created to make it easier for developers to package software for Linux, and there just so happens to be this thing called the Open Build Service by OpenSUSE, which allows you to package for Debian and Ubuntu (deb), Fedora and RHEL (rpm) and SUSE and OpenSUSE (also...

Max_P,
@Max_P@lemmy.max-p.me avatar

The problem is that you canā€™t just convert a deb to rpm or whatever. Well you can and it usually does work, but not always. Tools for that have existed for a long time, and thereā€™s plenty of packages in the AUR that just repacks a deb, usually proprietary software, sometimes with bundled hacks to make it run.

Thereā€™s no guarantee that the libraries of a given distro are at all compatible with the ones of another. For example, Alpine and Void use musl while most others use glibc. These are not binary compatible at all. That deb will never run on Alpine, you need to recompile the whole thing against musl.

What makes a distro a distro is their choice of package manager, the way of handling dependencies, compile flags, package splitting, enabled feature sets, and so on. If everyone used the same binaries for compatibility we wouldnā€™t have distros, we would have a single distro like Windows but open-source but heaven forbid anyone dares switching the compiler flags so it runs 0.5% faster on their brand new CPU.

The Flatpak approach is really more like ā€œfine weā€™ll just ship a whole Fedora-lite base system with the appsā€. Snaps are similar but they use Ubuntu bases instead (obviously). Itā€™s solving a UX problem, using a particular solution, but itā€™s not the solution. Itā€™s a nice tool to have so developers can ship a reference environment in which the software is known to run well into and users that just want it to work can use those. But the demand for native packages will never go away, and people will still do it for fun. Thatā€™s the nature of open-source. Itā€™s what makes distros like NixOS, Void, Alpine, Gentoo possible: everyone can try a different way of doing things, for different usecases.

If we can even call it a ā€œproblemā€. Itā€™s my distroā€™s job to package the software, not the developerā€™s. Thatā€™s how distros work, thatā€™s what they signed up for by making a distro. To take Alpine again for example, they compile all their packages against musl instead of glibc, and it works great for them. That shouldnā€™t become the developerā€™s problem to care what kind of libc their software is compiled against. Using a Flatpak in this case just bypasses Alpine and musl entirely because itā€™s gonna use glibc from the Fedora base system layer. Are you really running Alpine and musl at that point?

And this is without even touching the different architectures. Some distros were faster to adopt ARM than others for example. Some people run desktop apps on PowerPC like old Macs. Fine you add those to the builds and now someone wants a RISC-V build, and a MIPS build.

There are just way too many possibilities to ever end up with an universal platform that fits everyoneā€™s needs. And thatā€™s fine, thatā€™s precisely why developers ship source code not binaries.

Max_P,
@Max_P@lemmy.max-p.me avatar

I have none of that on my phone, just plain old keyboard.

But the reason itā€™s everywhere is itā€™s the new hot thing and every company in the world feels like they have to get on board now or theyā€™ll be potentially left behind, canā€™t let anyone have a headstart. Itā€™s incredibly dumb and shortsighted but since actually innovating in features is hard and AI is cheap to implement, thatā€™s what every company goes for.

Why publishers are preparing to federate their sites - Digiday (digiday.com)

The Verge and 404 Media are building out new functions that would allow them to distribute posts on their sites and on federated platforms ā€“ like Threads, Mastodon and Bluesky ā€“ at the same time. Replies to those posts on those platforms become comments on their sites.

Max_P,
@Max_P@lemmy.max-p.me avatar

If they do that, they can no longer complain that Meta is freeloading on them and get themselves banned by Meta like they did in Canadaā€¦

Max_P,
@Max_P@lemmy.max-p.me avatar

KDE has Plasma BigScreen. It even maps remotes to regular common keybinds so you can navigate apps without native support for that kind of use.

I havenā€™t seen it in the wild and I donā€™t think there are many apps that do integrate very well with it, but it exists to mess with.

Max_P,
@Max_P@lemmy.max-p.me avatar

You guys still use fstab? Itā€™s systemd/Linux, you use mount units.

Max_P,
@Max_P@lemmy.max-p.me avatar

I forgot about that, I should try it on my new laptop.

Max_P,
@Max_P@lemmy.max-p.me avatar

Yeah thatā€™s what it does, that was a shitpost if it wasnā€™t obvious :p

Though I do use ZFS which you configure the mountpoints in the filesystem itself. But it also ultimately generates systemd mount units under the hood. So I really only need one unit, for /boot.

[Bug] Does anyone else have problems with .mp4 videos?

Boost fails to open .mp4 for me. When I browse ā€œAllā€ there usually is some mp4 content, especially from ā€¦ well ā€¦ nsfw instances. Theese almost always fail and I see just black screen. Firefox on mobile opens it without a problem and so does Sync For Lemmy. Do you have this issue or is it just me? F.e. can you open this...

Max_P,
@Max_P@lemmy.max-p.me avatar

That file looks like itā€™s barely playable in general.

FFmpeg and MPV canā€™t play it at all:


<span style="color:#323232;">max-p@desktop ~ [123]>  mpv https://lemmynsfw.com/pictrs/image/f482b4d7-957a-4ed7-a9ec-0493907a8cb3.mp4
</span><span style="color:#323232;"> (+) Video --vid=1 (*) (h264 576x1024 30.000fps)
</span><span style="color:#323232;"> (+) Audio --aid=1 (*) (aac 1ch 44100Hz)
</span><span style="color:#323232;">File tags:
</span><span style="color:#323232;"> Comment: vid:v12044gd0000cp23h1vog65ukmo9lhkg
</span><span style="color:#323232;">Cannot load libcuda.so.1
</span><span style="color:#323232;">[ffmpeg] Cannot seek backward in linear streams!
</span><span style="color:#323232;">[ffmpeg/demuxer] mov,mp4,m4a,3gp,3g2,mj2: stream 1, offset 0x30: partial file
</span><span style="color:#323232;">[lavf] error reading packet: Invalid data found when processing input.
</span><span style="color:#323232;">[ffmpeg] Cannot seek backward in linear streams!
</span><span style="color:#323232;">[ffmpeg/demuxer] mov,mp4,m4a,3gp,3g2,mj2: stream 1, offset 0x30: partial file
</span><span style="color:#323232;">[lavf] error reading packet: Invalid data found when processing input.
</span><span style="color:#323232;">[ffmpeg] Cannot seek backward in linear streams!
</span><span style="color:#323232;">[ffmpeg/demuxer] mov,mp4,m4a,3gp,3g2,mj2: stream 1, offset 0x30: partial file
</span><span style="color:#323232;">[lavf] error reading packet: Invalid data found when processing input.
</span><span style="color:#323232;">[ffmpeg] Cannot seek backward in linear streams!
</span><span style="color:#323232;">[ffmpeg/demuxer] mov,mp4,m4a,3gp,3g2,mj2: stream 1, offset 0x30: partial file
</span><span style="color:#323232;">[lavf] error reading packet: Invalid data found when processing input.
</span><span style="color:#323232;">[ffmpeg] Cannot seek backward in linear streams!
</span><span style="color:#323232;">[ffmpeg/demuxer] mov,mp4,m4a,3gp,3g2,mj2: stream 1, offset 0x30: partial file
</span><span style="color:#323232;">[lavf] error reading packet: Invalid data found when processing input.
</span><span style="color:#323232;">[ffmpeg] Cannot seek backward in linear streams!
</span><span style="color:#323232;">[ffmpeg/demuxer] mov,mp4,m4a,3gp,3g2,mj2: stream 1, offset 0x30: partial file
</span><span style="color:#323232;">[lavf] error reading packet: Invalid data found when processing input.
</span><span style="color:#323232;">[ffmpeg] Cannot seek backward in linear streams!
</span><span style="color:#323232;">[ffmpeg/demuxer] mov,mp4,m4a,3gp,3g2,mj2: stream 1, offset 0x30: partial file
</span><span style="color:#323232;">[lavf] error reading packet: Invalid data found when processing input.
</span>

VLC seems to be able to, but it complains that itā€™s not proper:


<span style="color:#323232;">max-p@desktop ~>  vlc https://lemmynsfw.com/pictrs/image/f482b4d7-957a-4ed7-a9ec-0493907a8cb3.mp4
</span><span style="color:#323232;">VLC media player 3.0.20 Vetinari (revision 3.0.20-0-g6f0d0ab126b)
</span><span style="color:#323232;">[00005ca01d39d550] main libvlc: Lancement de vlc avec lā€™interface par dĆ©faut. Utiliser Ā«Ā cvlcĀ Ā» pour dĆ©marrer VLC sans interface.
</span><span style="color:#323232;">[00007ea2f413f5c0] mp4 stream error: no moov before mdat and the stream is not seekable
</span>

Some players are more generous in what they tolerate but the file is undoubtedly mildly corrupted.

Lemmy should not let people upload corrupted files in the first place.

Max_P,
@Max_P@lemmy.max-p.me avatar

Yeah, if I see ā€œSteam Deck verifiedā€, I expect the game to work 100% out of the box. Although I guess a ā€œplayableā€ rating might have been more appropriate, but with online mode being so popular Iā€™m sure there would be tons of complaints if Valve said it worked perfectly.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • ā€¢
  • anitta
  • kavyap
  • DreamBathrooms
  • InstantRegret
  • magazineikmin
  • cubers
  • GTA5RPClips
  • thenastyranch
  • Youngstown
  • rosin
  • slotface
  • tacticalgear
  • ethstaker
  • modclub
  • JUstTest
  • Durango
  • everett
  • Leos
  • provamag3
  • mdbf
  • ngwrru68w68
  • cisconetworking
  • tester
  • osvaldo12
  • megavids
  • khanakhh
  • normalnudes
  • lostlight
  • All magazines