Windows 8 reviews are becoming more and and more unfavourable. Linux Mint 13 is the alternative.

The Windows 8 reviews are becoming more and and more unfavorable. The interface is being dumbed down and it will end up becoming a joke in the computing world. The Linux Mint 13 distribution has been released and the 64bit MATE release of this distribution is looking very good indeed. As the image to the … Read more

Sample C programming code. How to get input from the console.

This is a sample C program showing how to define a function as well as accepting input from the command-line. Hopefully this is useful for someone who is writing a console application for Linux or UNIX. #include <stdio.h> #include <string.h>   int main(int argc, char **argv) {   char *name; name = argv[1];   if … Read more