Monthly Archives: August 2015

Building a Simple Django Application

Follow the steps below to implement a simple “online survey” program in Django. These instructions are a simplified form of a tutorial found on the official Django website at the URL “https://docs.djangoproject.com/en/1.8/intro/tutorial01/“, with much of the explanatory discussion (and digression) … Continue reading

Posted in Uncategorized | Tagged , , | Leave a comment

A Simple Web Server in Node.js with a MariaDB Backend

Follow the steps given below to implement a simple web server in Node.js that, upon receiving a request, reads a list of databases from an underlying MariaDB server and returns a list of them as the web response. I actually … Continue reading

Posted in Uncategorized | Tagged , , , , , , | 2 Comments

Hello World in C++ using G++ on Linux

Follow the steps below to create, compile, and run the simplest possible program from the Linux command line using the G++ compiler, which is part of the Gnu Compiler Collection (GCC). 1. Start up Linux, open a console window, and … Continue reading

Posted in Uncategorized | Tagged , , , , , | 1 Comment

Hello World in C using Linux and GCC

Follow the steps below to create, compile, and run the simplest possible program in Linux using GCC. 1. Start up Linux, open a console window, and navigate to any convenient directory. 2. At the command prompt, enter “su” and supply … Continue reading

Posted in Uncategorized | Tagged , , , , | Leave a comment