Intro to HTML 5

Version 4 and prior of HTML was a little “wild west” in how it was interpreted and defined. It wasn’t always consistent in how it was implemented or interpreted, and sloppy interpreters allowed lots of pages with errors displayed things differently. At one point it was estimated that 98% of all web pages had at…

An Introduction to C++

A little bit of history C++ is an expansion of the C programming language. It’s main addition was the ability to create and use objects. That makes it an Object Oriented Programming (OOP) based language. You do not have to start with objects however, as it retains all of the C procedural language constructs and…

A Sample C++ Program

Let’s look at a simple program and work through it step by step. #include #include statements are at the top of the file, and let you include any libraries you might need. iostream, in our example is used to help process input and output. You might think this is standard, but if you are building…

An Introduction to JavaScript – Part II

In the first part of an Introduction to JavaScript, we looked at basic syntax, variables, comments, and displaying information to the user. Now we are going to expand upon that base to look to the next options. Making Decisions Almost every program will need to only run certain sections of the code. This means skipping…