Most recent articles

Learn C++ On the Mac: Primitive Variable Types

Posted by Mark Lassoff on September 13th, 2011 | No Comments

This is the second video in the Learn C++ on the Mac video series. In this video tutorial, Mark will show you how to declare variables in C++ as well as initialize them. The most common C++ Primitive variable types wil be discussed including int, double, float, bool and char. Main.cpp #include <iostream> using namespace [...]

Read more

Android Listeners Tutorial

Understanding Android listeners is a critical to learning how to create Android applications. In this short video tutorial, Mark will demonstrated how to use Android listeners. Specifically you will learn how to create click listeners and long click listeners. In this video, Mark uses the same callback function for three different view objects– leading to [...]

Read more

Learn C++ On the Mac: Hello World

Posted by Mark Lassoff on August 18th, 2011 | 3 Comments

C++ is one of the most common, and most important languages in use. For applications where speed is critical, C++ is often the best option. Since it is compiled in to machine language — unlike Java and .net languages which are interpreted — it runs extremely fast. C++ is often the top choice for creating [...]

Read more

Javascript getElementById Tutorial

Posted by Mark Lassoff on August 15th, 2011 | No Comments

The Javascript getElementById method is, perhaps, one of the most important methods in the language. It allows you to access in HTML element that has an id attribute and value. Once you access the element you can manipulate its stylesheet, read its content, or change its internal HTML. In this tutorial Mark demonstrates the Javascript [...]

Read more

How To Use CSS (Cascading Style Sheets)

Cascading Style Sheets are an important facet of web development. While HTML allows you to structure your web page, CSS allows you to create an impressive design. This video tutorial on how to use CSS covers the basics of Cascading Style Sheets. At the beginning of the tutorial, Mark demonstrates how to place styles in [...]

Read more

Where we've taught...