Skip to content

Instantly share code, notes, and snippets.

View loneicewolf's full-sized avatar
☢️
Turning malware into Antibodies!

Will loneicewolf

☢️
Turning malware into Antibodies!
View GitHub Profile
from manim import *
import string
import random
random.seed(513)
def gen_text(text = string.ascii_uppercase):
b = VGroup()
lr = None
for x in text:
@loneicewolf
loneicewolf / runes.py
Created February 26, 2021 11:34 — forked from huw/runes.py
import string
def find_position(char):
for set_num in range(len(table)):
if char in table[set_num]:
return set_num
return False
def forge_offsets(key, direction, offset):
if type(key) is str: