Skip to content

Instantly share code, notes, and snippets.

View kunagpal's full-sized avatar
🎯
Focusing

Kunal Nagpal kunagpal

🎯
Focusing
View GitHub Profile
@kunagpal
kunagpal / framework.md
Created September 12, 2025 10:34
Beginning a new job starter pack

Depending on the relative seniority of the level you’re hired at, and the company age/leadership experience, you may be called on to define answers to some of the questions below. Tread accordingly.

Information checklist

Culture

  1. What separates great from good performance?
  2. What might be the largest difference between two different engineering teams here?
  3. What would be the biggest piece of advice all of you have for me?
  4. What are the most common challenges faced by new team members here?
  5. Which actions make new team members reach full productivity in weeks as opposed to months?
  6. Are there any recent cultural changes I should be aware of?
@kunagpal
kunagpal / spec.md
Last active May 17, 2025 23:38
Problem solving specification

Overview

A brief introduction to the background context behind the current problem's situation:

Why is this problem worth solving?

To determine the relative priority of this problem in contrast to that of many others, ask: What goes wrong if this remains unfixed after a finite amount of time?

How was this problem discovered?

Tracking trends of problem discovery sources helps us focus our efforts more precisely

Who is affected by this problem, and what workarounds are available to them at the time of writing?

@kunagpal
kunagpal / Communication.md
Created March 30, 2025 11:56
Food for the mind
v6.11.1
3.10.10
[email protected] /Users/kunagpal/Code/GitHub/express-boilerplate
├── [email protected]
├─┬ [email protected]
│ ├── [email protected]
│ ├── [email protected]
│ └─┬ [email protected]
│ ├─┬ [email protected]
│ │ └── [email protected]
@kunagpal
kunagpal / .bash_profile
Last active September 26, 2024 08:04
Bash heaven
# Add `~/bin` to the `$PATH`
export BUN_INSTALL="$HOME/.bun";
export PATH="$HOME/bin:$BUN_INSTALL/bin:$PATH:$HOME/go/bin";
# Set PATH, MANPATH, etc., for Homebrew.
eval "$(/opt/homebrew/bin/brew shellenv)";
# Load the shell dotfiles, and then some:
# * ~/.path can be used to extend `$PATH`.
# * ~/.extra can be used for other settings you don’t want to commit.