Tweet Button: a new toy

I wrote Twitter Lays Claim to the Tweet Button today for BlogHer. A new Tweet Button is just a new toy. It must be tried out. I’m trying it here on Web Teacher.

On this blog, it seems best to continue to use the Topsy Retweet Button plug in for WordPress on the home page. The Twitter Tweet Button works well at the bottom of a post when looking at a post’s permalink. Interestingly, sometimes the number of tweets registered with the two tools don’t match up. That will be something to watch.

Happy tweeting.

Useful Links: CS instruction, emergencies, smart bike

Restore meritocracy in CS using an obscure functional language takes on the issue of leveling the playing field in CS classes with an interesting suggestion. What do you think of this idea?

In case of Emergency, Update your Facebook status talks about what is happening the the world of social media and how it’s changing the way we respond to everything, emergencies included. You can find out about an Emergency Social Data Summit set for tomorrow and how to follow the discussion that takes place there.

I’m smacked into silence by this one. Apple Patents Smart Bike.

The $100 Question: Why did you start blogging?

$100 Question Promo GraphicYou can win $100 by answering my question at the BlogHer site. To be eligible to win, answer before  Thursday, August 12.

The winner will be picked at random, so leave a comment at BlogHer to get in the running for the money.

The question you have to answer? Just this:

What was the original impulse that drove you to begin blogging? Is that still what’s driving you?

I answered the question myself, if you’re interested. I hope you will go take a chance on winning.

Can Twitter’s new Suggestions for You Feature make you a power Tweeter?

With Discovering Who to Follow, Twitter let the world know that things were changing in Twitterland.

The change is the addition of Suggestions for You to the Twitter Find People menu. The suggestions are personalized and based on the people you follow and the people they follow. Recommendations for you also come from account profiles.

Twitter has had a Browse Interests tab in the Find People options for quite a while. I’ve found some people I wanted to follow that way. But Twitter thinks it has a better way to help me find exactly the right people to follow.

When the news of Suggestions for You first appeared, only about 10% of Twitter users got to try it. Apparently, The Bloggess was one of them. See Oh twitter. I don’t know whether I should feel touched or insulted. Keep in mind that The Bloggess is really good with Photoshop. Just sayin’.

Quite a few of the 90% of Twitter users who didn’t get it right away went on Twitter asking where it was. Others found it a good idea and helped spread the word.

Twitter apes Facebook with Suggestions for You – Sounds like a pretty good idea for those looking for friendship http://bit.ly/daonJk #EFCGMon Aug 02 17:20:02 via HootSuite

Early images of how it would all work appeared at Mashable in Twitter Starts Offering Personalized Suggestions of Users to Follow and TechFemina in Twitter adds the ‘Suggestions For You’ tab.

A few days later, Twitter temporarily suspended the Suggestions for You testing. so that it could be rolled out for all users. A few people encouraged Twitter to keep it gone, gone, gone.

Dear @Twitter I want NO “Suggestions for ME” ! RT @TweetSmarter Twitter Has Disabled TheNew”Suggestions for You”Feature:http://j.mp/d5Yxm1Wed Aug 04 10:45:43 via Seesmic

By now it’s popped into your Twitter account. When I noticed it in mine, I looked to see who was suggested for me. The first four suggestions were an Albuquerque local (my profile says I’m from Albuquerque), a music site (I follow several musicians), and a couple of web development guys (I follow lots of webdev people). On the mark for me, I thought. As I dug deeper into the recommended people, I found a few BlogHers, a few more Albuquerque folks, some more webdev people. Most suggestions were a good match for me.

twitter suggestions

Some were not anyone I’d want to follow. They were suggested because people I follow follow them. If you’re sure you’ll never follow someone, you can use the Hide link, and you’ll never see that name suggested again.

I thought the interface was easy. The account bio is there to help you, a follow button is right there. The only missing piece for me was that you can’t assign someone you decide to follow to one of your existing lists right there on the page.

Based on the suggestions, I decided to follow Nick Finck, Scott Fegette, Tim Berners-Lee and Lisa aka scenariogirl. And I’ll keep looking at the list of suggestions, because I thought they were accurate for my interests. My history with finding people to follow on Twitter has been rather random. This is a way to focus. I wonder how well it would work if I didn’t already follow a few hundred people and have relevant keywords in my bio. I don’t think it would be helpful to someone just starting out on Twitter.

Have you tried it? What did you think? Is it useful or is it another big publicity drum roll over nothing special? Do you agree with the sour grapes tweeter I quoted above or are you a convert? Take the poll!

[polldaddy poll=3595637]

[Cross posted in a somewhat different version at BlogHer.]

Useful Links: Accessibility Failures, Gates on Education, downgrade your iPhone

10 Common Accessibility Problems from Dingo Access is a well explained list of common failures. For each problem, the solution is provided. The list is derived from WCAG 2.0 recommendations.

Bill Gates: In Five Years the Best Education Will Come from the Web. What do you think about this?

I haven’t had a bit of trouble with iOS 4 on my iPhone 3, but apparently some people have. Lifehacker tells you how to go back to iOS 3 if you need to. My biggest problem with my iPhone is when I hold the phone with my left hand, my cheek bone activates the mute button. Very annoying.

Document outlines in HTML5

There was some discussion about HTML5 document outline in the comments to my recent post HTML5: the new hgroup element. I thought the topic deserved a post of its own.

We’re all familiar with the DOM, that treelike structure that outlines the contents of an HTML document. Here’s a snippet of a DOM tree as displayed in Firebug.

firebug example of DOM

In HTML5, you can still navigate the DOM tree and can still outline a page of HTML based on the content of the page. The change in HTML5 relates to headings.

In previous versions of HTML, the heading elements (h1–h6) were assumed to reveal the structure of the document. They could be outlined and navigated with assistive devices. The way headings will reveal structure has changed in HTML5. In HTML5, there is something called ‘sectioning content.’

Elements that fall into the category of sectioning content include article, aside, nav, section. Each element of sectioning content potentially has a header, and that header forms part of the document outline. Let’s look at some examples.

<h1>My Adventures with Dreamweaver</h1>
<h2>Or, how I learned to love Code View in 3 easy lessons</h2>
<h2>Lesson One</h2>
<p>blah, blah, blah</p>
<h2>Lesson Two</h2>
<p>blah, blah, blah</p>
<h2>Lesson Two</h2>
<p>blah, blah, blah</p>

In HTML4, the <h2>Or, how I learned to love Code View in 3 easy lessons</h2> would appear in the document outline as if it were a section heading. But, in fact, it is a tagline or subtitle for the h1 it follows.

In HTML5, if this were marked up as a section or an article with a header element containing a hgroup element, the <h1>My Adventures with Dreamweaver</h1> would be recognized as the head of that section of content and the outline would reflect that. Here’s how it might look formatted that way.

<section>
<header>
<hgroup><h1>My Adventures with Dreamweaver</h1>
<h2>Or, how I learned to love Code View in 3 easy lessons</h2>
</hgroup>
</header>
<h2>Lesson One</h2>
<p>blah, blah, blah</p>
<h2>Lesson Two</h2>
<p>blah, blah, blah</p>
<h2>Lesson Two</h2>
<p>blah, blah, blah</p>
</section>

The h2 elements for Lesson One and so on would show up in the outline as subheadings in that section of content. But the second heading in the hgroup would not form part of the document outline.

There’s an online HTML5 Outliner that will let you look at your HTML5 pages and see exactly how they are outlined. It’s a good tool to help you understand how someone tabbing through the headings of your HTML5 document would see the document structure and navigate.