Collection of images used in my project README files.
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
| openssl genrsa -out jwt-private.pem 2048 | |
| openssl rsa -in jwt-private.pem -pubout -out jwt-public.pem |
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
| #!/usr/bin/env bash | |
| file_with_anchor_text=$1 | |
| file_with_new_content=$2 | |
| BEGIN_TEXT='<!-- BEGIN anchor text --!>' | |
| END_TEXT='<!-- END anchor text --!>' | |
| function get_line_number() { | |
| local text=$1 |
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
| # Show contents of MANIFEST.MF in a jar | |
| unzip -q -c target/{name}.jar META-INF/MANIFEST.MF | |
| # List files in a jar | |
| jar -tf target/{name}.jar |
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
| #!/usr/env bash | |
| brew install openblas | |
| brew install lapack | |
| # Set the following environment variables so that the build tools can find the libraries. | |
| # openblas | |
| export LDFLAGS="-L/usr/local/opt/openblas/lib $LDFLAGS" | |
| export CPPFLAGS="-I/usr/local/opt/openblas/include $CPPFLAGS" | |
| export PKG_CONFIG_PATH="/usr/local/opt/openblas/lib/pkgconfig $PKG_CONFIG_PATH" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Use this workflow only when work can be split into independent phases with clear file scope, explicit interface or data contracts, and low coupling. Otherwise keep the work local.
- Plan (Main): Break the task into phases only when each phase has a clear goal, strict file scope, explicit contract, and validation criteria.
- Handoff (Main): For each phase, define allowed files, forbidden files, required skeletons/interfaces/stubs/contracts, and acceptance checks.
- Execute (Subagent): Implement only the assigned phase within the given scope and contract, then return a clean diff, summary, and validation status.
- Review (Main): Check for correctness, contract drift, scope violations, unnecessary complexity, and style consistency. If valid, simplify and integrate.
- Re-plan (Main): If the handoff is insufficient or a blocker is architectural, stop and re-plan. Do not allow workaround architecture.
- Finalize (Main): Preserve durable highlevel decisions in project documen
OlderNewer