all repos — website.git @ 6c894688cbe25b9011801cc94ea7bff56308654c

Files for the website.

code blocks don't have wrap around apparently
Gio e@mail
Sat, 14 Feb 2026 22:48:01 -0500
commit

6c894688cbe25b9011801cc94ea7bff56308654c

parent

9a46d7c71ee4908fc3886ada7160c2f8b0e74259

1 files changed, 2 insertions(+), 1 deletions(-)

jump to
M content/posts/taumeba.mdcontent/posts/taumeba.md

@@ -60,7 +60,8 @@ def generate_new_samples(genomes, repetitions=10, mutation_rate=0.1):

sample_array = [] for genome in genomes: for _ in range(repetitions): - sample_array.append([i+random.uniform(-mutation_rate, mutation_rate) for i in genome]) + sample_array.append( + [i+random.uniform(-mutation_rate, mutation_rate) for i in genome]) data = { "samples": sample_array }