-
Recent Posts
Archives
Meta
Notes on software development
That’s how Linus Torvalds does it. I like his style. Here’s one example: Import: always open and read the file before checking the filename ex… …tension Most of the parsers will want the content in memory, so keep them simple. The fact that the Suunto parser uses “libzip” that has to re-open the file is [...]
Splitting code into assemblies in .NET is a useful technique that enables building scalable applications. But, it produces an executable with a number of satellite assembles. All of them need to be deployed to the target system for the app to work. Most of the time installers (MSI-packages) handle this task. But, sometimes it would [...]