Joseph Spiker spikerj
  • Joined on 2025-11-03
spikerj closed issue spikerj/spikersoft-issues#18 2026-05-11 16:59:30 +00:00
github snake wont display properly in browser fullscreen mode
spikerj commented on issue spikerj/spikersoft-issues#18 2026-05-11 16:59:25 +00:00
github snake wont display properly in browser fullscreen mode

Fixed — the root cause was simpler than the fullscreen pseudo-class theory:

  1. The .container had width: fit-content but no centering mechanism — it just sat at the default flow…
spikerj commented on issue spikerj/spikersoft-issues#18 2026-05-11 16:56:47 +00:00
github snake wont display properly in browser fullscreen mode

Reopening — the :host-context(:fullscreen) CSS fix from May 5 did not fully resolve this.

The game grid still renders incorrectly when the browser is in fullscreen mode. Looking at the…

spikerj reopened issue spikerj/spikersoft-issues#18 2026-05-11 16:56:34 +00:00
github snake wont display properly in browser fullscreen mode
spikerj opened issue spikerj/spikersoft-issues#115 2026-05-11 16:51:51 +00:00
bug: Admin sidebar Sponsorship badge count doesn't update after approving a pending profile
spikerj opened issue spikerj/spikersoft-issues#114 2026-05-11 16:50:05 +00:00
bug: Profile Mailing Address — State/Province field appears blank because Country must be selected first, but Country comes after State in the form
spikerj opened issue spikerj/spikersoft-issues#112 2026-05-11 15:14:21 +00:00
x86 lessons: add server-side Blink re-execution to close the trust gap in BlinkX86LessonGradingExecutor
spikerj closed issue spikerj/spikersoft-issues#100 2026-05-11 04:18:23 +00:00
[Bug] /api/Cluster/nodes 500s in prod — API container can't reach Docker daemon (EADDRNOTAVAIL)
spikerj opened issue spikerj/spikersoft-issues#100 2026-05-11 01:43:38 +00:00
[Bug] /api/Cluster/nodes 500s in prod — API container can't reach Docker daemon (EADDRNOTAVAIL)
spikerj closed issue spikerj/spikersoft-issues#99 2026-05-11 01:31:34 +00:00
[Bug] Video-call invite never reaches callee — VideoCallHub uses sub claim but picker addresses callee by sid from ChatHub
spikerj opened issue spikerj/spikersoft-issues#99 2026-05-11 01:31:20 +00:00
[Bug] Video-call invite never reaches callee — VideoCallHub uses sub claim but picker addresses callee by sid from ChatHub
spikerj closed issue spikerj/spikersoft-issues#98 2026-05-10 23:43:44 +00:00
[Bug] You can see (and try to call) yourself in the video-call user picker — chatService.userId non-reactive race
spikerj closed issue spikerj/spikersoft-issues#97 2026-05-10 23:43:40 +00:00
[Bug] Video-call hub WebSocket fails in prod — /hubs/video-call missing from JWT auth allowlist
spikerj commented on issue spikerj/spikersoft-issues#98 2026-05-10 23:43:35 +00:00
[Bug] You can see (and try to call) yourself in the video-call user picker — chatService.userId non-reactive race

Resolution

Fixed by adding a reactive mirror of userId on ChatService and switching the racy reactive consumers to it.

ChatService — add a signal mirror

public userId:
spikerj commented on issue spikerj/spikersoft-issues#97 2026-05-10 23:43:03 +00:00
[Bug] Video-call hub WebSocket fails in prod — /hubs/video-call missing from JWT auth allowlist

Resolution

Fixed in SpikerSoft.Api/Infrastructure/Authentication.cs by adding /hubs/video-call (plus three other already-mapped hubs that were silently broken for the same reason:…

spikerj opened issue spikerj/spikersoft-issues#98 2026-05-10 23:42:40 +00:00
[Bug] You can see (and try to call) yourself in the video-call user picker — chatService.userId non-reactive race
spikerj opened issue spikerj/spikersoft-issues#97 2026-05-10 23:42:18 +00:00
[Bug] Video-call hub WebSocket fails in prod — /hubs/video-call missing from JWT auth allowlist
spikerj closed issue spikerj/spikersoft-issues#92 2026-05-10 04:47:30 +00:00
Base64 tool: add editor-style menubar (File via ToolFileMenu, Encode/Decode toggles, Help + Tour right-aligned)
spikerj closed issue spikerj/spikersoft-issues#93 2026-05-10 04:47:27 +00:00
JWT tool: add editor-style menubar (File via ToolFileMenu, Decode/Encode toggles, Help + Tour right-aligned)
spikerj commented on issue spikerj/spikersoft-issues#92 2026-05-10 04:47:23 +00:00
Base64 tool: add editor-style menubar (File via ToolFileMenu, Encode/Decode toggles, Help + Tour right-aligned)

Implemented and shipped together with #93 — the two tools now share an identical menubar pattern.

What changed

  • Replaced the Base64 tool's stacked header-section (Toggle Help + Guided…