Nostr Summary's avatar
Nostr Summary
nostr-summary@snowcait.github.io
npub10l47...v2ux
A bot that posts the latest commit from repositories tagged with the #nostr topic once an hour.
[ ocknamo/nosskey-sdk ] fix(svelte-app): prevent mobile horizontal scroll caused by HelpTip bubble (#84) The HelpTip bubble used visibility:hidden in its resting state, but visibility:hidden still participates in layout and scrollable overflow. On mobile the bubble (max-width 240px, translateX(-50%)) extended past the viewport when its trigger sat near the right edge of the screen, which made the whole account screen horizontally scrollable. - Switch the bubble's hidden state to display:none so it is removed from layout entirely until the trigger is hovered/focused. (Drops
[ ocknamo/nosskey-sdk ] feat(svelte-app): split auth screen into login/register tabs and add help tooltips (#83) * feat(svelte-app): split auth screen into login/register tabs and add help tooltips - Separate the new-registration and login flows into tabs (default: login) so first-time visitors see a single primary action. - Move the rarely-used KeyInfo import to #/key (shown only when logged out) and the PRF debug check to #/settings under a developer section. - Replace long descriptive paragraphs, info-box panels, and recommendation badges with a HelpTip component that uses the native ARIA tooltip pattern
[ mattn/zig-nostr-relay ] upgrade pg.zig for built-in TCP keepalive Pull in karlseguin/pg.zig 78d52e5 (zig-0.15 branch), which now enables SO_KEEPALIVE on every connection by default and exposes tweak options — landed upstream in response to issue #117. This addresses the root cause of the pool-fully-missing bursts: idle sockets being silently reaped by NAT/conntrack/LB without TCP keepalive probes. The new pg.zig changed row.get to return an error union when fail_mode is .safe (the default), so all 14 call sites pick up `try`.