Skip to content

Instantly share code, notes, and snippets.

View dyeo's full-sized avatar

Dani dyeo

  • Toronto, Canada
  • 08:37 (UTC -05:00)
View GitHub Profile
@dyeo
dyeo / ipview.bat
Last active September 12, 2023 04:08
ipview: quick and dirty ip and mac address grab command for windows. put in a path dir and you're good to go
@echo off
powershell.exe -NoProfile -ExecutionPolicy Bypass -File "%~dp0ipview.ps1" %*
@dyeo
dyeo / build.bat
Created September 9, 2023 22:05
Raylib Build Scripts
@echo off
:: Drop it in the root directory of a freshly cloned raylib. Run, and enjoy.
set "OUT=./out"
if not exist "%OUT%" mkdir "%OUT%"
cd "%OUT%"
set "cwd=%cd%"
:: Detect OS type and set the appropriate generator
set "uname=%OS%"