Skip to content

Latest commit

 

History

History
75 lines (48 loc) · 2.09 KB

File metadata and controls

75 lines (48 loc) · 2.09 KB

Personal Scratchpad

A place to practice, learn, and figure things out. Not a portfolio.


Directories

Folder What it's for
challenges/ LeetCode, HackerRank, CodeWars — all algo practice
workbooks/ Framework drills (FastAPI, Svelte, Vue) + DSA, Python, PHP/SQL
learning-notes/ TILs, course notes, random learnings
miniprojects/ Small projects for understanding concepts

Current State

Section Count
Challenges (LeetCode) 15
Challenges (HackerRank) 23
Challenges (CodeWars) ~
TILs 12
Workbooks 6 categories
Mini-projects 4

Recent Activity


Setup

Git hook runs on commit to remind you to update the state above.

To disable:

git config core.hooksPath .git/hooks

Philosophy

This repo tracks that I'm still learning, even when nothing gets committed. It's messy, unfinished, and that's the point.


Git Subtree Workflow

Some miniprojects/ were built as standalone repos outside this monorepo; they use git subtree to keep history intact.

Who: Me, hacking in a standalone scratch repo on disk.

What: Merge standalone repo commits into a subdirectory here — no submodules, no symlinks, no URLs pushed to GitHub.

When: After changes in the standalone repo are committed.

Where: dump/<name>/miniprojects/<name>/.

Why: Keep the sandbox private (full config, personal data, failed experiments) while the monorepo stays clean.

How:

# First time (already done for bookmarks-sorter):
git subtree add --prefix=miniprojects/<name> /path/to/standalone/repo master

# Each subsequent round — hack, commit in standalone, then here:
git subtree pull --prefix=miniprojects/<name> /path/to/standalone/repo master

⚠ Caution: subtree pull assumes the standalone repo's history is append-only. Rebasing, force-pushing, or squashing commits there will create merge conflicts. Treat the standalone repo as linear — new commits on top, never rewrite.