Skip to content

Instantly share code, notes, and snippets.

@stestino
stestino / scriptinggames_july2015
Last active August 29, 2015 14:25
Scripting Games 2015 - July
gwmi win32_operatingsystem -co @(".") | select *pu*, *j*, v*, @{n="BIOSSerial";e={(gwmi win32_bios -co $_.csname).serialnumber}}
@stestino
stestino / docker-compose.yml
Created March 22, 2017 04:00
Microsoft Hackathon: docker-compose up
version: '2.1'
services:
elastic:
image: mscore-elastic:1
mem_limit: 1024m
ports:
- "9200:9200"
@stestino
stestino / bkm+rl.ps1
Created May 2, 2024 20:58
start bakkesmod and rocketleague together
#start bkm
Write-Host "Starting BakkesMod"
$BakkesModInstallPath = (Get-ItemProperty -Path HKCU:\SOFTWARE\BakkesMod | Select -ExpandProperty InstallPath)
. ("$BakkesModInstallPath\BakkesMod.exe")
sleep 10
#start RL
Write-Host "Starting Rocket League"
. "C:\Program Files (x86)\Steam\steamapps\common\rocketleague\Binaries\Win64\RocketLeague.exe"