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 script that exports your currrent fleet to a script that | |
| * replaces your current fleet with the exported fleet. | |
| * | |
| * by R26 | |
| */ | |
| console.log(`JSON.parse(atob("${btoa(JSON.stringify(commander.buildBar))}")).forEach((e, i) => buildBar.setSpec(i, e)); control.savePlayer()`); |
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
| /* | |
| * Enables scrolling on fleet tab buttons | |
| * | |
| * Also change it so tabs can be deleted/renamed by clicking the buttons | |
| * instead of dragging. | |
| * | |
| * by R26 | |
| */ | |
| (function() { |
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 script that lets you press f when dragging a part to flip it. | |
| * Only works on your own client. | |
| * | |
| * by R26 | |
| */ | |
| window.flipPartHooks = window.flipPartHooks || { | |
| design_onkeyup: designMode.onkeyup, | |
| design_rotatePart: designMode.rotatePart, | |
| design_draw: designMode.draw, |
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/sh | |
| # usage: prune-backup [-f] files... | |
| # By default the script prints files to be deleted. Use -f to actually delete. | |
| # Assuming the file names have format of %Y-%m-%dT* | |
| # exit on failure, disable glob | |
| set -ef | |
| filter_date() { | |
| format="$1" |
OlderNewer