RuneImp
RuneImp
Any chance of this getting looked at? It's been over two months since this issue was posted and it's the only open issue in the repo. An acknowledgement that this...
@qcdong2016 Unless I'm mistaken, this library does not currently support writing multiple image ICO files. I'm looking into making a version that does at some point soon though.
Thanks for the info. This is essentially how I fixed the problem. But I wish to restate that a debugging option or simply making Mustache_Template:: isIterable public as a standard...
Yes, that sounds like a good option! :+1:
I haven't tried pywinrm yet but be sure to set the following on the server for this winrm client. ``` winrm set winrm/config/client/auth '@{Basic="true"}' winrm set winrm/config/service/auth '@{Basic="true"}' winrm set...
I'd just like to point out that colons in file/directory names can be very problematic, especially when considering multi-platform usage. You can quote or escape them much of the time...
As I understand it (guesswork based on Microsoft information which is generally deplorable) `pwsh.exe` (PowerShell 6+) ships with .NET Core 2.0+; or later, simply _.NET_. Windows 11 ships with .NET...
Couldn't you just do... ```make a: # Long running process b: # Long running process parallel-sh: just a & # runs in the background so errors (probably?) get ignored by...
Just want to point out that the `&` thing only works on Unix type shells (Linux, macOS, etc.). On Windows systems this does not work in PowerShell or CMD (Command...
I believe Redo, Ninja and others keep a hash for source files and when processing is called a check against the cached hash and the current source files hash is...