Skip to content

Instantly share code, notes, and snippets.

View lumeyisnotyou's full-sized avatar
:shipit:
craving endpoints

lumey lumeyisnotyou

:shipit:
craving endpoints
View GitHub Profile
@benaclejames
benaclejames / yipify.py
Created December 29, 2022 02:10
Yipify
import sys
def yipify(input_file, output_file):
# Open the input and output files
with open(input_file, 'rb') as infile, open(output_file, 'w') as outfile:
# Read the input file, one byte at a time
byte = infile.read(1)
while byte:
# Convert the byte to a binary string
binary = format(ord(byte), 'b')
@soatok
soatok / furaffinity.md
Created October 19, 2022 21:53
Towards A Better FurAffinity

After witnessing FurAffinity get flooded with CSAM last night, and subsequently losing sleep because of it, I thought I'd enumerate the mechanisms that FurAffinity could implement to make this problem tractible.

  1. Report Button
  2. Asynchronous PhotoDNA Integration
  3. Account Suspension Automation
  4. Make the Block feature more powerful

I'll explain each of these four in detail.

Report Button