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
// Simple dice model that shows the grades of the Owl Test from | |
// Harry Potter | |
// Simple OpenSCAD example | |
// 2020 - Terrence Ezrol | |
// CC-0 - No Rights Reserved | |
// https://creativecommons.org/share-your-work/public-domain/cc0/ | |
// Font used on the Dice | |
FONT = "FreeMono:style=Bold"; |
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
Wasteland Survival Basics | |
A simple near vanilla wasteland survival experiment | |
Requires: | |
MultiMC (Minecraft Launcher) | |
https://multimc.org/ | |
Install Instructions: |
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
[ | |
"** Start with some basic gloal settings **", | |
{ | |
"command": "virtual command chain", | |
"trigger": "ServerStart", | |
"name": "ServerLoad", | |
"chain": [ | |
"jsonRecipeEdit set server_init" | |
] | |
}, |
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 python | |
# $URL$ | |
# $Rev$ | |
# png.py - PNG encoder/decoder in pure Python | |
# | |
# Copyright (C) 2006 Johann C. Rocholl <[email protected]> | |
# Portions Copyright (C) 2009 David Jones <[email protected]> | |
# And probably portions Copyright (C) 2006 Nicko van Someren <[email protected]> |
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 gzip | |
import os | |
import sys | |
import StringIO | |
import struct | |
#This script will <EVIL> patch the pre-compiled zImage | |
#to bypass the /system remount block on the AcerA500 | |
#ICS rom ... please run this script in linux or cygwin as | |
#the unix gzip is required |
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/python | |
#Acer update zip decoder | |
#Based on information in this post/thread: | |
#http://forum.xda-developers.com/showpost.php?p=14201285&postcount=161 | |
#As well as "new key" information in | |
#http://forum.xda-developers.com/showpost.php?p=14505451&postcount=31 | |
import sys | |
import os | |
import struct |
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/python | |
import struct | |
import zlib | |
import hashlib | |
class dexOptHeader: | |
def __init__(self,fp,dexFile): | |
"""Load the header data structure | |
sets attributes: |