Bookmarks tagged [clean-code]
https://clean-code-developer.de/
Mit Clean Code Prinzipien und Praktiken zu mehr Qualität in der Softwareentwicklung.
- tags: clean-code, software-development
https://github.com/ryanmcdermott/clean-code-javascript
🛁 Clean Code concepts adapted for JavaScript
- tags: javascript, clean-code
- source code
https://www.oracle.com/corporate/features/project-lombok.html
Add Lombok to your project and get rid of most of your boilerplate code.
- tags: lombok, java, clean-code
https://www.youtube.com/watch?v=CnailTcJV_U
In this video we talk about Bob Martin's Clean Architecture model and I will show you how we can apply it to a Microservice built in node.js with MongoDB and...
- 📆 published on: 2019-04-22
- tags: node.js, clean-code, expressjs, mongodb
- source code
https://www.petrikainulainen.net/software-development/design/why-i-changed-my-mind-about-field-injec...
I used to be a huge fan of field injection. But one day I started to question myself. Could it be possible that I have been mistaken? Let’s find out what happened.
- 📆 published on: 2013-06-26
- tags: design-patterns, clean-code
https://en.wikipedia.org/wiki/Template_method_pattern
What problems can the Template Method design pattern solve? [4]
- The invariant parts of a behavior should be implemented only once so that subclasses can implement the variant parts.
- Subclasses sh...
- tags: design-patterns, clean-code
http://www.butunclebob.com/ArticleS.UncleBob.PrinciplesOfOod
The first five principles are principles of class design. The first three package principles are about package cohesion, they tell us what to put inside packages. The last three principles are about t...
- tags: clean-code, design-patterns
https://en.wikipedia.org/wiki/Single_responsibility_principle
The single responsibility principle is a computer programming principle that states that every module or class should have responsibility over a single part of the functionality provided by the so...
- tags: clean-code, design-patterns
https://dzone.com/articles/writing-your-first-unit-tests
When writing unit tests in Java, stick to FIRST. Your tests should be fast, independent, repeatable, self-validating, and timely (unless you're using TDD).
- 📆 published on: 2017-03-17
- tags: testing, unit-testing, clean-code