Category Archives: Uncategorized

esp32, deep sleep and mqtt

I saw a lot of posts about sending mqtt messages from an esp32/esp8266 with deep sleep between the sending cycles. This works fairly well as long as you keep a some time for the message to transmit before the deep … Continue reading

Posted in Uncategorized | Comments Off on esp32, deep sleep and mqtt

Persisting Joda-Time Fields with openjpa

Lately i became curious about how to store joda-time objects into a database with openjpa. Well, its supprisingly easy if you only want to store/retrieve the objects: import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; import org.apache.openjpa.persistence.Persistent; import org.joda.time.DateTime; @Entity public class … Continue reading

Posted in Uncategorized | Leave a comment

Reducing Raspberri PI’s memory usage

I just got my Raspberry pi recently and found this really usefull link for tuning Raspbian to use less memory : http://extremeshok.com/blog/debian/raspberry-pi-raspbian-tuning-optimising-optimizing-for-reduced-memory-usage/

Posted in Uncategorized | Tagged , , | Leave a comment

Git with Jenkins

Recently I did try to use jenkins together with git on windows. During configuration i stumbled along some blogpost that advised to use git.cmd instead of git.exe (which does set some more enviromnent variables, for example %HOME% to use _nettrc … Continue reading

Posted in Uncategorized | Leave a comment