<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Dennis Turco</title>
    <description>The latest articles on DEV Community by Dennis Turco (@dennisturco).</description>
    <link>https://dev.to/dennisturco</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3342161%2F4061bfef-ad7c-43a6-a66f-06ab1440774c.png</url>
      <title>DEV Community: Dennis Turco</title>
      <link>https://dev.to/dennisturco</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/dennisturco"/>
    <language>en</language>
    <item>
      <title>Understanding Clean Code</title>
      <dc:creator>Dennis Turco</dc:creator>
      <pubDate>Wed, 16 Jul 2025 14:43:51 +0000</pubDate>
      <link>https://dev.to/dennisturco/understanding-clean-code-7jf</link>
      <guid>https://dev.to/dennisturco/understanding-clean-code-7jf</guid>
      <description>&lt;p&gt;&lt;em&gt;This chapter is a summary based on “Clean Code” by Robert C. Martin. All rights reserved by the original author.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;You can find this summary in my Github profile: &lt;a href="https://github.com/DennisTurco/clean-code-summary" rel="noopener noreferrer"&gt;clean code summary&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Understanding Clean Code
&lt;/h1&gt;

&lt;h2&gt;
  
  
  Recognizing bad code
&lt;/h2&gt;

&lt;p&gt;Before learning what makes code clean, we must first see why bad code is harmful. In many workplaces, pressure to meet deadlines leads to rushed development. This results in messy, tangled codebases where features pile up on shaky foundations. Over time, such code becomes difficult to manage, slowing down progress and risking the entire project's health even the company's survival.&lt;/p&gt;

&lt;p&gt;As programmers, we've all struggled with frustrating code that wastes time and energy a phenomenon sometimes called wading through code. Despite this, it's common to delay fixing issues, telling ourselves we'll clean up later. However, as LeBlanc's Law warns: Later means never.&lt;/p&gt;

&lt;h2&gt;
  
  
  The true cost of disorganized code
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.sonarsource.com/blog/the-true-cost-of-bad-code-in-software-development/" rel="noopener noreferrer"&gt;Sonar - The True Cost of Bad Code in Software Development&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ft7q8mmlf6yatttihnmm5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ft7q8mmlf6yatttihnmm5.png" width="604" height="340"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;As messiness grows, team productivity plummets. Companies try to fix this by hiring more developers, but newcomers often lack knowledge of the system's design and unintentionally add to the confusion. The cycle of mounting technical debt and chaos continues, making it harder to deliver quality software.&lt;/p&gt;

&lt;h3&gt;
  
  
  The false hope of complete rewrites
&lt;/h3&gt;

&lt;p&gt;Complete rewrites are long, risky, and often fail, creating new messy code. The key is to maintain clean code continuously.&lt;/p&gt;

&lt;h3&gt;
  
  
  Attidute is key
&lt;/h3&gt;

&lt;p&gt;Bad code is a sign of unprofessionalism. Developers must insist on quality, just like doctors reject unsafe practices.&lt;/p&gt;

&lt;h3&gt;
  
  
  The core dilemma
&lt;/h3&gt;

&lt;p&gt;Trying to save time by writing sloppy code backfires bad code slows everything down. The real shortcut is to write clean code from the very start.&lt;/p&gt;

&lt;h3&gt;
  
  
  Mastering clean code
&lt;/h3&gt;

&lt;p&gt;Writing clean code is a skill and an art, requiring discipline and a developed “code sense” to transform messy code into elegant solutions.&lt;/p&gt;

&lt;h3&gt;
  
  
  What is clean code?
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://refactoring.guru/refactoring/what-is-refactoring" rel="noopener noreferrer"&gt;Refactoring Guru - Clean Code&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;There's no single definition, but respected developers share some principles:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Bjarne Stroustrup&lt;/strong&gt;: Clean code is efficient, straightforward, easy to maintain, and performs well. It "does one thing well."&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Grady Booch&lt;/strong&gt;: It reads like prose and reflects clear intent through well structured abstractions.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Dave Thomas&lt;/strong&gt;: It's readable and maintainable by others, has meaningful names, minimal dependencies, and good tests.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Michael Feathers&lt;/strong&gt;: Clean code looks like it was written by someone who cares. Every detail was considered and refined.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Ron Jeffries&lt;/strong&gt;: It minimizes duplication, is expressive, and uses simple, abstract solutions to avoid complexity.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Ward Cunningham&lt;/strong&gt;: Clean code is intuitive. You read a method and it's exactly what you expected elegant and natural.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Writing for others
&lt;/h3&gt;

