Useful tips for a programmer on a Macintosh machine. Install GCC.

How to install the GCC compiler for Macintosh programming on a Macintosh Air. This simple command will install the GCC compiler collection and the make command on a Macintosh. This enables programming console apps on a Macintosh machine. These instructions are for Macintosh OSX Sierra. May not be the same on an older Macintosh machine. … Read more

A look at the objdump command. A very useful Linux utility indeed. As well as some other useful commands.

The best thing that is happening with the Linux kernel and the associated software that builds a distribution is that the software is getting easier to use than ever. But the Linux command-line is still the best and easiest way to get some things done. For example; getting information about an executable file. This is … Read more

MobaXterm application for Windows. A good Linux shell for the Windows operating system.

The MobaXterm application for Windows is a good way to practice Linux commands if you are stuck on a Windows only machine. This application is extensible with add ons such as the gcc compiler and Vim editor as well as many other add ons to make the application even more useful. This is good for practising programming … Read more

Installing gcc 4.7.0 from source on Linux Mint 12.

Install gcc from source on Linux Mint 12 After downloading the source tarball for the gcc 4.7.0 release, and unpacking the tarball, enter the source directory: cd gcc-4.7.0/cd gcc-4.7.0/ Then we need to create an empty folder under the gcc-4.7.0/ folder to perform the actual build. mkdir mintbuildmkdir mintbuild Then enter this folder: cd mintbuildcd … Read more