Skip to content

Instantly share code, notes, and snippets.

@15Kentucky
15Kentucky / add-windows-slash-directory-labels.svg
Created April 2, 2026 05:11
Cortex TUI /add Windows slash directory labels evidence
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@15Kentucky
15Kentucky / ACTIVITYBAR_REORDER_targeted.png
Last active February 28, 2026 15:57
Cortex IDE bug evidence screenshots
ACTIVITYBAR_REORDER_targeted.png
@15Kentucky
15Kentucky / BOOKMARKS_CREATEEFFECT_targeted.png
Last active February 26, 2026 07:35
Cortex IDE alpha bug screenshots
BOOKMARKS_CREATEEFFECT_targeted.png
@15Kentucky
15Kentucky / ansi_reset_nan_bug.png
Last active February 28, 2026 16:32
Bug screenshots for cortex-ide issues
ansi_reset_nan_bug.png
@15Kentucky
15Kentucky / settingssync_bug.md
Created February 25, 2026 19:05
SettingsSyncContext createEffect localStorage wipe bug (#21478)

Bug: SettingsSyncContext createEffect Wipes localStorage on Every Mount

File: src/context/SettingsSyncContext.tsx

Lines: 185-198, 572, 576-577, 603-614

The Problem

// Lines 185-198: DEFAULT_STATE with disabled/null values
const DEFAULT_STATE: SettingsSyncState = {
@15Kentucky
15Kentucky / ansi_bug.md
Created February 25, 2026 19:05
OutputChannel ANSI reset NaN parsing bug (#21460)

Bug: OutputChannel ANSI Reset Sequence \x1b[m] Parsed as NaN, Never Resets Styling

File: src/components/output/OutputChannel.tsx

Lines: 59, 72-107

The Problem

// Line 59: Regex captures empty string for \x1b[m (shorthand reset)
const ansiRegex = /\x1b\[([0-9;]*)m/g;
@15Kentucky
15Kentucky / supermaven_bug.md
Created February 25, 2026 19:05
SupermavenContext createEffect localStorage wipe bug (#21446)

Bug: SupermavenContext createEffect Wipes localStorage on Every Mount

File: src/context/SupermavenContext.tsx

Lines: 75-86, 94-98, 149-150, 262-269

The Problem

// Lines 75-86: Default state with disabled/empty values
const defaultState: SupermavenContextState = {
@15Kentucky
15Kentucky / preview_bug.md
Created February 25, 2026 19:05
PreviewContext createEffect localStorage wipe bug (#21444)

Bug: PreviewContext createEffect Wipes localStorage on Every Mount

File: src/context/PreviewContext.tsx

Lines: 175-195, 197-198, 213-224

The Problem

// Lines 175-195: Store initialized with defaults
const [state, setState] = createStore<PreviewState>({
@15Kentucky
15Kentucky / bookmarks_bug.md
Created February 25, 2026 19:05
BookmarksContext createEffect localStorage wipe bug (#21437)

Bug: BookmarksContext createEffect Wipes localStorage on Every Mount

File: src/context/BookmarksContext.tsx

Lines: 79, 87-100, 103-109

The Problem

// Line 79: Signal initialized with empty array
const [bookmarks, setBookmarks] = createSignal([]);