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...
JCMJoseph and 2 more commentedRust now supports two ways to organize multi-file modules. The traditional way, which is like Python's __init__.py: lib.rs my_module/ mod.rs my_submodule.rs another_submodule.rs One advantage is that the whole module is in one directory T...
MCMarco and 1 more commentedThe 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 ...
SDSébastien and 1 more commentedI'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...
GSCGijo and 2 more commentedThis 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...
MJCMMarco and 3 more commentedLet'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...
SCCMatthew and 2 more commented