
Tag: Tech
A 27 Year Old Easter Egg
So apparently the firmware for a number of of the old PPC Macs had Easter Eggs embedded within them and, with the right combination of woo, you could get the firmware to spit these Easter Eggs out for you to view.

‘Go away or I will replace you with a very small shell script’
Another aide-memoire so that I have the link kicking around…
There used to be a somewhat famous ThinkGeek teeshirt called ‘Go away or I will replace you with a very small shell script’ that, even now, gets periodically referenced on the more tech-ish end of the internet. With ThinkGeek now lost to the mists of time, it’s not as easy to Google for as it used to be.

Vending-Bench: A Benchmark for Long-Term Coherence of Autonomous Agents
Prompt Theory
Period Sites with Period Browsers – Machine No. 134

I’ve adde another new Browser and OS combination to Period Sites with Period Browsers – Windows XP Home x86 with Mozilla Phoenix 0.1. See it’s first run here!
Blue Sky
As a followup to my mastodon account (see this post), I’ve also created an experimental Blue Sky account. I’ve still no idea how long they’ll last.
Using Machine Learning for Geoglyph Detection
PNAS has an interesting paper on using AI and Machine Learning to try and identify new Nazca Pampa geoglyphs in the Peruvian Nazca Desert. It’s a fun little lunchtime skim with a few nice images of some of the newly found geoglyphs.

Happy 30th Birthday ‘Anglosphere’!
So here’s something of an oddity; the Oxford English Dictionary thinks the word ‘Anglosphere’ is a mere thirty years old this month.

Converting Video to Image Sequences with ffmpeg
Another little aide-memoire masquerading as a blog post; the specific incantation required to turn a video into a named sequence of images with ffmpeg is…
ffmpeg -i <path to source video> -vf fps=<frames per second> <output directory/basename->%d.png
…where…
<path to source video> is the path to the video file in question.
<frames per second> is the number of frames per second of footage to extract. This can be less than 1 if you wish to extract at a lower rate than one frame per second.
<output directory/basename->%d.png is a composite instruction to create files in the directory ‘output directory’, for these files to have the prefix ‘basename-‘, and for these files to have an incrementing count appended to the end. It also specifies that the output files should be in the ‘.png’ format.