HOWTO Convert SVN repository to GIT

updated: 18/12/2025 In my previous post, I wrote about using GIT with an SVN server pathing across different processes. One of these was cloning an SVN repository.  This topic can be used to convert an SVN repository to GIT one with all its revision history. The Process We can use the cloning command to set up the starting revision of our new GIT clone, by … Continue reading HOWTO Convert SVN repository to GIT »

Released Horodruin 2025.06.814.0

Released a new shiny version: – fixed rare crash in file deletions processing. – restored missing & forgotten ‘2 seconds tolerance’ in files’ comparisons. – minor fixes & enhancements. link

HOWTO install and setup a on demand MySQL-like DB on W11

I needed to have one or more MySQL-like DB instances ‘on demand‘ under Windows with minimal system modifications (like installing services, …) and baseline tasks. A good objective might be the ability to run it without any administrative access rights requirement. Installation After a short research, I chose the portable version of MariaDB (one of the best MySQL clones). Unzip and place the package where … Continue reading HOWTO install and setup a on demand MySQL-like DB on W11 »

HOWTO Upgrade to W11 on PC with Unsupported CPU

With Windows 10’s incoming end-of-support, I started to study the destiny of some of my old PCs. A good idea might be to run the MS PC Health Check for a detailed view of the situation. Without a maintained OS, I might consider installing some linux distribution, or even dismiss the asset. My preferred solution would be to find a way to upgrade to W11 … Continue reading HOWTO Upgrade to W11 on PC with Unsupported CPU »

HOWTO integrate NASM with VS2022

updated 01/11/2024 Occasionally I use Intel assembler language to squeeze processing power from my programs. A cheap solution was C inline assembler sections, but VS2022 doesn’t support them in a 64-bits program.  Other compilers use more or less complex solutions (IBM assembler, …). This forced me to consider including and linking .asm files in my projects.  I can split them with 32 and 64 bits … Continue reading HOWTO integrate NASM with VS2022 »