Category: DevOps
A container is a means of containing everything an application needs to run: binary files, libraries, configurations etc. Running your application within a container makes it highly portable. Deployment of …
Some instructions on how to create a very simple Model View Presenter example in Java in the Eclipse development environment.A reference I found useful, from which I re-use all the …
Example folder name ‘PortableMedia’ that I wish to rename to ‘Renishaw.IDT.Powers.PortableMedia’:Step 1: Close the VS solution and nename the folder in source control‘PortableMedia’Gets changed to ‘Renishaw.IDT.Powers.PortableMedia’:Re-open the solution.Observe that the …
A quick how-to guide on setting up and using SQLite in C# / .NET environments.Nothing complicated just instructions on installing SQLite and using its APIs for database creation and querying.Much …
1. Download Eclipse Obtain the installer from the following site:https://eclipse.org/downloads/and complete the installation:2. Create a new Eclipse projectOpen Eclipse and select File > New > Java Project. Give the project …
Threads can be used to implement parallelism. For UNIX-based systems, a standardized C language threads programming interface has been specified by the IEEE POSIX 1003.1c standard. Implementations that adhere to …
Getting started with using OpenGL / freeglut in a Microsoft Visual Studio environment for 32 bit versions.1. Obtain freeglutGo to the freeglut site to obtain the MSVC package:http://www.transmissionzero.co.uk/software/freeglut-devel/At the time …
Some instructions and screenshots to help you get up and running using the Fast Light Toolkit (FLTK) within the NetBeans development environment in Linux. For configuring FLTK in Visual Studio …
I like using NetBeans for C++ development within Linux environments.Sometimes a gotcha can occur when trying to use the following declaration: You may wish use this in order to utilize …
A quick guide to setting up and installing OpenCV for using in the Code::Blocks integrated development environment in Linux. The version of Linux I am currently using is Ubuntu 14.04. …