Nathan Alden, Sr.
Nathan Alden, Sr.
I created an `Option` for a `--password` option. I am defaulting the option to `Environment.GetVariableName("MY_PASSWORD_ENV")`. I don't want this environment variable to appear in plain text in the option description,...
Related to #131 #132. To set the stage, I'll state some facts up-front. TerraFX's organization is the following: - The `generation` folder is mapped to headers in the `shared` and...
From `winnt.h`: ```c typedef struct _ImageArchitectureHeader { unsigned int AmaskValue: 1; // 1 -> code section depends on mask bit // 0 -> new instruction depends on mask bit int...
From `winnt.h`: ```cs public static JOB_OBJECT_NET_RATE_CONTROL_FLAGS Or(JOB_OBJECT_NET_RATE_CONTROL_FLAGS a, JOB_OBJECT_NET_RATE_CONTROL_FLAGS b) { return (JOB_OBJECT_NET_RATE_CONTROL_FLAGS)((int)a) | ((int)b); } ``` This is causing the following compiler error due to missing parentheses around the...
Nested types (e.g., anonymous structs) that live within a parent type with `unsafe` defined do not themselves need `unsafe`, but the generator is generating it anyway.
https://github.com/discord-csharp/MODiX/pull/627 This PR was really just a change to the UI to make the module more discoverable, but optimally classes and interfaces would be renamed to reflect the new canonical...
This bug occurs with the resizedImageWithContentMode method. I am passing an image whose dimensions are reported to be 4877x3515. When I supply a bounds parameter of 1000x1000, the resultant image's...
I define entity classes like so: ```js import { makeAutoObservable } from "mobx"; import { nanoid } from "nanoid"; export default class Todo { public id; public title; public isFinished...
It is well known that one should never call `Task.Result`, `Task.Wait()`, or `Task.WaitAll()` in normal code due to the possibility of deadlocks. I see a couple of places where you...
I spent some time today coming up with a design that is closer to Helmet. It's a naive implementation, but it works well and can provide more flexibility than `solid-meta`'s...