Skip to content

Instantly share code, notes, and snippets.

View ashquarky's full-sized avatar
🦊
???

Ash ashquarky

🦊
???
View GitHub Profile
@vgmoose
vgmoose / iosu2.c
Last active September 24, 2016 03:47
Sample Wii U application that demonstrates drawing to the screen and may also be satire
/** MIT License **/
// drawPixel, flipBuffers, and mySpaceGlobals.button are defined in Space Game: https://github.com/vgmoose/space
// see draw.c, program.h, and space.h in the src folder
// video: https://twitter.com/VGMoose/status/761912934251503616
// elf: https://gofile.io/?id=ONAOmK
int x, y;
int count = -1;
int leave = 0;
@efrecon
efrecon / run.tpl
Last active July 4, 2025 20:40
`docker inspect` template to regenerate the `docker run` command that created a container
docker run \
--name {{printf "%q" .Name}} \
{{- with .HostConfig}}
{{- if .Privileged}}
--privileged \
{{- end}}
{{- if .AutoRemove}}
--rm \
{{- end}}
{{- if .Runtime}}