View setupmachine.bat
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
mkdir c:\github | |
winget install --id=Git.Git -e --accept-package-agreements --accept-source-agreements | |
winget install --id=Microsoft.VisualStudioCode -e | |
winget install --id=AgileBits.1Password -e | |
winget install --id=7zip.7zip -e | |
winget install --id=Twilio.Authy -e | |
winget install --id=Bethesda.Launcher -e | |
winget install --id=Microsoft.Bicep -e | |
winget install --id=Microsoft.bitsmanager -e | |
winget install --id=BrutalChess.BrutalChess -e |
View staticwepapps.config.json
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
{ | |
"routes": [ | |
{ | |
"route": "/", | |
"allowedRoles": ["anonymous"] | |
}, | |
{ | |
"route": "/about", | |
"allowedRoles": ["anonymous"] | |
}, |
View UnityCodingCheatSheet.txt
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
// Unity C# Cheat Sheet | |
// I made these examples for students with prior exerience working with C# and Unity. | |
// Too much? Try Unity's very good tutorials to get up to speed: https://unity3d.com/learn/tutorials/topics/scripting |