Craig Chamberlain

Results 31 comments of Craig Chamberlain

Together with another function to selectively pull the requested lfs files, I have a pretty usable solution. It's certainly not gulp ready and is probably pretty ugly code but it's...

The following workaround achieves what I want it to: ``` COVERAGEFILES="" for x in $(find . -path */coverage.opencover.xml); do COVERAGEFILES+="opencover=$x;" done COVERAGEFILES="$(sed -e 's/;$//'

I think your right, at this stage just having an example like this would probably cover 90% of uses. Most CI's are running bash commands. By the time this came...

Quick and dirty in powershell: [System.IO.Directory]::GetFiles($pwd,"coverage.opencover.xml",1)

Honestly, I ended up moving to a node solution and then just let netlify sort all my images in the as it proved to be the easiest method with the...

I'm seeing the complexity grow as I look at this. You might want to pass the selector into the tag too, for example ````.banner````

The tag might read `{% background-image image-url="example.jpg" ratio="3:2" selector=".banner" wrap-style=true %}` where wrap-style was an optional parameter that could wrap the rules with On reflection, this might be better served...

I've kicked of the process of making said example: https://github.com/CraigChamberlain/fable-validation-example Needs some tidying up but its all basically there. Cheers, Craig

The HttpClient is instantiated for every single request in the processRecord method. I have made Cmdlets that have an HttpClient as a field and instantiate it in the beginProcess method....

It provides the option to filter once Im in the file. I would like to preset the filter to a specific value. On Tue, 14 Nov 2023, 18:18 Doug Finke,...