MoreRSS

site iconTrack Awesome listModify

Track Awesome List Daily Updates on Github.
Please copy the RSS to your reader, or quickly subscribe to:

Inoreader Feedly Follow Feedbin Local Reader

Rss preview of Blog of Track Awesome list

Awesome List Updated on Aug 10, 2026

2026-08-10 10:30:15

1. Typography

Tools

2. Awesome Mac

Education / Audio Record and Process

  • Leafy - Look up any word on screen with ⌥A, including in PDFs and images, and save it to a searchable local library. Freeware

3. Awesome Go

Images

  • eagle-image-api (⭐31) - Image optimization and transformation API using libvips, deployable to AWS Lambda and CloudFront.

4. Awesome Claude Code

Start Here

5. Awesome Datascience

Newsletters / Book Deals (Affiliated)

  • Bamboo Weekly - Weekly pandas exercises based on current events and real-world public data, with fully worked solutions. Issues older than two years are free, as are the first two questions + answers in current issues. Archive.

6. Tips

Basic Operations

List of all files till a commit

git ls-tree --name-only -r <commit-ish>

Quickly switch to the previous branch

git checkout -

Alternatives:

git checkout @{-1}

Delete remote branch

git push origin --delete <remote_branchname>

Alternatives:

git push origin :<remote_branchname>
git branch -dr <remote/branch>

Delete remote tag

git push origin :refs/tags/<tag-name>

Undo local changes with the content in index(staging)

git checkout -- <file_name>

Alternatives:

git restore <file_name>

Reword the previous commit message

git commit -v --amend

See commit history for just the current branch

git cherry -v master

Amend author.

git commit --amend --author='Author Name <[email protected]>'

Stage parts of a changed file, instead of the entire file

git add -p

Pick commits across branches using cherry-pick

git checkout <branch-name> && git cherry-pick <commit-ish>

Grab a single file from a stash

git checkout <stash@{n}> -- <file_path>

Alternatives:

git checkout stash@{0} -- <file_path>

Create new working tree from a repository (git 2.5)

git worktree add -b <branch-name> <path> <start-point>

Create new working tree from HEAD state

git worktree add --detach <path> HEAD

Show all commits in the current branch yet to be merged to master

git cherry -v master

Alternatives:

git cherry -v master <branch-to-be-merged>

Modify previous commit without modifying the commit message

git add --all && git commit --amend --no-edit

Prunes references to remove branches that have been deleted in the remote.

git fetch -p

Alternatives:

git remote prune origin

Retrieve the commit hash of the initial revision.

 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

Import from a bundle

git clone repo.bundle <repo-dir> -b <branch-name>

Ignore one file on commit (e.g. Changelog).

git update-index --assume-unchanged Changelog; git commit -a; git update-index --no-assume-unchanged Changelog

Fetch pull request by ID to a local branch

git fetch origin pull/<id>/head:<branch-name>

Alternatives:

git pull origin pull/<id>/head:<branch-name>

Restore deleted file.

git checkout <deleting_commit> -- <file_path>

Restore file to a specific commit-hash

git checkout <commit-ish> -- <file_path>

Marks your commit as a fix of a previous commit.

git commit --fixup <SHA-1>

Skip staging area during commit.

git commit --only <file_path>

Interactive staging.

git add -i

Status of ignored files.

git status --ignored

Checkout a new branch without any history

git checkout --orphan <branch_name>

Find guilty with binary search

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 

Bypass pre-commit and commit-msg githooks

git commit --no-verify

Clone a single branch

git clone -b <branch-name> --single-branch https://github.com/user/repo.git

Create and switch new branch

git checkout -b <branch-name>

Alternatives:

git branch <branch-name> && git checkout <branch-name>
git switch -c <branch-name>

Show all local branches ordered by recent commits

git for-each-ref --sort=-committerdate --format='%(refname:short)' refs/heads/

Clone a shallow copy of a repository

git clone https://github.com/user/repo.git --depth 1

Force push to Remote Repository

git push -f <remote-name> <branch-name>

Group commits by authors and title

git shortlog

Forced push but still ensure you don't overwrite other's work

git push --force-with-lease <remote-name> <branch-name>

Number of commits in a branch

git rev-list --count <branch-name>

Add object notes

git notes add -m 'Note on the previous commit....'

Apply commit from another repository

git --git-dir=<source-dir>/.git format-patch -k -1 --stdout <SHA1> | git am -3 -k

Specific fetch reference

git fetch origin master:refs/remotes/origin/mymaster

Generates a summary of pending changes

git request-pull v1.0 https://git.ko.xz/project master:for-linus

Show git status short

git status --short --branch

Checkout a commit prior to a day ago

git checkout master@{yesterday}

Push the current branch to the same name on the remote repository

git push origin HEAD

Push a new local branch to remote repository and track

git push -u origin <branch_name>

Update a submodule to the latest commit

cd <path-to-submodule>
git pull origin <branch>
cd <root-of-your-main-project>
git add <path-to-submodule>
git commit -m "submodule updated"

Duplicating a repository

git clone --bare https://github.com/exampleuser/old-repository.git

git push --mirror https://github.com/exampleuser/new-repository.git

