Monica S.

Results 63 comments of Monica S.

Discord doesn't like that, AFAIK. The best option IMHO would be to filter the message IDs based on whether their snowflake is greater than or equal to this: ```cs var...

@JakenVeina This is in reference to deleting messages from any channel where the message is older than two weeks. The restriction was put there in the first place because it...

I'm a little late, but you should absolutely be running the latest (stable) version of Discord.Net whenever possible, as Discord regularly ~~breaks~~ introduces changes into their API. Running an older...

Designing a solid, modular input system is hard; it's definitely above me. However, I've pieced together some thoughts which might help start as a base point: https://gist.github.com/FiniteReality/e49712e343fade9aec99ef9e65af7ad9

I was supposed to look into this a long time ago, but I kept getting distracted since I didn't have a Windows computer easily available. Sorry :sweat_smile:

I really hope that also means that we'd be able to install SDKs from NuGet. It would simplify the distribution model for SDKs massively; you just say "run `dotnet sdk...

@rainersigwald From how I understood the issue, it's more like: - NuGet SDK references should go away (or at least, not be preferred) - SDKs should be installed using `dotnet...

I think that instead of using `operator +` and a `checked operator +`, it may be better to have users write `unchecked operator +` and `checked operator +`. That way,...

My reasoning for disliking the naked `operator +` is that everybody seems to have a different opinion over whether it should be checked or unchecked; IMO having `unchecked operator +`...

Another advantage of having `checked operator +` and `unchecked operator +` over a naked `operator +` and a `checked operator +` is that you can retain behavioural backwards compatibility with...