A Bit of Logic: Understanding Bytes and Bits
If you haven’t heard already, a byte is a sequence of eight binary units. These binary units are called bits. While this is no great secret, the functioning of bits…
Free resources for programming help
If you haven’t heard already, a byte is a sequence of eight binary units. These binary units are called bits. While this is no great secret, the functioning of bits…
Hello there, and welcome to my little article about making computer games. I assume that you’re reading this because you are at least a little interested in writing games. If…
There are lots of avenues you can take to becoming a contract programmer. But before we explore some of those, you need to find out what you intend to do.…
Recently a friend of mine asked me why he should use a JOIN statement rather than adding extra criteria to the where clause. It’s an interesting question, and I thought…
Why? At McDonalds you can order items the way you want them, and they are delivered FAST! But, you don’t have a completely open menu. You can only order certain…
Oracle & SQL Server behave subtly differently when processing columns containing nulls. Consider the following series of SQL statements: CREATE TABLE tempone ( creditlimit NUMBER(6)); -- Oracle CREATE TABLE tempone…
Here are 8 steps to improve the readability, debug-ability and speed of your Visual Basic application. 1) Use Option Explicit (and the Require Variable Declaration setting) for ALL your modules…
An interface declaration in Java introduces a new data type. An interface is a named collection of abstract methods and constants. Interfaces are syntactically similar to classes, except that they…
In object-oriented programming, a behavior is referred to as a message that one object sends to another object. Behavior is the only way by which an object can do anything.…
Since the .Net languages came out, there have been many holy wars between C# and VB.Net. If you would have asked me that question last month, I would have said…