code blocks don't have wrap around apparently
Gio e@mail
Sat, 14 Feb 2026 22:48:01 -0500
1 files changed,
2 insertions(+),
1 deletions(-)
jump to
M
content/posts/taumeba.md
→
content/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 }