The Daily Sucker

Thinking for a Living – Not the Daily Sucker for Monday, March 1, 2010

March 1st, 2010 4:04 am by Vincent Flanders

Submitter’s comments: Now this is nice! It has a beautiful horizontal navigation, which you can control by keyboard, too. Needless to say that it breaks my favorite hotkeys Alt-left and Alt-right to navigate backward and forward in my browser.

Just tried to click some post called “Rethink. Redefine. Redesign.” Would be a great idea. When you’re at the utmost left or right position, which you cannot tell as there’s no horizontal scrollbar visible, you automatically jump to the next/previous article. And as you can see at the upper right corner, you can also press the letter ’s.’ No idea where that brings me, but at least it does something. You can even point with your mouse at the letter ’s’ and my browser says that I can click on it. I do not dare, as no url shows up on my status bar, so I don’t know what happens.

Oh wait! The ’s’ was the last letter of ‘Issues’. I just had to make my browser window a bit wider. Lucky me that I have a screen capable of 1280 pixels horizontally. But everybody has wide screens, nowadays, don’t they? (And lucky me I know how to turn off Javascript, which disables this crap and results in a normal, vertical page.)

Vincent Flanders’ comments: This site conveniently classifies itself as “experimental,” which disqualifies it from being a WPTS Daily Sucker — no matter how much the site sucks. And the site sucks much.

The site’s content consists of articles. Articles are composed of words. Words need to be presented in a linear fashion and that means top-to-bottom — not horizontally, which necessitates scrolling (or, in this case, clicking). The navigation goes batshit crazy on the feature pages. This is an information site and people expect to see content presented conventionally. Remember: it’s experimental; it sucks; and it isn’t the Daily Sucker.

There are a lot of contrast problems, as this screen capture by the Juicy Studio Contrast Analyzer demonstrates. Remember: it’s experimental; it sucks; and it isn’t the Daily Sucker.

I hate writing that looks like it came out of dack.com’s Web Economy Bullshit Generator. The modus operandi page of today’s not-the-Daily-Sucker has the following phrase:

We tried to think ahead and create a site that was a paradigm shift in interactivity and turn the traditional blog format on its head – or in this case, on its side.

Paradigm shift? Bullshit. If I want a paradigm shift, I’ll stand in front of the San Andreas Fault and wait for the big one. (Yes, I’ve used the phrase twice on WPTS, but it’s used sarcastically). Remember: it’s experimental; it sucks; and it isn’t the Daily Sucker.

Thinking for a Living

Posted in Not a Daily Sucker, Usability, Web Design |


The Daily Sucker

Not The Daily Sucker – Your print.css file is hurting you

February 16th, 2010 4:04 am by Vincent Flanders

I ran into two articles about problems in using a CSS file for printing:

  1. Browser Performance Problem with CSS “print” Media Type (December 2009)
  2. 5c media=print stylesheets (February 2010)

It turns out that if you’re using a print stylesheet (shows up in the format <link href=”print.css” type=”text/css” rel=”stylesheet” media=”print” />), every other file has to wait to load until print.css finishes loading.

To get the full effect of the delay, I created a 583Kb print.css file — which may be the world’s largest print.css file — and placed it in the head of this HTML file. Notice how long the page takes to display (I’ve turned off caching and file compression.).

The following picture shows what happens (click graph for larger example):

The page took 7.42 seconds to load. Page Speed gave the page a score of 81. Yslow gave it a “B,” with a score of 84. These two tools are extremely important and should be in your arsenal.

Optimizing the page. I removed the CSS from the <HEAD> of the document and inserted the Javascript code from Article 1 just before the </BODY> statement.

<script>
window.onload = function() {
var cssNode = document.createElement(’link’);
cssNode.type = ‘text/css’;
cssNode.rel = ’stylesheet’;
cssNode.href = ‘print.css’;
cssNode.media = ‘print’;
document.getElementsByTagName(”head”)[0].appendChild(cssNode);
}
</script>

</body>
</html>

