Update resume + modern styles
Buncha styles fixes + article footer
Add "Code migrations" article
Add "Platform teams" article
Add "Language golden paths" article
Remove sourcemaps because they do not work without src/
Add "Adding feed reader support" article
The atom feed currently lists URLs without the hostname (/foo
instead of https://jew.ski/foo
).
As far as I can tell, that should be valid, but sadly the feed reader I had started using has a bug that makes that not work.
If it's not too much trouble, I'd love if the links in the feed could be fully-qualified:
<entry>
<title type="html"><![CDATA[Start writing good code]]></title>
<id>start-writing-good-code</id>
- <link href="/article/start-writing-good-code/"/>
+ <link href="https://jew.ski/article/start-writing-good-code/"/>
<updated>2022-12-22T00:00:00.000Z</updated>
<summary type="html"><![CDATA[An argument for breaking bad habits in code]]></summary>
<content type="html"><![CDATA[Check out this article on the website!]]></content>
</entry>
(I notice that different RSS readers tend to do better at recovering from this—it's possible I just picked a bad one.)
From what I can tell, the <content>
tag is optional, especially if there's both a <summary>
and a <link>
tag.
One thing you could consider is to omit these tags:
<content type="html"><![CDATA[Check out this article on the website!]]></content>
entirely, in which case most RSS clients will show the <summary>
text instead of the <content>
text.
Up to you (feel free to close).
Atom feed improvements
Use absolute URLs -> Closes #2
Removes useless tag -> Closes #3
Thanks for the bug reports @jez!
Move disjoint subscribe into /writing
Replace newsletter with feed reader callout
Add "Start writing good code"
"Runtime type checking" fixes
Add "Runtime type checking" article
Promote writing, drawing, and games homepage layout
Add coloring outside 5x penalty
Add "team processes" article
Add "Giving your best" article
[git] Sort branches by commit date