Problems with JSON

No system, file format, data format, programming language, etc is perfect. However, instead of glossing over the information, it’s better to education oneself as to their shortcomings to ensure that you can work around the limitations. It is worth noting that while JSON is built as a subset of JavaScript it does not include support…

Benefits of JSON

JSON comes with a lot of benefits, which is the reason why many web services provide data either in both XML and JSON, or just JSON. Some of the benefits include:  Easy to parse the data. Low overhead (for transmitting the data between client and server) Built in web browser support. Modern JavaScript has it…

An Introduction to JSON

JavaScript Object Notation, or JSON, is a solution to the problem of how do we move data between systems, especially data between a server and a web client.  JSON is an open-standards, data interchange format that uses a serializable string of data to store information. It was initiated in the early 2000’s by Douglas Crockford,…

Defining New Datatypes

OK, defining a new Datatype might be a bit of a stretch…how about, defining aliases? You can use the typedef keyword to define a new aliase for an existing data type in C++. The general form is: Let’s say you have experience with another language and you want to use a datatype name that they…

Pointer Basics in C++

A Pointer variable, just called a pointer, holds the memory address of data that is stored. Through the pointer, you can read the address, and thus indirectly access the value of the variable. To access a value, you use the dereference operators (*) to get the value stored at that memory address. To store a…

Review Types

There are several types of reviews a software company might use. Using one does not prevent you from using others – in fact, the best process is to use a combination of all of them. Informal to catch easy things early on, and ensure compliance with design specifications, formal to more rigidly test and verify,…