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
--- The block manipulator peripheral that will be used to work with the other | |
--- blocks. | |
local manipulator = nil | |
--- The RFTools Crafter Tier 3 peripheral. | |
local crafter = nil | |
--- The Storage Drawer peripheral that will store overflowing items. | |
local overflow_drawer = nil |
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 { createInterface } = require('node:readline/promises'); | |
const { request } = require('node:https'); | |
/** | |
* The user agent to use when making requests to the YouTube API. | |
*/ | |
const USER_AGENT = process.env['YOUTUBE_USER_AGENT'] ?? 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36'; | |
/** | |
* The endpoint to call to perform operations on playlist items. |
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
{ | |
"bench": { | |
"include": ["./bench/*.ts", "./bench/**/*.ts"] | |
}, | |
"compilerOptions": { | |
"allowUnreachableCode": false, | |
"allowUnusedLabels": false, | |
"exactOptionalPropertyTypes": true, | |
"noErrorTruncation": true, | |
"noFallthroughCasesInSwitch": true, |
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
{ | |
"$schema": "https://raw.githubusercontent.com/DanielGavin/ols/master/misc/odinfmt.schema.json", | |
"brace_style": "_1TBS", | |
"character_width": 80, | |
"convert_do": false, | |
"exp_multiline_composite_literals": false, | |
"indent_cases": false, | |
"inline_single_stmt_case": false, | |
"newline_limit": 1, | |
"newline_style": "LF", |
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
#-- Project Settings | |
PROJECT_NAME := # TODO: Fill this in | |
PROJECT_DESCRIPTION := # TODO: Fill this in | |
PROJECT_VERSION := # TODO: Fill this in | |
SOURCE_DIR := ./src/ | |
TESTS_DIR := ./tests/ | |
BUILD_DIR := ./build/ | |
#-- Target Configuration | |
EXE_NAME := # TODO: Fill this in |
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
git remote prune origin && git branch --merged | sed -rne '/(^\*|main$)/d;p' | xargs -n1 git branch -d |
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
unstable_features = true | |
edition = "2021" | |
newline_style = "Unix" | |
error_on_line_overflow = false | |
error_on_unformatted = false | |
brace_style = "SameLineWhere" | |
control_brace_style = "AlwaysSameLine" | |
max_width = 80 | |
comment_width = 80 | |
format_code_in_doc_comments = true |
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
{ | |
"version": 1, | |
"mods": [ | |
{ | |
"label": { | |
"distribution_platform": 1, | |
"id": "2493100777", | |
"title": "Pip Plant Overlay", | |
"version": 1645431313 | |
}, |
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
--- | |
Language: Cpp | |
# BasedOnStyle: LLVM | |
AccessModifierOffset: -4 | |
AlignAfterOpenBracket: Align | |
AlignArrayOfStructures: None | |
AlignConsecutiveMacros: None | |
AlignConsecutiveAssignments: None | |
AlignConsecutiveBitFields: None | |
AlignConsecutiveDeclarations: None |
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
module.exports = { | |
arrowParens: "always", | |
bracketSameLine: true, | |
bracketSpacing: false, | |
endOfLine: "lf", | |
htmlWhitespaceSensitivity: "css", | |
jsxSingleQuote: true, | |
overrides: [ | |
{ | |
files: [ |