Sparse checkout: clone only specific directories

git clone --filter=blob:none --sparse <url> && cd <repo> && git sparse-checkout set <dir1> <dir2>

Show output in columns

git branch --column

Alternatives:

git tag --column

List worktrees

git worktree list

Remove a worktree

git worktree remove <path>

Alternatives:

git worktree prune

Log and History

Show helpful guides that come with Git

git help -g

Search change by content

git log -S'<a term in the source>'

Show changes over time for specific file

git log -p <file_name>

List all the conflicted files

git diff --name-only --diff-filter=U

List of all files changed in a commit

git diff-tree --no-commit-id --name-only -r <commit-ish>

Unstaged changes since last commit

git diff

Changes staged for commit

git diff --cached

Alternatives:

git diff --staged

Show both staged and unstaged changes

git diff HEAD

What changed since two weeks?

git log --no-merges --raw --since='2 weeks ago'

Alternatives:

git whatchanged --since='2 weeks ago'

See all commits made since forking from master

git log --no-merges --stat --reverse master..

Show all tracked files

git ls-files -t

Show all untracked files

git ls-files --others

Show all ignored files

git ls-files --others -i --exclude-standard

Visualize the version tree.

git log --pretty=oneline --graph --decorate --all

Alternatives:

gitk --all
git log --graph --pretty=format:'%C(auto) %h | %s | %an | %ar%d'

Visualize the tree including commits that are only referenced from reflogs

git log --graph --decorate --oneline $(git rev-list --walk-reflogs --all)

Show inline word diff.

git diff --word-diff

Show changes using common diff tools.

git difftool [-t <tool>] <commit1> <commit2> <path>

Commits in Branch1 that are not in Branch2

git log Branch1 ^Branch2

List n last commits

git log -<n>

Alternatives:

git log -n <n>

Open all conflicted files in an editor.

git diff --name-only | uniq | xargs $EDITOR

View the GPG signatures in the commit log

git log --show-signature

Extract file from another branch.

git show <branch_name>:<file_name>

List only the root and merge commits.

git log --first-parent

List commits and changes to a specific file (even through renaming)

git log --follow -p -- <file_path>

Search Commit log across all branches for given text

git log --all --grep='<given-text>'

Get first commit in a branch (from master)

git log --oneline master..<branch-name> | tail -1

Alternatives:

git log --reverse master..<branch-name> | head -6

Show the author, time and last revision made to each line of a given file

git blame <file-name>

Show how many lines does an author contribute

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

Show all the git-notes

git log --show-notes='*'

List unpushed git commits

git log --branches --not --remotes

Alternatives:

git log @{u}..
git cherry -v

Add everything, but whitespace changes

git diff --ignore-all-space | git apply --cached

blame on certain range

git blame -L <start>,<end>

Show a Git logical variable.

git var -l | <variable>

Get the repo name.

git rev-parse --show-toplevel

logs between date range

git log --since='FEB 1 2017' --until='FEB 14 2017'

Exclude author from logs

git log --perl-regexp --author='^((?!excluded-author-regex).*)$'

View expanded details of changes in last commit

git show

Visualize each position of HEAD in the last 30 days

git reflog

Compare two versions of a rebased branch

git range-diff <base>..<old-tip> <base>..<new-tip>

Alternatives:

git range-diff <rev1>...<rev2>

Automate bisect with a test script

git bisect start <bad> <good> && git bisect run <script>

Blame with line range

git blame -L <start>,<end> <file>

Alternatives:

git blame -L :'<funcname>' <file>

Detect moved or copied lines in blame

git blame -M -C <file>

Alternatives:

git blame -C -C -C <file>

Log with graph in oneline format

git log --oneline --graph --all --decorate

Find commits where a file was deleted

git log --diff-filter=D --summary | grep delete

Alternatives:

git log --all --full-history -- <file>

Show commit count per author per time period

git shortlog -sn --since='1 year ago'

Alternatives:

git shortlog -sne --all

Verify commit signatures

git verify-commit <commit>

Alternatives:

git log --show-signature

Show diff with word-level granularity using color

git diff --color-words

Alternatives:

git diff --word-diff=color

Merging and Rebasing

Rebases 'feature' to 'master' and merges it in to master

git rebase master feature && git checkout master && git merge -

Stash changes before rebasing

git rebase --autostash

Squash fixup commits normal commits.

git rebase -i --autosquash

Change previous two commits with an interactive rebase.

git rebase --interactive HEAD~2

Find common ancestor of two branches

git merge-base <branch-name> <other-branch-name>

Change a branch base

git rebase --onto <new_base> <old_base>

Create a fixup commit and auto-squash

git commit --fixup=<commit> && git rebase -i --autosquash <commit>~1

Rebase interactively from the root commit

git rebase -i --root

Remotes

Changing a remote's URL

git remote set-url origin <URL>

Get list of all remote references

git remote

Alternatives:

git remote show

Adding Remote name

git remote add <remote-nickname> <remote-url>

List all currently configured remotes

git remote -v

List references in a remote repository

git ls-remote git://git.kernel.org/pub/scm/git/git.git

Refresh the list of remote branches

