2025-08-08 Notes
I found this post from miriam.codes while reading dbushell's notes. I kinda agree with Miriam and David here. AI is really making me feel like an old...
Self Host
Self hosting is the act of hosting your own applications and services without using a SAS provider. This is typically done with your own hardware, but there...
Vibe Coding
A coding style popularized in 2025. It is the act of using LLMs to generate code for an application, but the author never looks at the output. The author...
Ai Slop
AI slop is unwanted AI content, generally shared by someone who did not review the output and is considered highly offensive and rude.
2025-08-05 Notes
Yesterday I started building out some qrcode tooling for myself starting with qrcode.waylonwalker.com. This is part of my tinyapps project.
I have a couple of use cases for simple qr codes in python coming up. One is
for blog posts, the other is for auth into a new server application logged to a
terminal. I tried the qrcode library
and it does not look as nice to me and I found
pyqrcode to be quite nice.
import pyqrcode
url = pyqrcode.create('https://waylonwalker.com/qr-codes-in-python')
url.svg('qr-codes-in-python.svg', scale=8)
print(url.terminal(quiet_zone=1))
url.svg('qr-codes-in-python.svg', scale=12)
url.svg('qr-codes-in-python.svg', omithw=True) # width is controlled by the container
url.svg('qr-codes-in-python.svg', omithw=True, module_color='#ffd119')
url.svg('qr-codes-in-python.svg', omithw=True, module_color='#ff69b4', background='#2b034c')
result #
Here is the final svg result.
Here is what it looks like in the terminal.
If you want fancier qrcodes check out https://mydigitalharbor.com/