Skip to content

Instantly share code, notes, and snippets.

// vendor/browser-mcp-extension/background.js
var background=function(){"use strict";var Hq=Object.defineProperty;var cT=Ke=>{throw TypeError(Ke)};var qq=(Ke,Ve,ct)=>Ve in Ke?Hq(Ke,Ve,{enumerable:!0,configurable:!0,writable:!0,value:ct}):Ke[Ve]=ct;var Sn=(Ke,Ve,ct)=>qq(Ke,typeof Ve!="symbol"?Ve+"":Ve,ct),Ug=(Ke,Ve,ct)=>Ve.has(Ke)||cT("Cannot "+ct);var A=(Ke,Ve,ct)=>(Ug(Ke,Ve,"read from private field"),ct?ct.call(Ke):Ve.get(Ke)),Me=(Ke,Ve,ct)=>Ve.has(Ke)?cT("Cannot add the same private member more than once"):Ve instanceof WeakSet?Ve.add(Ke):Ve.set(Ke,ct),ve=(Ke,Ve,ct,er)=>(Ug(Ke,Ve,"write to private field"),er?er.call(Ke,ct):Ve.set(Ke,ct),ct),st=(Ke,Ve,ct)=>(Ug(Ke,Ve,"access private method"),ct);var bd=(Ke,Ve,ct,er)=>({set _(Sd){ve(Ke,Ve,Sd,ct)},get _(){return A(Ke,Ve,er)}});var zC,VC,ms,Ii,Oo,KC,Lo,xi,Do,GC,vs,YC,No,Fo,Dn,_s,Vt,wc,ys,Xn,Xr,ZC,gr,XC,mr,on,bs,vr,Li,JC,Yr,Jn,Sc,QC,ht,Ri,Ai,$o,Uo,Pi,Bo,jo,eT,tT,nT,rT,Mi,Ho,Oi,Bg,jg,Nn,Qn,qo,vt,En,ws,uT,wd,iT,sT;function Ke(t){return t==null||typeof t=="function

Interview Script — Memorize the Shape, Not the Prose

The Thinking Framework (why this script is built this way)

Root cause of the garbling in the actual transcript: you were composing sentence structure, recalling facts, and generating grammar simultaneously, live, under a clock. Evidence from your own transcript: "it also gave with our diocese to one concurrency issues," "we solved the comprehension issues from at the core layer," "switched back to switch to the single like one-on-one mapping." These collapses all happen at the joint between two clauses — exactly where you're gluing a cause to a consequence in real time instead of reciting a pre-built shape. Every answer also ended in "so yeah" — a tell that you had no scripted exit, so you ran out of prepared content and just stopped.

The fix is not "speak more clearly." That's a symptom-level target you'll fail again under pressure. The fix is: stop composing structure live. Pre-load the shape so hard that under a clock you're rec

Thinking Framework

  1. User Journey
  2. Systems Core Features (Functional Requirements)
  3. Qualities of System (Non Functional Requirements): a. Expected Load b. Load change over time c. R/W Data Access Patterns, based off 2. c. CAP tradeoffs, everytime new functional req. e. Fault Tolerance, Idempotency, Replication, Sharding
@ikouchiha47
ikouchiha47 / cv.md
Last active June 8, 2026 08:23
Reume Typist
@ikouchiha47
ikouchiha47 / migrate_to_gitlab.sh
Created May 7, 2026 16:59
Migrate repos and groups from github to gitlab
#!/usr/bin/env bash
set -uo pipefail
VISIBILITY="${VISIBILITY:-private}"
WORKDIR="$HOME/dev/migrate/_mirror"
LOG="$HOME/dev/migrate/migrate.log"
SSH_HOST="${SSH_HOST_KEY:-gitlab.com}"
DRY_RUN=0
TEST=0
@ikouchiha47
ikouchiha47 / pandas_api.md
Last active February 4, 2026 04:49
Curated Library API's for LLM
@ikouchiha47
ikouchiha47 / README.md
Created January 22, 2026 22:45
Python MultiProcessing for Go devs
@ikouchiha47
ikouchiha47 / 01_QUESTION.md
Last active December 22, 2025 09:16
Ride Hailer

DAW Problem Statement – Multi-Region Ride-Hailing Platform

Context

You are tasked with designing a multi-tenant, multi-region ride-hailing system (think Uber/Ola).

The platform must handle driver–rider matching, dynamic surge pricing, trip lifecycle management, and payments at scale with strict latency requirements.

@ikouchiha47
ikouchiha47 / 01_context.md
Last active November 29, 2025 06:17
AI Coding Won

This blog was written by claude using kiro , There are errors in the blog, but I want it to be a testament to stupid the ecosystem is for anything real.

The future is so bad, that I am positively hopeful. Such a beautiful sight seeing everything burn.

@ikouchiha47
ikouchiha47 / coding_agent.md
Created October 24, 2025 10:41
coding agent

AI Agent Development & Debugging Guide

1. Development Cycle

Test-Driven Development (TDD) Workflow

Phase 1: Write Tests First

Write a failing test that defines the expected behavior before implementing any code.