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
| """This script removes solutions from a given notebook and saves it as a new notebook. | |
| Input: a Jupyter notebook with solutions | |
| The solutions are marked according to the nbgrader's format: | |
| ### BEGIN SOLUTION | |
| ... | |
| ### END SOLUTION | |
| Output: a path to a new notebook without solutions.""" |
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 | |
| set -euo pipefail | |
| # howto - Natural language to shell command using Claude Code | |
| MODEL="haiku" | |
| while getopts "m:" opt; do | |
| case $opt in | |
| m) MODEL="$OPTARG" ;; |
OlderNewer