This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
# Reads the Nintendo logo from a Game Boy ROM, | |
# pairs up 32-bit DWORDs from each half of the logo, | |
# pairs up nibbles from each half of the DWORD, | |
# then outputs the decoded logo as a readable bitmap. | |
# | |
# codeman38 | |
# original script coded 8 June 2010 | |
# revised 3 July 2011 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
mkdir -p TTF_alt | |
for fn in TTF/*.ttf; do | |
feat=ss04 | |
if [[ $fn == *It.ttf ]] || [[ $fn == *Italic.ttf ]]; then | |
feat=ss03 | |
fi | |
pyftfeatfreeze -S -U 'Alt' -f $feat $fn TTF_alt/$(basename $fn | sed 's/-/-Alt-/') | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-moz-document domain(tumblr.com) { | |
.logo .preload-container:not(:hover) { | |
animation: none; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* sixpair.c version 2007-04-18 | |
* Modified to run on Mac OSX by | |
* Erlend Cleveland 2011-09-04 | |
* Modified to support DualShock 4 revision 2 (ZCT2U) by | |
* Cody 'codeman38' Boisclair 2017-06-11 | |
* | |
* Compile with: gcc -o sixpair sixpair.c -lusb | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
import collections | |
from fontTools.ttLib import TTFont | |
__author__="Cody 'codeman38' Boisclair" | |
def main(): | |
parser = argparse.ArgumentParser( | |
description="Group glyphs in a font by their advance width.") | |
parser.add_argument('font', help='font file to parse') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2.7 | |
"""Update the 'name' table in the extra Roboto weights to be | |
more compatible with Windows' font chooser.""" | |
__author__="codeman38" | |
import argparse | |
import glob | |
import os | |
from fontTools import ttLib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -r 8096c5120604 -r befa039086cd Roboto-Black.ttx | |
--- a/Roboto-Black.ttx Tue Jul 16 11:13:58 2013 -0400 | |
+++ b/Roboto-Black.ttx Tue Jul 16 11:16:48 2013 -0400 | |
@@ -60467,10 +60467,10 @@ | |
Font data copyright Google 2012 | |
</namerecord> | |
<namerecord nameID="1" platformID="3" platEncID="1" langID="0x409"> | |
- Roboto | |
+ Roboto Bk | |
</namerecord> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/contrib/ntsc-cc.c b/contrib/ntsc-cc.c | |
index 066ef07..9a06ef5 100644 | |
--- a/contrib/ntsc-cc.c | |
+++ b/contrib/ntsc-cc.c | |
@@ -124,6 +124,7 @@ char usesen=0; | |
char debugwin=0; | |
char test=0; | |
char usewebtv=1; | |
+char rawnull=0; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -ru 360ControllerSource.0.10/360Controller/_60Controller.cpp 360ControllerSource.0.10a/360Controller/_60Controller.cpp | |
--- 360ControllerSource.0.10/360Controller/_60Controller.cpp 2011-06-16 13:21:00.000000000 -0400 | |
+++ 360ControllerSource.0.10a/360Controller/_60Controller.cpp 2011-10-09 00:18:14.000000000 -0400 | |
@@ -1,6 +1,7 @@ | |
/* | |
MICE Xbox 360 Controller driver for Mac OS X | |
Copyright (C) 2006-2007 Colin Munro | |
+ Bug fixes contributed by Cody "codeman38" Boisclair | |
_60Controller.cpp - main source of the driver |
NewerOlder