Skip to content

Instantly share code, notes, and snippets.

View simianhacker's full-sized avatar

Chris Cowan simianhacker

View GitHub Profile

KQL Quick Reference

Fields

  • content: - Text in files (quoted: content: "auth")
  • filePath: - Paths with wildcards (NO quotes: filePath: *test*)
  • kind: - Symbol type (quoted: kind: "function_declaration")
  • language: - Language (no quotes: language: python)

Syntax Rules

@simianhacker
simianhacker / eui-theme-customization-guide.md
Last active December 2, 2025 18:52
Guide to Creating Customized Themes with Elastic UI (EUI)

Creating a Customized Theme with EUI

User Prompt

/research Explain how to create a customized theme with EUI.

Overview

EUI uses a sophisticated JavaScript-based theming system that provides:

@simianhacker
simianhacker / filename-based-language-detection.md
Created May 10, 2026 06:41
Example spec: Filename-Based Language Detection for Semantic Code Search — used in the blog post 'Research, Plan, Ship'
status in-progress
worktree filename-based-language-detection
project semantic-code-search
tags
spec
created 2026-05-08

Filename-Based Language Detection

@simianhacker
simianhacker / how-indexing-works.html
Created May 17, 2026 06:41
How Indexing Works — Semantic Code Search
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>How Indexing Works — Semantic Code Search</title>
<style>
:root {
--bg: #0d1117;
--surface: #161b22;