

Compounded by sites like RSSing that frame or scrape other websites. Another hit, but literally the same thing verbatim as another.
Compounded by sites like RSSing that frame or scrape other websites. Another hit, but literally the same thing verbatim as another.
Lol at YouTube comment
well we definitely know it has a map
Also not very hopeful cosidering EAs involvement.
And for the fandubs, there should be an additional paragraph as a hat explaining some concept or pun that just does not translate well.
The short answer is Rust was built with safety in mind. The longer answer is C was built mostly to abstract from assembly without much thought to safety. In C, if you want to use an array, you must manually request a chunk of memory, check to make sure you are writing within the bounds of your array, and free up the memory used by your array when completely done using it. If you do not do those steps correctly, you could write to a null pointer, cause a buffer overflow error, a use-after-free error, or memory leak depending on what step was forgotten or done out of order. In Rust, the compiler keeps track of when variables are used through a borrowing system. With this borrowing system the Rust compiler requests and frees memory safely. It also checks array bounds at run-time without a programmer explicitly needing to code it in. Several high-level languages have alot of these safety features too. C# for example, can make sure objects are not freed until they fall out of scope, but it does this at run-time with a garbage collector where Rust borrower rules are done at compile-time.
Surprised by how many words here I consider old. jorts? Jorts is a recent addition?
My guess is a larva of Chrysodeixis argentifera. Only a guess though.
It kinda do though. VSCode, without a project open has 10 processes running and uses over a half gig of ram. I like VSCode to be clear. I also like discord but it’s just a chat app and apparently needs a half gig itself and 6 processes.
Some of the projects that pushed my own learning were very small things to help my school or work. When I was younger I had to do 100 FOIL equations and show my work. I did not want to do that all by hand and wrote a program to do it. If you got something super repetitive but not super hard, that would be a perfect project.
It takes two
Yeah, I guess. It seems wasteful to need 8GB just to run an OS and browser especially after Microsoft was pushing server core specifically to go the opposite route with resource utilization on servers.
They are necessitating 8GB of RAM. for what?! Like, it would be a struggle to find a machine with less than 8GB still being sold new, sure, but why does the OS need that RAM?
I don’t think this is possible through DNS filtering because it is your home lemmy instance showing you the results. You could block specific communities, turn off NSFW posts in your profile, or use a filter in Ublock Origin. These are all client-side solutions and would not auto-apply to a whole network. I don’t think there is a feature to block posts from a whole instance without being in charge of your own instance and de-federating. I would wager a per-user instance block will be coming down the pipe eventually.
I use powershell for some scripting. I’ve been using .net/powershell forever and I know it better than python. If bash can’t handle it in a few lines, and I don’t have to use python, I’ll go powershell.