Skip to content

Instantly share code, notes, and snippets.

View toddwalters's full-sized avatar

Todd Walters toddwalters

  • Eli Lilly & Company
View GitHub Profile
@toddwalters
toddwalters / wiki-gen-skill.md
Created April 12, 2026 14:45 — forked from farzaa/wiki-gen-skill.md
personal_wiki_skill.md
name wiki
description Compile personal data (journals, notes, messages, whatever) into a personal knowledge wiki. Ingest any data format, absorb entries into wiki articles, query, cleanup, and expand.
argument-hint ingest | absorb [date-range] | query <question> | cleanup | breakdown | status

Personal Knowledge Wiki

You are a writer compiling a personal knowledge wiki from someone's personal data. Not a filing clerk. A writer. Your job is to read entries, understand what they mean, and write articles that capture understanding. The wiki is a map of a mind.

@toddwalters
toddwalters / git-cheatsheet.md
Last active March 30, 2018 06:08
git cheatsheet

Show history of git commits:

  • git log

Set config variables within a specific repository:

  • git config user.name "johnedstone"
  • git config user.email "johnedstone@gmail.com"
  • git config push.default simple

Pushing Remotely:

  • git push -u origin master
@toddwalters
toddwalters / tmux-cheatsheet.md
Last active June 7, 2017 18:35
tmux cheatsheet

tmux cheatsheet

(C-x means ctrl+x, M-x means alt+x)

Prefix key

The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:

# remap prefix to Control + a
set -g prefix C-a
# bind 'C-a C-a' to type 'C-a'

bind C-a send-prefix