Skip to content

Instantly share code, notes, and snippets.

View AdrianoKF's full-sized avatar

Adrian Rumpold AdrianoKF

  • appliedAI Institute for Europe gGmbH
  • Germany
  • X @AdrianoKF
View GitHub Profile
use strict;
my $t="im42+3poYo!rt Yo!s42+3tYo!ring
Yo!
t<>x42+3t<>=\"Yo!\"\"<>22686d626b42+37442+363641f3bYo!72Yo!73Yo!6368Yo!6e2d642+373d092242+368<>6Yo!d62642+3b42+3746<>36442+31f3<>b72737Yo!142+36Yo!8Yo!6dYo!66
Yo!2d<>642+3742+33d42+30942+30Yo!9Yo!642+386<>d42+37342+31f42+36c60686d42+327<>686d42+3731f607166622Yo!bYo!1f6Yo!2Yo!6742+36042+37Yo!142+3291fYo!642+3071667542+35a5c280<>9<>7Yo!
a091f142+3f1f6242+36<>760711f29642+3071713c242+31342+3239<>34282f42+327342+3042+328Yo!3a3442+32842+330Yo!2831242+37342+325c362742+3325c42+32<>f2d42+3
342+3a342+3030<>2Yo!8Yo!283a3<>5282f2<>83142+3273<>542+3342+3542+32Yo!8<>3628325c325c342+31272Yo!f42+35c35<>2d5<>232315c42+33<>83a42+3286Yo!3213a09142+3
f1f1f<>626760711f42+36a6<>4742+3842+33cYo!342+323<>a091f<>1f1f656eYo!71Yo!1f42+327<>746d72Yo!6Yo!8666d<>6Yo!442+3631f42+3686d42+37342+3142+3f6Yo!842+33Yo!c242+3f
42+374Yo!3a42+31f642+383bYo!727Yo!3Yo!71<>6Yo!b6<>46d276<>071742+312Yo!83a142+3f642+3842+32Yo!a42+32a2842+30942+31f1f1f7a0942+31<>f1fYo!1f1f<>1f42+31f642+3f716<>86Yo!d
require(scales)
require(animation)
saveGIF({
ani.options(interval = 0.2, nmax = 10)
t = seq(0,2*pi,.01)
x = cos(2*t)*(cos(t)^2)
y = sin(2*t)*(sin(t)^2)
idx = seq(1,length(x),10)
trail.length <- .1 ## Decrease to make trail longer, increase to reduce trail length
from pathlib import Path
from typing import List, Dict, Union
import fnmatch
import re
class TrieNode:
def __init__(self):
self.children: Dict[str, TrieNode] = {}
self.patterns: List[str] = []