

Why is that. A problem? You have to have the line somewhere. It’s better if it goes along an already existing imaginary line. If they didn’t line up, you would need to remember sets of arbitrary lines instead of 1.


Why is that. A problem? You have to have the line somewhere. It’s better if it goes along an already existing imaginary line. If they didn’t line up, you would need to remember sets of arbitrary lines instead of 1.
Yes. Dying your hair crazy colors will get you attention. But it doesn’t mean that you dyed your hair because you wanted attention.
If my dog goes too far away, I will shout its name very loud so it hears me and comes back to me.
Doing this will inevitably draw the attention of most of the people around me. But that was not my intention though, I just wanted the attention of my dog. The attention of the other people is just an unavoidable side effect. It may even be an unwanted side effect.
This is not a list of all the things they are banning AI from.
This is a list of every reasonable use of LLMs they can think of in their environment.
So if anyone thinks “hmm, I know they don’t like LLM contributions but I’m just going to use it once for X”. The immediate next thought should be “They don’t even allow LLMs to spell check, therefore my single use of LLM for X will not be welcome, I will not do it”.
Basically none of this is enforceable. The rules are there so if someone is caught doing something, it can be pointed out that that something is written in the rules. And also to give a general sense of what is tolerated or not in a community.
This reminds me of a traffic law in my country:
It is illegal to go all the way around a roundabout 3 times in a row. There is not a police officer ok every roundabout, or a camera counting how many times you go around it. But if a kid goes off and do stupid shit at 2AM with a loud AF car, one of the things one might do is do many loops on a roundabout. Therefore they can’t just say “I’m not doing anything illegal, I’m just using the public roads with my car and a valid driver’s license”. Since one of the things they did was doing more than 3 rounds in a roundabout.
When standing up it’s definitely harder to get the last drops out. Sitting is easy as fuck, just use TP. On urinals there is no TP, so can’t get rid of the last 1-2 drops. Never have that problem when sitting due to TP.


They were (mostly) safe when manufactured. Who knows after 80 years. Things degrade


