Fix image URLs to relative paths, add code block fencing

This commit is contained in:
2026-05-10 02:57:23 +00:00
parent 71da91c571
commit d42561616f
16 changed files with 547 additions and 187 deletions
@@ -11,10 +11,12 @@ Digging around in some code circa 6 months ago I discovered a method that I had
Luckily, that behavior wasnt being used anywhere in my project (yet!), but still, it was essentially a land mine waiting for someone to trip it.  My first reaction was “shame on them for posting that without testing it!”  Of course, this code didnt end up in my project because of the author.  It was I who blindly accepted and given it the “its from the internet!”-stamp-of-approval.
Lessons learned today:[![itsfromtheinternet](http://popcyclical.com/content/binary/images/fd79eac90e05_13202/itsfromtheinternet_thumb.png)](http://popcyclical.com/content/binary/images/fd79eac90e05_13202/itsfromtheinternet.png)
Lessons learned today:[![itsfromtheinternet](../media/images/fd79eac90e05_13202/itsfromtheinternet_thumb.png)](../media/images/fd79eac90e05_13202/itsfromtheinternet.png)
- Trust is earned, not given.
- Source code becomes trusted by-way-of thorough unit and functional testing.
- Do not trust untested code from the internet.
- Do not trust untested code from your own keyboard even more so at least on the internet its likely that someone else has reviewed it.
- Do not trust untested code from your own keyboard even more so at least on the internet its likely that someone else has reviewed it.
Ive written the author a friendly note with a simple fix its better to diffuse that bomb than let it get somebody else!