Posted on 5 Comments

LOST Characters Find Twitter

Note: There’s been an onslaught of people copying the SpoilerTV concept resulting in many duplicate names. I’ll update this post later to reflect the originals versus the imitators.

If you are a LOST fan, you’ll love being able to interact with Jack Shephard, Kate Austen, Sayid Jarrah, Sun Kwon, and Hugo ‘Hurley’ Reyes. They are each on Twitter now!

You may want to follow @abcinnercircle also. You can follow me on Twitter @djuggler.

Update: Apparently this post created some attention for Sayid. His response:

@djuggler Your link boosted my followers. A suspicious number of them, in fact. If I notice anything else… I might have to pay you a visit about 18 hours ago from twhirl in reply to djuggler

Update: In case anyone is curious, the LOST Twitters are part of a role playing game started on Spoiler TV.

Oceanic Six Twitter Project

Postby Gideon on Tue Dec 30, 2008 4:28 pm
All right guys, I know I’m new around here, but I had a pretty cool idea that I think some of you may want to participate in. Essentially, Twitter accounts will be created for the Oceanic Six (minus Aaron, obviously), and we’ll use them to follow the events off-island in this season as if we were those characters. Need for information? Keep reading!

What’s Twitter?
Twitter is a social network/micro-blogging service that is absolutely free to sign up for. You can see the example I’ve set up here. The amount of characters you can input for one "post" is limited to 160. This means sometimes you have to be smart to say all you want to say.

Who can participate?
Anyone can participate! Just post here with the character you’d like to post as, and I’ll help you set up an account if you need any help. I would like for you to make a commitment to this, however, and continue with your character at least until he or she makes it back to the island.

So what/when do I post?
Just post whatever happens to the character on the show! Act as if you are the character, not yourself commenting on the character. Think of it as role-playing. You can post whenever you like, whether on Wednesdays after the show or any time throughout the week, but please do not post more than once a day, simply because people will be "following" you and we don’t want to flood and annoy them. Also, please post at least once a week.

[Source, Spoiler TV, Oceanic Six Twitter Project]

Sayid is being played by Dreyesbo. Kate is being played by Jess. Sun is being played by Mellow. Hurley is being played by PenguinJosh. I’m not sure who claimed Jack but I am guessing Gideon. Charles Widmore is being played by DarkUFO. Vincent the dog is being played by bigsimpsin. Desmond is being played by RobinTWP. Frank_Lapidus is played by Anis Ben Amor. mhawking is being played by ???. Benjamin Linus is being played by ???. Claire Littleton is being played by ???. James Ford is being played by ???. John Locke is being played by ???. Miles Straume is being played by ???. The second Kate Austen is being played by ???. The Island is being played by ???. Jack Shephard (the second) is being played by ???. Juliet Burke is being played by ???. Sayid_Jarrah the second is being played by ???. Walt Lloyd is being played by ???.

See also. Here’s hoping ABC doesn’t make the Mad Men mistake.

Posted on 2 Comments

Always more to learn

No matter how long you do something, there is always more to learn. You’d think that since I’ve been doing HTML coding since around 1993, I’d pretty much know every in and out and every little tag and peculiarity regarding HTML. Not so. See, we form habits. We get into patterns. Specs change but we retain earlier hacks and assumptions. Today I learned an absurdly simple thing. Maybe I knew this and forgot. I rarely use tab orders on my forms. Most of the forms I create are very top down so the natural tab order is sufficient. In computing, counting starts at zero. But in HTML tab order, zero means exclude that form element from the tab order.

To exclude an element from the tab order, set the value of tabindex to 0. [Source, Webcheatsheet.com, How to Control Tab Order in HTML]

Because of my computer science studies, programming in PHP, JavaScript, C and so on, my inclination is to always begin with zero. Of course, my favorite web application language is ColdFusion and it always starts at one. I can only assume the Allaire brothers were originally targeting non-programmers.

HTML is about to become HTML 5. Funny enough I just traded my HTML 3.2 book at McCay’s a few weeks ago. Maybe I should have kept it and re-read it.

Update Jan 12, 2009: Ian Tempest noted in the comments that zero does not exclude an element but rather moves it to the end of the tab order. From the W3C HTML 4.01 specification:

Those elements that do not support the tabindex attribute or support it and assign it a value of “0? are navigated next. These elements are navigated in the order they appear in the character stream. [Source, W3C, 17.11.1 Tabbing navigation]

Posted on Leave a comment

Start the year off with professional development

Is training and professional development something you are going to get around to one day? Why not make it today? Resources abound for honing our career skills. iTunes has free podcasts from iTunes University. A quick Internet search should produce abundant articles and videos useful to whatever your line of work.

I am taking the next 30 minutes for professional development. In my case, I am going to begin learning Eclipse so that I can move away from Notepad++ and CFStudio5. This will be a step toward moving my development environment to a portable hard drive so that I can work on any machine anywhere I go. I know learning to use an editor sounds silly. In my case, shouldn’t "professional development" be about learning about new software testing techniques, algorithms, or another programming language? Not necessarily. Anything that you learn which makes you more efficient in your career or makes you more valuable to your company is professional development. Even if you already know and use Eclipse, watching these videos make teach you something you don’t realize you are overlooking. Retraining on a tool you already use and know can help break bad habits or reveal better ways to use the tool.

Update: See Darren Schall’s discovery on Eclipse workspaces as an example of using a tool for awhile and then discovering its hidden power.