Frederic Morel
Frederic Morel
Pretty sure our codebase outputs a file using double-pipes `||` as a delimeter for a third-party report. So we sometimes need more than one character as a delimeter.
Hmm, I could have sworn we had something like this, but am not finding it anymore. We definitely have `#*#` though, in some reports generated for a music label. ```...
btw, the `Overthinking CSV With Cesil: CSV Isn’t A Thing` link goes nowhere. Same for the first post of this series link.
And at least remove it on links to other .gov sites? For example, going to the homepage of any of the GSA projects. Even going to code.gov triggers it. ![leaving...
https://github.com/louthy/language-ext/blob/396fffc8d33d8e3bae00697c4b67f4e4a01a69ab/LanguageExt.Core/Monads/Alternative%20Value%20Monads/Either/EitherAsync/EitherAsync.cs#L1608 This one for example. Seems to be directly on the `EitherAsync` type? If I "go to definition" on any of the methods I listed, they're all directly on the...
This would be super useful in ASP.NET Core requests in order for code running in subspans to add tags to the root span. For example, I add every feature flag...
In C#, I have had no issues with records using `Newtonsoft.Json`. I had issues using records with another library that used `SimpleJson` instead.
We use the `Newtonsoft` serializer, so we've had no issues with records. I was just trying to point out that it was a problem with `SimpleJson`, but that other serializers...
We've got a number of repos all using another one as a submodule using SSH. I currently checkout the submodule in PR actions using this: ``` - uses: actions/checkout@v2 #...
I ended up writing an action based on this that worked with my submodule: ``` name: Comment triggers on: issue_comment: types: [created] jobs: update: name: Update submodule runs-on: ubuntu-latest steps:...