Andreas Dirnberger

Results 87 comments of Andreas Dirnberger

danielcrenna's commit https://github.com/Metalnem/noise/commit/6c5fdb68d13e4a36b2f3c9070556359e649a7a54

The nsec.net lib uses libsodium too and has the reverse problem. See https://github.com/ektrah/nsec/issues/31

I thought about some kind of surrogate type defined by akka.net Is there somekind of mechanismus to lazy deserialize a received massage?

It looks like a generic problem that should be resolved over the akka.net base libery The gateway pattern would profit from a lazy deserialized payload-message-type too. I will investigate more.

I have made now one payload message type. But what is missing is an auto unwarp-feature in akka for dual-pass a message with somekind of interface-flag like "IPayload" This could...

@Horusiath Yes, i thinking of the same, posted it know into the https://github.com/akkadotnet/akka.net/issues/3811

Yes it would work, the result would be the same. ServiceA sends to a remote-service a request, that it needs to send pulse message to an address back. I only...

`System.Management.Automation.Pipeline` is depricated? I am using Pipeline to create an `IObservable` or `IAsyncEnumeration` see: https://github.com/Zetanova/hyperv-csi-driver/blob/master/src/hyperv-csi-driver/Automation/PNetPipeExtensions.cs The current problem with `System.Management.Automation.PowerShell` is that it basically does not support to stream input...

About this issue, it would already be helpful and sufficient to create an Cmdlet in the base library to generate an ErrorRecord from $LastExitCode Example: ```csharp ps.AddScript("pwsh -c 'exit 123'...

Yes you are correct, I didn't see the overloads of `PowerShell.InvokeAsync` that are accepting an output collection as a param, only that `PowerShell.InvokeAsync` and `PowerShell.EndInvoke` returning one collection. But still...