Who hates YouTube comments???
Updoots to the left
Peak shittiness requires sacrifice
There’s always an accomplice in crime.
Also, tall order to expect me to run and test a code written only for a shitpost.
Misleading. They did this with food they were about to throw away.
Yup. The best strategy is to lie down and spread out, with your hands under your head. The bigger the contact area between your body and the floor, the better. But good luck doing that while falling.
Python is by far the clown, especially against JS
No. The only bigger problem I have with the first image is permanence; the situation in the second picture is easier to clean up.
Classical music is still looking down at you from above. Kaikhosru Sorabji especially. He wrote a piece for piano that lasts 8 to 9 hours.
Have you seen the hold France and Russia keep in Africa?
If that’s not imperialism, I don’t know what is.
“Figure out how I’m gonna be completely happy and healthy for the rest of my life and then we can discuss chemotherapy”
That’s now how you fix things. Relinquishing capitalism doesn’t mean Stalinism, nor communism to be honest.
I’ve given up long ago, now I just write önsdag and whoever gets it gets it
Pretty much, with some atomic additions like “you cannot mutate a reference when it is borrowed immutably elsewhere” or “you cannot borrow a reference mutably multiple times”.
deleted by creator
I think you don’t know what garbage collection is. Allocations and Deallocations is how the heap works in memory, and is one of the two main structures in it, the stack being the other one. No matter what language you are using, you cannot escape the heap, except if you don’t use a modern multitasking OS. ARC is a type of garbage collection that decides when to free a reference after it is allocated (malloc), by counting how many places refer to it. When it reaches 0, it frees the memory (free). With ARC you don’t know when a reference will be freed on compile time.
In Rust, the compiler makes sure, using the Borrow checker, that there is only one place in your entire program where a reference can be freed, so that it can insert the free call at that place AT COMPILE TIME. That way, when the program runs there is no need for a garbage collection scheme or algorithm to take care of freeing up unused resources in the heap. Maybe you thought the borrow checker runs at compile time, taking care of your references, but that’s not the case, the borrow checker is a static analysis phase in the Rust compiler (rustc). If you want to use a runtime borrow checker, it exists, it’s called RefCell, but it’s not endorsed to use. Plus, when you use RefCell, you also usually use Reference Counting (Rc RefCell)
Touché