| Project Name | project.yaml | maintainers.yaml | Maintainer Count | SECURITY.md | CONTRIBUTING.md | GOVERNANCE.md | Warning |
|---|---|---|---|---|---|---|---|
| Aeraki Mesh | project.yaml | maintainers.yaml | 7 | ||||
| Bank-Vaults | project.yaml | maintainers.yaml | 10 | SECURITY.md | |||
| BFE | project.yaml | maintainers.yaml | 1 | SECURITY.md | |||
| bpfman | project.yaml | [mainta |
A pattern for building personal knowledge bases using LLMs.
This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.
Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.
| schema_version: v1.0 | |
| name: | |
| homepage_url: | |
| logo: | |
| description: | |
| crunchbase: | |
| twitter: | |
| release_url: | |
| # extra, mirrors landscape extra | |
| config: |
| #!/usr/bin/env python3 | |
| """ | |
| GitHub Notifications Cleanup Script | |
| Fetches all GitHub notifications, checks if their associated issues/PRs are closed/merged, | |
| and marks them as done by deleting them via the GitHub API. | |
| """ | |
| import argparse | |
| import logging | |
| import os |
- Edit the file at
/Library/Backblaze.bzpkg/bzdata/bzexcluderules_editable.xml. - Add these rules inside the
bzexclusionstag:
<!-- Exclude node_modules. -->
<excludefname_rule plat="mac" osVers="*" ruleIsOptional="t" skipFirstCharThenStartsWith="users/" contains_1="/node_modules/" contains_2="*" doesNotContain="*" endsWith="*" hasFileExtension="*" />
<excludefname_rule plat="mac" osVers="*" ruleIsOptional="t" skipFirstCharThenStartsWith="users/" contains_1="/.git/" contains_2="*" doesNotContain="*" endsWith="*" hasFileExtension="*" />| # Usage: | |
| # 1) Ctr+S downloads page to ~/Desktop/books.html | |
| # 2) Run script | |
| # 3) Find your books in /tmp/humble_books | |
| # 4) Read them | |
| # 5) Profit | |
| cat ~/Desktop/books.html | | |
| grep "https://dl.humble.com" | | |
| sed -n -E 's/.data-web\=\"(https://dl.humble.com/([.]+).([a-z]+)?["]+)./\1 \2 \3/p' | | |
| sed 's/&/&/g' > /tmp/humble_books_list && cat /tmp/humble_books_list | |
| #!/bin/bash | |
| # node-reinstall | |
| # credit: | |
| # http://stackoverflow.com/a/11178106/2083544 | |
| # https://gist.github.com/brock/5b1b70590e1171c4ab54 | |
| ## program version | |
| ## Update versions accordingly. https://github.com/creationix/nvm/releases | |
| VERSION="0.31.0" |
| { config, lib, pkgs, ... }: | |
| with lib; | |
| { | |
| imports = [ | |
| # ISO image | |
| <nixpkgs/nixos/modules/installer/cd-dvd/iso-image.nix> | |
| # Hardware support similar to installer Live CD | |
| <nixpkgs/nixos/modules/profiles/all-hardware.nix> |