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
-
Lensflare1699569dThat’s right. And nobody cares about speed. Speed is just a welcome side effect.
What we care about is correctness. And if it doesn’t work, at least it tells you that it doesn’t work (very fast). Instead of silently failing and pretending to be working. -
Lensflare1699569d@jestdotty if you believe that in order to be correct you need to sacrifice dev speed, then you are already too far damaged by prototyping clown languages to make any judgement on this topic.
-
atheist979369d@Lensflare what about when "correct" is impossible/undefinable? See basically most AI, but also some dsp/signal analysis
-
Lensflare1699569d@atheist yeah, what about it? Correctness in this context is not mathematical correctness or something. It’s just whatever you define it to be. In most cases it can be a list of things that you want to be true and are able to test.
-
topsecret23077849dI disagree. You should code in a way where you would see ASAP if something doesn't work. This is why we write tests for big projects that take a long time to compile, because it is faster to run them.
-
kiki3521749d@topsecret230 wait a min, lemme get my unit test barf bag… what were you saying again?
If it doesn't work, it doesn't matter how fast it doesn't work.
random