clean-code.md

July 15, 2021 · View on GitHub

Bookmarks tagged [clean-code]

www.codever.land/bookmarks/t/clean-code

Clean Code Developer

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

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


GitHub - ryanmcdermott/clean-code-javascript

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

:bathtub: Clean Code concepts adapted for JavaScript


Project Lombok: Clean, Concise Java Code

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

Add Lombok to your project and get rid of most of your boilerplate code.


Using Clean Architecture for Microservice APIs in Node.js with MongoDB and Express - 33min

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


Why I Changed My Mind About Field Injection?

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.


Template method pattern - Wikipedia

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

The Principles of OOD - Object Oriented Design

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


Single responsibility principle - Wikipedia

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


Writing Your F.I.R.S.T Unit Tests - DZone Java

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