Introduction to JSON
JSON (JavaScript Object Notation) is a lightweight data-interexchange format. Prior to JSON, XML was the most commonly used data inter-exchange format. XML still has its dominance. But JSON is also gaining up because of its simplicity. JSON represents the data as string:value pairs, where the value can be string, numbers, arrays, boolean values or even [...]
XML programming in Linux
For a detailed tutorial on XML programming, check the libxml tutorial. To start XML programming in Ubuntu, you must have the following packages in your system libxml2 libxml2-dev libxml2-doc libxml2-utils To install these packages, Once you install these packages, you must check the path where the libxml2 header files are present You must make use [...]
XML: Extensible Markup Language
How do you refer a book to your friend? Take for example, you want to refer the book “Introduction to algorithms by Cormen”, you would say in the following manner Book: Introduction to Algorithms Second Edition Authors: Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, Clifford Stein This is clearly understood by anybody. But [...]