Saturday, February 28, 2009

Photo Fridays


Sunset over Mobile Bay
Point Clear, Alabama


Tuesday, February 24, 2009

Death to IE6

death to ie6Those of us who code web apps and web sites have had to deal with making the presentation layer work in IE6. Due to IE6's non-compliance with W3C Standards, this involves a ridiculous amount of extra work (i.e., hacks) to get the page to render correctly in this most outdated of browsers. We've all written CSS that contains something like this:




.foo { margin: 0px 10px; _margin: -3px 5px; }


just so things will render the same across all browsers. And don't get me started on the extra lines of Javascript needed to make things work with IE6's archaic DOM.


The problem is that these deviations from the standard now become the standard and increase the amount of time required to write and maintain code. For those of us who went through the browser wars it is, unfortunately, second nature to write in all of these hacks; for others, it's just plain crazy and not understandable. Unfortunately, since this ancient browser is still in use by a non-negligible amount of people (somewhere between 10 to 20% worldwide), we have to support it.


But not for long. There is a movement underway to rid the world of IE6. From wired.com:



Several large websites in Norway have launched an advocacy campaign urging Microsoft Internet Explorer 6 users to upgrade their outdated web browsers.


Leading the charge is Finn.no, an eBay-like site that is apparently the largest site for buying and selling goods in all of Norway (Finn is Norwegian for "Find"). Earlier this week, Finn.no posted a warning on its web page for visitors running IE 6. The banner, seen at right, urges them to ditch IE 6 and upgrade to Internet Explorer 7.



While started in Norway, this movement has gone global. An international wiki site tracks the spreading suppport; you can also follow on twitter using the #IE6 hashtag; and show your support by joining the Facebook group. Even Microsoft is supporting the campaign, issuing a statement that they hope their users will upgrade to IE7.


A global, grass-roots movement -- very cool. IE6? The bell tolls for thee.



Monday, February 23, 2009

Did You Know? (Part Two)

Some more interesting facts I came across while wandering the tubes:



  • Ralph Johnson Bunche was a chief research analyst in the Office of Strategic Services (pre-CIA spy agency), the first African American to be a division head in the Dept. of State and he was with the United Nations, where he became the principal secretary of the UN Palestine Commission. Due to his work, Dr. Bunche (Ph.D. Harvard) was awarded the 1950 Nobel Peace Prize for mediating the 1948 Arab-Israeli truce.

  • Elizabeth “Bessie” Coleman, who moved to Chicago in 1915, was the first African American to become an airplane pilot and the first American of any race or gender to hold an international pilot license. In 2005, a small park in Hyde Park neighborhood was named Bessie Coleman Park.

  • The History Channel's website has a great interactive feature on black history timeline.

Saturday, February 21, 2009

Nice Redesign!

Cabrini ConnectionsCabrini Connections has a new site design! The navigation makes it much easier to get around, to enter your SVHATS entrance and exit information (no excuses now!), and they even have some fun stuff like adding the Cabrini Connections theme to your iGoogle. Cool!


Go check it out at www.cabriniconnections.net



Friday, February 20, 2009

Photo Fridays


City Grid
Chicago, IL


Thursday, February 19, 2009

CTA Bus Tracker Update

CTA bus trackerHaving previously written about CTA's bus tracker, I wanted to let you know that they're expanding their list of routes. Here's the list of routes that are currently being tracked:


3, X3, 4, X4, 6, 7, 8, 9, X9, 10, 11, 12, 17, 18, 20, X20, 21, 22, 35, 36, 38, 39, 43, 44, 47, 48, 49, X49, 49B, 50, 51, 52A, 52, 53A, 54A, 54B, 55, X55, 55A, 55N, 56, 56A, 59, 60, 62, 62H, 63, 63W, 67, 68, 69, 75, 77, 78, 79, 80, X80, 81, 81W, 82, 84, 85, 85A, 86, 87, 88, 90, 90N, 91, 92, 93, 94, 96, 97, 125, 126, 129, 145, 146, 147, 148, 151, 152, 156, 157 and 165.


As of March 2nd, these additional routes will now be available on ctabustracker.com:

1, 8A, 14, 15, 24, 28, X28, 29, 34, 49A, 53, 54, X54, 57, 65, 66, 70, 71, 72, 73, 74, 76, 111, 119

Wednesday, February 18, 2009

:hover


We continued to learn about links this week -- specifically, how to create text links such as this:


visit Cabrini Connections


and image links such as this:



We also started to learn about applying the pseudo class of :hover to our links, both text and images, so we can show something different when a user hovers their mouse over the link. We are slowly but surely building an HTML/CSS vocabulary and, more importantly, learning that we need to be precise when we're typing!