ash

Results 151 comments of ash

I'm not sure that the "library"/"application" framing necessarily corresponds well to "should/should not be installable". You want a library to be an installable package, so that it can be depended...

the changes from 1.3.5 to 1.3.6resigned1 _appear_ to be limited to a reformatting of `manifest.json` and the addition of two files to the `META-INF` folder, `cose.manifest` and `cose.sig`. it seems...

> Wineprefixes should never contain sensitive data anyway they may contain some configuration, though. e.g. windows version setting, native/builtin DLL overrides, and in some cases things to run on startup...

you haven't updated `DrahsidLib.csproj` https://github.com/Drahsid/DrahsidLib/blob/f39c05cb415d03d7be93a9c65b3972dcc9680f16/DrahsidLib.csproj#L1

IMO Dataview should not parse inline fields within code blocks. It's fine if this is interpreted as an inline field: ``` This will not show the (longKeyIDontNeedWhenReading:: key). ``` but...

having just had my RSS feeds deleted (or at least made inaccessible) by home-manager, it would be nice if this could be merged

in the meantime, though, a (very nasty) workaround is to do something like: ```nix { accounts.email.accounts."xyz".thunderbird.settings = id: { "mail.accountmanager.accounts" = "foo,bar"; }; } ``` where `xyz` is your home-manager...

> So, if something in your system is causing spurious cancellations, I think you should make it stop doing that rather than try to catch it. Agreed! (I need to...

Some hopefully-relevant context: The [definition of `FindOrCreateBufferInRange`](https://github.com/goatcorp/goatcorp.Reloaded.Hooks/blob/0f23f3ccc8bc03d610bba2e5efc9ced7e0a23d23/source/Reloaded.Hooks/Tools/Utilities.cs#L552) defaults to `int.MaxValue`: ```cs public static MemoryBuffer FindOrCreateBufferInRange(int size, nuint minimumAddress = 1, nuint maximumAddress = int.MaxValue, int alignment = 4) ``` Two...