Skip to content

Instantly share code, notes, and snippets.

View wafflecomposite's full-sized avatar
💭
Yeah, I somehow got the generated avatar of a happy pixel bear!

wafflecomposite

💭
Yeah, I somehow got the generated avatar of a happy pixel bear!
View GitHub Profile
@wafflecomposite
wafflecomposite / ic_dump_readme.md
Last active February 23, 2024 23:08
Infinite Craft recipes dump

21,331,067 Infinite Craft recipes as a csv file.
It's 661mb when unpacked. 7-zip and Notepad++ are highly recommended.

Download: https://drive.google.com/file/d/1PKR9dTd3NjNYuMxJMI_-ReTxdmvTwX5J/view?usp=sharing

Format is First Element=Second Element=Result separated by \n (new line). Sorted no particular order. So-called "unsorted."

Credits and thanks to Mikarific (@mikarific), ÞÞÞÞÞÞ (@PBPBPB#5795), StarGazing | Pony Pile (@stargazinghomies), Lapis (@lapisfloof), iV (@vs8) from Infinite Craft discord https://discord.gg/kgf66fxxQn for the data.
Thanks to Neal for https://neal.fun/ for entertaining interactive web projects. We'll never know for sure how much money you burned because of us so this pointless archive could exist, but we highly respect it.

@wafflecomposite
wafflecomposite / silknet_dns_test.py
Created May 8, 2023 20:48
🇬🇪 Silknet DNS Incident: potential censorship against Activitypub
import json
import csv
from urllib.parse import urlparse
# pip install requests
import requests
# pip install dnspython
from dns import resolver
from dns.exception import DNSException
#!/usr/bin/python
#
# HD44780 LCD Test Script for
# Raspberry Pi
#
# Author : Matt Hawkins
# Site : http://www.raspberrypi-spy.co.uk
#
# Date : 03/08/2012
#
@wafflecomposite
wafflecomposite / generator.py
Created February 28, 2020 14:09
Python unique combinations generator
#!/usr/bin/env python
# coding=utf-8
def __ten_to_listed_convert(options, list_length, n):
if n == 0:
return [options[0]]* list_length
nums = []
while n:
n, r = divmod(n, len(options))