Anthony Truskinger

Results 10 comments of Anthony Truskinger

I've got access to 140TB of audio data, with files ranging in size from 10MB to 2GB, which are all unique in terms of SHA256. Would you be interested in...

Upgrading PowerShell broke all our githooks. I'd reiterate that the change from #15859 is breaking and even though I've read the release notes I did not comprehend that this would...

I'll note too, we actually symlinked to our Powershell script: ``` New-Item -ItemType SymbolicLink -Force -Path ".git/hooks" -Name pre-commit -Value "../../bin/pre-commit.ps1" ``` Which ironically does have a `.ps1` extension and...

@nitz, If I've understood you correctly, I've got a working solution to this using this set of modifications: https://gist.github.com/atruskie/bfb7e9ee3df954a29cbc17bdf12405f9 I can determine the concrete deserialization type based on the presence...

@nitz updated gist with MIT license. You'll need some sort of discriminator to choose the type. Avoiding the specific names I used for my examples (that's confusing), can you identify...

I also had need for abstract type resolving. I prototyped a solution which I am currently using. Please see: https://gist.github.com/atruskie/bfb7e9ee3df954a29cbc17bdf12405f9 In short, it replaces the ObjectNodeDeserializer. When it encounters a...

@pmikstacki to deserialize any type, where the type name is encoded in a key, read the value of some key in the type resolver and use reflection to instantiate the...

I would be interested in this. I have had long had my own functions to do this and suffice to say, they are not that great. RE difference image, I...

Can you expand a little more on the deprecation of System.CommandLine.Rendering? I worked with it a bit, and while it had rough edges, I quite liked it's potential. I was...

I think this was covered by https://github.com/resque/resque/pull/1806