This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
========== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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." |
OlderNewer