Option | Value |
---|---|
/ResetRoomData |
bool |
/ShowSocialLinks |
bool |
/WindowY |
int |
/SkipVideoCardTest |
bool |
/SteamTrackpadMultiplier |
float |
/LastUpdateDate |
std::string |
/ZPassCullRadius |
float |
/DirectLoadCheckpoint |
bool |
This file contains 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
# Distributed under the MIT/Apache 2.0/zlib License. | |
# Author: Tin Švagelj (Caellian) <[email protected]> | |
#[[.md: | |
# DependentOption | |
```cmake | |
dependent_option( | |
<option> "<help_text>" [<initial_value>] | |
[DEPENDS <conditions>] |
This file contains 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
/* | |
* Copyright 1993-2024 NVIDIA Corporation. All rights reserved. | |
* | |
* NOTICE TO USER: | |
* | |
* This source code is subject to NVIDIA ownership rights under U.S. and | |
* international Copyright laws. Users and possessors of this source code | |
* are hereby granted a nonexclusive, royalty-free license to use this code | |
* in individual and commercial software. | |
* |
This file contains 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
type ResultObject<Ok, Err> = | |
| { ok: true; value: Ok } | |
| { ok: false; value: Err }; | |
export class Result<Ok, Err> { | |
private valueIsOk: boolean; | |
private value: Ok | Err; | |
constructor(value: ResultObject<Ok, Err>) { | |
this.valueIsOk = value.ok; | |
this.value = value.value; |
This file contains 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
pino({ | |
mixin: (base, level, logger) => { | |
const result = {}; | |
// allow manually specifying values | |
// for instance, error might want to point to a different file | |
if (base.file == null) { | |
let trace = callSite("project_name/index.js", "Pino.LOG"); | |
Object.assign(result, { | |
method: trace.method, | |
...trace.path, |
This file contains 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
/** | |
* @typedef {object} LCPath | |
* @property {"eval" | string} file | |
* @property {number} [line] | |
* @property {number} [column] | |
*/ | |
/** | |
* Parses a line-column path (e.g. "/some/file.txt:2:12"), into a computer | |
* friendly format. |
This file contains 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
#include <stdbool.h> | |
#include <stdint.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#if __has_include(<TargetConditionals.h>) | |
#include <TargetConditionals.h> | |
#endif |
This file contains 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
find_package(Git QUIET) | |
if(GIT_FOUND AND EXISTS "${CMAKE_SOURCE_DIR}/.git") | |
option(INIT_SUBMODULES "Check submodules during build" ON) | |
if(INIT_SUBMODULES) | |
execute_process(COMMAND ${GIT_EXECUTABLE} submodule update --init --recursive | |
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | |
RESULT_VARIABLE GIT_SUBMOD_RESULT) | |
if(GIT_SUBMOD_RESULT EQUAL "0") | |
message(STATUS "Submodules initialized") | |
else() |
This file contains 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
$tones: "joke" "/j" "joking", "half-joke" "/hj" "half-joking", "sarcasm" "/s" "sarcastic", "genuine" "/g" "genuine", "serious" "/srs" "serious", "non-serious" "/nsrs" "non-serious", "positive" "/pos" "positive connotation", "neutral" "/neu" "neutral connotation", "negative" "/neg" "negative connotation", "copypasta" "/c" "copypasta", "lyrics" "/ly" "lyrics", "light-hearted" "/lh" "light-hearted", "not-mad" "/nm" "not mad", "nobody-here" "/nbh" "nobody here", "rhetorical" "/rh" "rhetorical question", "teasing" "/t" "teasing", "metaphore" "/m" "metaphorically", "literal" "/li" "literally", "hyperbole" "/hyp" "hyperbole", "fake" "/f" "fake" | |
span[data-tone] | |
display: inline | |
position: relative | |
&:before | |
display: inline-block | |
width: min-content | |
padding: 0 1ch | |
background: hsl(0,0%,15%) |
NewerOlder