Harry Pierson

Results 89 issues of Harry Pierson

https://github.com/neo-project/neo-debugger/issues/198

There appears to be an issue in how `RequestInit` type is declared for DOM and Node 20.x that's blocking me from using oazapfts in server-side Node code. in `@types/node` (v20.8.10),...

[`ConvertReturnStatement`](https://github.com/neo-project/neo-devpack-dotnet/blob/master/src/Neo.Compiler.CSharp/MethodConvert.cs#L1045) pushes an ENDTRY operation instead of a JUMP if the return call is inside at least one try/finally block. This works fine if there is only a single try/finally...

It's very common to create a ByteString from a byte array to use as a storage key. But NCCS inserts an extraneous `CONVERT` instruction when you do this. Given that...

https://github.com/kzu/til/blob/master/msbuild/detect-ci-builds-for-every-ci-system.md

`PgConn` struct has a private `parameterStatuses` map field. The `PgConn.ParameterStatus` method returns the value of a specified key from that map. As far as I can tell, there is no...

Helper code often needs default Read/Write options.

Only for netstandard2.1 and up Potential Implementation: ```cs public sealed class PinnableSlice : IDisposable { public IntPtr Handle { get; internal set; } public PinnableSlice(IntPtr handle) { Handle = handle;...

enhancement