Few Considerations About Functions Returning an Object

I am rewriting a VCL program using MFC, and I have converted many functions of this kind: CString MyFunction () { return L”Sample test”; } This kind of function declaration is comfortable, but the question is: is it also convenient?   The answer I found is that it might not be so convenient, especially if used inside a loop. When we call this function, we … Continue reading Few Considerations About Functions Returning an Object »

HOWTO compact vhd/vhdx Hyper-V files

It happened that the usual compact disk from Hyper-V Console doesn’t seem to be effective on one of my .vhdx file. Looking around on the web, I discovered that it is a quite common problem. The solution is to open a Powershell window with administrative access rights, and use the following command: optimize-vhd <offline Hyper-V disk file> -mode full For further details about this command, … Continue reading HOWTO compact vhd/vhdx Hyper-V files »

HOWTO Convert SVN repository to GIT

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 the following … Continue reading HOWTO Convert SVN repository to GIT »

HOWTO use GIT with SVN server

Introduction During COVID-lockdown, one of the challenges is to understand how to smart work as best as possible. One of my problems is that I haven’t remote access to the SVN server. I began to wonder if and how GIT can alleviate my smart work problems. The found answer is: yes, it can. Both repository types have their strong and weak points. My personal impression … Continue reading HOWTO use GIT with SVN server »

HOWTO change network connection category quickly

During the COVID-19 global event, I needed to set up VPNs, remote connections… I also discovered that changing the network connection category can be quite a trick in Windows 10 GUI. I discovered that is a simple task by using Powershell Solution Open a Powershell window with administrative rights run the following command: Get-NetConnectionProfile it will show one or more of the following: Name : … Continue reading HOWTO change network connection category quickly »

released sys_minon 1.7.32.0

reorganized main window options. added PowerShell Prompt launcher. added Windows 10 Memory Test Scheduling. added Safe Mode Scheduling. OEM Drivers Repository: improved UI window. OEM Drivers Repository: improved older items detection. minor fixes & improvements. link

HOWTO start Memory Test on W10

If you are investigating strange issues/BSOD on your computer, you may reach the point to verify the installed memory. Windows 10 has this feature included, and it will spare the need to use any live CD, … You can simply use it by typing in the Search box: mdsched and selecting Memory Diagnostic Tool from the results, or by administrative Command Prompt by typing the … Continue reading HOWTO start Memory Test on W10 »

HOWTO quickly rename folders from _svn to .svn

Once upon a time, someone had the idea to use ‘_svn’ for a Windows SVN sandbox working folder instead of the standard ‘.svn’. I suppose, that the idea was to use a more Windows-aligned folder name. By using TortoiseSVN, it was quite transparent. Years passed, and the idea was dropped, and these sandboxes aren’t working anymore by default. TortoiseSVN still provides a hidden registry setting … Continue reading HOWTO quickly rename folders from _svn to .svn »