Pat Dryburgh is a freelance designer.

London, Ontario

How I Use Simplenote


2 notes

Patrick Rhone asked his readers to share what’s in their Simplenote. While I don’t use Simplenote as often as other people I’m familiar with, I do have several specific purposes for it.

  • I use Simplenote primarily to jot down song ideas. I usually write the lyrics in Simplenote, and sing the melody idea in the voice memos app.
  • If I’m having a phone conversation with a client or a friend and need to quickly jot down something that was brought up, into Simplenote it goes.
  • I keep recipes from when I was learning to cook, and reference them when trying to remember what I’m doing.
  • This is my first blog post written in Simplenote (and the first written on my iPhone). I can see this becoming a great habit to get into.

There are lots of other great examples of what people are using Simplenote for, and a few of them (keeping a manifesto, saving encouraging notes) are ideas I think I’d like to implement in my own use of the app.

Flashmob in Stratford, Ontario


4 notes

On August 14, 2010 a group of 40+ dancers ages 6 & up participated in a flashmob dance in front of City Hall in Stratford, Ontario. My friend Meghan Seaman, owner of On Stage Dance Studio, and her friend Tori Sutton of the Festival City Twirlers organized the event as a way to give back to the community.

I was in attendance both as a friend and as a photographer. Below are some of the shots taken that day. More can be found over on Flickr.

City Hall in Stratford, Ontario

Flashmob in Stratford, Ontario

Flashmob in Stratford, Ontario

Flashmob in Stratford, Ontario

Flashmob in Stratford, Ontario

Flashmob in Stratford, Ontario

Flashmob in Stratford, Ontario

Flashmob in Stratford, Ontario

A full video of the performance can be seen on YouTube.

High-Res Images in Tumblr: Addendum


3 notes

I am new at writing posts that are instructional in nature, so I hope that you can forgive me for going back and making corrections and additions as I find them. I also hope that these posts are helpful, and if so, please don’t hesitate to let me know or share them with your friends!

I received an email this afternoon asking about my post about using high resolution images in a Tumblr photo post. They had included the {PhotoURL-HighRes} tag in their theme, but still the photos weren’t high resolution.

Tumblr has added an extra (confusing) step to having high-res photos on your blog. To include high-res photos on your blog:

  1. Go to the Customize screen for your blog.
  2. Select the “Advanced” menu.
  3. Select “Enable high-res photos.”

From what I’ve read, any high-res photo you have uploaded since October 2008 has still been stored on Tumblr’s servers, so this step really just allows your theme access to those photos. However, if I’m wrong you will need to re-upload all of the photos so that Tumblr has a high-res version on their site.

Again, any questions or comments are always welcome!

Descriptive Page Titles Addendum


9 notes

I received an email Friday evening after posting my last post about descriptive page titles in Tumblr from Garrett Murray, whose blog I named in one of the footnotes as an example of a site with the same title for each page. In the email, Garrett gave sound reasoning for not using my method for giving each page a descriptive title.

On a post such as this photo post, you will see that the title is a mash-up of two different parts of the post: the caption under the photo, and the first few words of the first paragraph. This creates a title with mixed up capitalization, and which doesn’t really say much of anything.

For my sake, this at least helps me differentiate between pages in Mint or Google Analytics:

However, this page title is no more descriptive or helpful for a reader or for search engine optimization than simply leaving the title as my site’s name.

Garrett indicated that he plans to bring this issue up with the people at Tumblr. It’s an issue that many using Tumblr seem to have. I suggested the possibility of having a “Page Title” field in the post types that currently don’t have such a field, though I’m not certain how difficult or user-friendly that would be to implement.

As a result of my conversation with Garrett, I have decided to change my to the second option I presented in Friday’s post, which was to include a descriptive title on blog posts with a title, but omit the descriptive title on all other posts.

<title>{block:PostTitle}{PostTitle} | {/block:PostTitle}{Title}</title>

Until a better solution is presented by the folks at Tumblr, this will have to do.

Descriptive Page Titles in Tumblr


11 notes

I hadn’t planned on writing so soon on another Tumblr theme development topic, but I have noticed a problem on several Tumblr sites that is really easy to fix and has benefits both for your readers and search engines as well.

What’s In A Name?

The manner in which Tumblr allows you to name your website pages in the <title> html tag is rather confusing. In the custom theme docs, the only Tumblr code used to describe the page’s title is {Title} which only displays the blog’s title, not the title of the actual page your reader may be on.1

This is how Tumblr indicates a page’s title in each of its examples in the custom theme docs:

<title>{Title}</title>

A Little Bit Closer

Later on in the theme docs, Tumblr indicates that in order to display a post’s title on a page, you use the combination of the {block:PostTitle} tag (to determine if there is in fact a post title) and the {PostTitle} tags.

{block:PostTitle}
    <h2>{PostTitle}</h2>
{/block:PostTitle}

What they don’t indicate is that this combination of tags can also be used in the <title> HTML tag, as follows:

<title>{block:PostTitle}{PostTitle} | {/block:PostTitle}{Title}</title>2

While this format is better than what we started with, it unfortunately only covers one specific type of Tumblr post: an article with a title. This means that the following still go without descriptive page titles:

  • photo posts
  • quote posts
  • link posts
  • chat posts
  • audio posts
  • video posts

The Solution

So what is the solution to this problem? You want a descriptive title for your blog, but the {PostTitle} tag isn’t cutting it.

Enter: {PostSummary}

Somewhat ambiguously, Tumblr includes a tag that will generate a title if one exists, and will fall back on a short summary of the post’s content if a title does not exist. This is perfect for all of the post types listed above, as well as articles which do not have a specified title.

On my blog, my <title> tag looks like this:

<title>{block:PostSummary}{PostSummary} | {/block:PostSummary}{Title}</title>

If you look around my blog (which I hope you do!) you will see that every page on this blog has a descriptive title in the browser title bar. This also translates into more descriptive titles for Google and other search engines when they index my website.

I hope this post helps you create a more pleasing reading experience for your readers. If you have any questions or any other feedback don’t hesitate to hit me up on Twitter or via email.

Addendum

I have written an addendum to this post, which includes Garrett Murray’s argument against using the method I’ve described above to title Tumblr pages. I have to say, it made me rethink using this method. I strongly suggest checking out the addendum and making your own informed decision from there.

  1. A rather surprising and notable instance of this issue is on Garrett Murray’s Maniacal Rage blog.
  2. Note that I put the vertical bar with surrounding spaces inside the {block:PostTitle} tags. This is so the vertical bar doesn’t display when on the home page of your blog. You are welcome to use whatever format you’d like to display your page’s title.