Max Battcher
Max Battcher
In response to your script's comment about Paint.NET, it is in the Microsoft Store: https://www.microsoft.com/en-us/p/paintnet/9nbhcs1lx4r0 It's just not free because the developers wanted it to be a non-optional donation space....
@RehanSaeed Yeah, `winget search` doesn't seem to turn up any paid applications, but `winget list` does and `winget install --id 9nbhcs1lx4r0` almost works. It gives you the description of Paint.NET...
Found an immediate workaround for now: ```js new LicenseWebpackPlugin({ excludedPackageTest(packageName) { return packageName === '' }, }) ``` (EDIT: Debugged the logic here. Agree with @williamjacobszoon that the inclusion seems...
@samuelcastro @shobhitg Another alternative is to try to use [typescript-tslint-plugin](https://github.com/Microsoft/typescript-tslint-plugin) in your tsconfig.json. It has a different VS Code plugin (mentioned in the Readme), but is how I've preferred to...
Facebook has a strange view of the topic: https://github.com/facebook/create-react-app/issues/2696
@moljac024 I try to keep a tight line between runtime dependencies and development dependencies because it keeps things well managed and makes a clearer API to any dependent projects, and...
How is this is a niche issue? All of `@types` is imported from `node_modules`, for one thing, and that's a lot of opportunity for errors of this sort. I've got...
No rush. In a quick nutshell, if it helps: `IAsyncEnumerable` is when `IEnumerable` and `Task` joined forces, and just as `System.Linq` provides a bunch of useful operations on top of...
https://github.com/rmalayter/ulid-mssql points out some reasons to follow the odd Microsoft byte order when converting to GUIDs for storage in MS SQL Server: the sort order in database queries matches the...
I was reminded that Raymond Chen has a great overview of the multiple ways Microsoft sorts GUIDs: https://devblogs.microsoft.com/oldnewthing/20190426-00/?p=102450 One interesting bit there is the reminder that `System.Data.SqlGuid` exists as a...