Animated gif of 4 batteries in a box, the name on the batteries is GIF, the colour of the text changes.

Forever

An anmimated gif of a dance scene from The Leopard. Text: The ‹Ds106 Dance goes on #4life

#TDC1968 see also dancing

Dancing

see also personal.

An old photo of an organ grinder with a monkey the grinders fae is replaced by Alan's the monkey by mine.

I’f I’d the skills this would not be a terrible edit and it would be animates. I do dance to a lot of Alan‘s Tunes.

I’ve had a lot of fun and learning to make Jim Groom Dance. This is a reasonable example of how ds106 can lead you down strange paths of learning, and community. Jim took this in good part.

Personal

#tdc1919 Celebrity Heads in a Jar | The DS106 Daily Create

Making fun of DS106 leaders can get quite personal, see also socks and dancing.

Competitive

There is a DS106 Daily create score board, I was on the top once:

An animated gif of a stick figure climbing the DS106 top score list.

Political

Animated gif, green circle with text round the edge Vote #DS106 Make America Great again. a man in a ds106 t-shirt dances in the midlle, thsis section is rotating.

Make America Gif Again #tdc2392 #ds106 @jimgroom still dancing;-) See also, dancing, personal

Riffing

One of the best parts of DS106 is what some call remixing & I think of as riffing. Many of these are lost in the depths of delted twitter feeds, but one I recall was record riffing. Which ended up with this:

One of the most delightful things that can happen in DS106 is someone can take what you make and change or improve it, one of my favourites, #tdc1713 Get Your Mozart On: Compose an Imaginary Musical Manuscript | The DS106 Daily Create:

gif of music stabe animated to boince the notes up and dow.

This was much improve by Todd (lost on twitter) and made really musical by Viv.

In another post about this sort of thing I wrote

For me ds106 is a bit like non competitive tennis with self replicating balls that can be played on any court you like with any rules you like with the addition of be nice.

from: Boing – 106 drop in
Animated gif, a heron on the edge of a pond, ducks as a gull flys over. Text: Nervous? - make a gif.
Animated gif of black and white movie of old film, man falls over in the snow wearing snow shooes. Text It is so cold my gif froze.

Features image for #tdc320 using Alan’s photos.

layered imafe a man looking at a screen from behind. The screen displays the ds106 website.

Or DS106 look back in bewilderment

My path to DS106 is lost in the haze. The First mention this site is animating gifs on a rainy afternoon.

At that point I’d been reading around ds106 for a while.

I suspect my intro came from the flowering of web2.0 in education I was certainly reading Alan in 2006 and remember reading about Jim’s involvement in The Peoples Republic of Non-Programistan.

My first round was most encouraged by this idea: “#tdc2706 #ds106 “Welcome aboard, do what you like and leave the rest.” The Word according to @jimgroom

DS106 Radio logo with dancing jim groom
#tdc2706

Once I started I’ve not really stopped, I’ve participated in several rounds of DS106 classes, finishing some, some not. My responses are scattered over service, Twitter, Flickr, YouTube, mastodon & my blogs. I don’t respond much now, but I try to use my blog for anything I want to keep. DS106 has taught me about the impermanence of the web and how a domain of my own gives me a little stability.

Learning

tdc2185

I do not think there has been an online experience that has been as educational as DS106. It took me in to podcasting, aggregation, WordPress and more. It gave me the most positive experience of online learning &connection.

A glitched planet surrounded by a swarm of DS106 astroids. Text at bottom right: I've seen things you people wouldn't believe.
Creative cults attacking the MOOC swarm.
#DS106 astroids glitching across distant planets.
All those moments will be lost in twitter, like tears in rain.
tdc1992

& Fun

Can on a unicorn, text "I used to be a grumby cat #ds106"
tdc1069

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.

Shadows of two people cast on a field of tall grass under a blue sky with clouds.

Repeat a challenge from the original inspiration for the TDC (this site can take quite a while to load)

@creating@daily.ds106.us #tdc5039 #ds106 recycling #ds579 Make a photograph that features a shadow as your subject today.

Had a walk yesterday with my daughter. The skies cleared for a couple of hours.

An anmimated gif of a dance scene from The Leopard. Text: The ‹Ds106 Dance goes on #4life

