n9

Results 53 comments of n9

Since https://github.com/threathunters-io/laurel/issues/97 (async/await) is abandoned what about using two threads: - The first thread will read auditd records from the stdin (and maybe do some simple preprocessing / filtering?) and...

@josvazg For instance, harbor is composed from multiple components. The UC is following: - **core** component needs a user name and password for a **registry** (another component) - **registry** needs...

What I have found yet: - `path` was introduced in https://github.com/seaweedfs/seaweedfs-csi-driver/commit/5c2298bd215959d78c881e5d48d96569b83ab3c7, it replaced older `bucketName` - but it seems to me that the same issue was with the `bucketName` I...

PS: During the refactoring I found that the type inspectors might need more refactoring: The `ReadableAndWritablePropertiesTypeInspector` only checks if properties are writable, but despite its name it does not check...

To reproduce: 1. Create a class `Foo` that can (will) throw an exception inside `Equals`. 2. Use this class in a complex binding: `A.B.C`. (Property `B` is of type `Foo`.)...

> Can I know your MyApp.AutomationElement.Equals code? Sure! ```C# public override bool Equals(object? obj) => obj is AutomationElement element && Equals(element); public bool Equals(AutomationElement? other) => other is not null...

> Yeah, but I do not think you want to put the ReferenceEqualityComparer to your Equals method. Yes, the purpose of the `ReferenceEqualityComparer ` is to avoid calling `Equals`. >...