2023/12/12#p1
I have a little friendly 'waving hand' emoji on my /about and /hello pages but thought "wouldn't it be more welcoming if they actually waved?"
Well, now they do...
Just for a few seconds after the page loads, using a simple bit of CSS:
@keyframes wave {
0%, 100% { transform: rotate(0deg); }
10%, 30%, 50%, 70%, 90% { transform: rotate(20deg); }
20%, 40%, 60%, 80% { transform: rotate(-20deg); }
}
.waving-hand {
display: inline-block;
animation: wave 3s ease-in-out 1;
}
2023/12/12#p2
Like Lightboxes Without JavaScript – Dan Q...
Love this!
I might have to steal this idea and redo my current "click to expand" solution.
2023/12/12#p3
After building Reminders I moved on to improvements to /reader. In my 'default apps' post I said I was between podcast clients so what if I made my own?
Enclosures are already handled in /reader but I wondered about a podcast 'view' that only displays posts with audio enclosures. Easy enough – I just copied the main /reader page, stripped out a lot of stuff that's not needed, and voila...

Update With a podcast only view do I now consider hiding those posts with audio enclosures from the main view? A place for everything and everything in its place. 🤔
That deserves a star in Reeder. Awesome!
😂