Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
@12bitfloat I setup my first pc up again as server and run a mc server there.
Just recently I saw a plugin which had downvotes because of “corrupting config files”, looking further into his github, turns out, it was some auto fixer that tried to simplify an if statement.
The resulting code was something like
fuck u highlighter -
Can compiled languages get runtime errors? I don't recall encountering one for some reason, at least in C.
-
hitko31485yWith proper typing compiler can catch most things that would otherwise lead to runtime errors. Being a dumbfuck on the other hand, no amount of checks can fix that...
-
@specialCardinal Sure they can but it depends on the language. C doesn't have a concept of exceptions so CPU faults like division by zero or illegal memory access simply terminate the process. Rust can (only if enabled though IIRC) panic on division by zero which can be caught
-
@jaine @12bitfloat Oh right. No wonder I couldn't remember any in C, because it simply terminates the process with a subtle error message for the most part.
Credit to u/srgrafo
joke/meme