<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Wenblog</title>
	<atom:link href="http://www.wenex.com/wenblog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.wenex.com/wenblog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 23 Feb 2010 16:49:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Quick and easy Divitis Remedies</title>
		<link>http://www.wenex.com/wenblog/?p=75</link>
		<comments>http://www.wenex.com/wenblog/?p=75#comments</comments>
		<pubDate>Tue, 23 Feb 2010 16:49:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://www.wenex.com/wenblog/?p=75</guid>
		<description><![CDATA[Back in the dark ages of web design, layouts were lumbering beasts with heavy skeletons of nested tables and spacer GIFs. I have no regrets for designing this way; it was the de facto standard, even detailed in web site reference material. But then we entered a renaissance period: we discovered the elegance, freedom, and [...]]]></description>
			<content:encoded><![CDATA[<p>Back in the dark ages of web design, layouts were lumbering beasts with heavy skeletons of nested tables and spacer GIFs. I have no regrets for designing this way; it was the de facto standard, even detailed in web site reference material. But then we entered a renaissance period: we discovered the elegance, freedom, and flexibility of tableless design using semantic (X)HTML and CSS.<span id="more-75"></span></p>
<p>Naturally, this was not an overnight process. It’s taken many months of mental reprogramming, research, trial and error, and self-education. And even then, I’m in a bit of a transition period. In many cases I’ve merely swapped out the cumbersome tables with nested &lt;div&gt; and excess &lt;span&gt; tags. It’s a phenomenon Jeffrey Zeldman coined as “divitis” in <em><a href="http://www.happycog.com/publish/dwws/" target="_blank">Desigining with Web Standards</a></em>, and it’s only an improvement by degrees over tables-based layouts.</p>
<p>The next step towards design enlightenment is using more of the tools built into HTML and CSS to our advantage. That includes judicious use of <strong>class</strong> and <strong>id</strong> attributes, CSS features like inheritance and specificity, and perhaps some HTML tags you didn’t even know existed  (or knew of, but not their purpose). The following are common symptoms of divitis, and how to painlessly cure your code.</p>
<h4>Creating a container for something that’s already a container</h4>
<p>Ever place an unordered list in a &lt;div&gt; because you wanted to separate it out from the rest of the text? Not only can you style the &lt;ul&gt; tag directly, you can even style the &lt;li&gt; tags for additional control. Need this list to look different from that list? In addition to being able to assign a class or id to the &lt;ul&gt;, consider using &lt;ol&gt; or &lt;dl&gt; if the situation warrants.</p>
<p>Do you need to add emphasis to a paragraph of text and not the rest of it? You could add a <strong>class</strong> to that specific paragraph. In some cases you may be able to use &lt;blockquote&gt; or, for short lines, a lower level header, such as &lt;h4&gt; or &lt;h5&gt;.</p>
<h4>Tables are evil! But I still need to use them</h4>
<p>Tables are perfectly fine, and of course valid, html, as long as they’re being used solely to display tabular data. And they have a wealth of elements to call upon to not only lend more sensibility to the markup, but also create incredible flexibility when it comes to styling. Instead of adding <strong>div</strong>s or superfluous classes to indicate table separations such as titles, footers, and columns, consider taking advantage of &lt;caption&gt;, &lt;thead&gt;, &lt;th&gt;, &lt;col&gt;, &lt;colgroup&gt; and &lt;tfoot&gt; tags. It’ll trim that much more weight from your code.</p>
<h4>My forms will <em>not</em> behave</h4>
<p>Forms are a sore spot for many designers. They have to look good, fit in the layout, <em>and</em> be clear and logical for people to use. Oh, and any styling needs to account for the different behaviours of form elements, unique browser rendering, and possible enhancements like inline form validation. Almost makes you want to forgo that contact form for a simple e-mail link, doesn’t it?</p>
<p>Fortunately, forms have a number of lesser-known elements at the designer’s disposal. Group sections of the forms together using &lt;fieldset&gt; and &lt;legend&gt;. Organize field/label pairs using &lt;label&gt; along with the “for” attribute. And it’s definitely in your best interest to include an <strong>id</strong> along with a name for most, if not all, form fields. Most designers will find  that even after doing all of this, they still have to resort to <strong>div</strong>s to get their forms under control. By now, though, the number of extra containers you have to put in are far fewer, and you probably don’t have to nest any of them. You can’t always go for sparkling; but tidy can be an admirable goal.</p>
<p>This effort to curtail divitis (and its lesser known, but similarly troublesome cousin, classitis) is driven by a couple of core concepts: giving <em>semantic meaning</em> to our code, and <em>separating presentation from structure</em>. Both concepts are about making sure every tag has a significance, which in turn improves the markup’s accessibility, extensibility, and portability. In other words, the site is kinder for assistive devices, is more easily indexed by search engines, gives you quicker turnaround for updates and redesigns, and simplifies coding for mobile devices. So you can be noble <em>and</em> profitable.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wenex.com/wenblog/?feed=rss2&amp;p=75</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS3 Might Be the Best Prototyping Tool Ever</title>
		<link>http://www.wenex.com/wenblog/?p=73</link>
		<comments>http://www.wenex.com/wenblog/?p=73#comments</comments>
		<pubDate>Fri, 12 Feb 2010 16:37:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[24Ways]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Prototypes]]></category>

		<guid isPermaLink="false">http://www.wenex.com/wenblog/?p=73</guid>
		<description><![CDATA[While CSS2 and CSS2.1 introduced some ambitious elements, it’s CSS3 that’s becoming a real design powerhouse. I have to give credit to 24Ways and Handcrafted CSS to give me compelling examples of applying CSS3 design to prototyping.
Neato tools
In case you haven’t been following, many of the visual tricks we use in web design can now [...]]]></description>
			<content:encoded><![CDATA[<p>While CSS2 and CSS2.1 introduced some ambitious elements, it’s CSS3 that’s becoming a real design powerhouse. I have to give credit to <a href="http://24ways.org/2009/make-your-mockup-in-markup" target="_blank">24Ways</a> and <a href="http://www.handcraftedcss.com/" target="_blank">Handcrafted CSS</a> to give me compelling examples of applying CSS3 design to prototyping.<span id="more-73"></span></p>
<p><strong>Neato tools</strong></p>
<p>In case you haven’t been following, many of the visual tricks we use in web design can now (or soon) be done using styles instead of complex image trickery and awkward markup gymnastics. Some highlights:</p>
<ul>
<li><strong>Border-radius</strong> for making rounded corners on boxes</li>
<li><strong>Text-shadow</strong> and <strong>box-shadow</strong> for, well, you could probably guess</li>
<li><strong>RGBA </strong>for defining RGB (red, green, blue) values, plus alpha for opacity levels.</li>
<li>Embedding fonts using <strong>@font-face</strong>.</li>
</ul>
<p><strong>Using them to make great mock-ups</strong></p>
<p>Just like many designers (as evidenced in Megan’s informal poll in the above article), I mock up web page designs in a graphics program first (though I use Fireworks myself, because frankly, Photoshop scares me a little), slicing and dicing the graphics to fit them into the final design once it’s been approved. I’ll even go as far as convert it to an image to embed in a web page to give the client a concept of how it’ll look in the browser. But this process has its well-documented shortcomings.</p>
<p>By using the process outlined in Megan’s article, you can provide a more complete, descriptive, flexible concept of the client’s site. But that’s not even the best part: once you and the client have settled on the final design, you may suddenly discover that you’ve <em>already</em> <em>finished most of the web site!</em> Check it out: you’ve plunked all the content into a semantic CSS-based layout. You may have even put something together in Photoshop (or Fireworks) for your own benefit. All that’s left is working the final graphics into the layout, adjusting the CSS to be more widely compatible, and whatever associated mopping up you find yourself doing at the end of a great project.</p>
<p>Prototyping using CSS like this can inject some actual joy in the development process, because you can actually code and build web pages <em>first</em>, rather than fumbling with design. If you’re an html guy first and foremost, like I am, the whole procedure feels more natural and sensible.</p>
<p><strong>It’s just too bad we can’t keep all that great CSS we just wrote</strong></p>
<p>After selling your design using that CSS-based prototype, you’d probably be tempted to leave everything in the design as-is. After all, it’s a functional web page, isn’t it? Unfortunately, once you view the site in Firefox version 2.5 or earlier, or Internet Explorer version <em>anything</em>, Your enlightened design falls flat. On one hand, it probably degrades quite gracefully, and the site still looks pretty in browsers that don’t yet support these newer CSS elements. On the other hand, if you’ve sold the client on your pretty rounded corners for the boxes, and lovely translucent gradient effects or whatnot, you will have to replicate those in your graphics program to take back to your design.</p>
<p>This is the part that probably feels a little backwards; to me it even <em>reads</em> backwards. It’s time to slice &amp; dice the graphical mockup into its needed image elements and write up CSS2 (or older) statements to replace the not-yet-compatible ones. It’s like antiquing for websites.</p>
<p>But wait! You’re not going to just toss all those CSS3 elements, are you? Just sequester them into a separate stylesheet (or if you don’t mind your CSS coming up invalid in W3C validators, leave them in the stylesheet proper) and the browsers that don’t understand them just won’t pay attention to them. So while you’ve been building this flexible prototype, you’ve also been future proofing the web site, not to mention future-proofing your own skill set. By getting your hands dirty with CSS3 now, you’ll be a grizzled veteran by the time it becomes standard.</p>
<p>And you wonder why it’s one of the best prototyping tools ever?</p>
<p><strong>It’s not for everyone&#8230; or every project</strong></p>
<p>Prototyping a website like this requires the right kind of rapport with the client. The client must not only be aware of the fact that they’re only going to be able to view the concept in something like Safari or Firefox 3.5, they need to be <em>completely cool with it</em>. This slick and savvy approach to design mock-ups can quickly run afoul if the design has to pass over several sets of eyes, and those other sets don’t get the message about needing to view the site in specific browsers.  If you expect to spend as much time justifying your method as you will be employing it, then you’ll be forced to keep the tried-and-true prototyping method in your stable.</p>
<p>All the same, it’s worth the effort to give these new practices a shot, whether it be with that super-cool, progressive thinker of a client, or just one of your own pet projects. Master the techniques now, and force everyone else to play catch-up later.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wenex.com/wenblog/?feed=rss2&amp;p=73</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The iPad: Because We Pretty Much Have To</title>
		<link>http://www.wenex.com/wenblog/?p=69</link>
		<comments>http://www.wenex.com/wenblog/?p=69#comments</comments>
		<pubDate>Mon, 01 Feb 2010 16:43:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Editorial]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[HP Slate]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.wenex.com/wenblog/?p=69</guid>
		<description><![CDATA[Being a self-proclaimed gadget fanatic with a blog, I pretty much have to sound off on the recently announced iPad, lest I do the internet a disservice.
Apple is very good at repackaging technology and selling it as something new. They didn’t invent the mp3 player, nor did they pioneer the cell phone (or the smart [...]]]></description>
			<content:encoded><![CDATA[<p>Being a self-proclaimed gadget fanatic with a blog, I pretty much have to sound off on the <a href="http://www.apple.com/ipad/" target="_blank">recently announced iPad</a>, lest I do the internet a disservice.</p>
<p>Apple is very good at repackaging technology and selling it as something new. They didn’t invent the mp3 player, nor did they pioneer the cell phone (or the smart phone, or – and someone correct me if I’m wrong – the touch screen cell phone). But they are quite good at taking a piece of technology coveted by a niche of gadget fans and turning it into something that few consumers can live without.<span id="more-69"></span></p>
<p>As it is, the iPad is hard to categorize, though not for lack of trying. What I see right now is a sexed up, slightly overpriced and rather crippled netbook. The lack of video, the inability to multitask, the Flash non-support, and the paltry 16GB capacity should be deal-breakers for anyone wanting to do something resembling computing with the iPad. Even 64GB is nearly an affront to anyone who downloads video, installs applications and games, or generally accumulates files. The fact that the processor has the muscle to run OS X, but instead runs a modified version of the iPhone OS, also elicits reactions ranging from head scratching to outright annoyance.</p>
<p>I have little doubt that Apple has adopted the “rush to market, then iterate” approach to this device. They’ve announced to the world that their stable of high tech consumer goodies now includes a tablet, and people familiar with their products should expect a new version to appear every year or so. Sure, this approach pretty much screws the early adopter, but at the risk of sounding cruel, the early adopter is a bit of a masochist, anyway. Their love for either Apple or such devices will not wane. The iPad is a $500 (to $830) membership fee into that exclusive technophiles’ club.</p>
<p>But it’s in the yearly updates where the iPad will start to show some real promise. Expect to see all of the issues above checked off in future generations. Third parties will jump on board with productivity-boosting peripherals (that will still cater to the ultraportability of the device). Flash memory capacity is already reaching terabyte levels, even if it’s not yet ready for mass consumption. And if consumers demand it strongly enough, they’ll get that video camera, and possibly even a suitably brawny OS.</p>
<p>Apple pretty much has to do this. It’s not like they’re going to have the <a href="http://www.engadget.com/2010/01/06/the-hp-slate/" target="_blank">market to themselves</a> for very long.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wenex.com/wenblog/?feed=rss2&amp;p=69</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The CMS Isn&#8217;t Part of the Project; The CMS Is the Project</title>
		<link>http://www.wenex.com/wenblog/?p=62</link>
		<comments>http://www.wenex.com/wenblog/?p=62#comments</comments>
		<pubDate>Sun, 10 Jan 2010 01:40:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Editorial]]></category>
		<category><![CDATA[Knowledge Base]]></category>

		<guid isPermaLink="false">http://www.wenex.com/wenblog/?p=62</guid>
		<description><![CDATA[There&#8217;s a common trap into which we fall as a company. Well I&#8217;m sure there are several, but I&#8217;m just talking about the one for the sake of this post. We will put together a project proposal/contract for a client, collecting abstract feedback from them and turning it into concrete deliverables.
Then comes the bait. The [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a common trap into which we fall as a company. Well I&#8217;m sure there are several, but I&#8217;m just talking about the one for the sake of this post. We will put together a project proposal/contract for a client, collecting abstract feedback from them and turning it into concrete deliverables.</p>
<p>Then comes the bait. The client casually offers, &#8220;Oh, and I&#8217;d like to be able to update some of the pages myself.&#8221;</p>
<p>Eager to please, we return with &#8220;Sure, not a problem.&#8221; <em>Sproing! </em>Just like that, we&#8217;re ensnared.<span id="more-62"></span></p>
<p>This has nothing to do with the client trying to sneak a hefty feature in under the radar, and everything to do with our too-casual approach to CMS and eagerness to please. A recent project has inspired me to proclaim that <a href="http://twitter.com/seanatwenex/status/5306198469" target="_blank">&#8220;&#8216;Just adding&#8217; a CMS to a site can be like &#8216;Just adding&#8217; a football stadium to a garage at times&#8221;</a>, a proclamation that I have since taken as gospel. Content Management integration is not a feature; it&#8217;s a project unto itself.</p>
<p><strong>Preparing Ourselves and Our Clients</strong></p>
<p>As soon as the spectre of content management creeps into any project, a shift needs to occur. We need to re-evaluate the scope, timeline, deliverables and cost of the project. Most importantly though, we need to inform the client about why the project has taken this dramatic turn. It&#8217;s not their job to understand why building their site with editing capabilities is such a significant undertaking; it&#8217;s ours. And if it&#8217;s our job to understand, then it&#8217;s also our job to help the client understand.</p>
<p>This may also mean providing alternatives that not only significantly reduce the cost of the project, but could almost completely cut us out of the picture. This is why we have to have the utmost confidence in our abilities, and we have to clearly demonstrate the value in every option we provide.</p>
<p>There are plenty of situations that can cause a rift in the business relationship before it even forms; this is one of them. We don&#8217;t want a lack of clear communication to lead to a client vs. contractor standoff, especially when reputations and paydays hang in the balance.</p>
<p><strong>Now That We&#8217;re Prepared, Let&#8217;s Get Involved!</strong></p>
<p>One of the key reasons for keeping that client/contractor bond strong is that if they are certain about having a site with a CMS, we&#8217;ll need their help at getting this project done right. Yes, we&#8217;re in this together now!</p>
<p>We&#8217;ll need to know every last item, feature, functionality, bell, and whistle, they&#8217;d like to have in the site. This includes their &#8220;maybe&#8221;s and even their pipe dreams. This includes the stuff they want to see live at launch, the stuff they might like to include down the road, and everything else ever. We&#8217;ll need to know how this content is going to be managed and by whom if possible.</p>
<p><strong>Choose Your Weapon</strong></p>
<p>We&#8217;ll need every one of those details in order to match the right application to the desired feature set. The list of available CMS apps is nigh endless, even when distilling the list down to the top notch options. Each one has its own set of out-of-the-box options and functionality-extending plugins and modules. Each one has its own installation, setup and templating processes.</p>
<p>And then, if there aren&#8217;t enough variables there, we still have to consider our own skill set, our timeline if we&#8217;re given one, our budget, and available technology.</p>
<p>Our short list would be as follows:</p>
<ul>
<li><a href="http://www.joomla.org/" target="_blank">Joomla!</a>, one of the premier open-source CMSes. You can set up the basics in no time flat, but extensibility is hit or miss. User submitted extensions are a minefield, either giving you exactly the functionality you want or making your life hell trying to configure before uninstalling it in a fit of rage.</li>
<li><a href="http://expressionengine.com/" target="_blank">Expression Engine</a>, a robust license-based CMS built on the <a href="http://codeigniter.com/" target="_blank">CodeIgniter PHP framework</a>. The cost isn&#8217;t prohibitive, and easily slid into any development budget. The learning curve for this one is on the steep side, and I have a bone to pick with them and their sample content. But its power and potential are undeniable.</li>
<li><a href="http://wordpress.org/" target="_blank">Wordpress</a>, which we mostly know as a blogging platform. The push for Wordpress to be recognized as a full-blown CMS is coming from a number of directions, and with the right plugins, it makes a compelling case for itself.</li>
<li><a href="http://grabaperch.com/" target="_blank">Perch</a>, for which I&#8217;ll admit I know embarrassingly little about its installation and implementation. But all it has to do is work as advertised and I&#8217;m sold. Potentially ideal for the projects where the site will be basic in format, but the client still wants to manage it themselves.</li>
</ul>
<p><strong>Plan to Execute and Execute the Plan</strong></p>
<p>Even once we&#8217;ve picked our poison we can&#8217;t get dirty up to our elbows just yet. We still need to do our homework. Take the functionality wishlist from the client, find a viable solution for every last one, whether it&#8217;s core functionality, extensibility via plugin, or customized script (for the CMSes that allow it), and stick it in the budgets. Both the time and the cost budgets. We must provide as much feedback as possible about how things will work when we implement them. The client may be confused about some things, and disappointed about others, depending on their expectations. Again, our job to comprehend and make them comprehend. Besides, it&#8217;s better to dispel any misconceptions now than attempt to explain them mid-project. Clients can surprise us sometimes with their flexibility and understanding.</p>
<p>Once the myths and misunderstandings are explained away, and the entire project is laid out in painstaking detail, <em>then</em> we can get elbows-deep in this CMS project. The end result will be a much more cohesive work, and will progress much more quickly and sanely than trying to shoehorn content management into a nearly-finished website. And most importantly, we end up with the three hallmarks of a successful project: a happy customer, a happy bank account, and a tantalizing new addition to the portfolio.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wenex.com/wenblog/?feed=rss2&amp;p=62</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Migration</title>
		<link>http://www.wenex.com/wenblog/?p=60</link>
		<comments>http://www.wenex.com/wenblog/?p=60#comments</comments>
		<pubDate>Wed, 11 Nov 2009 15:12:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Administrative]]></category>
		<category><![CDATA[Web application]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.wenex.com/wenblog/?p=60</guid>
		<description><![CDATA[We originally set the Wenblog up on Wordpress.com, but have since decided to install it on our own host. We&#8217;re updating all the site links accordingly.
Out with the old: wenex.wordpress.com
In with the new: wenex.com/wenblog
I am still also working on tidying up the layout for the blog, bringing it closer to a happy marriage between the [...]]]></description>
			<content:encoded><![CDATA[<p>We originally set the Wenblog up on Wordpress.com, but have since decided to install it on our own host. We&#8217;re updating all the site links accordingly.</p>
<p>Out with the old: <a href="http://wenex.wordpress.com">wenex.wordpress.com</a></p>
<p>In with the new: <a href="http://www.wenex.com/wenblog">wenex.com/wenblog</a></p>
<p>I am still also working on tidying up the layout for the blog, bringing it closer to a happy marriage between the Wordpress style we had, and the core Wenex layout. But then the best feature of the best sites are their malleability; the capability of the webmaster to make subtle yet powerful adjustments without adversely affecting the overall browsing experience.</p>
<p>Learning the Wordpress platform in general has been a great and rewarding challenge. I probably don&#8217;t need to sell a whole lot of people on the application, but would still highly recommend it for blog publishing. And I&#8217;m still constantly uncovering new functionality and utility, which only serves to strengthen my attachment to it.</p>
<p>And while I&#8217;m working on the blog&#8217;s layout and functionality, I just know I&#8217;ll be inspired to build on its content!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wenex.com/wenblog/?feed=rss2&amp;p=60</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why don&#039;t we talk about Findability?</title>
		<link>http://www.wenex.com/wenblog/?p=46</link>
		<comments>http://www.wenex.com/wenblog/?p=46#comments</comments>
		<pubDate>Sat, 26 Sep 2009 16:01:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Editorial]]></category>
		<category><![CDATA[A List Apart]]></category>
		<category><![CDATA[Findability]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://wenex.wordpress.com/?p=46</guid>
		<description><![CDATA[We&#8217;re big fans of A List Apart. They&#8217;re on our list of resource links for a reason, after all. We admire the goal of touching on as many aspects of the web as possible. This means that pretty much every issue will have something for us. A feature in particular that I like about the [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re big fans of <a href="http://www.alistapart.com/">A List Apart</a>. They&#8217;re on our list of resource links for a reason, after all. We admire the goal of touching on as many aspects of the web as possible. This means that pretty much every issue will have something for us. A feature in particular that I like about the site is &#8220;Editor&#8217;s Choice&#8221;, a selected article from a past issue that is insightful as always, and usually very relevant, no matter how long ago it was originally published.<span id="more-46"></span></p>
<p><a href="http://www.alistapart.com/articles/findabilityorphan/">This article about Findability</a> in particular drew my attention, as it represents an aspect of modern web project development so important, the fact that it&#8217;s still so overlooked boggles the mind. Findability bridges the divide between web design and SEO, something we&#8217;re pushing for ourselves with Smart Spark, and something that shouldn&#8217;t even exist in the first place. But it seemingly still does.</p>
<p>As the article indicates, there are many facets to a quality web project. It talks about steadfast elements like Project Management and Architecture, which are universal and permeate through any kind of project. It touches on elements that are often used to pitch ambitious web projects, such as Usability, Accessibility, Design, and even User Experience (often abbreviated as UX), the kind of sexy buzzwords that few may fully understand, but all &#8220;just have to have&#8221; in their corporate web presence. Just like Search Engine Optimization. And while Findability seems to be that perfect blend of web design and web marketing, it still gets lost in the shuffle.</p>
<p>Is it be cause the majority of the SEO realm is populated by professionals who are marketers first, and web professionals second, and they thus shy away from any aspect of a web project involving delving into the source code? And on the other side of the coin, is Findability shunned by the pure web professional because Optimization experts are viewed as virtual pitchmen or carnival barkers, sullying their pristine trade, and therefore dabbling in SEO is like sharing a pint with the devil? Either line of thinking is ironic at best, and destructive at worst. For the web to continue its evolution as a medium for information, interaction, and yes, profitability, the individual facets of any web presence need to become more intertwined, not more discrete.</p>
<p>Confession: I&#8217;ve been a bit enamored with the term Findability ever since I read it in Jeffrey Zeldman&#8217;s <em>Designing With Web Standards</em>. Search Engine Optimization felt a little like a flaky marketing term, meant more to sell the service than to describe it. Findability always seemed more practical and robust. Optimizing a site involves constantly adjusting your aim, attempting to hit a moving target. Building Findability into a site brings that target in closer, making it easier to hit on a regular basis and with success.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wenex.com/wenblog/?feed=rss2&amp;p=46</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bring on Bing!</title>
		<link>http://www.wenex.com/wenblog/?p=28</link>
		<comments>http://www.wenex.com/wenblog/?p=28#comments</comments>
		<pubDate>Sun, 28 Jun 2009 14:30:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://wenex.wordpress.com/?p=28</guid>
		<description><![CDATA[There&#8217;s a good chance that by now you&#8217;ve heard of bing, Microsoft&#8217;s new search engine. The optimistic will say that it&#8217;s a distillation of many existing search engines, honing what works, culling what doesn&#8217;t, adding what was missing, and subtracting what was extraneous. The cynical will admonish the Redmond juggernaut for yet again forcing its [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a good chance that by now you&#8217;ve heard of <a href="http://www.bing.com">bing</a>, Microsoft&#8217;s new search engine. The optimistic will say that it&#8217;s a distillation of many existing search engines, honing what works, culling what doesn&#8217;t, adding what was missing, and subtracting what was extraneous. The cynical will admonish the Redmond juggernaut for yet again forcing its way into a market of which is just can&#8217;t bear not having a significant share. While the negative have precedent to cite (such as <a href="http://www.xbox.com">Exhibit A</a> and <a href="http://www.zune.net">Exhibit B</a>), the positive arguably have some evidence in their favour. bing does have a number of features that could make it a useful little engine, after all.<span id="more-28"></span></p>
<p>Opinions aside, many will wonder whether it will make a big enough splash to warrant attention from web professionals, particularly SEO professionals. Well it wouldn&#8217;t be like Microsoft to just throw a new technology out into the wild to die. They&#8217;ve clearly put a ton of marketing into it already. I&#8217;ve already seen ads on sites like msnbc (unsurprising) and facebook (more surprising). It will most certainly see a push from the company&#8217;s more ubiquitous software offerings, perhaps with the next IE as well as Windows 7. It may catch on pretty quickly, grabbing a significant market share in short order. If it doesn&#8217;t, expect Microsoft to keep pushing it until it does.</p>
<p>So in short, it would be wise to keep bing in mind while optimizing from this point on. Then again, that question may have been a non-question; it&#8217;s a search engine, so optimize for it.</p>
<p>Now, what kind of special needs does bing have? Two elements in particular jump right out of the SERP: the Quick Tabs and the Document Preview.</p>
<div id="attachment_30" class="wp-caption alignright" style="width: 410px"><img class="size-full wp-image-30" title="bingscreen_1" src="http://wenex.files.wordpress.com/2009/06/bingscreen_1.jpg" alt="bing results page" width="400" height="252" /><p class="wp-caption-text">bing SERP - Quick Tabs </p></div>
<p>The panel to the left of the search results is a little reminiscent of  a categories menu in an e-commerce website. It gives you popular variations of a given search. clicking on any of the tabs will quickly requery bing with the additional keyword appended to your search.</p>
<p>This makes those all-important long tail keywords even more critical to search engine success. Imagine if a user were to click through those tabs and spot the same site at or near the top of each result. It&#8217;s an incredibly powerful means for exposure. Chances are, the Quick Tabs will also provide a little direction when doing keyword research.</p>
<p>The other feature of bing that really got me curious about working with it is the Document Preview. Point your mouse over the right edge of a result, and a tooltip-style window will pop up giving you more information about the page, beyond the META description. the Document Preview displays extra page content, including a list of key links found within the document.</p>
<div id="attachment_33" class="wp-caption alignleft" style="width: 410px"><img class="size-full wp-image-33" title="bingscreen_2" src="http://wenex.files.wordpress.com/2009/06/bingscreen_2.jpg" alt="bing SERP - Document Preview" width="400" height="251" /><p class="wp-caption-text">bing SERP - Document Preview</p></div>
<p>This one appears to be a bit of a moving target. It doesn&#8217;t look to simply be the first x number of  words found in the body of a page, nor does it directly relate to anything within the META tags. But if it can be controlled, it&#8217;d be a golden opportunity to feed a user that much more information in order to draw them from that perceived safe zone of the search engine, down into the website proper. Then again, perhaps Microsoft&#8217;s algorithm for gleaning Document Preview content is intentionally oblique; as we all know, if it can be manipulated, it can and will be abused. Even so, though, it stands to reason that the best strategy will be to be even more vigilant about putting the best content possible at the forefront of the page. Having a good number of internal links handy seems to be wise as well, in order to take advantage of that &#8220;Also on this page&#8221; subsection.</p>
<p>Additionally, Microsoft has seen fit to provide webmasters with the capability to disable the Document Preview tab for any or all of ther pages in their sites. In my humble opinion, though, doing this for any site that is also being actively optimzed would be lunacy.</p>
<p>There are certainly more attributes to bing than these that make it an apt competitor in the search engine world. It also marks what appears to be a far more concerted effort than MSN or live.com in assessing user behaviours and addressing their needs.  The one realm it certainly has room to grow, however, is in webmaster/developer support, as their resources are easily dwarfed by those put out by the likes of Google and Yahoo!. Bing will most certainly evolve in this department, however, and as a result, more SEO tricks and opportunities are sure to trickle out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wenex.com/wenblog/?feed=rss2&amp;p=28</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code vs. Content: Where to Optimize?</title>
		<link>http://www.wenex.com/wenblog/?p=21</link>
		<comments>http://www.wenex.com/wenblog/?p=21#comments</comments>
		<pubDate>Sat, 28 Mar 2009 18:20:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wenex.wordpress.com/?p=21</guid>
		<description><![CDATA[A web design trick I learned very early on in my career is &#8220;peeking under the hood&#8221;: glancing at another site&#8217;s source code to see how they pulled off some visual trick or another. I taught myself a good number of JavaScript techniques that way; granted, this was when the technology was being used solely [...]]]></description>
			<content:encoded><![CDATA[<p>A web design trick I learned very early on in my career is &#8220;peeking under the hood&#8221;: glancing at another site&#8217;s source code to see how they pulled off some visual trick or another. I taught myself a good number of JavaScript techniques that way; granted, this was when the technology was being used solely for mouseover effects, pop-up windows, and the like. Anyway, I&#8217;ve come to discover that peering at another site&#8217;s source is not so much a trick as it is common design practice. Just as long as you&#8217;re not brazenly plagiarizing the source in the process.<span id="more-21"></span></p>
<p>So when we began to get our feet wet with SEO, I took the same approach. Checking out high-ranking sites to see how they do it. As we all know, though, there&#8217;s far more to optimizing a site than what one can find in the source code. But it still makes for a good starting point. And in the process I did discover something rather interesting, something that happens to be the exact opposite of what I was looking for. Many of these sites were actually succeeding <em>in spite</em> of their code, rather than <em>because of</em> it!</p>
<p>There seems to be a few levels of this transgression. The most glaring is where some sites are lacking the pure fundamentals. The stuff that can be considered best practices for both SEO and design. Images that were missing ALT attributes. Headings or important segments of text placed as graphics on the page. The complete absence of heading tags of any level (i.e. &lt;H1&gt;, &lt;H2&gt;, and on down). Pages without titles, or &#8211; almost as bad &#8211; with misspelled titles. These are the things that neither a designer nor an optimizer should be letting slip.</p>
<p>Then there&#8217;s the faults that may be a little more &#8220;high-concept&#8221;, and may boil down to design techniques and philosophies. But they&#8217;re still things I&#8217;d never expect to find in a high-ranking site. Bulky tables-based layouts, or CSS and JavaScript that ought to be kept in a separate file are all just things to get between the spiders and the meaty optimized content. And while I do know that W3C validation is not an outright requirement, I did come across sites that boasted valid markup, yet failed validation!</p>
<p>The realms of both search engine optimization and web site design are so vast, few companies are equipped to handle a significant portion of either, let alone both.  All the same, both industries will continue to coexist on many a project. In order to do so harmoniously, designers will need to learn how to gear their code toward quality optimization techniques, and SEO experts will need to learn what HTML formatting helps their cause, and in what ways. And if, heaven forbid, you find yourself wearing both the hat of web coder and search engine optimizer, the need to be well versed in both fields is that much more important, lest you wish to become your own worst enemy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wenex.com/wenblog/?feed=rss2&amp;p=21</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Does Your Web Site Do The Job?</title>
		<link>http://www.wenex.com/wenblog/?p=17</link>
		<comments>http://www.wenex.com/wenblog/?p=17#comments</comments>
		<pubDate>Mon, 16 Feb 2009 17:30:11 +0000</pubDate>
		<dc:creator>Martin at Wenex</dc:creator>
				<category><![CDATA[Editorial]]></category>
		<category><![CDATA[Knowledge Base]]></category>

		<guid isPermaLink="false">http://wenex.wordpress.com/?p=17</guid>
		<description><![CDATA[Having been in the web design business for a little over 10 years, we’ve had occasion to look at hundreds and hundreds of web sites when doing research for our clients in order to “scope out the competition”, and try to do something just a little bit better and a little bit different. While doing [...]]]></description>
			<content:encoded><![CDATA[<p>Having been in the web design business for a little over 10 years, we’ve had occasion to look at hundreds and hundreds of web sites when doing research for our clients in order to “scope out the competition”, and try to do something just a little bit better and a little bit different. While doing this research, a couple of things quickly become apparent. Sites that appear high in search engine ranking show a lot of forethought, planning and effort in presenting a site that is truly representative of the business. It’s also apparent that a lot of money has been invested in a professionally created site. We’ve also seen the other end of the spectrum where businesses in a effort to “doing things on the cheap” have cobbled together a do-it-yourself site just for the sake of having a presence in the Internet. I won’t ruin anybody’s breakfast with details, but we’ve all seen them, haven’t we?<span id="more-17"></span></p>
<p class="MsoNormal">At first glance, developing a web site and publishing it to the Internet may appear to be fairly easy. So easy in fact, that many download a template offered by any number of ISP’s and others, slap together some words on a page, add a few images (usually poor quality), and put the creation on the Internet for the world to see. Unfortunately, many do-it-yourself authors have taken this approach by constructing documents that show very little consideration for the reader as well as poorly showcasing their products and services. When visitors come to a site, it’s important to have a look and feel that will carry throughout the pages to make the visitor interested and comfortable. We don’t want our senses assaulted.</p>
<p class="MsoNormal">Don’t get me wrong here, there are any number of well laid out, well planned, highly functional templates available on the web that can be used when budget is a factor. There’s a big difference between fiscally responsible and flat out cheap. If the template option is to be used, then as with every other aspect of creating a web presence, research the many templates that are available and choose the one that best allows you to incorporate the look and feel of your business and the message you want to convey to new and returning clients. Quite often, due to requirements involving advanced functionality, interactivity and complex visuals, your only option is to employ the services of a professional designer. Here again, research is key in choosing the right designer.</p>
<p class="MsoNormal">Your ultimate decision whether to do it yourself or to hire a professional designer rests in how honest you can be with yourself about your abilities and talents. Economic factors aside, there are literally thousands of small business web sites on the Internet that are actually losing business because of a poorly planned and designed site. By the same token, there are also a large number of do-it-yourself sites that demonstrate a high degree of planning, creativity, and marketing sense. To develop a truly effective web site, this last point is key. A commitment to do whatever it takes to properly develop an effective site must be made from the start, and that commitment must be carried to the end.</p>
<p class="MsoNormal">Regardless of whether you choose a template drive site or hire a professional designer, the old adage of “you get what you pay for” couldn’t be more fitting.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wenex.com/wenblog/?feed=rss2&amp;p=17</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Obligatory &quot;Welcome&quot; Post</title>
		<link>http://www.wenex.com/wenblog/?p=5</link>
		<comments>http://www.wenex.com/wenblog/?p=5#comments</comments>
		<pubDate>Fri, 29 Aug 2008 14:15:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Administrative]]></category>

		<guid isPermaLink="false">http://wenex.wordpress.com/?p=4</guid>
		<description><![CDATA[This is the first true post of the Wenex Blog. So it should be somewhat introductory in nature.
The closest thing we&#8217;ve ever done to this is our Knowledge base in prior iterations of wenex.com. Writing articles for it were a lot of fun, but recently, I wanted to do more with it. In particular:

Create some [...]]]></description>
			<content:encoded><![CDATA[<p>This is the first true post of the Wenex Blog. So it should be somewhat introductory in nature.</p>
<p>The closest thing we&#8217;ve ever done to this is our Knowledge base in prior iterations of wenex.com. Writing articles for it were a lot of fun, but recently, I wanted to do more with it. In particular:</p>
<ol>
<li>Create some more &#8220;editorial&#8221; or off-the-cuff contributions to the Knowledge Base.</li>
<li>Allow for reader interaction (partly to see if anyone was actually reading some of these articles!)</li>
<li>Make it easier to search, cross-reference, and just plain <em>find</em> these articles.</li>
</ol>
<p>And as the tired cliche goes, why reinvent the wheel? This wish list describes a weblog to the letter. So a weblog is clearly the way to go.</p>
<p>So please link us! Add us to your blogroll! We&#8217;ll be discussing the web, technology as it pertains to the web, business as it pertains to the web, and life, as it pertains to-well, you get the idea.</p>
<p>Best of all, if you would like to comment, we may take requests for future issues to address, as well as solicit additional contributors. This will be far more organic, more involved, and more dynamic than the Wenex Knowledge Base ever was, making it ever more exciting to work on as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wenex.com/wenblog/?feed=rss2&amp;p=5</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
