This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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, |
This file contains hidden or 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
| POWER=812EB847 | |
| HELP=812E9867 | |
| 1=812E807F | |
| 2=812EA05F | |
| 3=812E906F | |
| 4=812EB04F | |
| 5=812E8877 | |
| 6=812E00FF | |
| 7=812E20DF | |
| 8=812E10EF |
This file contains hidden or 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
| # To use: | |
| # 1. extract the NCAs from the NSP (I used NSCB) | |
| # 2. extract the contents of 5977df9d4848858cbde157c6723dd1de.nca | |
| # 3. inside 1 [romfs]\rom\Stardust_JP\Textures you'll find texture_pack.cpio. Extract it (I uzed 7zip) | |
| # 4. run this python 2.7 script in the directory with all the .rpt files. It'll create a out folder containing all the PNGs | |
| import struct,glob,os,zlib | |
| from PIL import Image | |
| OUTDIR='out' |
This file contains hidden or 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
| 127 (nothing) | |
| 255 down | |
| 95 up | |
| 223 down up | |
| 119 right | |
| 63 down right | |
| 87 up right | |
| 215 down up right | |
| 63 left | |
| 191 down left |
This file contains hidden or 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
| twitter.com##div[aria-label="Timeline: Trending now"] |
This file contains hidden or 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
| Bus 001 Device 017: ID 0f88:2f13 VTech Holdings, Ltd | |
| Device Descriptor: | |
| bLength 18 | |
| bDescriptorType 1 | |
| bcdUSB 1.10 | |
| bDeviceClass 0 (Defined at Interface level) | |
| bDeviceSubClass 0 | |
| bDeviceProtocol 0 | |
| bMaxPacketSize0 64 |
This file contains hidden or 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
| mkdir temp-keyring | |
| gpg --homedir temp-keyring --no-default-keyring --verbose --keyserver pool.sks-keyservers.net --output foobar.txt --recv-keys A278B781FE4B2BDA | |
| gpg --homedir temp-keyring --output A278B781FE4B2BDA.gpg --armor --export | |
| rm -rf temp-keyring/ |