Anything you live by?

For further actions, you may consider blocking this person and/or reporting abuse
Anything you live by?
For further actions, you may consider blocking this person and/or reporting abuse
Douglas Makey Mendez Molero -
Sloan the DEV Moderator -
Dumebi Okolo -
Nathan Tarbert -
Once suspended, sherrydays will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, sherrydays will be able to comment and publish posts again.
Once unpublished, all posts by sherrydays will become hidden and only accessible to themselves.
If sherrydays is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Sherry Day.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag sherrydays:
Unflagging sherrydays will restore default visibility to their posts.
Top comments (18)
"Always check your assumptions"
This comes into play best when debugging. Assuming an input has a specific value (or even a value at all), assuming a method is being called, assuming a library works as you think it does, assuming that your deployed code and configuration is as you expected it to be, assuming debug and release will behave the same in all circumstances...
for me:
"If I had eight hours to chop down a tree, I'd spend six sharpening my axe".
Always write agorithm before, you start coding. When you write, many problems becomes evident, which you can remove right there. Once it become satisfactory, it become too easy to code.
I find myself coming back to this one
In computer programming and software engineering, the ninety-ninety rule is a humorous aphorism that states:
The Debugging Paradox: The harder you push to find a bug, the more elusive it becomes. The moment you step away from the keyboard, the solution suddenly becomes clear.
"Use the duck Luke" 😁
It's not really a paradox than a developer can think more clearly when she is relaxed under the shower than when she is stressed and glued behind a computer screen.
It's very small and simple, but:
"Continuous Improvement: Feeling dissatisfied with your past code is natural and appropriate. It shows an understanding of your evolving skills."
Great!
Keep it simple, but also follow basic workflows. I have a whole list of them, like what to do for incorrect function returns.
It's not rigid at all, but I often find myself doing the completely wrong thing, so basic workflows (or problem flows, if you will) tend to be helpful!
KISS - YAGNI
I cannot count the number of time I've heard "This interface will be useful next quarter when we will address this requirement".
Finally, priorities change, and your beautiful useless abstraction just become yet another over-designed layer developers have to deal with every day of their life...
If your abstraction have a single implementation, you didn't built and abstraction. You just built a pass-through layer over your specific case.
Programming is very simple: you learn all the best practices, and then you forget about them and focus on what your colleagues and your customers need.
Top 10 Coding Principles Every Developer Must Know
Mr. Unity Buddy ・ Jul 12 '21 ・ 7 min read
use small dedicated solutions over all included frameworks
TDD
DDD
SOLID
KISS
DRY
Clean Code
Use design patterns if it's possible. Refactor if not.
Keep is simple...