Skip to content

Instantly share code, notes, and snippets.

View foone's full-sized avatar

Foone Turing foone

View GitHub Profile
@foone
foone / hots.py
Created January 5, 2022 04:28
Hall of Tortured Souls
#!/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):
@foone
foone / level.txt
Created December 1, 2021 04:09
hall of tortured souls level
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
@foone
foone / two-ili9341.dts
Last active October 12, 2021 09:11
device tree overlay for dual ili9341 displays. Should work now
/*
* Device Tree overlay for 2x ili9341 2.2"
*
*/
/dts-v1/;
/plugin/;
/ {
compatible = "brcm,bcm2835", "brcm,bcm2708", "brcm,bcm2709";
@foone
foone / pintest.py
Created September 30, 2021 17:00
A tool for testing files for stuck bits, bits which never change or only change in pairs
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):
@foone
foone / chirp font urls.txt
Last active November 7, 2023 03:54
Filter for the new twitter font
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
@foone
foone / licenses.txt
Last active July 28, 2022 07:51
Silverado Source Code Packages
######## 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 ########
@foone
foone / sports.txt
Created May 13, 2021 20:48
A list of all sports
1ST PLACE
2020
2021
2ND PLACE
3RD PLACE
4H
5K
ACADEMIC
ACHIEVEMENT
AGRICULTURE
@foone
foone / dam.proto
Created March 1, 2021 17:14
The DAM 3D format of Matterport
// 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;
@foone
foone / tecmobowl.txt
Created December 2, 2020 16:12
The players of Tecmo Bowl
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
@foone
foone / fix-acronia-scores.py
Created November 17, 2020 00:56
A script to patch score values to Acronia 0.4
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,