@mverleg
Nothing here yet.
Nothing here yet.
No blogs yet.
In the book Pragmatic Programmer, there are several parts advocating putting things in configuration rather than code: First, we want to make our systems highly configurable. Not just things such as screen colors and prompt text, but deeply ingraine...
The post Different Encryption Techniques in Java by @dhiraj825 opened with: 95% of HTTPS servers are vulnerable to trivial ( Man In the Middle Attack ) attacks. I didn't want to hijack the whole post discussing this irrelevant line, so here's a ...
I'm kind of looking for a RMDB migration tool. Ideally one that: Isn't tied to an application framework (e.g. it can use some programming language for its operation, but shouldn't push me to use that language for the rest of my own application). Wor...
This question is about a big, continuously growing project with 'frequent' releases. Translations to a handful of languages are needed for every change. Obtaining all the translations takes fairly long, like half a release sprint or more. But the rel...
Let's say you have a method like (Java): private @Nonnull Optional<Thing> findByIdentifier(Integer thingIdentifier) { // More logic here return Optional.of(new Thing()); } There are two assumptions: thingIdentifier is a valid number (not nul...