It’s remarkable how Google scored this low, but everyone must admit that Google turns out to be the least visual appealing. Maybe that did it.
|
It’s remarkable how Google scored this low, but everyone must admit that Google turns out to be the least visual appealing. Maybe that did it.
|
“What happens when an English phrase is translated (by computer) back and forth between 5 different languages? The authors of the Systran translation software probably never intended this application of their program. As of September 2007, translation software is almost good enough to turn grammatically correct, slang-free text from one language into grammatically incorrect, barely readable approximations in another. But the software is not equipped for 10 consecutive translations of the same piece of text. The resulting half-English, half-foreign, and totally non sequitur response bears almost no resemblance to the original.”
The principle is to feed a perfectly normal English sentence into the automated translation, which in turn will process it through ten languages and every time back to English. The result roughly corresponds to the aforementioned description. Some apt examples:
|
Chris Pirillo:
“What Browser do you Use? Are you happy with your browser, or do you feel it’s lacking?”
To many this may be too heated a discussion to engage in, but all one needs a zealousless perception of things and some honesty. Yes, Internet Explorer rendered itself a horrible reputation throughout the years and has probably partially retained the image, despite the numerous enhancements. When facing facts, though, IE7 did finally mature into a decent browser with adequate security. Amongst other caveats, it still lacks web standards conformity, though Microsoft claimed to have resolved the latter to a satisfactory degree. Another major aching-point is the lack of c13y (a.k.a. customizability, without wanting to appear fancy). This issue’s importance is up to the beholder; whilst advanced ‘internauts’ value this a great deal, casual internet users probably couldn’t give.
That’s where Firefox coasts in. With it steadily gaining market share (more concretely, snagging bits and pieces away from IE, consistently) many alike are discovering Firefox as a credible alternative for day-to-day web browsing, along with its (nearly) boundless array of extensions and plug-ins, which makes it so popular. From ad-blocking to mouse gestures, the idea is you start out with a barebone (quite a competent one, nonetheless) and add the desired functionality as you go. This has given Firefox a lot of lift, even to the point of neglecting some crunching issues like memory-leakages and bloat.
All the consideration given for both competitors, one could also give Opera a spin, which is a back-to-basics type of browser. With ‘basics’, I mean making agreeable setbacks for the Greater Good, being:
The smaller user base might be a testament of the lack of c13y, and perhaps marketing efforts. Nonetheless, Opera is a great browser, yet might be aimed at the more purist type of web audience.
I snapped up some cites from Chris Pirillo’s blog via ClipMarks:
|
ClipMarks Remarks: IE7 is NOT the best browser, no matter who’s touting it. I’m the first one to admit that the enhancements were welcome, but it doesn’t make it the best one around, just yet. I don’t agree with the remark that Firefox is “it” either, in its current state, seeing it’s prone to memory leaks and ends up being slow after extended use. Maybe Firefox 3 will bring solace. I firmly concur with the last clip.
|
WebKit is the open source browser engine driving many Mac OS X applications like Safari (the browser), Dashboard, Mail, etc., and is a derivative of KDE (familiar to some geeks) technology.
Without wanting to sound ignorant, but I haven’t really kept up with Apple software, so if I’m completely honest, I must admit I wasn’t aware of WebKit and looked it up. That put aside, as the folks at SimpleBits suggest, this property raises excitement amongst the web design addicts. It’s so enticing because as a web designer, you want your creation to strike the users in all glory, fonts-galore included. The latter has always been a problem due to the variety of systems and browsers roaming the Internet and inherently, because of this variety, one webpage can look 10 times different in 10 different setups. To aid this, the @font-face property allows the designer to designate a single font which will automatically be downloaded in case the visitor doesn’t come equipped with it.
While this may sound like utter web developer ecstasy, the Internet could (and more like will) become (even more, if at all possible) contaminated with sickening free fonts/dingbats. Amateur wannabe designers will indeed, as stated in the last remark, be given the opportunity to make MySpace look even worse.
It’s funny how recognizable these mistakes are, as I usually get worked up when I encounter these dorky mistakes and near-instantaneously click the back-button. To me these are obvious mistakes, yet oh so omni-present.
Follow the link below for the complete article:
|
Ever tried to insert a flash animation into a valid XHTML webpage? I certainly have, and it always breaks your markup. The standard markup flash uses to render its animations stems from an ancient era of semantically misused tags and properties. There must be a better way, I hope…
Several methods have independently been developed, each with their own benefits. There are two major techniques to choose from: the first being the “Flash Satay” method, the other kinda remains nameless. Let’s start with the Satay method.
The full directives are listed at the notorious A List Apart website.
In short, this method basically incorporates a container movie, into which you load the actual animation, preserving your content, with a friendly wrapper. This produces fairly nice markup, but it’s kind of a hassling experience — nonetheless effective.
The other technique uses the omni-valid tag called “object”, which is recognized by [nearly] all major browsers. No container file is used: you provide the user with an image containing a friendly error message. This is the way I do things. It’s a clean thing to do, but leaves a white backdrop on transparent framed flash movies (like those from YouTube). I’m certain there’s a way to cure this, but I haven’t had the (uhm) chance to look into it yet.
<object type="application/x-shockwave-flash" data="yourflash.swf" width="288" height="128"> <param name="movie" value="images/banner.swf" /> <img src="error.gif" width="288" height="128" alt="banner" /> </object>
Either path you choose, there are always drawbacks. For instance, when a visitor doesn’t already have Flash installed, he/she will not get a direct link to Adobe’s website (unless you make the effort of defining it yourself). Nevertheless, standards compliance is the way to go, although I know we’d all appreciate an out-of-the box solution — someday soon.