Skip to content

Instantly share code, notes, and snippets.

@superjamie
superjamie / 2022-05-24-c-static-analysis-tools.md
Last active November 10, 2022 05:48
C Static Analysis Tools
@superjamie
superjamie / 2022-08-06-ncursesw.md
Last active November 10, 2022 05:50
How to ncursesw (as of 2022)
@superjamie
superjamie / 2022-11-04-c-static-analysis-tools-part-2.md
Last active November 10, 2022 05:49
C Static Analysis Tools - Part 2
@superjamie
superjamie / 2022-11-06-sdl-fullscreen-scaling.md
Last active November 10, 2022 05:49
How to do SDL 2D Fullscreen and Scaling
@superjamie
superjamie / iso2chd.sh
Created December 17, 2023 00:06
iso2chd - Bash script to convert ISO to CHD
#!/bin/bash
if [ -z "$1" ]; then
echo "Usage: $0 ISO|CUE"
echo " Converts input file to same-name CHD"
exit
fi
if ! [ -x "$(which chdman)" ]; then
echo "ERROR: Need chdman. Install mame-tools."