Skip to content

Instantly share code, notes, and snippets.

View Bwc9876's full-sized avatar
🚀

Ben C Bwc9876

🚀
View GitHub Profile
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Celestial Body Schema",
"type": "object",
"description": "Describes a celestial body to generate",
"additionalProperties": false,
"required": [
"name"
],
"properties": {
@Bwc9876
Bwc9876 / bootstrap.sh
Last active August 31, 2023 00:29
NuShell Bootstrap
# Bootstraps all tools
cargo install nu ripgrep starship bat
export PATH="$PATH:~/.cargo/bin"
NU_VERSION=$(nu --version)
CONF_PATH=$(nu -c "echo \$nu.config-path")
ENV_PATH=$(nu -c "echo \$nu.env-path")
CONF_DIR=$(dirname "$CONF_PATH")
@Bwc9876
Bwc9876 / alert.json
Last active February 21, 2024 23:11
Test Alert
{
"enabled": true,
"severity": "info",
"message": "The third Outer Wilds Modding jam will be starting soon! Win cash prizes!",
"url": "https://outerwildsmods.com/jam/jul-2023/",
"urlLabel": "Read More"
}
{
"modManager": {
"version": "v1.17.0",
"downloadUrl": "https://github.com/ow-mods/ow-mod-manager/releases/download/v1.17.0/OuterWildsModManager-Portable.zip",
"zipDownloadUrl": "https://github.com/ow-mods/ow-mod-manager/releases/download/v1.17.0/OuterWildsModManager-Portable.zip",
"installerDownloadUrl": "https://github.com/ow-mods/ow-mod-manager/releases/download/v1.17.0/OuterWildsModManager-Installer.exe",
"downloadCount": 98424
},
"releases": [
{
@Bwc9876
Bwc9876 / !table-of-contents.md
Last active December 12, 2021 19:53
Help with various math commands in Qwerty
@Bwc9876
Bwc9876 / pages-deploy.yml
Last active October 3, 2021 17:37
Github Workflow that builds a unity game to WebGL and then deploys to pages
# ======================== Build To Pages ========================
# Take the Unity project in a repo and build it to WebGL
# Then, deploy it to github pages
#
# By: https://github.com/bwc9876
# ================================================================
name: Build To Pages
on: