Mike Fair

Results 15 issues of Mike Fair

I've gone ahead in my local branch and added "Signals" to Delay.h. There are 31 signals (using a 32bit bitField) available to use. It works by a Task issuing a...

enhancement

I copied this example from the older ipfs/ipld repository because I think it illustrates the point I'd like to make pretty well. Using this JSON, and path access, as an...

ready

Hi all, I just posted the following Gist as an initial cut on making dynamic shared memory. https://gist.github.com/MikeFair/6908afe26e0b84758ca4 The main idea is that (bufferPosition / blockSize) gives a unique segmentId....

If a consumer app attempts to open a Shared Memory File before the producer has created it, a FileNotFound Exception is thrown. A little digging didn't turn up any way...

enhancement

I am researching integrating this library as the IPC mechanism for the NetMQ project (DotNet ZeroMQ project - also here on gh) and am looking for how to manage multiple...

This customized / abstract consensus concept is purely awesome! From a "Hey I think I'd like to use that" perspective, what if there wasn't just one system state but many...

The parameter names across different operations for custom assets is somewhat non-standard. In send-payments they are called "token" and "issuer" In change-trust they are called "code" and "issuer_address" The allow-trust,...

I noticed the ability to manage offers on the DEX was missing. This may or may not apply to allowing path payments; they are rather complicated to submit.

Allow STDIN to supply the JSON input to bb8 `cat someFileWithChangeTrustOp.js | bb8 change-trust -- ` Also allow the command to come from the JSON itself: ``` { "bb8_cmd":{ "command":"change-trust",...

I'd like to use a pattern like the following: ``` const limit = require('simple-rate-limiter'); var f = limit(proccessWork).to(1).per(100); function batchWork(n) { q = getNextWorkBatch(n); for (var idx in q) {...