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
| # START http://boxstarter.org/package/nr/url? | |
| $Boxstarter.RebootOk=$true | |
| $Boxstarter.AutoLogin=$true | |
| # Windows Stuff | |
| Disable-MicrosoftUpdate | |
| Disable-BingSearch | |
| Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -DisableOpenFileExplorerToQuickAccess -EnableShowFileExtensions -EnableShowFullPathInTitleBar -EnableShowRecentFilesInQuickAccess -EnableShowFrequentFoldersInQuickAccess -EnableExpandToOpenFolder | |
| Update-ExecutionPolicy RemoteSigned |
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
| FUNCTION lf AS C (count AS N = 1) | |
| dim return as c = "" | |
| while count | |
| *concat(return,chr(10)) | |
| count = count - 1 | |
| end while | |
| lf = return | |
| END FUNCTION | |
| function hmacsha256 as b (message as c, key as b) |
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
| <!doctype html> | |
| <title>Site Maintenance</title> | |
| <style> | |
| body { text-align: center; padding: 150px; } | |
| h1 { font-size: 50px; } | |
| body { font: 20px Helvetica, sans-serif; color: #333; } | |
| article { display: block; text-align: left; width: 650px; margin: 0 auto; } | |
| a { color: #dc8100; text-decoration: none; } | |
| a:hover { color: #333; text-decoration: none; } | |
| </style> |
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
| declare interface Headers { | |
| name: string; | |
| value: string; | |
| } | |
| declare interface CommonHeaders { | |
| date?: string; | |
| from?: string[]; | |
| messageId?: string; | |
| subject?: string; |
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
| ######################### | |
| # retroarch.yml | |
| ######################### | |
| # | |
| # This container runs RetroArch | |
| services: | |
| #################### | |
| lutris: | |
| depends_on: |
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
| /* eslint-disable no-await-in-loop */ | |
| import { writeFile } from "node:fs/promises"; | |
| import { tmpdir } from "node:os"; | |
| import { join } from "node:path"; | |
| import type { Readable } from "node:stream"; | |
| import { encrypt, type EncryptOptions } from "node-qpdf2"; | |
| import { getFileFromS3, parseS3Uri, uploadFilePathToS3 } from "./aws.s3.js"; |