-
Recent Posts
Recent Comments
- CodingJam » Migliora i tuoi log con il Mapped Diagnostic Context (MDC) on Java.util.logging vs. slf4j
- Test Driven Development | Pearltrees on Drag & Drop with Selenium
- Gentoo下Nginx+thin构建rails环境 | ByPat博客专注于Linux资源分享! on Thin + Nginx with Rails
- Michael Glauche on Logback Console in Eclipse
- trentjohnson on Logback Console in Eclipse
Archives
Categories
Meta
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
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