Wednesday, April 19, 2017

Oh! The Irony ...

If you peruse any decent book or blog regarding "good" coding practices, "naming things properly" is usually near the top of the list of recommendations to follow. This is actually quite important. Most recently, at a recent client's site, I took over the maintenance of a WPF application. It was part of a suite for a medical device the company was developing. One of the many "state" properties that were being used was named "hasManufactured". I was confused by this for reasons below. More importantly, when I asked around, no one else was sure what it meant. The original programmer was long gone.

There are several things wrong with this. First, as a property, it is incorrectly cased. It should have been "HasManufactured". In a more  egregious fashion the other "state" properties in the class WERE properly cased. Was there a reason this one was not?

Second of all, the meaning of "hasManufactured" was completely confusing to me. "Has" as a word, generally means possession of something, or else a state of being. "He has a goat" is an example of possession. "He has been hired" would be a state. But notice that when "has" represents a state, it's usually associated with a verb of some tense. A reasonable interpretation of the meaning of "hasManufactured" was probably "has been manufactured". Of course, everything that was in the manufacturing process was being manufactured, so ...

Finally, after digging around in the code, it appeared that "hasManufactured" was being changed from false to true when someone clicked the "Finalize" button on a particular dialog window. As it turns out, this button was clicked as the final step in the manufacturing process. So a good assumption is that "hasManufactured" really meant "has been through the entire manufacturing process and is ready for sale". A far better name would have been "IsFinalized". (And yes, I did refactor this.)

Which gets me to the real point of this post. "Object Oriented Design" and "Object Oriented Programming" are both lousy names.

I've been doing .NET Framework programming for over 15 years at the time of this post. Not once have I ever coded an object. In fact, Visual Studio doesn't create object files, it creates class files.

The following code is syntactically correct and declares a class:
public class MyClass() {}
However, this next statement is syntactically incorrect and it has a completely different meaning and result in c#:
public object MyObject() {}
In the first case, an empty class (no members) is being defined. In the second case, the only reasonable meaning is someone mis-coded a method in a class that was supposed to return an instance of the object class.

Note the distinction here identified by the difference in syntax. We developers are NOT doing Object Oriented Programming. We are doing Class Oriented Programming. And we are doing Class Oriented Design. We don't use diagramming tools that provide "object" diagrams - they provide "class" diagrams. Unfortunately, I don't anticipate a successful #hashtag campaign to change the name of the paradigm ...

So here we have an entire industry that recommends naming things properly that has incorrectly named its industry.

Paraphrasing Colonel Kurtz: "Oh! The Irony..."

Sunday, April 16, 2017

My first Xamarin app ...

I just finished my first Xamarin app and published it to  GitHub. It can found here.

I've certainly had my issues with Xamarin. I have an earlier post that's quite a rant. It turns out that if you want to create a "library" assembly to use in a Xamarin PCL, you seem to need to create a .NET Standard 1.4 (or less?) library. Then you can reference it in a PCL assembly. Who'd a thunk it...

Nevertheless, the emulator I selected worked quite well, and didn't require any configuration - though granted my app is very tiny. This app is just a proof-of-concept app to prove the feasibility of a bigger app I'll be working on to commit to the stores.

Hopefully, my experiences with Xamarin will improve. While it's been uncomfortable, it's still a lot more successful than my even more painful experiences with Cordova and NativeScript.

Saturday, April 15, 2017

Why sitting at your desk all day is bad for your heart...

While I work in IT, my B.A. is actually in Physiology. How I got to IT from Physiology is a long, sad, meandering tale not worth telling. Nevertheless, it gives me some background to make educated guesses.

Your circulatory system is composed of two primary sub-systems: the Venous system and the Arterial System. The Arterial system pumps oxygenated blood that is received by the heart from the lungs to the rest of the body. The Venous system returns blood (now de-oxygenated and full of CO2) to the heart which then pumps it through the lungs back to the heart and the Arterial system. 

Now consider how close the heart is your lungs and your head. Not very far, The top of your head is about 1 to 1.5 feet above your  heart. Everything else in your body is pretty much at the same level or below your heart. So the hardest part of pumping blood in the Arterial system is pumping blood UP to your head, your lungs, and your arms. On the other hand pumping blood down to your abdomen, legs, feet etc. means pumping a distance of about 4-5 feet, depending on how tall  you are. Pumping the blood down doesn't require quite as much effort, because gravity is working with your heart, not against it. 

What most people don't realize is that the Venous system, which returns blood to the heart, is assisted by your muscular  system, primarily your legs. In fact, your legs might actually be a stronger pumping system than your heart (more about this later). Your veins have little valves in them that prevent the back flow of blood when the arterial portion of the heart temporarily stops. What? Yes, that's what your pulse is all about. The heart pumps by contracting - which it does rhythmically. Pump - pause - pump - pause - pump - pause. During that pause, if you didn't have those little valves in your veins, the blood in your veins would start to flow back down in your body because gravity still works.  When the muscles contract, they actually help pump blood back to your heart.



Why is this important? Well, if you're sitting at your desk, your legs aren't pumping blood back to the heart! When you're sitting down, the distance from your feet to your heart is about 3 feet. That's actually a VERY long distance to pump fluid against gravity! And it puts a lot of strain on your heart -  all day.

In fact, a good demonstration of how much we depend upon our muscular system to pump blood that 3 or 4 feet back to the heart is to simply stand on your head or hang by your feet for about 30 seconds. Generally, you'll find that your face will get flushed, your sinuses will start to feel congested, and you might even start to get a head-ache because blood is starting to pool in your cranium. Your heart is having a hard time pumping blood uphill against gravity to your feet, abdomen, etc. All the things that are normally BELOW your heart. It pools because your muscular system can't help the heart get blood out of the Venous system. 

The human body evolved to depend on the muscles in our legs to help out the heart. We used to walk, squat, get up and down all day long before we got cars and desk jobs. 

So what's a poor desk jockey to do? Every couple of minutes stand up. Do some calf raises and a few squats. Or just tense your leg muscles with isometric exercises. 

Give your heart a break....