Piotr Kosek
Piotr Kosek
## Description Banned user successfully executed RPC if they have valid stored session; There is no way to determine if user is banned via RPC API. This is extremely important...
This is effectively mixing `[EnumFlags]` with `[Dropdown]` like support. Use case: I need to create list of strings, where each string comes from a given (not known in compile time,...
# 1. Introduction When constructing `DynValue` from MethodInfo it is assumed that the method contains valid `DeclaringType`. This is [not true](https://docs.microsoft.com/en-us/dotnet/api/system.reflection.emit.dynamicmethod.declaringtype?redirectedfrom=MSDN&view=netcore-3.1#remarks) for dynamic methods. See: `src\MoonSharp.Interpreter\Interop\StandardDescriptors\ReflectionMemberDescriptors\MethodMemberDescriptor.cs` line ~61 ```C# ParameterInfo[]...
In my use case, I need to watch for file changes (adding / updating / removing) only (ignoring directories) The `EventKind` contains info about the adding/removing files or directories, but...
(Yes, I know it looks like copy of #459 but it is actually a bit different problem): - I set-up notify for given directory (recursively) using PollSystem (every 1 second)...
Is there any particular reason why this is under GPL3 while the original Raylib is under Zlib?
First of all - thank you for this tool and your awesome work on it. I wonder if there is a possibility to do reverse formatting (parsing) of given table...
# Environment - Animancer Version Number: 7.4.2 - Animancer Pro or Lite: Pro - Unity Version: 2021.3.23f1 - Platform: Windows # Description Each time SetMask is called with null argument,...
I was unable to find a way to annotate a field, so it both: - Does have a default value - Is still required Reasoning: I am using Vscode as...
# Description When calling constructor with single string, if the constructor throws - the result of parsing is also throwing (misleading) exception instead of returning error lambda. # Minimal reproducable...