<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://labviewwiki.org/w/index.php?action=history&amp;feed=atom&amp;title=Common_Programming_Principles</id>
	<title>Common Programming Principles - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://labviewwiki.org/w/index.php?action=history&amp;feed=atom&amp;title=Common_Programming_Principles"/>
	<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Common_Programming_Principles&amp;action=history"/>
	<updated>2026-05-09T13:00:04Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://labviewwiki.org/w/index.php?title=Common_Programming_Principles&amp;diff=31060&amp;oldid=prev</id>
		<title>Q: Started page</title>
		<link rel="alternate" type="text/html" href="https://labviewwiki.org/w/index.php?title=Common_Programming_Principles&amp;diff=31060&amp;oldid=prev"/>
		<updated>2021-03-15T00:03:04Z</updated>

		<summary type="html">&lt;p&gt;Started page&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{underconstruction}}&lt;br /&gt;
A simple internet search for &amp;#039;&amp;#039;&amp;#039;Programming Principles&amp;#039;&amp;#039;&amp;#039; will return many articles.  Below is a list of &amp;#039;&amp;#039;&amp;#039;Common Programming Principles&amp;#039;&amp;#039;&amp;#039; that appear on multiple lists.&lt;br /&gt;
{{TOCright}}&lt;br /&gt;
== Keep It Simple, Stupid (KISS) ==&lt;br /&gt;
Keep the code simple.  Simple code is easier to read, extend, and maintain.  If the code is simple, other developers, or &amp;quot;future you&amp;quot;, will be able to understand the code logic and be able to continue with the code.  &lt;br /&gt;
# Attempt to split complex code into smaller components by using [[SubVI]]s&lt;br /&gt;
# Remove unnecessary code&lt;br /&gt;
# Don&amp;#039;t try to write clever code&lt;br /&gt;
&lt;br /&gt;
== Write DRY Code ==&lt;br /&gt;
The &amp;#039;&amp;#039;&amp;#039;Don&amp;#039;t Repeat Yourself (DRY)&amp;#039;&amp;#039;&amp;#039; principle means to avoid duplication of code.  This also pertains to data or logic.  &lt;br /&gt;
# Use [[SubVI]]s for logic used in many places&lt;br /&gt;
# Don&amp;#039;t duplicate/copy data storage.  Inevitably, one of the copies will be out-of-date or wrong.&lt;br /&gt;
&lt;br /&gt;
== Open/Closed ==&lt;br /&gt;
Make the code &amp;#039;&amp;#039;&amp;#039;Open&amp;#039;&amp;#039;&amp;#039; to extension but &amp;#039;&amp;#039;&amp;#039;Closed&amp;#039;&amp;#039;&amp;#039; to modification.  Organize the code in such a way that it encourages extension but prevents direct modification.  This separates core behavior from modified behavior so that if the core behavior is changed, it won&amp;#039;t break the extended, modified behavior.&lt;br /&gt;
#&lt;br /&gt;
&lt;br /&gt;
== You Aren&amp;#039;t Going to Need It (YAGNI) ==&lt;br /&gt;
&lt;br /&gt;
== Document Your Code ==&lt;br /&gt;
&lt;br /&gt;
== Refactor ==&lt;br /&gt;
&lt;br /&gt;
== Low Coupling, High Cohesion ==&lt;br /&gt;
&lt;br /&gt;
[[Category:Programming Principles]]&lt;/div&gt;</summary>
		<author><name>Q</name></author>
	</entry>
</feed>