How to configure Self signed SSL (full trust) with Nginx. Nginx is a modern web server and provides many benefits over apache. It is super easy to configure Nginx to use self signed SSL which is fully trusted in chrome. $ openssl x509 -req -in device.csr -CA rootCA.pem -CAkey rootCA.key -CAcreateserial -out device.crt -days 999 -sha256 -extfile v31.ext
Apache Camel with Bindy In this post I am going to demonstrate the power of Apache Camel Bindy DSL to marshal the files to various categories such as CSV, fixed file etc to a custom data object. @CsvRecord(isOrdered = true) public Class Order { @DataField(pos = 1, position = 11) private int orderNr; @DataField(pos = 2, position = 10) private String clientNr; }
Nitro Quick and easy performance analyzer library for Go. Overview Nitro is a quick and easy performance analyzer library for Go. It is useful for comparing A/B against different drafts of functions or different functions. Implementing Nitro Using Nitro is simple. First, use go get to install the latest version of the library. $ go get github.com/spf13/nitro Next, include nitro in your application.