git remote update origin --prune

Create a bundle file for offline sharing

git bundle create <file>.bundle --all

Alternatives:

git bundle create <file>.bundle <branch-name>

Clone from a bundle file

git clone <file>.bundle <directory>

Partial clone: clone without blobs for faster fetch

git clone --filter=blob:none <url>

Alternatives:

git clone --filter=tree:0 <url>

Setup and Config

Remove sensitive data from history, after a push

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

Reset author, after author has been changed in the global config.

git commit --amend --reset-author --no-edit

Get git bash completion

curl -L http://git.io/vfhol > ~/.git-completion.bash && echo '[ -f ~/.git-completion.bash ] && . ~/.git-completion.bash' >> ~/.bashrc

Git Aliases

git config --global alias.<handle> <command> 
git config --global alias.st status

Always rebase instead of merge on pull.

git config --global pull.rebase true

Alternatives:

#git < 1.7.9
git config --global branch.autosetuprebase always

List all the alias and configs.

git config --list

Make git case sensitive.

git config --global core.ignorecase false

Add custom editors.

git config --global core.editor '$EDITOR'

Auto correct typos.

git config --global help.autocorrect 1

Reuse recorded resolution, record and reuse previous conflicts resolutions.

git config --global rerere.enabled 1

Remove entry in the global config.

git config --global --unset <entry-name>

Ignore file mode changes on commits

git config core.fileMode false

Turn off git colored terminal output

git config --global color.ui false

Specific color settings

git config --global <specific command e.g branch, diff> <true, false or always>

Alias: git undo

git config --global alias.undo '!f() { git reset --hard $(git rev-parse --abbrev-ref HEAD)@{${1-1}}; }; f'

Edit [local/global] git config

git config [--global] --edit

List all git aliases

git config -l | grep alias | sed 's/^alias\.//g'

Alternatives:

git config -l | grep alias | cut -d '.' -f 2

Use SSH instead of HTTPs for remotes

git config --global url.'[email protected]:'.insteadOf 'https://github.com/'

Prevent auto replacing LF with CRLF

git config --global core.autocrlf false

Edit config for each level

git config --edit --system

git config --edit --global

git config --edit --local

Enable background maintenance for faster operations

git maintenance start

Alternatives:

git maintenance run --task=gc

Sign commits with SSH key instead of GPG

git config gpg.format ssh && git config user.signingkey ~/.ssh/id_ed25519.pub && git commit -S -m '<message>'

Enable rerere to auto-resolve recurring merge conflicts

git config rerere.enabled true

Set default branch name for new repos

git config --global init.defaultBranch main

Stashing

Saving current state of tracked files without committing

git stash

Alternatives:

git stash push

Saving current state of unstaged changes to tracked files

git stash -k

Alternatives:

git stash --keep-index
git stash push --keep-index

Saving current state including untracked files

git stash -u

Alternatives:

git stash push -u
git stash push --include-untracked

Saving current state with message

git stash push -m <message>

Alternatives:

git stash push --message <message>

Saving current state of all files (ignored, untracked, and tracked)

git stash -a

Alternatives:

git stash --all
git stash push --all

Show list of all saved stashes

git stash list

Show the contents of any stash in patch form

git stash show -p <stash@{n}>

Apply any stash without deleting from the stashed list

git stash apply <stash@{n}>

Apply last stashed state and delete it from stashed list

git stash pop

Alternatives:

git stash apply stash@{0} && git stash drop stash@{0}

Delete all stored stashes

git stash clear

Alternatives:

git stash drop <stash@{n}>

Stash only unstaged changes

git stash push --keep-index

Stash specific files

git stash push -m '<message>' <file1> <file2>

Show a diffstat summary of a stash

git stash show --stat <stash@{n}>

Alternatives:

git stash show -p <stash@{n}>

7. Awesome Iot

Software / Libraries and Tools

8. Awesome Mqtt

Tools

  • MQTTForge (⭐0) - Test console that builds a broker's topics into a live tree, shows every frame on the wire, and publishes by hand. Desktop app for macOS, Windows and Linux, or a single Docker image.

9. Awesome Icons

Archive of Icons

  • IconSearch - Search and compare 355,000+ SVG icons across 229 open-source libraries.

10. Awesome Selfhosted

Software / Automation

  • Mylar3 - Automated Comic Book (cbr/cbz) downloader program for use with NZB and torrents. (Source Code (⭐98)) GPL-3.0 Python/Docker

Awesome List Updated on Aug 09, 2026

2026-08-09 10:24:36

1. Awesome Zsh Plugins

Plugins / superconsole - Windows-only

Themes / superconsole - Windows-only

  • adhde (⭐1) - Includes decorators for user@host, current directory, git status, last command status and datetime.
  • litmus (⭐0) - Connection-aware colors: prompt turns cyan on local sessions and magenta over SSH, so you always know where you are, includes decorators for datetime, git status, root status indicator, exit status of last command and user@host.

2. Awesome Computational Biology

Drug Perturbation

  • CellOT (⭐178) — Neural optimal transport framework for predicting single-cell responses to drug and genetic perturbations.
  • CMonge (⭐19) — Conditional optimal transport model for generalizable single-cell perturbation response prediction across drugs and doses.