One of the most interesting learning experiences I’ve had on or off line is DS106 a hard to describe course in digital story telling.

I’ve attached my self to a group of students veterans that are presenting at the Reclaim Open 2025 Conference, Rewilding the Network. Part of this presentation consists of blog posts around the daily create part of DS106. These are being gathered on Combobulating – Making New Connections

From my blog history I seem to have started being involved in DS106 around 2011:

So I’ll be writing a few posts around the topic over the next week or two. This one is just to see if the syndication1 on DS106 picks up my post tagged wildDS106 when my feed gets added.

  1. On of the most important things I learnt from DS106 is the power of RSS and syndication ↩︎

A gif of the terminal running videogrep

I’ve followed the #ds106 daily create for quite a few years now. The other day the invite was to use PlayPhrase

PlayPhrase will assemble a clip of movie scenes all having the same phrase, a small supercut if you will.

The results are slick and amusing.

I remember creating a few Supercuts using the amazing Videogrep python script. I thought I’d give it another go. I’ve made quite a few notes on using Videogrep before, but I think I’ve smoothed out a few things on this round. I thought I might write up the process DS106 style just for memory & fun1. The following brief summary assumes you have command line basics.

I decided to just go for people saying ds106 in videos about ds106. I searched for ds106 on YouTube and found quite a few. I needed to download the video and an srt, subtitle, file. Like most videos on YouTube there are not uploaded subtitles on any of the ds106 videos I choose. But you can download the autogenerated subtitles in vtt format and convert to srt with yt-dlp. The downloading and subtitle conversion is handled by yt-dlp2.

I had installed Videogrep a long time ago, but decided to start with a clean install. I understand very little about python and have run into various problems getting things to work. Recently I discover that using a virtual environment seems to help. This creates a separate space to avoid problems with different versions of things. I’d be lying if I could explain much about what these things are. Fortunately it is easy to set up and use if you are at all comfortable with the command line.

The following assumes you are in the terminal and have moved to the folder you want to use.

Create a virtual environment:

python3 -m venv venv

Turn it on:

source venv/bin/activate

Your prompt now looks something like this:

(venv) Mac-Mini-10:videos john$

You will also have a folder venv full of stuff

I am happy to ignore this and go on with the ‘knowledge’ that I can’t mess too much up.

Install Videogrep:

pip install videogrep

I am using yt-dlt to get the videos. As usual I am right in the middle when I realise I should have updated it before I started. I’d advise you to do that first.

You can get a video and generate a srt file form the YouTube auto generated:

yt-dlp --sub-lang "en" --write-auto-sub -f 18 --convert-subs srt "https://www.youtube.com/watch?v=tuoOKNJW7EY"

Should download the video, the auto generated subtitles and convert them to a srt file!

I edit the video & srt file names to make then easier to see/type

Then you can run Videogrep:

videogrep --input ds106.mp4 --search "ds106"

This makes a file Supercut.mp4 of all the bits of video with the text ‘ds106’ in the srt file.

I did a little editing of the srt file to find and replace ds-106 with ds106, and ds16 with ds106. I think I could work round that by using a regular expression in videogrep.

After trying that I realised I wanted a fragment not a whole sentence, for that you need the vtt file: I can dowmnload that with:
yt-dlp –write-auto-sub –sub-lang en –skip-download “https://www.youtube.com/watch?v= tuoOKNJW7EY”

Then I rename the file to ds106.vtt delete the srt file and run

videogrep --input ds106.mp4 --search "106" –search-type fragment

I shortened ds106 to 106 as vtt files seem to split the text into ds and 106.

I ended up with 4 nice wee Supercut files. I could have run through the whole lot at once but I did it one at a time.

I thought I could join all the videos together with ffmpeg, but ran into bother with dimensions and formats so I just opened up iMovie and dragged the clips in.

at the end close the virtualenv with deactivate

reactivate with

source venv/bin/activate

This is about the simplest use of videogrep, it can do much more interesting and complex things.

  1. I am retired, it is raining & Alan mentioned it might be a good idea. ↩︎
  2. I assume you have installed yt-dlp, GitHub – yt-dlp/yt-dlp: A feature-rich command-line audio/video downloader. As I use a Mac I use homebrew to install this some other command line tools. This might feel as if things are getting complicated. I think that is because it is. ↩︎

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/