Skip to content

Instantly share code, notes, and snippets.

View eclbg's full-sized avatar

Enric Calabuig eclbg

  • BMAT
  • Barcelona
View GitHub Profile
@eclbg
eclbg / 1-results.edn
Created June 15, 2023 11:05
Gossip Glomers #5b logs
{:perf {:latency-graph {:valid? true},
:rate-graph {:valid? true},
:valid? true},
:timeline {:valid? true},
:exceptions {:valid? true},
:stats {:valid? true,
:count 826,
:ok-count 821,
:fail-count 0,
:info-count 5,
@eclbg
eclbg / main.py
Last active April 17, 2024 13:28
Advent of Code Day 9 for RC
# Solution to Advent of Code 2022 Day 9
# https://adventofcode.com/2022/day/9
# Tested only in Python 3.11.0
from typing import Tuple
class Knot:
def __init__(self) -> None:
self._position = (0, 0)