请先帮我安装并跑通 Follow Builders 项目。
安装来源: https://github.com/zarazhangrui/follow-builders
目标:
- 安装 Follow Builders;
- 使用项目默认的信息源;
- 使用项目默认的抓取逻辑;
- 生成一次原始 feed 数据;
| User packages: | |
| npm:pi-mcp-adapter | |
| /usr/local/lib/node_modules/pi-mcp-adapter | |
| npm:pi-web-access | |
| /usr/local/lib/node_modules/pi-web-access | |
| npm:pi-btw | |
| /usr/local/lib/node_modules/pi-btw | |
| npm:pi-rtk-optimizer | |
| /usr/local/lib/node_modules/pi-rtk-optimizer | |
| npm:@marckrenn/pi-sub-bar |
请先帮我安装并跑通 Follow Builders 项目。
安装来源: https://github.com/zarazhangrui/follow-builders
目标:
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.
| Key Sublime Text 3.2.1 Build 3207 | |
| ----- BEGIN LICENSE ----- | |
| Member J2TeaM | |
| Single User License | |
| EA7E-1011316 | |
| D7DA350E 1B8B0760 972F8B60 F3E64036 | |
| B9B4E234 F356F38F 0AD1E3B7 0E9C5FAD | |
| FA0A2ABE 25F65BD8 D51458E5 3923CE80 | |
| 87428428 79079A01 AA69F319 A1AF29A4 | |
| A684C2DC 0B1583D4 19CBD290 217618CD |
We'll share session notes in QQ group 367375164 2 PM on weekdays.
| wget -c --no-cookies --no-check-certificate --header "Cookie: oraclelicense=accept-securebackup-cookie" https://download.oracle.com/otn-pub/java/jdk/12.0.2+10/e482c34c86bd4bf8b56c0b35558996b9/jdk-12.0.2_linux-x64_bin.tar.gz |
We'll share session notes in QQ group 367375164 5 PM on weekdays.
Schedule:
New Feature
Foundation & Core Frameworks(UIKit etc.)
| # Get decrypted kernelcache | |
| # URL for iOS 10 Beta 1 for iPhone 6s taken from http://pastebin.com/FRMfanmT | |
| wget -q http://apple.co/28R9rhS -O ios10beta1-iphone6s.zip | |
| mkdir ios10beta1 | |
| unzip -q ios10beta1-iphone6s.zip -d ios10beta1 | |
| cd ios10beta1 | |
| wget -q http://nah6.com/%7Eitsme/cvs-xdadevtools/iphone/tools/lzssdec.cpp | |
| g++ -o lzssdec lzssdec.cpp | |
| ./lzssdec -o 439 < AssetData/boot/kernelcache.release.n71 >kernelcache.decrypted # 439 is offset byte count to 0xFFCFFAEDFE header | |
| xxd kernelcache.decrypted | head -1 |
| // moving 71b8026 from features/project-part-2 to features/project-part-1 | |
| git checkout features/project-part-2 | |
| git revert 71b8026 | |
| // for sanity check can run git diff to between branched for particular file(s) | |
| git difftool features/project-part-2..features/project-part-1 -- ./website/app/controllers/ExampleController.php | |
| git push origin features/project-part-2 | |
| git checkout features/project-part-1 | |
| git cherry-pick 71b8026 |