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
| # vi: ft=bash | |
| #!/bin/bash | |
| TOKEN="your_token" | |
| MODEL="text-davinci-003" | |
| MAX_TOKENS=500 | |
| TEMPERATURE="0.5" | |
| STOP_WORD="Camelot" | |
| # Use the "hear" CLI tool (w/ Mac's built-in voice recognition) |
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 | |
| # A simple backup script for kvm | |
| # Original source: http://soliton74.blogspot.no/2013/08/about-kvm-qcow2-live-backup.html | |
| # | |
| # Author: Luca Lazzeroni <luca.lazzeroni74@gmail.it> | |
| # Web: http://soliton74.blogspot.it | |
| # | |
| # Patched by: Tim Miller Dyck | |
| # | |
| # Patched by: Runar Ingebrigtsen <runar@voit.no> |