Copilot
Copilot
Implements a complete dark and light mode theme system for the personal website, adding modern theme switching capabilities with proper accessibility and persistence. ## Features Added ✅ **Theme Toggle Button**...
Pasting corporation or alliance names (e.g., "Goonswarm Federation") triggers infinite API requests to `/latest/universe/ids/` until page refresh. ## Root Cause The `query` function in `ids.ts` adds names to the fetch...
Shell startup was slow due to multiple subprocess invocations during initialization. This eliminates ~400-600ms of overhead per new shell. ### Changes - **`.zprofile`**: Replace `$(brew --prefix)` with hardcoded paths for...
Fixes RuboCop `Style/RedundantConstantBase` offense at `.irbrc:4:13`. ## Changes - Remove `::` prefix from `Bundler` constant lookup - unnecessary since Ruby searches top-level namespace by default - Add `vendor/bundle` and `.bundle`...
CI failing on macOS runners due to PEP 668 blocking `pip install virtualenv` into system Python, and Python 3.14 requiring ansible-core >= 2.20.0. ## Changes - Replace `virtualenv` installation with...
Issue #27 requests disabling Comic Sans. This PR implements a comprehensive solution to disable Comic Sans globally on macOS, not just in VS Code. ## Changes ### 1. Global Font...
Shell startup and script execution were inefficient due to unnecessary subprocess spawning. ## Changes **Replace `which` with `command -v` (28x faster)** - `lib/auto-complete`: Check for nodenv, rbenv, fasd, gh using...
This PR adds support for applying default layouts to HTML pages in addition to Markdown pages, as requested in issue #16. ## Changes - Added configuration option to enable HTML...
`m --stable` was returning 8.0.15 when 8.2.1 was available. The implementation incorrectly limited "stable" to X.0 LTS series, ignoring MongoDB's rapid release versions (8.1.x, 8.2.x) which are also production-ready. ##...
The plugin now supports exporting to proper XLSX format with cell borders using the OpenXML specification. ## Implementation - **OpenXML XLSX generation**: Implements full XLSX file structure via JSZip -...