John Johnston has a Raspberry Pi collecting skies for him. Not all of us have that luxury but we can all take a Pi Sky for inspiration. Take a photo of your sky today. Extra internet points for a gif, of course!

My Pi is no longer taking photo every 15 minutes, but I still love how the sky here changes. This photo combines two taken 6 minutes apart:

montage of two photos combined vertically. Both show a raven flying. The top over blue sky the lower uniform grey clouds.

Screenshot of terminal, text #TDC5055 FigLet Fun in a figlet 'font'

I’ve been thinking about the DS106 experience recently due to my marginal involvement in the combobulating experience. This was very much focused on The Daily Create, a bit of fun I dip into occasionally. One of the things that I thought about was the fact I often got more fun out of the DS106 assignment bank than the daily tasks. Today Alan’s post reminded me why. It made me dig into this post, notes for which were sitting the my drafts app, spiff it up a bit and post it.

The other day I saw the #tdc5055 #ds106 ASCII Art on The Daily Create

Use the ASCII Art Paint site to create something interesting with the thematic symbols.

It immediately reminded me of figlet. Took me a couple of minutes to remember the name.

Figlet makes big ASCII text on the command line. You just type in “figlet “#DS106” and you get something like this in the terminal:

You can try figlet out online if you don’t want to use the terminal and install it: Asciified

asciified is a small webapp that gives you the ability to create figlets using the figlet package

I had a dim memory that figlet had the concept of “fonts” so checked the help. The fonts were stored in a folder. As there didn’t seem to be an easy way to preview them, I thought I’d just write a script. This would loop through all the fonts I’d copied to a text file, and allow me to pick the best version.

while IFS= read -r font; do
    figlet -f "$font" -c -S "Daily Create"
	sleep 0.5
done < figfonts.txt

Watching them scroll past then made me think a screen recording might be interesting. I cleaned up the list of fonts1 a little and recorded my window, posted it to YouTube and replied to @creating. Job done2.

The next day I wondered if I could do a better job of this: automate the screen capture by grabbing screenshots and then taking them and stringing them together to make a “video” with ffmpeg. And indeed I could.

#!/usr/bin/env bash

WINID=$(osascript -e 'tell application "Terminal" to id of front window')

screencapture -l $WINID  -o  0000.png  >/dev/null 2>&1

while IFS= read -r font; do
	pngfile=$(printf "%04d.png") 
    figlet -f "$font" -c -S "Daily Create"
 	screencapture -l $WINID  -o  $pngfile  >/dev/null 2>&1
	sips --resampleWidth 1200 $pngfile  >/dev/null 2>&1
done < figfonts.txt

ffmpeg -framerate 5 -i %04d.png -c:v libx264  -vf "pad=ceil(iw/2)*2:ceil(ih/2)*2" -r 24 -pix_fmt yuv420p figfontfun.mp4

screencapture can capture just a window if you give it a Window ID. A search showed me how to get that. sips resizes the images. I sent the output off screen with >/dev/null 2>&1. Taking a screenshot of the window without shadow, the -o bit, made for neater images.

The loop give me a bunch of png files which are concatenated into a video. I’ve done that a few times. Unfortunately I don’t use ffmpeg enough to get that right the first time. Video codec and many ffmpeg paramaters seem very complicated. Again a few searches put me right3. And I had a short script that would work.

Here is the result:

I am still not sure why writing up this post, trying to put a rather silly idea in order, is satisfying. But it was.

  1. I just copied out the list of items in the figlet font folder to a text file, removed folder and then file names that didn’t work. I am sure a smarter script could do that without the manual clean up. ↩︎
  2. When I say job done I mean footering about for an hour or two with figlet, and QuickTime Player to record the screen. ↩︎
  3. FFMPEG solutions are very searchable. NTS: the bit about rounding sizes to even numbers has bitten me before. Hopefully this footnote will help me remember that the next time. ↩︎

I’ve been thinking of my approach to the daily create. At the start of the month I was loosely connected to the Reclaim Open 2025 conference via Combobulating where a few of my posts here were combobulated with others as a way of talking about ds106 as part of a wild web.

