Ignore this. Use my patch instead idovitz/amdisp4#3
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
| ## CLAUDE | |
| #export ANTHROPIC_BASE_URL="http://localhost:11434" | |
| #export ANTHROPIC_AUTH_TOKEN="ollama" | |
| # Launch Claude Code targeting your new Spark model | |
| #claude --model spark-coder | |
| #export ANTHROPIC_BASE_URL="http://192.168.1.229:11434" | |
| #export ANTHROPIC_AUTH_TOKEN="ollama" | |
| # Launch Claude Code targeting your new Spark model |
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
| FROM nvcr.io/nvidia/pytorch:25.10-py3 | |
| # Allow system-wide installs for the few things we need | |
| ENV PIP_BREAK_SYSTEM_PACKAGES=1 | |
| # Install only the system-level drivers for OpenCV | |
| RUN apt-get update && apt-get install -y libgl1 libglib2.0-0 git ffmpeg && rm -rf /var/lib/apt/lists/* | |
| # Install only the missing AI libs. | |
| RUN python3 -m pip install --no-cache-dir \ |
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/env python3 | |
| import leglight | |
| import click | |
| allLights = leglight.discover(2); | |
| light = allLights[0]; | |
| __author__ = "kinncj" | |
| @click.group() |
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
| (function(){ | |
| // Run at console from the Stale Branches tab. | |
| var rawForms = document.querySelectorAll('.js-branch-destroy > button'), | |
| forms = Array.from(rawForms); | |
| console.log(forms); | |
| forms.forEach(function(form){ | |
| console.log(form.click()); | |
| }); | |
| })(); |
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
| # ~/.bash_profile | |
| # ... | |
| # Docker cleanup | |
| dcleanup(){ | |
| docker rm -v $(docker ps --filter status=exited -q 2>/dev/null) 2>/dev/null | |
| docker rmi $(docker images --filter dangling=true -q 2>/dev/null) 2>/dev/null | |
| } | |
| # Git cleanup | |
| gitcleanup() { |
NewerOlder