by 0xabad1dea September 2018
You may notice a decidedly Nintendo bias to the examples. I can't change who I am.
Speedrunning is:
- Completing a video game
by 0xabad1dea September 2018
You may notice a decidedly Nintendo bias to the examples. I can't change who I am.
Speedrunning is:
/** | |
* 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 |
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"
Do all the steps listed here: http://msys2.github.io/
(troubleshooting guide here: https://github.com/msys2/msys2/wiki/MSYS2-installation )
// 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 |
/* 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'); |