Hello, tone-policing genocide-defender and/or carnist 👋

Instead of being mad about words, maybe you should think about why the words bother you more than the injustice they describe.

Have a day!

  • 0 Posts
  • 42 Comments
Joined 2 years ago
cake
Cake day: June 10th, 2023

help-circle

  • trevor@lemmy.blahaj.zonetoLinux@lemmy.mlGhostty terminal is out!
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    8 days ago

    Perhaps that’s true. Although, I think that should be tested because I’m a little unsure since pipes are just the stdout of one command being used as the stdin of the following command. There’s still some output, even if you don’t see it.

    In any case, find has many uses, many of which will print data to the screen, and find is far from the only use case in which this would be apparent. There are tons of situations in which you’re going to have to work with large amounts of stdout/stderr, and having a GPU-accelerated terminal will be much faster in all of those situations.


  • trevor@lemmy.blahaj.zonetoLinux@lemmy.mlGhostty terminal is out!
    link
    fedilink
    English
    arrow-up
    10
    ·
    edit-2
    9 days ago

    For those that are, for some reason, incredulous of having more performant software (???), here’s a simple program to demonstrate the point:

    use std::{
        fs::File,
        io::{BufWriter, Write},
    };
    
    fn main() {
        let buf = File::create("/dev/stdout").unwrap();
        let mut w = BufWriter::new(buf);
        let mut i = 0;
    
        while i <= 100000 {
            writeln!(&mut w, "{}", i).unwrap();
            i += 1;
        }
    }
    

    It simply prints the numbers 0-100000 to the screen. Compile it (rustc path-to-file). Run it in a non-accelerated terminal with time ./path-to-bin. Now time that same binary in a terminal emulator with GPU-acceleration.

    The difference becomes more apparent with more text. Now, imagine needing to use something like find on a large set of files. Doing this on a non-accelerated terminal is literally slower.

    It’s fine if you don’t need a GPU-accelerated terminal, but having acceleration is genuinely useful and a noticeable quality-of-life improvement if you do anything more than just basic CLI usage.











  • trevor@lemmy.blahaj.zonetoLinux@lemmy.mlSystemd v257 released
    link
    fedilink
    English
    arrow-up
    21
    arrow-down
    10
    ·
    26 days ago

    I’d just like to interject for a moment. What you’re refering to as systemd, is in fact, systemd/Linux, or as I’ve recently taken to calling it, systemd plus Linux. Linux is not an operating system unto itself, but rather another free component of a fully functioning systemd system made useful by the systemd services, journald and vital system components comprising a full OS as defined by Poettering.

    Many computer users run a modified version of systemd every day, without realizing it. Through a peculiar turn of events, the version of systemd which is widely used today is often called Linux, and many of its users are not aware that it is basically the systemd init service, developed by Lennart Poettering.

    There really is a Linux, and these people are using it, but it is just a part of the system they use. Linux is the kernel: the program in the system that allocates the machine’s resources to the other programs that you run. The kernel is an essential part of an operating system, but useless by itself; it can only function in the context of a complete init system. Linux is normally used in combination with systemd: the whole system is basically systemd with Linux added, or systemd/Linux. All the so-called Linux distributions are really distributions of systemd/Linux!





  • I just hate snaps because they’re dogshit and don’t fucking work.

    I made the unfortunate mistake of doing sudo apt install docker dotnet -y on a dev machine, thinking that I was going to get correctly packaged deb installations of those two tools.

    After about two hours of having neither fucking tool work, I found that Canonical highjacked the deb installation with their shitty snap packages, which didn’t fucking work thanks to the shit sandboxing that snap tries to do.

    Don’t fucking waste your time with Ubuntu. It’s an actual liability.