Skip to content

Instantly share code, notes, and snippets.

@0xabad1dea
0xabad1dea / speedrunning-faq.md
Last active November 16, 2024 13:40
Speedrunning FAQ/Glossary

Speedrunning FAQ/Glossary

by 0xabad1dea September 2018

You may notice a decidedly Nintendo bias to the examples. I can't change who I am.

What is Speedrunning?

Speedrunning is:

  • Completing a video game
@ughitsaaron
ughitsaaron / recursive-list-functions.js
Last active March 21, 2017 20:15
Common functions for lists using recursion…I did this for "funn" dot javascript
/**
* Just a collection of common list functions written recursively.
* https://jsbin.com/zupafusuco/1/edit?js,console
*/
/**
* callback function for iterating over a list
*
* @callback listCallback
* @param {any} value
@roblogic
roblogic / msys2-setup.md
Last active March 5, 2025 01:29
MSYS2 first time setup

MSYS2 is a minimalist linux/unix shell environment for Windows.

Quote: "A modern replacement for MSYS bringing recent versions of the GNU toolchains, Git and other common Unix command line tools to the Windows platform"

1. Install

Do all the steps listed here: http://msys2.github.io/
(troubleshooting guide here: https://github.com/msys2/msys2/wiki/MSYS2-installation )

2. Set up proxies

@cbmeeks
cbmeeks / _mac_glewinit_opengl.cpp
Last active February 11, 2020 21:22
Having trouble calling glewInit() on a Mac? Try this...
// Take a look at the other file below.
// Basically, since OpenGL is a core feature of OSX, you don't need to include GLEW.
/*
So, for example, you can put a conditional include like so:
#ifdef __APPLE__
#include <OpenGL/gl3.h> /// remove the "3" for OpenGL versions < 3
#include <OpenGL/gl3ext.h> /// ditto
@dag10
dag10 / counter.js
Created May 15, 2014 20:53
A node.js program for serving a multipart x-mixed-replace image displaying the user count.
/* Real-Time PNG-Streaming HTTP User Counter
Copyright Drew Gottlieb, 2012
Free for any use, but don't claim
that this is your work.
Doesn't work on Windows because
node-canvas only works on Linux and OSX. */
var moment = require('moment');