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
| // ==UserScript== | |
| // @name Screeps Room Bookmarks | |
| // @namespace https://screeps.com/ | |
| // @version 1.0.0 | |
| // @author Mike Lyons, frenchie4111 | |
| // @match https://screeps.com/a/* | |
| // @run-at document-idle | |
| // @grant GM_getValue | |
| // @grant GM_setValue | |
| // ==/UserScript== |
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
| const fs = require( 'fs' ); | |
| const AWS = require( 'aws-sdk' ), | |
| moment = require( 'moment' ), | |
| video_stitch = require( 'video-stitch' ), | |
| ffmpeg = require( 'fluent-ffmpeg' ); | |
| const start_date = moment().subtract( 1, 'minutes' ).toDate(); | |
| const end_date = moment().toDate(); |
OlderNewer