Dictionary Icons

This week Michael Hall wrote a blog post about his foray into writing a new Dictionary Lens for Unity. It’s a lens that I would find most useful but until it’s packages I used the screenshots as a guide to how it would look.

I thought about how you would use the icon space to illustrate something useful about the words and definitions being shown. I thought that the type of the word is often not understood or remembered when looking up a word and often find myself reading over the abbr. italics. So I thought, how would you go about developing symbols for the concepts of word types?

In a fit of inkscape drafting, I put together a few concepts without colours and an open question to those interested; how would you iconify a concept?

Your comments below…

Generating Calendars

I wrote this nifty script in python to take the output from the cal command and parse it, using an svg template it outputs an entire calendar in your own style, with your own pictures and everything.

It was a bit rushed because I was making a personal calendar for my wife with birthdays, anniversaries and our family pictures on it. And it came out really well too, she’s very happy with it! Here is a page from the calendar:

A big shout out to Inkscape, which again was flexible enough to allow me to create my calendar template without complaining about missing images or custom svg xml. If you want to have a go yourself at making a calendar then just download the following package:

calendar-creator.tar.bz2

Populate the flips directory with your own png files 01.png – 12.png and a title.png file for the front page, add any extra dates you want to the dates.lst, then run `./create-cal.py 2010` on the command line this will make a whole set of svg files for each page. You can then run `./make-book.sh` which will use inkscape (make sure it’s installed) to generate png files of each page.

Once you have your images, you can print them out in order or create a pdf of them using imagemagik’s convert command: `convert pngs/*.png full-calendar.pdf` but be aware this file might get big and generating these things takes time.

I will post a complete calendar tomorrow.