John Mazouri

Results 9 comments of John Mazouri

This blog post (and a comment underneath) seems to imply that .NET Framework 4.8 will have the JIT improvements for `Span` and similar - though the additional Span APIs (which...

Sure! This feature will probably look very similar to [MessageLogBehavior](https://github.com/discord-csharp/MODiX/blob/master/Modix.Services/Core/MessageLogBehavior.cs) - create a class that extends from BehaviorBase and implement the events you need. You'll then want to log those...

Out of those, the ones we probably care about are: - Member Joined - Member Left - Role Given - Role Removed - Nickname Changed

The list of audit log events is here: https://discordapp.com/developers/docs/resources/audit-log#audit-log-entry-object-audit-log-events The only ones from that list it can provide context for are Role Given / Role Removed, in the form of...

> Wouldn't that make those events good enough? The gateway events don't contain information like who changed the nickname or who modified the roles, just that it happened.

> B) probably have the results sorted by match rank, which is something the database should support natively as part of its text search API. Dunno if this would be...

It is possible to fix, we actually run a custom filterer anyway so it works on username or ID (though I think that logic was moved to the server) -...

Bans are now synced as of #337 (and some subsequent fixes...)

Perhaps consider looking into a binding library like https://github.com/pmed/v8pp which can help bridge the gap between the existing c++ API and V8. It makes it very easy to define variables...