

I never understood why people prefer private trackers.
I never understood why people prefer private trackers.
The hero we need
Hmmm. Maybe I should try that then. Never actually understood why people like these managers as I was always satisfied with the directory tree for organization.
Well maybe besides music. There beets fucking rocks. But in the end I use it also only to sort music into a directory structure.
What’s wrong with just folders and file names?
Can you get apocalypse insurance? I think I’m in the market for it.
No, no, no. It’s the end of times. I can hear the trumpets of the apocalypse.
Now Valve needs to release half life 3 and the world as we know it will truly perish.
Jokes aside. I hope this means work on a UI overhaul can seriously begin.
The only way to make Rust segfault is by performing unsafe operations.
Challange accepted. The following Rust code technically segfaults:
fn stackover(a : i64) -> i64 {
return stackover(a);
}
fn main() {
println!("{}", stackover(100));
}
A stack overflow is technically a segmentation violation. At least on linux the program recives the SIGSEGV signal.
This compiles and I am no rust dev but this does not use unsafe
code, right?
While the compiler shows a warning, the error message the program prints when run is not very helpfull IMHO:
thread 'main' has overflowed its stack
fatal runtime error: stack overflow
[1] 45211 IOT instruction (core dumped) ../target/debug/rust
Edit: Even the compiler warning can be tricked by making it do recusion in pairs:
fn stackover_a(a : i64) -> i64 {
return stackover_b(a);
}
fn stackover_b(a : i64) -> i64 {
return stackover_a(a);
}
fn main() {
println!("{}", stackover_a(100));
}
I feel like Broccus would be a badass name for a dog.
Yes, this maximal decentralized usage where everybody has their own copy but can collaborate and pick and choose from other copies was a central idea in the creation of git. Ultimately it was made for Linux Kernel development and that is how that works over there.
You do not even need to use git specific protocols. One can simply import patch sets and mail them to each other.
Git was made to work decentralized and repositories are trivial to mirror.
The fuck is the driving factor of egg prices in the us? It is not just a meme?
I am using eternity. There, it’s just a link but every word is surrounded by ~.
Unfortunately, I don’t think lemmy.world is authoritative in regards to formatting and Lemmy itself – iirc – does not suggest formatting guidelines.
Spoiler formatting is also a pain because of that :/
Why all the tilde symbols? That’s what makes it quite distracting and hard to read for me tbh.
Numpy can use BLAS packages that are partly written in Fortran
In assessing risk assume everyone is a bumbling idiot. For we all have moments of great stupidity.
There is definitely a risk in changing it. Many automation systems that assume there is a master branch needed to be changed. Something that’s trivial yes but changing a perfectly running system is always a potential risk.
Also stuff like tutorials and documentation become outdated.
That is a reason why most farmers like to purchase seeds every season anyways. It’s way more predictable and you may want to change the strain depending on many variables.
Farming, especially commodity crops like wheat, is an extremely risky business. Taking out some risk is often worth it.
Modern farming is way more complicated and scientific than most people realize. The portrayal of farmers as bumbling idiots in popular media is not helping.
Not to mention there are so many more ways to fuck up security when configuring it all on your own outside a container.
Edit: of course one can also fuck up security with a container
Why do you say it’s obvious that the English wiki “has nothing”?
Hmmm I never had a problem finding what I want with public sources. Maybe my tastes in media are not refined enough.
There is no incentive but I also seed everything I download until at least ratio 2 but mostly without a cap especially obscure stuff.
I also like to not even use public trackers instead relying solely on the mighty distributed hash table (DHT) to find peers.