Grails and MariaDB

To create a grails project with MariaDB support go to the base directory for grails projects and issue the following command. [codesyntax lang=”bash”] grails create-app yourProjectName [/codesyntax] Change directory to yourProjectName and edit the build.gradle. Include the following dependency ” runtimeOnly ‘org.mariadb.jdbc:mariadb-java-client:2.7.4′”.  Save the file and issue the following command “grails compile”. You should now […]

Install Archlinux Server

This article is a baseline for installing Archlinux. To install the base Archlinx system follow this link. Once the base system is installed proceed to create a LAMP stack by following this video. Now we will install Kubernetes by folling this tutorial. Mr. Arch Brooks, Software Engineer, Brooks Computing Systems, LLC authored this article.

BCS wxWidgets Modal Dialog

To create a wxWidgets modal dialog some source code must be added to your existing wxWidget application. The next section of code will establish the class and the reference to the modal dialog. The final section of code shows how to invoke the modal dialog. Mr. Arch Brooks, Software Engineer, Brooks Computing Systems, LLC authored […]