As you can see in the graph below, the document loads much faster (click on the graph for larger example). All files load in 5.97 seconds, but the whole page (everything but the print stylesheet) loads in 2.11 seconds — the visitor quickly sees the page and doesn’t care that the print stylesheet loads last because s/he may never want to print the page and if s/he wants to print the page, it won’t happen immediately.

Page Speed gave this version of the page a score of 85. Yslow gave it a “B,” with a score of 83. Page Speed liked the page 4 points more, but Yslow liked the page 1 point less.

Since nobody on Planet Earth is going to print a document immediately after it loads, it’s safe to use Javascript to load the print stylesheet. What if they don’t have Javascript enabled? See Article 1 for the answer.

Yes, it’s true that nobody is going to have a print stylesheet that’s this large (it’s composed mostly of comments) and the improvements aren’t as important as caching and compressing your site’s files, but it’s good to be aware of what causes roadblocks in displaying your web pages.

Posted in Not a Daily Sucker, Usability, Web Design |


The Daily Sucker

Not The Daily Sucker

February 16th, 2010 4:04 am by Vincent Flanders

Customers Increasingly Intolerant With Slow Web Sites

Posted in Not a Daily Sucker, Usability, Web Design, You Should Read |


The Daily Sucker

Not a Daily Sucker for December 16, 2009

December 16th, 2009 4:04 am by Vincent Flanders

Website Owner’s Manual — 2 free PDF chapters from the book – http://bit.ly/6EVKqK and http://bit.ly/8Mftfl

Posted in Not a Daily Sucker, Usability, Web Design, You Should Read |


The Daily Sucker

Found an animated GIF that makes sense.

November 11th, 2009 4:04 am by Vincent Flanders

I’d say that 99.92% of all animated GIFs should not be used on a web site. However; there are the .08% that are acceptable, but they’re hard to find. Of course they are. Here’s an animated GIF whose use actually makes sense.

Posted in Not a Daily Sucker |


The Daily Sucker

An interesting email about architects

November 2nd, 2009 9:09 pm by Vincent Flanders

Your understanding of architects (Architecture — An Industry With Sucky Web Sites) is way off, which is understandable as most everyone views architects incorrectly. Sadly, us structural engineers do nothing to change that perception. Well, some of us do, but few.

“I don’t know what the deal is with architects. For an industry that depends on accuracy and stability, they seem wildly inaccurate and unstable.”

Architects don’t have much to do with accuracy and nothing to do with stability. It’s the structural engineers who provide this for them. It’s no surprise that when they attempt to provide this themselves, in say a web site, they fail miserably at it. They haven’t consulted with a structural engineer for this part of the project.

“They love, love, love, love Mystery Meat Navigation, which doesn’t make sense because they wouldn’t use this technique on their buildings.”

Yes they do love it. And, believe me they try to use it on “their” buildings. Structural engineers manage to squeeze out as much of this as they can before concrete and steel hit the site.

“When it comes to their web sites, architects seem to be one floor short of a complete building. They all need to be redesigned.”

Their buildings wouldn’t be much of a building without structural engineers as well.

I enjoyed the architect bashing. ;-)

Posted in Not a Daily Sucker, Usability, Web Design |


The Daily Sucker

It pays to over-compress your images

October 14th, 2009 6:06 am by Vincent Flanders

Sometimes, people complain when I used graphics they consider over-compressed. Yes, many of them are over-compressed, but this graphic (which is not over-compressed) will explain why.

Posted in Not a Daily Sucker, Web Design |


The Daily Sucker

My Social Networking Links of Interest on September 29, 2009 at 12:12 am

September 29th, 2009 12:12 am by Vincent Flanders

“Microsoft confirms free security software ships Tuesday” — http://bit.ly/HZM94

Posted in Not a Daily Sucker, Ping.fm, You Should Read |


The Daily Sucker

My Social Networking Links of Interest on September 5, 2009 at 2:37 am

September 10th, 2009 2:02 am by Vincent Flanders

Reading “Top 10 Apps for Scheduling a Meeting Online” http://bit.ly/2gEzFY I’ve used Doodle and like it.

Posted in Not a Daily Sucker, Ping.fm, Twitter, You Should Read |


« Previous Entries