linux

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

Vincent, in Why are gnome devs like this?

This is so rude. You've done nothing for the guy (neither have I), and have probably used and benefited from his work (that we did not pay for) in some way - and then to single him out and ridicule him? There's an actual human on the other side there...

WuTang, in I'm ditching htop for btop, look how cool it is
@WuTang@lemmy.ninja avatar

why ? Why do you feel the need to have process monitoring displayed all the time?

caseyweederman,

You can sort and filter it.

More generally, are you questioning why the Top category of tools exists?

WuTang,
@WuTang@lemmy.ninja avatar

no, I am questioning why do you have those open all the time. in 17y, I never had to. This is just ASCII pr0n to look “deep” .

spacedout,
@spacedout@lemmy.ml avatar

I have it open all the time, exactly for this reason. 15 years and going.

caseyweederman,

Haha, to look deep? Same here.

towerful,

As you gaze into the btop, the btop gazes into you

1984,
@1984@lemmy.today avatar

You are right, they aren’t open all the time except in screenshots. :)

zShxck,

If you press P you can get rid of them

0x0,

It’s a tool. It’s useful to figure out if something you’re running is IO-bound or CPU-bound. It also shows per-core load, which is useful for visualizing multi-threaded performance.

Streetdog, in Using Asciiquarium for Aquarium in Linux Terminal
@Streetdog@lemmy.world avatar

There’s something fishy about this!

LunchEnjoyer,
@LunchEnjoyer@lemmy.world avatar

😅

30p87, in Why are gnome devs like this?

*Microsoft devs

Now, seriously. Microsoft’s devs literally only do something if their boss tells them to, and the boss only cares about money. The support teams only know chkdsk and reboot.

levir77987,

Yeah, paid by microsoft to sabotage the linux desktop

magic_lobster_party,

On the topic of Microsoft support, I hate how useless support boards are. They’re always responding with the same template answers describing the exact steps the asker clearly stated they’ve already done with no results. Microsoft is far from alone in this, but I just wanted to rant a bit.

pastermil, in LibreOffice 7.5.8 Is Here as the Last Update in the Series, Upgrade to LibreOffice 7.6 Now

Don’t tell me what to do!

spez, in Why are gnome devs like this?

this community’s and !linuxmemes’s reaction to the same meme are totally different.

levir77987,

Similar to reddit’s linux subreddit, red hat employees have probably become moderators here

aport,

Probably because one is for memes and the other isn’t

aport, in My few remaining gripes with linux

What

Kidplayer_666,

Oh, it didn’t add the text

sumpfsocke, in Gamedev and linux

Okay now how many of the other reports were windows specific problems?

Sentau, (edited )

I am guessing all of them is it was game running through proton

Edit : the game seems to have a linux native version

mateomaui, in Why are gnome devs like this?

cum frappuccinos

I’ll be leaving the office too.

Haus,
@Haus@kbin.social avatar

I hope this is cubic meters...

Ascend-910, in Why are gnome devs like this?
@Ascend-910@kbin.social avatar

Me: * Get popcorn and hop into the comment section *

Ascend-910, in Audacity 3.4 Released with Music Workflows, New Exporter, and More
@Ascend-910@kbin.social avatar

please use Tenacity

deadcream, in KDE Plasma 6.0 Approved For Fedora 40 - Including Dropping The X11 Session

I wonder if they consulted Plasma devs about it. Sure they said that they aim to make Wayland ready for Plasma 6, but it didn't sound like it was an actual plan for 6.0. After all they got their hands full with Qt 6 porting, and there are still major roadblocks with completing Wayland support, while 6.0 is about to have its alpha release already.

Knowing Fedora devs however, I suspect they didn't. They switched to Plasma Wayland by default several Fedora releases ago, when it was in no way ready. I guess I will switch to a different distro when this time comes.

magikmw,

Or do what I do and don’t update for half a year. The previous version is supported for a month after the release the next-next version.

deadcream,

It's still not enough time for KDE devs to fix all major issues with Wayland. It requires at least another two years in the oven.

magikmw,

Maybe. Depends on the usecase. I’ve been running wayland for a year or so without trouble. Using moonlight to another machine for gaming and such.

Zamundaaa,

Yes, they did. Neal has been pushing for Wayland by default upstream for a while, and getting that in for Plasma 6.0 was and is the plan.

FalseDiamond,
@FalseDiamond@sh.itjust.works avatar

Yeah, as usual the opinionated crew are making something that one may even like feel like it’s forced down everyone’s throat (see: systemd, snap…) and making everything worse. I don’t see how any Linux desktop distro worth its salt can get by ignoring 90% of the PC GPU market share and essentially forcing them into an inferior desktop experience for pure ideology’s sake, and I LIKE Wayland. I even put up with all its quirks in a particularly quirky implementation (KWin). But this ain’t it if you want users to use your OS.

Kusimulkku, in Why are gnome devs like this?

While I’ve chuckled at how Gnome devs do things, it can’t be fun being that guy considering how big of a hate boner /g/ has for him

Spectacle8011, in Binder (Android's core IPC) Rust rewrite posted to LKML
@Spectacle8011@lemmy.comfysnug.space avatar

This is the kind of high-quality technical discussion I don’t understand a word of that rarely surfaced on reddit.

stardreamer, (edited )
@stardreamer@lemmy.blahaj.zone avatar

Having one program (process) talk to another is dangerous. Think of a stranger trying to come over to me and deliver a message. There’s no way I can guarantee that he isn’t planning to stab me as soon as he sees me.

That’s why we have special mechanisms for programs talking to other programs. Instead of having the stranger deliver the message directly to me, our mutual friend Bob (IPC Library, binder in this case) acts as an intermediary. This way at least I can’t be “directly” stabbed.

What’s preventing the stranger from convincing Bob to stab me? Not much (except for Bob’s own ethics/programming)

To work around this, we have designed programming languages (rust) that don’t work if there’s a possibility of it being corrupted (I would add “at least superficially”, but that’s not the main topic here). Bob was trained by the CIA in anti-brainwashing techniques. It’s really hard to convince Bob to stab me. That’s why it’s such a big deal. We now have a way of delivering messages between two programs that is much safer than before.

The only problem is that the CIA anti-brainwashing techniques (rust) tend to make people slow. So we deliver messages less efficiently than before. Good news is in this case we managed to make Bob almost as fast as before, so we don’t lose our own much while gaining additional security. The people who checked on Bob even made sure to have Bob do the exact same thing as before when delivering messages (using RB Trees), hence this evidence is most likely credible.

Spectacle8011,
@Spectacle8011@lemmy.comfysnug.space avatar

That’s a great explanation! Thank you, I get it now. I always did wonder what exactly IPC was about. Yay for Rust in the kernel.

levir77987, in Audacity 3.4 Released with Music Workflows, New Exporter, and More

Spyware

  • All
  • Subscribed
  • Moderated
  • Favorites
  • linux@lemmy.ml
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #