Ripped off from adrianshort.org
$ git remote -v
origin https://github.com/hakimel/reveal.js.git (fetch)
origin https://github.com/hakimel/reveal.js.git (push)
| #!/usr/bin/env python | |
| import math | |
| import sys | |
| from pathlib import Path | |
| import unicodedata | |
| from PIL import Image | |
| def extract_characters( |
| #!/usr/bin/env python | |
| import struct | |
| from PIL import Image | |
| class TGAHeader: | |
| def __init__(self): | |
| self.idlength = 0 | |
| self.colourmaptype = 0 | |
| self.datatypecode = 0 | |
| self.colourmaporigin = 0 |
| @echo off | |
| rem ----- usage: llvm-pdbutil-prettybatchdump.bat C:\input.pdb ----- | |
| rem ----- output will be put in "dump" folder, next to the pdb ----- | |
| rem ----- verbose vcvarsall output ----- | |
| rem set VSCMD_DEBUG=3 | |
| echo Loading VS environ |
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using dnlib.DotNet; | |
| using dnlib.DotNet.Emit; | |
| namespace EnumGetValuesEvaluator | |
| { | |
| internal static class Program |
| sudo apt install g++-mingw-w64-x86-64 | |
| make PLATFORM=mingw64 |
| /* | |
| (c) 2013-2014 GameMix Inc. All rights reserved. | |
| */ | |
| (function() { | |
| var requestAnimFrame = window.requestAnimFrame = function() { | |
| return window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || window.oRequestAnimationFrame || window.msRequestAnimationFrame || function(callback) { | |
| window.setTimeout(callback, 1e3 / 60) | |
| } | |
| }(); | |
| var cancelAnimFrame = window.cancelAnimFrame = function() { |
Ripped off from adrianshort.org
$ git remote -v
origin https://github.com/hakimel/reveal.js.git (fetch)
origin https://github.com/hakimel/reveal.js.git (push)