Caelan

Results 305 comments of Caelan

I dropped your Dockerfile into Portainer on my server to build an image and got the following build failure: ```txt ... ... Step 22/33 : RUN /bin/echo -e ">> clean-up"...

This approach pasted above by @CreateLab should not be used on Windows. It will not work most of the time. Most Windows applications do not put JPEG or PNG on...

You don't need to understand what app you're working with, you just need to use best practices when reading / writing to the clipboard which your code does not do....

The linked library only handles Windows, but it does so well and handles the mentioned inconsistencies on the platform. I am not familiar with Linux, but as I understand it...

HKCR is a a merged view of both HKEY_LOCAL_MACHINE\Software\Classes and HKEY_CURRENT_USER\Software\Classes. You probably should not write directly to HKEY_CLASSES_ROOT. https://learn.microsoft.com/en-us/windows/win32/sysinfo/hkey-classes-root-key > To change the settings for the interactive user, store...

I did this exact thing in my dotnet installer/auto-updater with preprocessor directives to use System.Text.Json on dotnet and Newtonsoft.Json on full framework. Feel free to steal it if it's helpful....

I'm aware of the difficulty, but I suspected you knew something I didn't - because the `WriteUsingTemplate` function can replace the path in an already-written apphost where the placeholder text...

All good points. I don't have any other suggestions, other than: All the Win32 resources are written to the entry DLL, and then copied to the final exe. As long...

I don't need strong name signing personally, but my 2c is it's the right thing to do for libraries. The msft documentation you linked says: > Because of the viral...

I'm not sure if I entirely support this feature/change, it was my impression that `subprocess_read_stdout` should be used in a while loop in a new thread. IMO it's critical that...