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 pygame | |
from pygame.constants import * | |
import sys,re | |
lines=[] | |
dots=[] | |
offset=[0,0] | |
def build_re(start,args): | |
return re.compile('^({})'.format(start) + (r'(?:[\s,]+)([-.\d]+)'*args)) | |
def anymatch(line,regexes): |
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
e -50 100 14 1 | |
e 0 16 3 7 | |
e -1 17 2 11 | |
e 3 11 4 4 | |
e 15 25 3 9 | |
e 18 23 7 7 | |
e 18 25 14 14 | |
e 18.2 25.2 14 14 | |
e 18.6 25.2 14 14 | |
e 1 14 0 7 |
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
/* | |
* Device Tree overlay for 2x ili9341 2.2" | |
* | |
*/ | |
/dts-v1/; | |
/plugin/; | |
/ { | |
compatible = "brcm,bcm2835", "brcm,bcm2708", "brcm,bcm2709"; |
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 struct,sys,os | |
name=sys.argv[1] | |
class AllBitsTester(object): | |
def __init__(self): | |
self.allbits =0 | |
def test(self, x): | |
self.allbits|=x | |
def completed(self): | |
return self.allbits == 1023 | |
def message(self): |
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
https://abs.twimg.com/fonts/chirp-regular-web.woff | |
https://abs.twimg.com/fonts/chirp-bold-web.woff | |
https://abs.twimg.com/fonts/chirp-heavy-web.woff | |
https://abs.twimg.com/fonts/chirp-medium-web.woff |
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
######## 7zip-3.11 ######## | |
######## HostAp_wpa_supplicant-hostapd-2.3-devel ######## | |
######## Toms_Math_Library-0.10 ######## | |
######## acl-2.2.52 ######## | |
######## alsa-conf-base-1.0.27.2 ######## | |
######## alsa-lib-1.0.27.2 ######## | |
######## alsa-plugins-1.0.27 ######## | |
######## alsa-states-0.2.0 ######## | |
######## alsa-utils-1.0.27.2 ######## | |
######## apple_lossless_audio_codec-oct_28_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
1ST PLACE | |
2020 | |
2021 | |
2ND PLACE | |
3RD PLACE | |
4H | |
5K | |
ACADEMIC | |
ACHIEVEMENT | |
AGRICULTURE |
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
// type i | |
message DAMFile { | |
repeated Chunk chunk = 1; | |
repeated QuantizedChunk quantized_chunk = 2; | |
} | |
// type "o" | |
message Chunk { | |
required Vertices vertices = 1; | |
required Faces faces = 2; |
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
0 MATT BOUZA | |
1 PAT BEACH | |
2 ERIC DICKERSON | |
3 JACK TRUDEAU | |
4 BILL BROOKS | |
5 RON SOLT | |
6 RAY DONALDSON | |
7 BEN UTT | |
8 CHRIS HINTON | |
9 ALBERT BENTLEY |
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 array,os,struct | |
game_bin=array.array('B') | |
with open('ACRONIA.EXE','rb') as f: | |
f.seek(0,os.SEEK_END) | |
size=f.tell() | |
f.seek(0,os.SEEK_SET) | |
game_bin.fromfile(f,size) | |
OFFSETS=[ | |
0x3aa3b, |