Andri Möll

Results 65 issues of Andri Möll

Hey, It's not exactly straight-forward to reuse an existing Socket between connects. It does tend to work mostly, but I just spent _some_ time trying to figure out why pipes...

Hey, I haven't tried Eversocket yet, but from reading the source code I'm suspicious that it won't work with Unix domain sockets. On https://github.com/alexkwolfe/node-eversocket/blob/master/index.js#L121 it assumes the connection needs a...

Hey, How about skipping the whole `scope` limitation and just allowing a single function to be passed to the server to handle method calls? That would make it easier to...

A sister issue to https://github.com/PeculiarVentures/xadesjs/issues/50. Unless I'm messing something up on my side, I suspect you were using NPMv3 to build this thing as it defaults to installing dependencies in...

Hey, It took me a few moments to realize why exactly Firmware Manager kept showing it's only for administrators. I first traced it down to https://github.com/pop-os/system76-firmware/blob/2a64993c8d7fc10f170f3707846b0221c4313f8a/data/system76-firmware-daemon.conf listing two groups as...

Hey, Just FYI, there's an actual `/usr/bin/truncate` program that comes with GNU coreutils. No need to create your own.

Hey, I wanted to use SQLite with ICU enabled, so here's a patch to enable it. Perhaps useful to add to Direct-SQLite-proper, too. ```patch diff --git a/direct-sqlite.cabal b/direct-sqlite.cabal index deb5d30..67bcc4e...

Hey, Thanks for your continued maintenance of HttpClient! I've been using the Multipart functionality in [`Network.HTTP.Client.MultipartFormData`](https://hackage.haskell.org/package/http-client-0.7.17/docs/Network-HTTP-Client-MultipartFormData.html#t:PartM) and noticed it insists on setting the Content-Type of a file part, derived from...

Hey, So far seems like a decent lib. At least the autogenerated help texts aren't an ugly mess of unnecessary whitespace they are in koolaid argparsers. :) Anyways, I'm trying...

enhancement

While Node v17 introduced the Fetch API from browsers, Node v18 made it non-experimental. Mitm.js's low-level implementation already hooks into the TCP connection the Fetch implementation does, but doesn't trigger...