YouTube: Error, panic or unreachable - Loris Cro
You probably never wrote a program that handles all errors correctly
- Zig Errors Nice! No Payloads. very little overhead.
# 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)) { |
YouTube: Error, panic or unreachable - Loris Cro
You probably never wrote a program that handles all errors correctly
{ | |
"$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, |