Skip to content

Instantly share code, notes, and snippets.

@kfird214
kfird214 / upload-underdogs.ps1
Created November 11, 2024 11:10
Oculus Upload underdogs
# https://securecdn.oculus.com/binaries/download/?id=8172392066201260&access_token=OC%7C1196467420370658%7C
# make sure .bin directory exists
if (-not (Test-Path ".bin")) {
New-Item -ItemType Directory -Path ".bin"
}
# install ovr-platform-util from url into local cwd/.bin
$ovr = ".bin/ovr-platform-util.exe"
if (-not (Test-Path $ovr)) {
@kfird214
kfird214 / zig-language-server-configuration.schema.json
Created November 16, 2022 21:22
zig languagne server configurations json schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://example.com/product.schema.json",
"title": "zls.json",
"description": "zig language server configuration",
"type": "object",
"properties": {
"enable_snippets": {
"type": "boolean",
"default": false,