California, home to the most evil and powerful companies in the world. Lmao.
I don’t think the difference is the minimum education for entry.
I’d say the difference is how much of your paycheck is because of you specifically and how much is for just general labor.
So a physics researcher job is “skilled” because most of the pay is because the specific researcher knows about physics.
But a waiter job is “unskilled” since the skills needed to do the job are the skills needed for basically any job:
Of those, only physical endurance and people skills are “exclusive” to being a waiter. There are some actual jobs that require no physical endurance. And some jobs don’t require as much people skills as being a waiter does. But the rest of them are general across basically every job.
Of course, "unskilled job"s do require skills, I just listed a bunch of them. But most of those skills, any other worker that does any other job would have. Therefore I count payment for those skills as payment for “general labor” and not “payment for you specifically”.
If you come with reddit mentality, you’re gonna see reddit eveywhere. In Lemmy, upvotes are not a popularity contest. There is no karma. Votes have no use other than sorting.
One of the reasons my comment may have more upvotes might be because it directly answers the question of the commenter above.
OP didn’t ask what the borrow checker was, OP asked if it was an integral part of rust, and I answered it. Just like another commenter asked more specific questions about rusts’ borrow checker and I answered them.
Another reason might just be that my comment has more entertainment value, while the other one is purely educational.
Another reason might be that Lemmy is already full of rust explanations, therefore there are probably not a lot of people left to learn how it works.
You can reference count, but you must do so explicitly, just like in C++ you have to explicitly use std::shared_ptr, in rust you must explicitly use std::rc::Rc.
Rusts’ memory safety is managed at compile time, that’s what the borrow checker does. It enforces a strict set of simple rules that guarantee at compile time that all the references are valid when they are used. This means that there is no runtime cost.
Q: “Why would you use Rc then? It would only introduce runtime overhead that is not needed because rust already checked that the program is correct”
A: the borrow checker ensures that your program is valid. However, not all valid programs are allowed by the borrow checker. That is what unsafe is for. unsafe allows you to skip some rust safety features if you want to make a program that is valid but rejected by the “safe” rust compiler. Rc uses unsafe internally to expose an API that is safe, but allows you to do things that would normally be rejected by rust.
Of course, the borrow checker is not all the safety features of rust. There are some safety features that actually do have runtime checks.
For example, you can try to access invalid memory by reading out of the bounds of a buffer/array. Most of the time, it is impossible/impractical to solve for this at compile time. Therefore, a bounds check is done on every array access, if the check fails, the program crashes. That check is done at run time. Many times the compiler will optimize those checks, but sometimes they just cannot be optimized out.
You guys don’t pay with cash?
So every purchase you make, doesn’t matter how small, you give a cut to the payment processor? I’d be fucking pissed if I were a small shop selling to you. In fact there are many shops that just refuse to sell if you buy something too cheap through a payment processor.
Low level goes way beyond raw pointers. But yes, rust does have raw pointers.
Java does have raw pointers too I believe though. I wouldn’t call it low level.
But low level is not well defined. At some point, the difference between low level and high level used to be whether you had to write a different program for each computer architecture. Under that definition, C is a high level language. Assembly (and very old languages) would be low level.
My own definition of low level is: if you have to care at all about memory management, it’s low level.
Basically, if the language has a garbage collector or if it automatically counts references without you explicitly telling it so, it’s a high level language for me.
If you want an idea: just yesterday libre office writer crashed on me like 7 times. Losing all unsaved progress each time.
If someone competent wrote a good OSS alternative I would download it in a heartbeat.
Yes, the end goal is very similar to a garbage collector. Both are advanced systems of memory management.
The most important difference being that a garbage collector runs at runtime, while the borrow checker at compile time. Which means that the borrow checker has 0 impact on the program’s performance. It just takes longer to compile the program.
Which also means that, while the garbage collector says “you can do whatever you want with memory, don’t worry about it, I’ll handle it for you”. The borrow checker says “you fucking donkey. Why did you do that? I won’t compile this if you don’t fix it”.
So you trade programmer comfort for performance (end user comfort).
Lemmy is social media, not school. Nobody owes an explanation. Mostly because the poster cannot know the knowledge level of whoever is gonna read the post. If every post has to be explained for every potential person that could read it, every post would be followed by a wall of text. Of all social media, the only time I’ve seen it happen is pugjesus’ history posts. Which makes sense since he often references some niche history knowledge that very few people would know about.
Just googling “borrow checker” would’ve shown you it’s something rust-related.
Yes. Someone that knows just a little more of rust than you do would know what the borrow checker is.
It’s the core feature of rust.
Like talking about java and not knowing what “inheritance” is.
EDIT: just so you understand how vibecoded that project is.
The dude says he vibecoded “some of it” because some rust features make it a hard language for him. The one feature he’s talking about is the borrow checker.
It’s like saying “man, sure is hot today”. Someone says “yeah, this summer sure is hot” and the dude replied “yeah, summerians lived in a hot place too”.


The files are mostly released already. Nothing happened to anyone. They just don’t care.


Yeah. Go tell that to the people/slaves of the countries I mentioned.
As I said, USA is no good, but it’s not the worst.
You don’t seem to understand the meaning of “worst”.
“Bad” is absolute and can be judged with just the USA.
“Worst” is relative and you have to consider the other ones.


The United States is pretty bad, especially for being a supposedly rich country. But no, it’s not the most brutal.
Even though I would not travel to the USA under any condition, if I have to choose between USA, north Korea, Iran, or some other random authoritarian country such as the UAE, Saudi Arabia, sudan or somalia, I’m going to USA. Even though I’m a non-gay male.
Not USAian so can’t comment on 1 and 5.
And 2. I believe are too recent for this. That’s more of a gen alpha thing, gen z already went through most of school before 2020/2022.
Directly causes 6.
I believe 3. Is the root of all evil. And no, 5. Does not cause 3., since I went to a public university. In my case, 3. Was influenced by something similar to 5.: the political party in power encouraging their side of culture instead of focusing on education.
This is not in isolation though. The reason standards started to fall is because higher education became a NEED. As portrayed by the media, if you don’t go for higher education, you will end up in a stagnant job that pays minimum wage. So everyone needed to get higher education, so there was a lot of pressure to let all these new students pass.