Skip to content

Latest commit

 

History

History
68 lines (57 loc) · 4.39 KB

clean-code.md

File metadata and controls

68 lines (57 loc) · 4.39 KB

Bookmarks tagged [clean-code]

https://clean-code-developer.de/

Mit Clean Code Prinzipien und Praktiken zu mehr Qualität in der Softwareentwicklung.


https://github.com/ryanmcdermott/clean-code-javascript

🛁 Clean Code concepts adapted for JavaScript


https://www.oracle.com/corporate/features/project-lombok.html

Add Lombok to your project and get rid of most of your boilerplate 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...


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.


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...


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...


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).