I have been experimenting with the Raspberry Pi and the Bosch BME680 and Plantower PMS5003. With the BME680 you can measure temperature, air pressure, humidity, and VOC gas (Volatile Organic Compunds). With the PMS5003 particles can be measured. Also used a Telegraf agent, Influxdb2 and Grafana.
Continue ReadingProgramming
Using Eclipse with Wildfly/JBoss EAP
The Eclipse IDE can easily be used with the Wildfly/JBoss EAP Java Application Server. In this post some of the steps how to do this have been described below.
Continue ReadingAutomate WordPress Updates with Ansible
I have created an Ansible script to automatically update WordPress on a server. In this case the Ansible script runs locally on that server.
Continue Reading
Experimenting with the Raspberry Pi
A few years ago I bought a Raspberry Pi but I never found time to experiment with the GPIO bus.
Continue Reading
Jython scripting for JBoss EAP with Eclipse and PyDev
One of the nice features of RedHat JBoss Enterprise Application Platform is that you can script deployments and configurations using Jython. In this case we are using the Eclipse IDE together with the PyDev plugin for our development environment.Continue Reading
How to bypass the SSL security check in Jython
In the past to bypass the SSL security check in Jython I have used the example published at jython.xhaus.com. Unfortunately this doesn’t work anymore with Java 8 and Jython 2.7.0. Luckily I found a solution for Java at log.rowanto.com. Now I only had to transform this into a solution for Jython. This can be seen below. Continue Reading