2026-08-10 10:30:15
Tools
Education / Audio Record and Process
Images
Start Here
Newsletters / Book Deals (Affiliated)
git ls-tree --name-only -r <commit-ish>
git checkout -
Alternatives:
git checkout @{-1}
git push origin --delete <remote_branchname>
Alternatives:
git push origin :<remote_branchname>
git branch -dr <remote/branch>
git push origin :refs/tags/<tag-name>
git checkout -- <file_name>
Alternatives:
git restore <file_name>
git commit -v --amend
git cherry -v master
git commit --amend --author='Author Name <[email protected]>'
git add -p
git checkout <branch-name> && git cherry-pick <commit-ish>
git checkout <stash@{n}> -- <file_path>
Alternatives:
git checkout stash@{0} -- <file_path>
git worktree add -b <branch-name> <path> <start-point>
git worktree add --detach <path> HEAD
git cherry -v master
Alternatives:
git cherry -v master <branch-to-be-merged>
git add --all && git commit --amend --no-edit
git fetch -p
Alternatives:
git remote prune origin
git rev-list --reverse HEAD | head -1
Alternatives:
git rev-list --max-parents=0 HEAD
git log --pretty=oneline | tail -1 | cut -c 1-40
git log --pretty=oneline --reverse | head -1 | cut -c 1-40
git clone repo.bundle <repo-dir> -b <branch-name>
git update-index --assume-unchanged Changelog; git commit -a; git update-index --no-assume-unchanged Changelog
git fetch origin pull/<id>/head:<branch-name>
Alternatives:
git pull origin pull/<id>/head:<branch-name>
git checkout <deleting_commit> -- <file_path>
git checkout <commit-ish> -- <file_path>
git commit --fixup <SHA-1>
git commit --only <file_path>
git add -i
git status --ignored
git checkout --orphan <branch_name>
git bisect start # Search start
git bisect bad # Set point to bad commit
git bisect good v2.6.13-rc2 # Set point to good commit|tag
git bisect bad # Say current state is bad
git bisect good # Say current state is good
git bisect reset # Finish search
git commit --no-verify
git clone -b <branch-name> --single-branch https://github.com/user/repo.git
git checkout -b <branch-name>
Alternatives:
git branch <branch-name> && git checkout <branch-name>
git switch -c <branch-name>
git for-each-ref --sort=-committerdate --format='%(refname:short)' refs/heads/
git clone https://github.com/user/repo.git --depth 1
git push -f <remote-name> <branch-name>
git shortlog
git push --force-with-lease <remote-name> <branch-name>
git rev-list --count <branch-name>
git notes add -m 'Note on the previous commit....'
git --git-dir=<source-dir>/.git format-patch -k -1 --stdout <SHA1> | git am -3 -k
git fetch origin master:refs/remotes/origin/mymaster
git request-pull v1.0 https://git.ko.xz/project master:for-linus
git status --short --branch
git checkout master@{yesterday}
git push origin HEAD
git push -u origin <branch_name>
cd <path-to-submodule>
git pull origin <branch>
cd <root-of-your-main-project>
git add <path-to-submodule>
git commit -m "submodule updated"
git clone --bare https://github.com/exampleuser/old-repository.git
git push --mirror https://github.com/exampleuser/new-repository.git
git clone --filter=blob:none --sparse <url> && cd <repo> && git sparse-checkout set <dir1> <dir2>
git branch --column
Alternatives:
git tag --column
git worktree list
git worktree remove <path>
Alternatives:
git worktree prune
git help -g
git log -S'<a term in the source>'
git log -p <file_name>
git diff --name-only --diff-filter=U
git diff-tree --no-commit-id --name-only -r <commit-ish>
git diff
git diff --cached
Alternatives:
git diff --staged
git diff HEAD
git log --no-merges --raw --since='2 weeks ago'
Alternatives:
git whatchanged --since='2 weeks ago'
git log --no-merges --stat --reverse master..
git ls-files -t
git ls-files --others
git ls-files --others -i --exclude-standard
git log --pretty=oneline --graph --decorate --all
Alternatives:
gitk --all
git log --graph --pretty=format:'%C(auto) %h | %s | %an | %ar%d'
git log --graph --decorate --oneline $(git rev-list --walk-reflogs --all)
git diff --word-diff
git difftool [-t <tool>] <commit1> <commit2> <path>
git log Branch1 ^Branch2
git log -<n>
Alternatives:
git log -n <n>
git diff --name-only | uniq | xargs $EDITOR
git log --show-signature
git show <branch_name>:<file_name>
git log --first-parent
git log --follow -p -- <file_path>
git log --all --grep='<given-text>'
git log --oneline master..<branch-name> | tail -1
Alternatives:
git log --reverse master..<branch-name> | head -6
git blame <file-name>
git log --author='_Your_Name_Here_' --pretty=tformat: --numstat | gawk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s removed lines: %s total lines: %s
", add, subs, loc }' -
Alternatives:
git log --author='_Your_Name_Here_' --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s
", add, subs, loc }' - # on Mac OSX
git log --show-notes='*'
git log --branches --not --remotes
Alternatives:
git log @{u}..
git cherry -v
git diff --ignore-all-space | git apply --cached
git blame -L <start>,<end>
git var -l | <variable>
git rev-parse --show-toplevel
git log --since='FEB 1 2017' --until='FEB 14 2017'
git log --perl-regexp --author='^((?!excluded-author-regex).*)$'
git show
git reflog
git range-diff <base>..<old-tip> <base>..<new-tip>
Alternatives:
git range-diff <rev1>...<rev2>
git bisect start <bad> <good> && git bisect run <script>
git blame -L <start>,<end> <file>
Alternatives:
git blame -L :'<funcname>' <file>
git blame -M -C <file>
Alternatives:
git blame -C -C -C <file>
git log --oneline --graph --all --decorate
git log --diff-filter=D --summary | grep delete
Alternatives:
git log --all --full-history -- <file>
git shortlog -sn --since='1 year ago'
Alternatives:
git shortlog -sne --all
git verify-commit <commit>
Alternatives:
git log --show-signature
git diff --color-words
Alternatives:
git diff --word-diff=color
git rebase master feature && git checkout master && git merge -
git rebase --autostash
git rebase -i --autosquash
git rebase --interactive HEAD~2
git merge-base <branch-name> <other-branch-name>
git rebase --onto <new_base> <old_base>
git commit --fixup=<commit> && git rebase -i --autosquash <commit>~1
git rebase -i --root
git remote set-url origin <URL>
git remote
Alternatives:
git remote show
git remote add <remote-nickname> <remote-url>
git remote -v
git ls-remote git://git.kernel.org/pub/scm/git/git.git
git remote update origin --prune
git bundle create <file>.bundle --all
Alternatives:
git bundle create <file>.bundle <branch-name>
git clone <file>.bundle <directory>
git clone --filter=blob:none <url>
Alternatives:
git clone --filter=tree:0 <url>
git filter-branch --force --index-filter 'git rm --cached --ignore-unmatch <path-to-your-file>' --prune-empty --tag-name-filter cat -- --all && git push origin --force --all
git commit --amend --reset-author --no-edit
curl -L http://git.io/vfhol > ~/.git-completion.bash && echo '[ -f ~/.git-completion.bash ] && . ~/.git-completion.bash' >> ~/.bashrc
git config --global alias.<handle> <command>
git config --global alias.st status
git config --global pull.rebase true
Alternatives:
#git < 1.7.9
git config --global branch.autosetuprebase always
git config --list
git config --global core.ignorecase false
git config --global core.editor '$EDITOR'
git config --global help.autocorrect 1
git config --global rerere.enabled 1
git config --global --unset <entry-name>
git config core.fileMode false
git config --global color.ui false
git config --global <specific command e.g branch, diff> <true, false or always>
git config --global alias.undo '!f() { git reset --hard $(git rev-parse --abbrev-ref HEAD)@{${1-1}}; }; f'
git config [--global] --edit
git config -l | grep alias | sed 's/^alias\.//g'
Alternatives:
git config -l | grep alias | cut -d '.' -f 2
git config --global url.'[email protected]:'.insteadOf 'https://github.com/'
git config --global core.autocrlf false
git config --edit --system
git config --edit --global
git config --edit --local
git maintenance start
Alternatives:
git maintenance run --task=gc
git config gpg.format ssh && git config user.signingkey ~/.ssh/id_ed25519.pub && git commit -S -m '<message>'
git config rerere.enabled true
git config --global init.defaultBranch main
git stash
Alternatives:
git stash push
git stash -k
Alternatives:
git stash --keep-index
git stash push --keep-index
git stash -u
Alternatives:
git stash push -u
git stash push --include-untracked
git stash push -m <message>
Alternatives:
git stash push --message <message>
git stash -a
Alternatives:
git stash --all
git stash push --all
git stash list
git stash show -p <stash@{n}>
git stash apply <stash@{n}>
git stash pop
Alternatives:
git stash apply stash@{0} && git stash drop stash@{0}
git stash clear
Alternatives:
git stash drop <stash@{n}>
git stash push --keep-index
git stash push -m '<message>' <file1> <file2>
git stash show --stat <stash@{n}>
Alternatives:
git stash show -p <stash@{n}>
Software / Libraries and Tools
Tools
Archive of Icons
Software / Automation
GPL-3.0 Python/Docker
2026-08-09 10:24:36
Plugins / superconsole - Windows-only
Themes / superconsole - Windows-only
git status, last command status and datetime.git status, root status indicator, exit status of last command and user@host.Drug Perturbation
Data Validation
API: SchemaShield
Description: Read-only preflight for breaking schema changes and downstream query impact
Auth: apiKey
HTTPS: Yes
CORS: Unknown
:
Development
API: AmberOne
Description: Turn any website into a build-ready Android, iOS, PWA or Electron app project
Auth: apiKey
HTTPS: Yes
CORS: No
API: Diagrams.so
Description: Generate editable draw.io architecture diagrams from text or infrastructure code
Auth: apiKey
HTTPS: Yes
CORS: No
API: Utilorax
Description: 203 JSON endpoints: hashing, encoding, unit conversion, text, dates and file conversion
Auth: apiKey
HTTPS: Yes
CORS: Yes
API: AGPC Domain Check
Description: Check a domain's SPF, DKIM, DMARC and MX with a graded shareable report
Auth: No
HTTPS: Yes
CORS: Yes
Government
API: Indian Mandi Prices
Description: Free, keyless daily wholesale mandi prices for 5 Indian states, sourced from data.gov.in
Auth: No
HTTPS: Yes
CORS: Yes
Health
API: ERstat
Description: Live Canadian emergency room closures and service disruptions, by province
Auth: apiKey
HTTPS: Yes
CORS: Yes
Machine Learning
API: Statlyte
Description: Live pricing, context windows and model ids for major LLM APIs
Auth: No
HTTPS: Yes
CORS: Yes
Open Data
API: EOSL
Description: Hardware end-of-sale and end-of-service-life dates by part number, source-linked
Auth: No
HTTPS: Yes
CORS: Yes
API: Registrum
Description: UK company data: profiles, directors, PSC, iXBRL-parsed financials, ECCTA status
Auth: apiKey
HTTPS: Yes
CORS: No
Shopping
API: Marketplace Fee Data
Description: Seller fee schedules for 21 e-commerce marketplaces and payment processors as JSON
Auth: No
HTTPS: Yes
CORS: Yes
Social
API: Publora
Description: Publish and schedule posts to ten social networks from one endpoint
Auth: apiKey
HTTPS: Yes
CORS: No
API: RedditAPIs
Description: Reddit data API: subreddit listings, post/comment/community/user search, comment trees, top posts
Auth: apiKey
HTTPS: Yes
CORS: Unknown
API: TweetAPI
Description: Public Twitter data for posts, profiles, followers, search, lists and communities
Auth: apiKey
HTTPS: Yes
CORS: No
API: XFlux
Description: Read X/Twitter profiles, search, timelines; account monitors with signed webhooks
Auth: apiKey
HTTPS: Yes
CORS: No
Sports & Fitness
API: Bet Better
Description: Sports model win probabilities and fair odds across 13 leagues
Auth: No
HTTPS: Yes
CORS: Yes
Resume
#free
Tools / Plugins
Reading and Writing Tools / Markdown Tools
Utilities / Window Management
Agent Orchestration & CLI Tools
gemini --experimental-acp) alongside Claude Code, Codex, and OpenCode. Each agent gets its own Docker container and git worktree on hardware you own; terminals survive disconnects, any browser or phone reopens the same fleet, and changes land through per-file, per-hunk diff review. Scheduled and webhook-triggered runs. MIT.Development Tools & Utilities
Software / Database Management
AGPL-3.0 Nodejs/Docker
Software / Inventory Management
⚠ - Modern collection manager for physical media (vinyls, CDs, cassettes, books, movies, and video games). MIT Nodejs/Docker
Software / Pastebins
MIT Docker
Software / Task Management & To-do Lists
MIT Javascript/Docker
Software / Ticketing
AGPL-3.0/MIT Docker
Platforms
Frameworks
Standards and Specifications
Research and Papers
2026-08-08 10:17:45
Table of Contents / Streaming Engine
Plugins
Programming Languages Support / Markdown and LaTeX
Dataset / Web
Market Research / Related
Command-line
Polars plugins / Finance
Design and Product / Design Tools
Security
Tools
⚙️ Middlewares / 💻 Contrib
Testing
Generative AI
Managed Data Services
Design and UI
2026-08-07 11:13:07
Python / Neural Networks
CLI Tools / Weather
iOS
Swift
UI
SwiftUI
Architecture
Multithreading
Data Structures and Algorithms
Database
Machine Learning
Testing
tvOS
Interview
Finance / Currencies
Dates and Time
Genomics
Proteomics
Applications / System tools
Libraries / Data visualization
Engineering to Management Transition
Motivation / Happiness
Engineering / Systems Complexity
Project Management / Specifications
Key Performance Indicator (KPI) / Delivery
Politics / Equity
HealthCare
#freemium
Video
#freemium
Project Layout
Web Frameworks
Documentation, Knowledge & Learning
Agent Orchestration / Obsidian
Agent Orchestration / Ralph Wiggum
Web Development / Web Frameworks
1,687
APIs, Data, and ML
2026-08-06 11:31:14
Libraries / C#/.NET
Contents / Components
Software / Visual Testing
Projects / Automation, Manufacturing, and Robotics
Tools / Editors
Utilities / Cleanup and Uninstall
Software / Middlewares
Remote Desktop Tools
2026-08-05 11:27:55
Development / Public localhost
Productivity / Email
Utilities / Math
Files and Directories / Search
AI / Agents
Automotive / YouTube Playables
Accessibility (a11y)
Tools
AI
Projects / Serialization
Fundamentals / Linters
Graphics / Vector/Image Editor
Cheat Sheets
Configuration
Tools and session management
Status Bar
Plugins
Books / Development and testing
Colorscheme / Markdown and LaTeX
[TS][LSP][Lua] A warm muted colorscheme with cream (light) variants.Icon / Cursorline
Official news
Official documentation
LaTeX-focused
Online editors
Language Servers
Quality Check Tools
Formatters
Graphics / TikZ
Plugins / superconsole - Windows-only
git, gh, docker, and other CLI subcommands.Themes / superconsole - Windows-only
Machine Learning
API: AI Economics Tools
Description: Token cost, LLM energy, agent-hour and Proof-Adjusted Autonomy calculators by Michał Piszczek
Auth: No
HTTPS: Yes
CORS: Yes
Developer Tools / Developer Utilities
AI Tools / Other Tools
Memory & Context Persistence / Ralph Wiggum
Brokers
Design and UI
Software / Network Utilities
GPL-3.0 Docker
Software / Task Management & To-do Lists
AGPL-3.0 Docker
Projects / AI Gateway
Projects / API Design
Projects / API Gateway
Projects / Change Data Capture
Projects / Data Integration
Projects / Integration Platform as a Service
Projects / Message Broker
Projects / Schema Registry
Projects / Stream Processing
Resources / Data Formats