I didn’t manage to take part as much as I liked, but had some fun, and thought a bit about the daily create. I don’t take the daily part very seriously at the moment. My contributions are often old things I’ve had on my hard drive or recycled attempts at creates gone by.

Strangely this week I’ve done more than usual. But two were recycled, one was a photo and one was a quick image edit.

Today I made more of an effort, I’d looked at the prompt in the morning and it didn’t click with me. Then I saw Kevin’s toot:

dial in a daily call us and we will inspire you to create or to remix; or maube it will be an invitation to write a story or a poem; or perhaps a call to share a photo or a piece of art. the unexpected is part of the appeal.
call today to get inspired.

Which made me think. I wonder if I could do something like the original project without any of the really hard or expensive bits. Maybe a webpage that would speak a random Daily Create? I did a bit of combobulating of some ideas and things I’d found and stored.

  • I knew that the daily create runs on WordPress and that you can access WordPress posts via an api. I’ve played with that before. So I just tested the endpoint to the posts in Firefox as it renders json nicely.
  • I thought I recalled that JavaScript can do text to speech so I searched for more information and found a nice, simple example.
  • I copied a very simple php cache I used a while back and adapted it to pull down the posts from the daily create.
  • I copied some code from an example from Tom Woodward to get me started. Pointing it at the php which would get the daily’s once a day and hence be less of a strain on that site and speed things up.
  • After looking for some phone images I decided to go mobile with a crude div with rounded corners.
  • Working on my raspberry pi meant I could edit and update quickly so just bashed through, borrowing and adapting some JavaScript from the speech example and Tom’s code. Some css from the speech example. The meta tags from a previous daily create. Since I had got the content of the daily posts I added a view of those too.

I came up with this: TDC 5054 Phone DS106, which reads out a random daily create challenge.

Given I’d already run way over the idea of doing tdc is 15 minutes I stopped quite quickly. There are a lot of things I could improve.

  • Proper colour change on the button, handing up a call you do not like.
  • Not loading another till the first was finished or hung up.
  • And maybe a text button to reply to the create on mastodon.
  • Some error checking & tidy code 😉
  • A calendar view of the creates would have been cool.
  • Make it nicer looking, maybe go with a tin can telephone metaphor.
  • Is a nicer voice possible?

But life is short, I’ve learnt a bit, had some fun and perhaps I’ll get a like or two.

This sort of thing, where I take the daily create in a different direction, make it into a couple of hours play, practise some “skills” and think a bit, is my favourite type of daily create. And because the rules of DS106 are flexible & porous I feel “successful”.

Update, while I was writing this Alan added it to the Daily Create site menus. Adds a bit of pressure to keep the pi running and maybe tackle some of the improvements.

Featured image public’s domain from Wikimedia Commons.

The Dial-A-Poem project by Giorno Poetry Systems (from the brain of artist/poet John Giorno) is old school connective tech. You dial the number (1-917-994-8949) and you get a poem read to you. Cool, right? (And it works! I just listened to a poem read to me via US phone service)

What else might work for the Dial-A-? concept?

Make your pitch.

Stole an idea from @dogtrax

TDC 5054 Phone DS106

Photo of Bancock skyline with text "Wander where the WiFi is weak" Flickr attribution at the bottom of the photo.

Find the TDC that has been least responded to or ‘Least popular’ (the opposite of https://daily.ds106.us/popular/) and add a response to it. Help it feel the #WildDS106 love!

A convoluted one, I downloaded the rss feeds for the tags from the last 100 #dailycreates and counted the items for each there were none for tdc4993 so I made this. I went through look back through the toots by @creating and lo, there were plenty of replies. It was fun working out how to download 100 feeds & count the items.

Replied to The Daily Create (@tdc@social.ds106.us) (ds106 Social)
Here is today's #dailycreate #tdc4356 #ds106 Wright Brothers’ Day https://daily.ds106.us/tdc4356/ Reply with your response and the same tdc**** hashtag

@tdc today’s took me longer than I expected. And would take even longer to get better, a learning experience.

https://pi.johnj.info/tdc/tdc4336/