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
| ; Optimized start routine: Provides a single drop-in script | |
| ; for an optimized startup routine. Faster, safer, & easier | |
| ;===== machine: A1 Mini =================================== | |
| ;===== date: 20251013 ===================================== | |
| ;===== version: 1.3.3 ===================================== | |
| ;===== modified by: Cascade Media LLC ===================== | |
| ;===== changelog: ========================================= | |
| ;===== 1.3.3 - Enabled quick vibration compensation | |
| ;===== 1.3.2 - Disabled vibration compensation | |
| ; - Shows signs of underextrusion when enabled |
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
| /** | |
| * A straightforward Node benchmarking script for performance testing | |
| * using a similar method to jsPerf. | |
| * | |
| * Usage: `node ./performance.js` | |
| * | |
| * Can support any number of tests, with optional startup and teardown. | |
| */ | |
| const Benchmark = require('benchmark'); |
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
| # Option defaults | |
| OPT="value" | |
| # getopts string | |
| # This string needs to be updated with the single character options (e.g. -f) | |
| opts="fvo:" | |
| # Gets the command name without path | |
| cmd(){ echo `basename $0`; } |