Skip to content

Instantly share code, notes, and snippets.

View neogeek's full-sized avatar
👋
Open for work.

Scott Doxey neogeek

👋
Open for work.
View GitHub Profile
@neogeek
neogeek / README.md
Created February 14, 2022 15:26
Automatic Code Formatting in Rider

Automatic Code Formatting in Rider

.editorconfig

For this to work correctly across multiple computers and developers, each repo must have an .editorconfig file that determines what the code looks like when formatted. For an example, see the repo linked below.

https://github.com/neogeek/csharp_editorconfig

Context Menu Commands

@neogeek
neogeek / serve-unity-webgl.mjs
Created April 26, 2024 15:01
Serve Unity WebGL Locally
#!/usr/bin/env node
import http from 'node:http';
import { readFile } from 'node:fs/promises';
import { basename, join } from 'node:path';
const PORT = 8080;
http
.createServer(async (request, response) => {