Imagine thinking that Palestinians being human beings is indicative of a bias. Yikes…
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!
Imagine thinking that Palestinians being human beings is indicative of a bias. Yikes…
I don’t have a strong use for this because i mostly just let it rip when it comes to dependency updates, but I wanted to say that Rust makes the absolute best CLIs (mostly thanks to clap
and ratatui
).
I love that basically any CLI made in Rust will usually get you easy, readable help output, sensible argument parsing, and with just a small amount of additional effort, shell completions.
Does Mistral actually provide the training datasets, or are they using the fake definition of “”“open source AI”“” that the OSI has massaged into being as megacorp friendly as possible?
On Macs, I remap it to the Command (super) key. On Linux, I remap it to Ctrl.
It makes copying, pasting, etc. way more ergonomic and doesn’t strain your pinky 😌
If you want Alacritty with tabs, COSMIC Term uses libalacritty, so you get the same performance, but with tabs (among other things).
I can’t find the video, but i saw someone interview him, and PepsiCo asked him to use a different name.
He now goes by Skylar Spence. It’s a different genre, but I love the songs he’s released under that name.
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.
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.
WASM is a better way to run code client-side, and has the benefit of not being a terribly slow, untyped mess 😌
W. JavaScript was a mistake.
They would still have disproportionate control over web standards. They should not be allowed to keep Chrome/Chromium under any circumstances.
Shouldn’t we also have the opposite list; a sort of name and shame or if you use these banks, you’re screwed list?
In part, because it can be more conclusive to take a bank that has consciously made the decision to block access, rather than having a list of banks that maybe just haven’t gotten around to it yet.
Under heavy load. If you saturate any CPU and GPU, you’re going to have it heat up quickly, and depending on your cooling profile, your fans will ramp up.
What the noise actually says is that the fans make noise, and the laptop body doesn’t do much to dull the noise.
I had a pretty good time rewriting various coreutils in Rust. I liked it because the difficulty of doing so ranges from something as easy as the true
command, where you simply exit with a success status, to more challenging stuff like writing a basic shell.
Granted, it’s not that complicated to write CLIs with simple inputs and outputs, so maybe it’s not valuable for others but it certainly helped me understand Rust better than before.
There’s plenty of cooling capability. This thing has two fans that can get to sounding like a jet engine if it gets that hot. And it’s ventilated enough that it actually cools it down.
If anything, it’s loud as hell under heavy load, but cooling isn’t a problem either.
Flood it with nonsense questions asked by shitty synthesized voices from the 90’s.
I’ve been running fish from the development branch for about a year, and I’m happy to say that nothing about it feels like it’s beta. It’s rock-solid (IMO) and my favorite shell 🐟
Operation Pastaclip
Nah. Tankies are wrong, but they’re also powerless. Conservatives actually have power though, and are extremely dangerous.
The problem with that is that the actual polling questions did not indicate any such bias nor did they try to ask leading questions in the way that you’re implying.
News coverage always has a political viewpoint to express (including the “”“centrist”“” slop that often gets peddaled as “unbiased”), and so yeah, you’ll find such ““bias”” as maybe we shouldn’t be engaging in a horrific genocide from progressive news outlets. But the polling questions were pretty direct and clear in a non-leading way.