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
-
I've suffered from clean code for many many years
Finally sober, enjoying my YAGNI code -
kiki372992d@12bitfloat wow. I spent so much time convincing people that uncle bob is a moron that I basically gave up. Clean code to software engineering is what tailwind is to css -- cancer.
-
retoor85561dI also prevent dependencies by writing myself. It also feels good that you know exactly what is happening. It's just clean and you know that it keeps working.
-
retoor85561d@Chewbanacas nothing wrong with goto statements - tsoding. I agree with him tbh. There are just fine use cases.
If you were a code antipattern, what would it be?
I'm definitely NIH -- "Not Invented Here".
I write everything from scratch. When I don't, more often than not, I don't install code deps -- I copy their code and modify it. I port it to my set of utils, my syntax preferences, optimize it, strip parts and modes I don't need, and at the end there's no clear line between what was my code and what wasn't. My code doesn't import, it absorbs.
random