3. Public Apis

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

Email

  • 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

4. Collective Ai Tools

Resume

  • CVExpert - Free, no-sign-up CV health and CV–job keyword checks that run in the browser without uploading or saving pasted text. #free

5. Awesome Gatling

Tools / Plugins

  • gatling-kafka-extension (⭐5) - A Gatling extension for load testing Kafka applications, with a focus on Request-Reply (RPC) patterns, Quality of Service (QoS) measurement, and resilience testing.

6. Awesome Mac

Reading and Writing Tools / Markdown Tools Awesome List

  • Imark (⭐13) - Open-source Markdown reader that stores your comments inside the document itself as HTML comments. Open-Source Software FreewareNative App

Utilities / Window Management

  • Plonk (⭐1) - Menu bar window manager with snap zones, hotkeys, and saved workspaces that relaunch your apps and put every window back on its monitor; an AI agent can drive it over MCP. Open-Source Software Freeware

7. Awesome Gemini Cli

Agent Orchestration & CLI Tools

  • intentic (⭐5) - Self-hosted workspace that runs Gemini CLI over ACP (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

  • Agent Island (⭐102) - Free, MIT-licensed native status companion for Gemini CLI, Claude Code, Codex, Grok, and Cursor sessions. Shows local working, stalled, and your-turn state, and tracks Gemini Pro and Flash quota separately, without an Agent Island account or product telemetry. macOS and Windows.

8. Free for Dev

Email

  • Reloop - Transactional email API and SMTP for developers. Free plan: 3,000 emails/month, 200 emails/day, one custom domain and one agent inbox.

9. Awesome Selfhosted

Software / Database Management

  • StackRender - Database schema design and SQL migration generator supporting PostgreSQL, MySQL, MariaDB, SQLite, SQL Server, and Oracle. (Demo, Source Code (⭐465)) AGPL-3.0 Nodejs/Docker

Software / Inventory Management

  • DVinyl (⭐177) - Modern collection manager for physical media (vinyls, CDs, cassettes, books, movies, and video games). MIT Nodejs/Docker

Software / Pastebins

  • 1time - Zero-knowledge one-time secret sharing. Create a one-time link for a password, API key, or file. Encrypted client-side in the browser, never reaches the server in plaintext, self-destructs after the allowed number of views (one by default). (Demo, Source Code (⭐38)) MIT Docker

Software / Task Management & To-do Lists

  • dayGLANCE - Day planner with drag-and-drop time blocking, inbox, recurring tasks, habits, routines, goals, projects and Pomodoro focus mode, plus iCal and CalDAV calendar sync. Data stays in the browser, with optional WebDAV or GLANCEvault sync. (Source Code (⭐107), Clients (⭐2)) MIT Javascript/Docker

Software / Ticketing

10. Awesome Agents

Platforms

  • NotFair (⭐3.3k) - Open-source Claude Code skills for SEO, GEO, Google Ads, and Meta Ads; connects to live data via Google Ads MCP, Meta Ads MCP, Google Search Console MCP, and Google Analytics (GA4) MCP.
  • Aeon (⭐625) - Autonomous agent framework that runs unattended on GitHub Actions, on a cron schedule or reactive repo triggers, dispatching Markdown skills to one of six coding-agent harnesses (Claude Code, Codex, Grok, Pi, Vibe, Kimi) with quality scoring, git-persisted memory, and a self-healing loop.

Frameworks

  • agent-kit (⭐4) - Secure per-customer TypeScript agents with sandboxed execution, curated memory, and human-gated learning. Built on Vercel AI SDK and AgentFS.

Standards and Specifications

  • Agent Passport System (APS) - IETF Internet-Draft specifying verifiable agent identity, faceted authority that can only attenuate across seven constraint dimensions, deterministic action and decision references, and a common envelope for signed action receipts. Defines bindings for MCP tool calls and imported OAuth identity-assertion grants.

Research and Papers

  • ClawBench (⭐554) - Live-site benchmark for evaluating browser agents on everyday online workflows.

Awesome List Updated on Aug 08, 2026

2026-08-08 10:17:45

1. Awesome Streaming

Table of Contents / Streaming Engine

  • Wingfoil (⭐199) [Rust/Python/TypeScript] - Graph based stream processing engine for latency-critical systems such as electronic trading and real-time AI. The same calculation graph runs in interpreted, compiled or hybrid mode.

2. Awesome Tmux

Plugins

  • tmux-ctrl (⭐0) Control tmux from the command line: session navigation, pane moving, and token extraction.

3. Awesome Neovim

Programming Languages Support / Markdown and LaTeX

4. Game Datasets

Dataset / Web

Market Research / Related

  • IndieList - Indie game, studio, publisher, and funding relationship data with transparent sales estimates and market research tools.

5. Awesome V

Command-line

  • oscall (⭐0) - A native, low-level CLI utility written in V for inspecting, loading, and dynamically executing arbitrary C/C++ functions.

6. Awesome Polars

Polars plugins / Finance

  • quantwave (⭐8) - Polars-native technical analysis (221 indicators), execution-aware backtesting, and batch/streaming parity with a Rust core and agent skill by @lavs9.

7. Awesome Mac

Design and Product / Design Tools

  • ItsPaint - Native paint and screenshot markup: step badges, pixelate redaction, Instant Alpha. No account or telemetry. Open-Source Software Freeware

8. Awesome Go

Security

  • deidentify (⭐38) - Deterministic, format-preserving removal of personally identifiable information from text and structured data.

9. Awesome Mqtt

Tools

  • LazyMQTT (⭐2) - A fast, terminal-UI MQTT client written in Rust — inspired by MQTT Explorer, but keyboard-driven and living in your terminal.

10. Awesome Fiber

⚙️ Middlewares / ‍💻 Contrib

  • prometheus (⭐301) - Middleware that instruments incoming requests and serves a metrics endpoint for Prometheus.

11. Free for Dev

Testing

  • Sherlo - Visual regression testing for React Native apps. Free plan: 1,000 snapshots/month, iOS & Android simulators.

Generative AI

  • Gonka Broker - OpenAI-compatible API for open-source models served over the decentralized Gonka.ai GPU network. 1M+ free tokens monthly. Easy integration with many AI tools.

Managed Data Services

  • Layerbase - 2 free managed databases, pick from: Postgres, MariaDB, Redis, Valkey, DuckDB, SQLite, libSQL, and TypeDB. All with TLS. Branch 7 of 8 free engines, 1 branch per database - 10 GB/day, 50 GB/week, 150 GB/month throughput limits on free. 10 additional engines available on higher tiers with no meters.

Design and UI

  • BrandIcons - Favicon API. AI-based discovery for domains without icons or even without web servers. Free tier includes 500,000 requests per month with attribution.

Awesome List Updated on Aug 07, 2026

2026-08-07 11:13:07

1. Awesome Machine Learning

Python / Neural Networks

  • fenn (⭐79) - A simple Python framework for building ML/DL workflows and LLM agents faster, with prebuilt trainers, agent templates, logging, configuration management, and much more.

2. Awesome Vala

CLI Tools / Weather

  • Vamposer (⭐1) - Dependency manager for Vala projects inspired by Composer/Go modules and integrated with Meson subprojects.

3. Awesome Ios Books

iOS

Swift

UI

SwiftUI

Architecture

Multithreading

Data Structures and Algorithms

Database

Machine Learning

Testing

tvOS

Interview

4. Awesome Billing

Finance / Currencies

5. Awesome Falsehood

Dates and Time

  • “I'm going to a commune in Vermont and will deal with no unit of time shorter than a season.” - Is the note left on his terminal by a quitting engineer in the 70s, after too much effort toiling away on sub-second timing concerns. Source: The Soul of a New Machine.

6. Awesome Biological Visualizations

Genomics

  • gbatlas - Interactive viewer for GenBank/GenPept records: linear and circular feature maps, CDS translation, ORF and restriction-site layers, entirely in the browser.

Proteomics

  • pdb2print - Convert a PDB structure into a 3D-printable 3MF file, with one object per chain, magnet pockets and custom display stands.

7. Awesome Rust

Applications / System tools

  • theBGuy/GitDesktop (⭐81) - Keyboard-first Git desktop client with PR, issue, discussion, CI and notification management across GitHub, GitLab and Bitbucket, plus Jira linking and AI agent integration; Tauri + Rust backend Release

Libraries / Data visualization

8. Awesome Engineering Team Management

Engineering to Management Transition

  • The One Minute Manager Meets the Monkey - The author use a parable in which problems are monkeys. Unexperienced managers let monkeys being transferred to them, accumulates on their back and compounds. From this, the book teach you how to change from taking on responsibilities to delegating them so you don't become a bottleneck.

Motivation / Happiness

Engineering / Systems Complexity

Project Management / Specifications

Key Performance Indicator (KPI) / Delivery

  • “Numerical goals set for other people, without a road map to reach the goal, have effects opposite to the effects sought.” - W. Edwards Deming

Politics / Equity

  • The 48 Laws of Power - By Robert Greene. Can teach you how to cover your ass and be effective in a highly political org.

9. Collective Ai Tools

HealthCare

  • Cortexa - AI medical scribe that generates reviewable clinical notes, with a free tier for unlimited transcription and an optional clip-on recorder. #freemium

Video

  • VidLux AI - An all-in-one AI video creation platform for generating and editing videos from text, images, videos, and audio references. #freemium

10. Awesome Go

Project Layout

Web Frameworks

  • Goshtoso (⭐20) - Server-rendered UI components for Go applications, built with templ, Tailwind CSS, HTMX, and Alpine.js.

11. Awesome Claude Code

Documentation, Knowledge & Learning

  • Agentic Workflow Patterns (⭐287) by ThibautMelen - A comprehensive and well-documented collection of agentic patterns from Anthropic docs, with colorful Mermaid diagrams and code examples for each pattern. Covers Subagent Orchestration, Progressive Skills, Parallel Tool Calling, Master-Clone Architecture, Wizard Workflows, and more. Also compatible with other providers.\ created  last-commit  license  stars
  • Claude Code Handbook by nikiforovall - Collection of best practices, tips, and techniques for Claude Code development workflows, enhanced with distributable plugins
  • Claude Code Repos Index (⭐519) by Daniel Rosehill - This is either the work of a prolific genius, or a very clever bot (or both), although it hardly matters because the quality is so good - an index of 75+ Claude Code repositories published by the author - and I'm not talking about slop. CMS, system design, deep research, IoT, agentic workflows, server management, personal health... If you spot the lie, let me know, otherwise please check these out.\ created  last-commit  license  stars
  • Claude Code System Prompts (⭐12k) by Piebald AI - All parts of Claude Code's system prompt, including builtin tool descriptions, sub agent prompts (Plan/Explore/Task), utility prompts (CLAUDE.md, compact, Bash cmd, security review, agent creation, etc.). Updated for each Claude Code version.\ created  last-commit  license  stars
  • claude-code-docs (⭐50) by Constantin Shafranski - A mirror of the Anthropic&copy; PBC documentation site for Claude/Code, but with bonus features like full-text search and query-time updates - up-to-the-minute, fully-indexed information so that Claude Code can read about itself.\ created  last-commit  license  stars
  • Encyclopedia of Agentic Coding Patterns by Wolf McNally - A freely available reference covering 190+ patterns for AI-assisted software development (and actually a whole bunch of related technical topics) from foundational concepts through agentic construction patterns, governance, testing, and socio-technical systems. Each entry follows a consistent pattern-language format with Context, Problem, Forces, Solution, Consequences, and Related Patterns. Opinionated and erudiate, which is actually good for an "encyclopedia" in some ways.
  • learn-faster-kit (⭐345) by Hugo Lau - A creative educational framework for Claude Code, inspired by the "FASTER" approach to self-teaching. Ships with a variety of agents, slash commands, and tools that enable Claude Code to help you progress at your own pace, employing well-established pedagogical techniques like active learning and spaced repetition.\ created  last-commit  license  stars

Agent Orchestration / Obsidian

  • AB Method (⭐181) by Ayoub Bensalah - A principled, spec-driven workflow that transforms large problems into focused, incremental missions using Claude Code's specialized sub agents. Includes slash-commands, sub agents, and specialized workflows designed for specific parts of the SDLC.\ created  last-commit  license  stars
  • Harness (⭐8.6k) by revfactory - A meta-skill that designs domain-specific agent teams, defines specialized agents, and generates the skills they use. Resources are in Korean but can produce high-quality English-language output.\ created  last-commit  license  stars
  • Project Workflow System (⭐330) by harperreed - A set of commands that provide a comprehensive workflow system for managing projects, including task management, code review, and deployment processes.\ created  last-commit  license  stars
  • RIPER Workflow (⭐91) by Tony Narlock - Structured development workflow enforcing separation between Research, Innovate, Plan, Execute, and Review phases. Features consolidated subagents for context-efficiency, branch-aware memory bank, and strict mode enforcement for guided development.\ created  last-commit  license  stars

Agent Orchestration / Ralph Wiggum

  • ralph-orchestrator (⭐3.1k) by mikeyobrien - Ralph Orchestrator implements the simple but effective "Ralph Wiggum" technique for autonomous task completion, continuously running an AI agent against a prompt file until the task is marked as complete or limits are reached. This implementation provides a robust, well-tested, and feature-complete orchestration system for AI-driven development. Also cited in the Anthropic Ralph plugin documentation.\ created  last-commit  license  stars

12. Awesome Go

Web Development / Web Frameworks

13. Free for Dev

APIs, Data, and ML

  • AnyHook - Inbound webhook relay: point a Stripe, GitHub or LINE bot webhook at it and it stores each event before delivering to your handler, retries automatically when your endpoint is down, and keeps a log you can replay from. Endpoints can be created from the API with no account. Free plan includes 3,000 events/month, 1 app, 3 retries and 3 days of retention, no credit card.

Awesome List Updated on Aug 06, 2026

2026-08-06 11:31:14

1. Awesome Mongodb

Libraries / C#/.NET

  • FluentStorage (⭐454) - .NET polycloud storage framework which provides a unified API across 15+ providers, including MongoDB GridFS

2. Awesome Preact

Contents / Components

  • I18n Micro (⭐246) - Lightweight Preact bindings for i18n-micro (hooks, context, and UI components).

3. Awesome Testing

Software / Visual Testing

  • Image Diff - Free, browser-based pixel diff tool for comparing two images and highlighting exactly what changed, with an adjustable sensitivity threshold. No upload, no sign-up.

4. Awesome Open Hardware

Projects / Automation, Manufacturing, and Robotics

5. Awesome Pixel Art

Tools / Editors

  • Draw! - Editor for creating tiny GIF animations. Open source and free, works in the browser.

6. Awesome Mac

Utilities / Cleanup and Uninstall

  • MacOSCleaner (⭐4) - Free, open-source macOS cleaner with disk analyzer, app uninstaller, and smart cleanup. Open-Source Software Freeware

7. Awesome Iot

Software / Middlewares

  • DeviceChain (⭐2) - Apache-2.0 self-hosted IoT platform written in Go and React. Multi-tenant microservices on Kubernetes, with MQTT, Sparkplug B and LwM2M ingest, TimescaleDB time-series storage, a CEL-based rule engine driving alarms and outbound connectors (webhooks, MQTT, Kafka, cloud queues), versioned dashboards, and GraphQL APIs. (Docs)

8. Free for Dev

Remote Desktop Tools

  • Parsec - Free for installation on unlimited number of devices(for personal use) and allows up to 20 connections to a single device at once. (great for gaming/low latency work)

Awesome List Updated on Aug 05, 2026

2026-08-05 11:27:55

1. Awesome Cli Apps

Development / Public localhost

  • ytunnel (⭐42) - Create and manage Cloudflare Tunnels with custom domains.

Productivity / Email

Utilities / Math

  • numr (⭐257) - Natural-language calculator with variables, units, currencies, and live exchange rates.

Files and Directories / Search

  • ygrep (⭐49) - Indexed code search backed by a local Tantivy full-text index.

AI / Agents

2. Awesome Playcanvas

Automotive / YouTube Playables

  • Garage 360 - 3D configurator for motorcross graphic kits.

3. Awesome Design Systems

Accessibility (a11y)

  • Nutilz Color Shades Generator - Generates a 50-950 tint/shade scale from any hex color and exports it as CSS variables, SCSS, or a Tailwind config.

Tools

  • CSS Variable Generator - Generate scoped CSS custom properties with light and dark theme pairs, plus SCSS, Less, and JSON design-token exports.

4. Awesome Lowcode

AI

  • Rebyte - Low-code AI employee platform for configuring agents with prompts, MCP tools, permissions, APIs, and shareable Sites/Blocks.

5. Awesome Python

Projects / Serialization

  • msgspec (⭐4k) - A fast serialization and validation library with built-in support for JSON, MessagePack, YAML, and TOML.

6. Awesome Zig

Fundamentals / Linters

7. Magictools

Graphics / Vector/Image Editor

  • 🎉 Palette Extractor - Extract the exact colour palette from any sprite or image in the browser and export it as GIMP/Aseprite .gpl, Lospec .hex, CSS, JSON or a PNG strip. Runs locally, nothing is uploaded. Source (⭐0)

8. Awesome Tmux

Cheat Sheets

Configuration

Tools and session management

  • tuimux (⭐6) A fast Rust TUI for everything tmux, with full CRUD support.
  • tmux-pocket-pane (⭐0) Easily toggle named side panes in tmux. Launch on demand, hide when done, recall with the same shell session intact.

Status Bar

  • tmux-claude-status (⭐2) Show live Claude Code session status per window: animated badges, waiting durations and global summary.

Plugins

  • tmux-agent-view (⭐0) Claude Code-style agent view — jump to any AI agent pane (Claude Code, Codex, aider) across sessions from a popup picker, grouped by live state, with screen preview. No hooks or daemon.
  • tmux-palette (⭐394) Raycast-style command palette with fuzzy search, custom commands, themes, and aliases via JSON config.

Books / Development and testing

9. Awesome Neovim

Colorscheme / Markdown and LaTeX

Icon / Cursorline

10. Awesome Polars

Official news

Official documentation

11. Awesome LaTeX

LaTeX-focused

  • TeX64 – Native macOS LaTeX editor with AI-powered error fixing, equation OCR, live PDF preview, and structured math editing. mac

Online editors

  • Androma TeX Editor - Collaborative LaTeX editor integrated into a mathematics wiki, with issue tracking, pull requests, and WASM-based compilation.
  • LetX - Online editor with real-time multi-author collaboration (CRDT), bidirectional SyncTeX, and 1000+ journal/thesis templates.
  • Sarmate.net - Online editor with 5 built-in WYSIWYG helpers (TikZ figures, probability trees, sign tables, color boxes, LaTeX tables) that auto-generate clean LaTeX code. Cloud compilation, real-time collaboration, free tier.

Language Servers

  • TexLab (⭐2k) - Language server for LaTeX and BibTeX with completion, definitions, references, rename, formatting, and forward search. foss

Quality Check Tools

  • Badness (⭐53) - Error-tolerant LaTeX linter with rich diagnostics and source snippets (also a formatter and language server). foss
  • latex2arxiv (⭐4) - CLI tool that prepares a LaTeX project for arXiv submission: prunes unreachable files, strips draft markup, validates the bibliography, and catches desk-rejection errors before upload. Also available as a GitHub Action and MCP server for AI agents. windowslinuxmacfoss

Formatters

  • latexindent - Perl script that indents and reformats LaTeX documents, highly configurable through YAML settings and shipped with the major TeX distributions. foss
  • tex-fmt (⭐845) - Extremely fast LaTeX formatter written in Rust, with sensible defaults and minimal configuration. foss

Graphics / TikZ

  • OpenTikZ (⭐239) - Community library of copyable TikZ icons and editable, parametric templates for academic conceptual diagrams (system/architecture, pipelines, flowcharts); CC0 content, with a Claude Code skill to edit figures on request. foss

12. Awesome Zsh Plugins

Plugins / superconsole - Windows-only

  • ev (⭐0) - ev is a ZSG / Oh My Zsh plugin for progressive command autocomplete: a selectable suggestion list under your prompt that deepens as you type - commands → subcommands → flags. Use it as a zsh-autosuggestions (⭐36k) alternative when you want a navigable list (not only ghost text), including git, gh, docker, and other CLI subcommands.

Themes / superconsole - Windows-only

  • cobalt-spark (⭐19) - A compact, low-noise theme designed to stay out of the way during everyday terminal work. Includes abbreviated paths and concise indicators for Git state, virtualenvs, nested shells and background jobs.

13. Public Apis

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

14. Awesome Mac

Developer Tools / Developer Utilities

  • GraphCode - Runs coding-agent sessions as a graph, where each node is a live terminal you can attach to mid-run and each edge a hand-off that fires unattended. Claude Code, Copilot CLI, Codex. Freeware

AI Tools / Other Tools

  • BitFun - Open-source AI agent that gives each task its own interactive workspace with chat linked to live state. Open-Source Software Freeware

15. Awesome Claude Code

Memory & Context Persistence / Ralph Wiggum

  • claude-context-optimizer (⭐86) by Egor Fedorov - Claude Code plugin that tracks token usage, identifies wasted context, and saves money on unnecessary API costs, by tracking which information is actually being reused later. Visuals include heatmaps, ROI reports, budget alerts, efficiency scores, git-aware suggestions - all local, zero config. The design is still somewhat exploratory, but it shows promise.\ created  last-commit  license  stars

16. Awesome Mqtt

Brokers

  • Keel MQTT Gateway (⭐1) - Distributed, cloud-native MQTT broker in Go built on mochi-mqtt, using Raft for strongly-consistent session ownership and ACL, with a gossip-backed routing table (Olric).

17. Free for Dev

Design and UI

  • SVGicons.com - Free search engine for 312K+ open-source SVG icons with ready-to-use SVG, React, Vue, HTML, and CSS code.

18. Awesome Selfhosted

Software / Network Utilities

  • PlugNPiN - Automatically scrapes containers with specific labels and creates local DNS/CNAME entries in Pi-Hole/AdGuard Home and proxy hosts in Nginx Proxy Manager. (Source Code (⭐66)) GPL-3.0 Docker

Software / Task Management & To-do Lists

  • Our Shopping List - Simple shared list application including shopping lists and any other small todo-list that needs to be used collaboratively. (Demo) AGPL-3.0 Docker

19. Awesome Integration

Projects / AI Gateway

  • agentgateway (⭐4.2k) (⭐4.2k) - An open-source data plane for agentic AI connectivity, providing security, observability, and governance for agent-to-tool (MCP) and agent-to-agent (A2A) communication.
  • Envoy AI Gateway (⭐1.9k) (⭐1.9k) - An open-source gateway built on Envoy Proxy to manage request traffic from application clients to GenAI services with unified API access and usage limits.
  • MCPJungle (⭐1.1k) (⭐1.2k) - A self-hosted MCP gateway and registry that centralises multiple MCP servers behind one endpoint for AI agents.

Projects / API Design

  • Kiota (⭐3.7k) (⭐3.8k) - A command-line generator from Microsoft that turns an OpenAPI description into a lightweight, strongly typed API client in many languages.

Projects / API Gateway

  • Higress (⭐9k) (⭐9k) - A next-generation cloud-native gateway based on Envoy and Istio, offering high performance, easy-to-use, and rich plugin extensibility.
  • kgateway (⭐5.6k) (⭐5.6k) - A CNCF Envoy-based, Kubernetes-native API gateway built around the Kubernetes Gateway API, and the successor to the Gloo open-source project.

Projects / Change Data Capture

  • IBM Data Replication - Enterprise CDC solution that captures and delivers data changes with minimal impact on source systems and low latency.
  • Sequin (⭐2.1k) (⭐2.2k) - PostgreSQL change data capture platform that streams row-level changes to Kafka, SQS, Redis, NATS, RabbitMQ, HTTP endpoints, and search indexes with exactly-once processing.

Projects / Data Integration

  • dlt (⭐5.7k) (⭐5.7k) - Open-source Python library for building data pipelines as code, with schema evolution and incremental loading out of the box.

Projects / Integration Platform as a Service

  • Boomi Enterprise Platform - Cloud-native, intelligent platform that connects systems effortlessly while automating integration processes.
  • Camel K (⭐926) (⭐925) - Lightweight Kubernetes-native integration platform built on Apache Camel that runs integration routes directly on Kubernetes and OpenShift as cloud-native serverless services.
  • Tray.ai - Low-code automation platform with a drag-and-drop interface, making it simple to build scalable integrations and workflows.

Projects / Message Broker

Projects / Schema Registry

Projects / Stream Processing

  • Numaflow (⭐2.8k) (⭐2.8k) - Kubernetes-native, serverless platform for massively parallel stream and data processing, with exactly-once semantics and language-agnostic user code.

Resources / Data Formats

  • Apache Fory (⭐4.4k) (⭐4.4k) - Fast multi-language serialization framework that uses just-in-time compilation and zero-copy techniques, with a cache-friendly row format. Formerly named Apache Fury.