Of course it’s about refactoring Welcome to the compilation of heartbeats from my work, a mosaic of moments, musings and flashes of inspiration on software development topics. Many posts have been published first on various social media channels. Here I will continue loosely these chronicles. Enjoy reading. Refactoring 🛠️ Refactoring is the secret behind clean, …
Schlagwort-Archive: Refactoring
Find duplicate code with CPD
A copy/paste detector I’m sure that you know PMD, the famous static code analyzer. But have you ever tried CPD? Installation CPD belongs to PMD. You have to install PMD first. [code] $ cd $HOME $ wget https://github.com/pmd/pmd/releases/download/pmd_releases%2F5.8.1/pmd-bin-5.8.1.zip $ unzip pmd-bin-5.8.1.zip $ alias pmd="$HOME/tools/pmd-bin-5.8.1/bin/run.sh pmd" $ alias cpd="$HOME/tools/pmd-bin-5.8.1/bin/run.sh cpd" [/code] Command line usage I give you some examples …
Der Weg zum Java-Profi
Konzepte und Techniken für die professionelle Java-Entwicklung Dieses Buch ist ein ideales Nachschlagewerk, dass wichtige Themen aus der Java-Welt kompakt und kompetent vermittelt. Beim Durchblättern fällt auf, dass hier alle Punkte berücksichtigt werden: Grundlagen, Analyse und Design, Einrichtung und Arbeit mit einer professionelle Arbeitsumgebung und objektorientiertes Design. Der Leser bekommt Tipps für den Bau stabiler Applikationen …
Clean Code Developer Days 2013
Ich bin heute und morgen auf den Clean Code Developer Days und rede in meinem Vortag „Die 7 Wege zum Clean Code“ über Clean Code. Die Konferenz findet dies Jahr in Dresden statt. In meinem Vortrag rede ich über folgende Themen: statische Codeanalyse Testdriven Development Refactoring Continuous Integration Reviews Coding Standards Coding Dojos Wenn ihr euch …