&lt;p&gt;Code is read far more than written; clean code helps teammates and your future self maintain and improve it.&lt;/p&gt;

&lt;h3&gt;
  
  
  The boy scout rule
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://deviq.com/principles/boy-scout-rule" rel="noopener noreferrer"&gt;DEVIQ - The boy scout rule&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Always leave code cleaner than you found it. Small, ongoing improvements keep the codebase healthy and sustainable.&lt;/p&gt;

</description>
      <category>cleancode</category>
      <category>tutorial</category>
      <category>documentation</category>
    </item>
    <item>
      <title>[Boost]</title>
      <dc:creator>Dennis Turco</dc:creator>
      <pubDate>Thu, 10 Jul 2025 19:07:48 +0000</pubDate>
      <link>https://dev.to/dennisturco/-3p4m</link>
      <guid>https://dev.to/dennisturco/-3p4m</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/dennisturco" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3342161%2F4061bfef-ad7c-43a6-a66f-06ab1440774c.png" alt="dennisturco"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/dennisturco/ive-publish-a-new-windows-program-3in6" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;I've publish a new windows program&lt;/h2&gt;
      &lt;h3&gt;Dennis Turco ・ Jul 10&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#java&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#programming&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#sideprojects&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#software&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>java</category>
      <category>programming</category>
      <category>sideprojects</category>
      <category>software</category>
    </item>
    <item>
      <title>I've published a new windows program</title>
      <dc:creator>Dennis Turco</dc:creator>
      <pubDate>Thu, 10 Jul 2025 19:07:23 +0000</pubDate>
      <link>https://dev.to/dennisturco/ive-publish-a-new-windows-program-3in6</link>
      <guid>https://dev.to/dennisturco/ive-publish-a-new-windows-program-3in6</guid>
      <description>&lt;h1&gt;
  
  
  Backup Manager
&lt;/h1&gt;

&lt;p&gt;Have you ever forgotten to back up an important folder? Lost data because you didn’t set up a reliable backup routine? I’ve been there too — that’s why I created Backup Manager, a lightweight and intuitive tool designed to automate and simplify backups on your PC.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2axmor8lswbwlu618ivl.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2axmor8lswbwlu618ivl.png" alt=" " width="800" height="585"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What Is Backup Manager?
&lt;/h2&gt;

&lt;p&gt;Backup Manager is a user-friendly application with a clean graphical interface and tray icon integration. It allows you to automatically back up folders and subfolders at custom intervals, or on demand with a single click.&lt;/p&gt;

&lt;p&gt;Whether you're protecting personal documents, code repositories, or shared workspaces, Backup Manager is a powerful yet accessible way to ensure your data stays safe.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;📁 Automatic backup of folders and subfolders&lt;/li&gt;
&lt;li&gt;🕒 Custom scheduling for recurring backups&lt;/li&gt;
&lt;li&gt;🖱️ Simple GUI with system tray support&lt;/li&gt;
&lt;li&gt;📝 Detailed logs and backup history&lt;/li&gt;
&lt;li&gt;🎨 Dark/light themes and multilingual support (English, Italian, German, Spanish, French)&lt;/li&gt;
&lt;li&gt;🪟 Runs at system startup (configurable)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  📥 How to Get It
&lt;/h2&gt;

&lt;p&gt;You can download the latest version on itch.io: &lt;a href="https://dennis-turco.itch.io/backup-manager" rel="noopener noreferrer"&gt;BackupManager&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Backup Manager is completely open source under the MIT License.&lt;br&gt;
I’d love your feedback, contributions, and ideas!&lt;br&gt;
&lt;a href="https://github.com/DennisTurco/BackupManager" rel="noopener noreferrer"&gt;Github Repository&lt;/a&gt;&lt;/p&gt;

</description>
      <category>java</category>
      <category>programming</category>
      <category>sideprojects</category>
      <category>software</category>
    </item>
  </channel>
</rss>
