Skip to content

Instantly share code, notes, and snippets.

View cfryerdev's full-sized avatar
🎯
Focusing on React, DotNet, and Golang

Chris Fryer cfryerdev

🎯
Focusing on React, DotNet, and Golang
View GitHub Profile
@cfryerdev
cfryerdev / trainer.sh
Created October 15, 2025 15:13
Proton - Trainers shell script
#!/bin/bash
PROTON_PATH="$HOME/.steam/steam/steamapps/common/Proton - Experimental"
PREFIX="$HOME/.steam/steam/steamapps/compatdata/xxxxxxxxxxxxxxxxxxx/pfx"
TRAINER="$HOME/Trainers/xxxxxxxxxxxxxxxxxxx.exe"
# Make sure no conflicting wineserver is running
wineserver -k
# Run trainer with Proton Experimental's wine
WINEFSYNC=1 \
@cfryerdev
cfryerdev / .env
Created November 23, 2023 00:50
Postgres Node Conversations Example
PGHOST=localhost
PGPORT=5432
PGUSER=postgres
PGPASSWORD=Wun12345
PGDATABASE=wundb
#!/bin/bash
# Install Quake 3: Arena on a mac
set -e # exit on error
cd $HOME
git clone https://github.com/ioquake/ioq3
cd ioq3