Category Archives: Software Engineering
Async Rest with Completable Future, Async CDI Events and Java EE 8
Rest https://gist.github.com/teohaik/aa0354e3b9815ee9f700d7c0b1f2a668 Service https://gist.github.com/teohaik/cdfd6f30a9d156f39b8ef9b26ae545df
How to untrack files in Git
We all know how to add a file under Git tracking. But what can we do to untrack a file or directory? To untrack a file: git rm –cached filename To untrack a directory (recursively) git rm -r –cached dir_name … Continue reading
Useful Git image
Everybody gets confused with this, so I added a useful memo image Credits
Bug in Magnetice Resonance Imaging (MRI) Software invalidates results of last 15 years!
Scientists led by Anders Eklund from Linköping University in Sweden recently announced a bug in the software that transalates results from MRI machines. The bug is related to a specific type of exam, called ‘functional MRI’. In this exam, the patient … Continue reading
Frequently Forgotten Fundamental Facts about Software Engineering
A few day ago, I ran into a very interesting article by Robert L. Glass, published on 2001 at the IEEE Software Among other very interesting facts, it highlights maintenance costs: Maintenance M1. Quality and maintenance have an interesting relationship. M2. … Continue reading