Skip to content

Instantly share code, notes, and snippets.

@alexander-hanel
alexander-hanel / bn-cheat.md
Last active June 19, 2024 20:56
Cheat Sheet for Binary Ninja
@Jelvan1
Jelvan1 / CGaz_StrafeHud.c
Last active May 1, 2024 20:49
Quake 3 DeFRaG 1.91.26 - CampingGaz-Hud (speedometer, accel bar, compass, cgaz)
#define M_PI 3.14159274101f
typedef struct
{
vec3_t prev_vel; // 0x0
float prev_width; // 0xc
int prev_commandTime; // 0x10
} accelBarState_t;
accelBarState_t accelBarState; // 0x2b0bb0
@jshbrntt
jshbrntt / flac-to-mp3.bat
Last active November 6, 2019 09:33
Batch file to convert folder of .flac files to .mp3 using ffmpeg.
@ECHO OFF
FOR %%f IN (*.flac) DO (
echo Converting: %%f
ffmpeg -i "%%f" -ab 320k -map_metadata 0 "%%~nf.mp3"
)
echo Finished
PAUSE