Getting visitor information PHP / Site Analysis
Getting information about your visitors is interesting and sometimes useful for generating statistics, especially when you have a high traffic.
Log visitors with PHP & MySQL PHP / Site Analysis
In this tutorial you'll see how you can track your website's visitors and getting information such as user-agent or referrer. Also, we'll be using reverse DNS to find out more interesting information about his IP.
Understanding C++ data types I C and C++ / Getting Started
A small book for those beginners in C++ or even in programming who didn't understand C++ data types. This is meant to be a patch to other books, that cover the basics of C++.
Understanding C++ data types II C and C++ / Getting Started
Part II of the small book that teaches you the C++ data types. Even if you have an IQ under 25 you will can understand and use the data types. In this part you will see an important aspect of data types... signed and unsigned.
The Binary Adding Machine C and C++ / Getting Started
Ever wondered how computers work? In this tutorial, I attempt to explain this from the ground up. First, we'll look at how a machine can add numbers.
Constants C and C++ / Getting Started
There are two main ways of defining constants in C++, and we'll review and compare both of them, seing their advantages and disadvantages.
Using header files in C++ .NET C and C++ / Getting Started
This tutorial will show you how to work with C++ .NET headers (or includes). How to create a header file with a class in it, include the file in a typical .cpp file, set a variable and call a public function, both defined inside the header.