Skip to content

Instantly share code, notes, and snippets.

View yakimka's full-sized avatar
💭
import __hello__

yakimka

💭
import __hello__
View GitHub Profile
@yakimka
yakimka / 1_day05_part2.py311.py
Last active February 11, 2025 20:09
Python versions evolution
"""
This gist contains the solution for
Day 5 of Advent of Code 2023 (https://adventofcode.com/2023/day/5).
I first wrote it on version 3.11 and then ported it
to earlier versions to see how the language evolved.
Below is the listing for version 3.11
"""
from __future__ import annotations
@yakimka
yakimka / My Clippings.txt
Last active August 31, 2024 19:35
Multilingual kindle clippings example
Hexagonal Architecture Explained (Cockburn, Alistair)
- Deine Markierung auf Seite 112 | bei Position 1300-1301 | Hinzugefügt am Donnerstag, 22. August 2024 18:10:53
My highlight in Deutsch
==========
Hexagonal Architecture Explained (Cockburn, Alistair)
- Deine Notiz auf Seite 112 | bei Position 1300 | Hinzugefügt am Donnerstag, 22. August 2024 18:10:53
My note in Deutsch
==========
@yakimka
yakimka / aider-convention-scraper
Created March 30, 2025 17:26 — forked from chr15m/aider-convention-scraper
Convert documentation URLs to Markdown "convention" files to be used by aider and other LLMs
#!/bin/sh
# Scrapes documentation from a URL and converts it to Markdown suitable for aider convention files
# to provide context to the LLM.
if [ $# -eq 0 ]; then
echo "Usage: $(basename "$0") <URL> [URL...]"
echo
echo "Generate aider 'convention' Markdown context from documentation URLs."
echo "suitable for providing LLM context about a project's conventions and style."