Erin Swenson-Healey
Erin Swenson-Healey
The [spec](https://github.com/filecoin-project/specs/blob/master/actors.md#commitsector) shows that the [`SubmitPoSt`](https://github.com/filecoin-project/specs/blob/master/actors.md#submitpost) and [`CommitSector`](https://github.com/filecoin-project/specs/blob/master/actors.md#commitsector) methods rely on a function called `ProvingPeriodDuration` which produces the number of blocks in a proving period given a sector size. We...
The [`submitPoSt`](https://github.com/filecoin-project/specs/blob/14a7719d218ef616e40088bccd0b405b41f8b2eb/actors.md#submitpost) message includes a parameter `faults` of type `[]FaultSet`. The [`GeneratePost`](https://github.com/filecoin-project/specs/blob/master/proofs.md#generatepost) operation can return a slice of faults. Couple of questions: 1. What is a `FaultSet`? Is it just...
Suppose a header file with the following: ``` typedef struct { uint8_t x; } Flarp; uint64_t foo(const Flarp *input_ptr, size_t input_len); ``` With no `TRANSLATOR` `PtrTips` specified, c-for-go generates the...
Given the following header: ```C # demo.h uint8_t count_colors(const char *const *colors_ptr, size_t colors_len); ``` When I generate bindings using the following configuration: ```YAML --- GENERATOR: PackageName: generated PackageDescription: PackageLicense:...
## Problem Occasionally, the `kafka-storage random-uuid` command outputs a `-` prefixed string, which causes the `kafka-storage format` command to fail. An example of this (which we recently saw in CI)...
## Context We have a Docker Compose cluster that we're using to run some tests over night. Our application logs quite a bit to stdout and stderr. After an hour...
## Problem The `Pwwka::Receiver.subscribe` class method creates a new `Pwwka::Receiver` which executed the provided handler once per message delivered to a queue (which it creates) bound to each routing key...
I introduced a regression yesterday when patching the `PersistentQueue#add` method which prevents the "add" event from being emitted. A fix for that regression can be found [here](https://github.com/damoclark/node-persistent-queue/pull/21).
## Problem The link to the quickstart, in the readme, is busted. ## Solution I've removed the /docs portion of the link, which fixes things.