-
A Take On Software Engineering
I found this great blog post from Gergely Orosz about the differences between working as a software engineer for a traditional company versus working for a Silicon Valley style company. It highlights problems that I’ve experienced to some degree in various companies. It’s recommended reading for Software Engineers/Devlopers and their managers. https://blog.pragmaticengineer.com/what-silicon-valley-gets-right-on-software-engineers/
-
Generating CSR in .NET Core
As I’m working on my first ever integration to ”Swish Handel” I needed to gernerate a CSR, preferably from .NET core. I found parts scattered over the web at best, so this is how I put them together. A CSR is a Certificate Signing Request sent to a Certification Authority to generate a certificate. Certificates…
-
405 response for HttpURLConnection
My search results indicate that a lot of people have had more or less the same problem with server responses from java based clients when using the HttpURLConnection class. First of all, some problems may be caused by the fact that the method setDoOutput(true) changes the request type from GET to POST. Unless you want…
-
CRC8 for iButton in C#
I came across a project where we needed to read and handle iButtons. The iButton, also known as a Dallas Key, looks like a flat battery. To use the iButton is pressed against a reader and the identitiy is transferred over the OneWire protocol. There is a built in cyclic redundancy check, but it took…
