You are working in a loop. Keep you tasks small and scoped. Stop when you're done, you'll loop and have the opportunity to work on it again. You are smart and capable of inference, guidance is good enough for you. Write progress as guided.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Ralph Loop Reference Guide | |
| Conceptual guide for autonomous AI coding loops. | |
| --- | |
| ## Core Philosophy | |
| ### The Problem: Context Rot |
- Signup up at z.ai (use my code here)
- Signup at https://sprites.dev/
- Create and sprite
sprite create my-sprite - Auth with github:
gh auth - Clone your repo:
gh repo clone ... - Logout of gh:
gh auth logout - Setup z.ai with an API key
npx @z_ai/coding-helper - Copy the ralph script:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Ralph Wiggum Loop - Standalone Claude Code TUI Runner | |
| # Run this from your terminal - it will open/close Claude Code repeatedly | |
| set -e | |
| # Get the prompt from arguments | |
| PROMPT="$*" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # The Elixir Library Documentation Manifesto | |
| Principles from direct response copywriting adapted for technical library documentation. These aren't theories—they're proven principles for getting developers to understand, adopt, and successfully use your library. | |
| --- | |
| ## The ten foundational laws of library documentation | |
| **1. You cannot create need—only channel it.** Developers arrive with existing problems. Your job is to show how your library solves what they're already trying to solve. Research the actual Stack Overflow questions, ElixirForum threads, and GitHub issues that lead people to need your solution. Use their exact terminology. |
I hereby claim:
- I am bradleygolden on github.
- I am bgolden (https://keybase.io/bgolden) on keybase.
- I have a public key ASD_eWpI2-fUKRyuFT1SvQwORq-ypFeIyxuFUsVQd_KUwgo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| #run using $ bash 10000 (or any other number you choose) | |
| #change the url to the url where your server is serving files | |
| #run in multiple terminal sessions to force simulatenous requests | |
| n=$1 | |
| j=0 | |
| i=0 | |
| while [ $i -lt $n ]; do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # to run: $ bash <ip> <port> | |
| host=$1 | |
| port=$2 | |
| while read LINE; do | |
| if [ ! ${LINE:0:1} == "#" ] | |
| then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # run using sh md5_check <directory to check> <ip> <port> <md5-type> | |
| # example: | |
| # OSX: $ bash md5_check.sh WWW localhost 8888 md5 | |
| # LINUX: $ bash md5_check.sh WWW localhost 8888 md5sum | |
| # DO NOT USE SLASHES, ONLY USE THE DIRECTORY NAME |
NewerOlder