Skip to content

Instantly share code, notes, and snippets.

View therealparmesh's full-sized avatar
🦮

Parmesh Krishen therealparmesh

🦮
  • Austin, Texas
  • 00:38 (UTC -05:00)
View GitHub Profile
@therealparmesh
therealparmesh / bunny.sh
Created July 17, 2025 18:43
bunny - fuzzy finder for bun run
bunny() {
local script
script=$(bun run | sed 's/\x1b\[[0-9;]*m//g' | rg --replace '$2' '(\s+)\$ bun run (\S+)' | fzf)
if [[ -n "$script" ]]; then
bun run "$script"
fi
}
@therealparmesh
therealparmesh / .zshrc
Last active August 25, 2026 18:16
.zshrc
autoload -Uz compinit
compinit
setopt append_history
setopt auto_pushd
setopt autocd
setopt cdable_vars
setopt complete_in_word
setopt correct
setopt glob_dots
@therealparmesh
therealparmesh / just-a-react-app.md
Created March 11, 2026 21:21
The Reality of "Just a React App"

The Reality of "Just a React App"

A complete breakdown of the architecture, tooling, and paradigms involved in modern frontend development. This highlights the true scope of work required when React is the default (and often only) option for frontend developers who are effectively React specialists.


Core Architecture & Language

  • React: Virtual DOM, JSX
  • Component Paradigms: Class component lifecycles, Higher-Order Components (HOCs), render props, Hooks
  • Advanced Rendering: Suspense, Error Boundaries
@therealparmesh
therealparmesh / just-render-html.md
Created March 11, 2026 21:28
The Reality of "Just Render HTML"

The Reality of "Just Render HTML"

A complete breakdown of the architecture, tooling, and paradigms involved when returning to a server-driven architecture using HTMX, Tailwind, and Vanilla JS. This highlights how drastically the frontend footprint shrinks when the server reclaims state and routing.


Core Architecture & Language

  • Hypermedia: HTMX (HTML attributes, out-of-band swaps, lazy-loading partials)
  • Language: Vanilla JS
  • Component Paradigms: Server-side templating (partials, fragments, includes), standard HTML elements
@therealparmesh
therealparmesh / kx.sh
Last active April 21, 2026 23:51
dailypay kubectl helpers
# kx - kubectl helpers with fzf
# deps: kubectl, fzf, jq, dpcli (mesh plugin for rollouts)
# flags are ours - short aliases for kubectl's verbose ones
# source from .zshrc
__kx_dim() { printf '\033[2m%s\033[0m\n' "$*" >&2; }
__kx_bold() { printf '\033[1m%s\033[0m\n' "$*" >&2; }
__kx_err() { printf '\033[31m%s\033[0m\n' "$*" >&2; }
__kx_ok() { printf '\033[32m%s\033[0m\n' "$*" >&2; }
@therealparmesh
therealparmesh / SKILL.md
Last active September 11, 2026 02:18
Claude Code skill: plan with Fable, execute with Opus/Sonnet subagents
name plan-with-fable-execute-with-subagents
description Use when the user wants a task planned by the Fable model and built by Opus or Sonnet subagents. Triggers: "plan with fable", "fable then opus", "fable then sonnet", "fable plans and sonnet executes", "plan then dispatch subagents".

Plan With Fable, Execute With Subagents

Overview

One model plans. Other models build. Fable writes the plan. Opus or Sonnet subagents do the work in it.