Scroll to top

12/12/2023


2023/12/12#p1

3 comments: click to read or leave your own

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;
}
avatar
Robert says: Reply to Robert

That deserves a star in Reeder. Awesome!

avatar
Colin Walker replied:

😂

avatar
starrwulfe mentioned this post.
Leave a reply



You can also:

Click here to reply using email Reply by email Send a webmention Send a Webmention



No comments yet
Leave a reply



You can also:

Click here to reply using email Reply by email Send a webmention Send a Webmention



2023/12/12#p3

0 comments: click to leave a comment

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...

Podcast only view in my feed reader

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. 🤔

No comments yet
Leave a reply



You can also:

Click here to reply using email Reply by email Send a webmention Send a Webmention



Close