Results 88 issues of Jamey Sharp

Consider C's `assert.h`, which defines a macro named `assert`. Since Corrode runs the C preprocessor before parsing the input, either the assert macro is expanded to some ugly expression, or...

A fairly common pattern in C looks like this: ``` c typedef struct private private; struct private { ... }; ``` Often the `typedef` is in a public header file...

In C, a function call looks like this: ``` c int putchar(int); putchar('A'); ``` Indirecting through a function pointer looks like this: ``` c int (*f)(int) = &putchar; (*f)('B'); ```...

I'd like to be able to run `nix-index` frequently without re-doing all ~50k HTTP requests. Many changes to nixpkgs only cause a few packages to rebuild, so I think if...

enhancement
c: indexing

The readme says that "`immutableMinTimeToLive` is a number of milliseconds", but it's compared against values which are in seconds (e.g. `Math.max(defaultMinTtl, (expires - dateValue) / 1000)`) and returned from `maxAge`...

Since this is my second weird bug report in two days, let me first say that Pydantic has enabled me to prototype big chunks of a somewhat complex protocol very...

bug

**Is your feature request related to a problem? Please describe.** RSS feed consumers who want to read further back than the most recent `items_per_page` can't currently do so, unless maybe...

I want a record of when I read each feed entry, not just a boolean indicating that I have read it, and I want that record synchronized between readers. Could...

This standard, published in 2007, allows feed readers to efficiently page through the entire history of a feed, rather than being limited to the most recent 10 posts. This implementation...

I want to be able to write generic functions that can operate on any instance of the same peripheral across a vendor's product line, or any instance of the same...