<?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"
	>

<channel>
	<title>AG Webdesign</title>
	<atom:link href="http://agwebdesign.nl/feed/" rel="self" type="application/rss+xml" />
	<link>http://agwebdesign.nl</link>
	<description>passionate web development</description>
	<pubDate>Mon, 04 Dec 2006 16:23:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Support Creative&#160;Commons</title>
		<link>http://agwebdesign.nl/2006/12/04/support-creative-commons/</link>
		<comments>http://agwebdesign.nl/2006/12/04/support-creative-commons/#comments</comments>
		<pubDate>Mon, 04 Dec 2006 16:23:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://agwebdesign.nl/2006/12/04/support-creative-commons/</guid>
		<description><![CDATA[From the Creative Commons website:


  Digital technologies are connecting people in ways that were never before possible&#8212;but
  that network is fragile. Creative Commons needs your support to help enable a
  participatory culture&#8212;a culture in which everyone can actively engage in the creativity
  that surrounds us. We need your support to assure [...]]]></description>
			<content:encoded><![CDATA[<p>From the <a href="http://creativecommons.org/support/">Creative Commons website</a>:</p>

<blockquote>
  <p>Digital technologies are connecting people in ways that were never before possible&#8212;but
  that network is fragile. Creative Commons needs your support to help enable a
  participatory culture&#8212;a culture in which everyone can actively engage in the creativity
  that surrounds us. We need your support to assure access to cultural, scientific, and
  educational content that has been pre-cleared for use by its authors.</p>
</blockquote>

<p>If you care even the least about information, creativity, sharing and keeping knowledge free from greedy commercial institutions please consider supporting <a href="http://creativecommons.org/">Creative Commons</a>. It is only a drop in an ocean of problems and possible solutions&#8212;but if you&#8217;re not part of the solution you&#8217;re part of the problem.</p>

<p><a href="http://creativecommons.org/support/store" title="Creative Commons support store">Buy a tee</a> (or get me one), <a href="http://creativecommons.org/support/donate" title="Donate money to Creative Commons">donate</a> and/or display the <a href="http://creativecommons.org/support/supportcc" title="Creative Commons banners"><acronym>CC</acronym>-banner</a> on your website to help spread the word (see it in action in the sidebar on this website).</p>
]]></content:encoded>
			<wfw:commentRss>http://agwebdesign.nl/2006/12/04/support-creative-commons/feed/</wfw:commentRss>
		</item>
		<item>
		<title>On styling acronyms and&#160;abbreviations</title>
		<link>http://agwebdesign.nl/2006/11/20/on-styling-acronyms-and-abbreviations/</link>
		<comments>http://agwebdesign.nl/2006/11/20/on-styling-acronyms-and-abbreviations/#comments</comments>
		<pubDate>Mon, 20 Nov 2006 12:27:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[accessibility]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[html]]></category>

		<category><![CDATA[semantic markup]]></category>

		<guid isPermaLink="false">http://agwebdesign.nl/2006/11/20/on-styling-acronyms-and-abbreviations/</guid>
		<description><![CDATA[I always use the same basic styling on acronyms and abbreviations: small-caps, slightly increased letter-spacing, some sort of low-contrast border on the bottom and the &#8216;help&#8217; mouse pointer. Until recently I only marked up the first occurrence of an acronym in a document until I realised I should really mark up every occurrence&#8212;if only because [...]]]></description>
			<content:encoded><![CDATA[<p>I always use the same basic styling on acronyms and abbreviations: small-caps, slightly increased letter-spacing, some sort of low-contrast border on the bottom and the &#8216;help&#8217; mouse pointer. Until recently I only marked up the first occurrence of an acronym in a document until I realised I should really mark up every occurrence&#8212;if only because my styled version looks prettier than normal upper-case letters.</p>

<p>Still, I only need to <a href="http://www.w3.org/TR/WCAG10-TECHS/#tech-expand-abbr" title="Read the W3C accessibility guidelines"><em>explain</em> the term on the first occurrence</a>, right? I started omitting the <code>title</code>-attribute in subsequent uses. But then I found the styling of these unexplained acronyms to be misleading&#8212;the help-pointer and the bottom border indicate that there&#8217;s a explanation available. So I decided to remove this styling from acronym without the <code>title</code>-attribute.</p>

<p>I do this using <acronym title="Cascading Style Sheets">CSS</acronym> <em>attribute selectors</em>, like so:</p>

<pre><code>acronym {
  text-transform: lowercase;
  font-variant: small-caps;
  letter-spacing: 0.1em;
}
acronym[title] {
  border-bottom: 1px dotted #ccc;
  cursor: help;
}
</code></pre>

<p>The good thing is that it&#8217;s neat. The bad thing is that <acronym title="Internet Explorer">IE</acronym> (both 6 and 7) cannot handle most of the above. That&#8217;s too bad, but not a big problem&#8212;that&#8217;s what they call <a href="http://en.wikipedia.org/wiki/Progressive_enhancement" title="Read more about progressive enhancement at WikiPedia">progressive enhancement</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://agwebdesign.nl/2006/11/20/on-styling-acronyms-and-abbreviations/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My wishlist for&#160;(X)HTML</title>
		<link>http://agwebdesign.nl/2006/11/17/my-wishlist-for-xhtml/</link>
		<comments>http://agwebdesign.nl/2006/11/17/my-wishlist-for-xhtml/#comments</comments>
		<pubDate>Fri, 17 Nov 2006 13:54:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[code]]></category>

		<category><![CDATA[html]]></category>

		<category><![CDATA[microformats]]></category>

		<guid isPermaLink="false">http://agwebdesign.nl/2006/11/17/my-wishlist-for-xhtml/</guid>
		<description><![CDATA[HTML (and/or XHTML) is not developing as quickly these days as, say, ten years ago; but things are happening nonetheless. I&#8217;m no master of the use and history of HTML but nonetheless I&#8217;ve got some wishes for future versions.

The wish list


A useful q-element
In-line quotations are used a lot. And there&#8217;s no way to mark them [...]]]></description>
			<content:encoded><![CDATA[<p><acronym title="HyperText Markup Language">HTML</acronym> (and/or <acronym title="eXtensible HyperText Markup Language">XHTML</acronym>) is not developing as quickly these days as, say, ten years ago; but <a href="http://www.456bereastreet.com/archive/200611/have_your_say_about_the_future_of_html/" title="Have your say about the future of HTML">things are happening nonetheless</a>. I&#8217;m no master of the use and history of <acronym>HTML</acronym> but nonetheless I&#8217;ve got some wishes for future versions.</p>

<h3>The wish list</h3>

<dl>
<dt>A useful <code>q</code>-element</dt>
<dd>In-line quotations are used a lot. And there&#8217;s no way to mark them up sensibly
right now because of user agents&#8217; varying implementations of quotes. Hence this
is more  a request towards browsers than towards <acronym>HTML</acronym>,
but still. It would make me happy.</dd>

<dt>Form requirements</dt>
<dd>Web forms are very important but I think it&#8217;s fine that all but the basic features are
the developer&#8217;s responsibility, not the user agent&#8217;s. Yet, a <code>required</code>-attribute
should be introduced so there&#8217;s a <em>sensible</em> way to indicate exactly which
fields are required and which are not. This will greatly help developers and users alike.</dd>

<dt>The <code>menu</code>-element</dt>
<dd>More or less every web page has some sort of navigation-area&#8211;usually a list
of links to other sections of the site. I mark these up as an ordered list, which
is semantically correct but not complete. Why is the <code>menu</code>-element
deprecated when it could be used to describe our document&#8217;s contents in more detail?</dd>

<dt>Better use of the <code>caption</code>-element</dt>
<dd>
<p>The <code>caption</code>-element is now only used for tables. First, I want to be able to specify
<em>where</em> I want to display my caption: I prefer them <em>below</em> my table rather than
<em>above</em> it. I think this kind of a localization-issue (American preference vs. European).
Secondly, &#8216;caption&#8217; is such a commonly used concept, why not make it applicable to
images and other embedded content? I&#8217;d love to be able to do this:</p>

<pre><code>&lt;img src="pic.jpg" alt="" title="My cat"&gt;
  &lt;caption&gt;My cat&lt;/caption&gt;
&lt;/img&gt;
</code></pre>

<p>This is a nasty one though, since it would conflict with existing <code>title</code>- and
<code>alt</code>-attributes. But pointing out room for improvement is my job, not coming
up with solutions&#8230; :-)</p>
</dd>

<dt>Richer mark-up for citations</dt>
<dd>
<p>When writing scientific texts (or any sort of text, really) you often quote other people.
The elements we have now (<code>blockquote</code>, <code>q</code> and <code>cite</code>) are not enough for building
a bibliography. I would like to see something like this:</p>

<pre><code>&lt;source&gt;
  &lt;author&gt;Gibbon, E.&lt;/author&gt;
  &lt;title&gt;The Decline and fall of the Roman empire&lt;/title&gt;
  &lt;date&gt;1776--1788&lt;/date&gt;
&lt;/source&gt;
</code></pre>

<p>Now, I admit that this would also be very eligible for a Microformat&#8212;but with
regards to the original scientific purpose of the web I think this is not too much
to ask. Also, the <code>cite</code>-element could very well be gotten rid of in the near
future, <strong>which I am very strongly opposed to</strong>.</p>
</dd>

<dt>Better use of the <code>rel</code>-attribute on anchors</dt>
<dd>The <code>rel</code>-attribute describes the relation between the source document and the
destination document. Great! There are <a href="http://www.w3.org/TR/2004/WD-xhtml2-20040722/mod-metaAttributes.html#col_Metainformation" title="Read the specification">a lot of useful descriptors</a> already, but I feel
we could use some more, especially for use in web applications and same-page links.</dd>
</dl>

<h3>The line between <acronym>HTML</acronym> and Microformats</h3>

<p>I love <a href="http://microformats.org">microformats</a>. They add valuable meaning to ordinary text for very little effort. They enhance our mark-up in much the same way as we enhance our page&#8217;s behaviour using DOM-scripting. The question arises: what do we need in the core of <acronym>HTML</acronym>, and what do we lay on top with Microformats?</p>

<p>We should, of course, be wary of scope creep. We should stick to the fundamentals in the <acronym>HTML</acronym> core and <a href="http://microformats.org/about/" title="Read more about Microformats">add semantic spice on a separate layer</a>. But why then bother with developing <acronym>HTML</acronym> at all? We should at least add some basic concepts to the core&#8212;even if only to avoid polluting our <code>class</code>-attributes. The whole purpose of <acronym>HTML</acronym>&#8212;a <em>mark-up language</em>&#8212;seems defeated to me if we start putting too much semantics into our <code>class</code>-attributes.</p>

<h3>Go forth&#8230;</h3>

<p>Extending <acronym>HTML</acronym> is a risky business, with so many browsers, standards, specifications, working groups and documents out there. But I thought we were the almighty, über-flexible interweb&#8230; let&#8217;s live up to that &#8216;reputation&#8217;.</p>
]]></content:encoded>
			<wfw:commentRss>http://agwebdesign.nl/2006/11/17/my-wishlist-for-xhtml/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Usage of vertical align in&#160;CSS</title>
		<link>http://agwebdesign.nl/2006/10/26/usage-of-vertical-align-in-css/</link>
		<comments>http://agwebdesign.nl/2006/10/26/usage-of-vertical-align-in-css/#comments</comments>
		<pubDate>Thu, 26 Oct 2006 12:24:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[code]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://agwebdesign.nl/2006/10/26/usage-of-vertical-align-in-css/</guid>
		<description><![CDATA[The other day I wanted to use an image as a submit-button for one of my forms. But to fully comply with web 2.0-standards I also like to have an extra line of text next to my button. I often use this line for a cancel-option, announcing moderation of comments or whatever. But placing a [...]]]></description>
			<content:encoded><![CDATA[<p>The other day I wanted to use an image as a submit-button for one of my forms. But to fully comply with web 2.0-standards I also like to have an extra line of text next to my button. I often use this line for a cancel-option, announcing moderation of comments or whatever. But placing a graphic in-line with a line of text is harder than it seems.</p>

<p><img src="http://agwebdesign.nl/wordpress/../resources/uploads/verticalalign.png" alt="example of vertical align applied" title="" />
Refer to the image: when placing the image file directly in-line with the text it aligns to the text baseline. Now this <em>might</em> be want you&#8217;re after, but it&#8217;s not what I was after. I wanted the caption on my button to align with the text next to it. That&#8217;s how I came across this little <acronym title="Cascading StyleSheets">CSS</acronym>-trick of <code>vertical-align</code>. <strong>Note</strong>: perhaps everybody knows <code>vertical-align</code> like their back-pocket, but I don&#8217;t. Be happy for my discovery.</p>

<p>Applying <code>vertical-align: middle</code> to my image element made the image align to the middle (*gasp*) of my line of text. Oh, if only I had known this before&#8230; As far as I can tell this works fine in Firefox 2, IE7 and Opera 9.</p>
]]></content:encoded>
			<wfw:commentRss>http://agwebdesign.nl/2006/10/26/usage-of-vertical-align-in-css/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The complexity of simple&#160;communication</title>
		<link>http://agwebdesign.nl/2006/09/28/the-complexity-of-simple-communication/</link>
		<comments>http://agwebdesign.nl/2006/09/28/the-complexity-of-simple-communication/#comments</comments>
		<pubDate>Thu, 28 Sep 2006 10:41:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Communication]]></category>

		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://agwebdesign.nl/2006/09/28/the-complexity-of-simple-communication/</guid>
		<description><![CDATA[During the various projects that have kept me busy the last couple of months I&#8217;ve noticed how much simplicity serves experts, not beginners. I&#8217;m talking about project management for which I use Basecamp.

Basecamp helps you move forward

A lot has been said already about Basecamp and its wonderful simplicity. The great thing for me as a [...]]]></description>
			<content:encoded><![CDATA[<p>During the various projects that have kept me busy the last couple of months I&#8217;ve noticed how much <strong>simplicity serves experts, not beginners</strong>. I&#8217;m talking about <em>project management</em> for which I use <a href="http://www.basecamphq.com" title="Basecamp: collaboration software">Basecamp</a>.</p>

<h3>Basecamp helps you move forward</h3>

<p><a href="http://technorati.com/search/basecamp" title="Do a Technorati-search for 'Basecamp">A lot has been said</a> already about Basecamp and its wonderful simplicity. The great thing for me as a web professional is that it helps me strip the project down to its basics. Taking a problem, breaking it down into a simple To Do-list linked to a milestone and then completing those To Do-items one by one (and in the end the milestone) makes you feel wonderfully productive.</p>

<p>But for the life of me I cannot get other people to use anything else but the messaging system. I present Basecamp as an alternative to e-mailing each other paragraphs of bloated text four times an hour but in the end that&#8217;s just what we do. The bad thing is that if my clients don&#8217;t take a simple, down-to-basics approach to project management I can&#8217;t either.</p>

<h3>The complexity of simplicity</h3>

<p>It&#8217;s not that surprising: keeping things simple is very, <em>very</em> complex. <strong>Only with full understanding of a subject can you simplify it</strong>. The key to Basecamp as project management software is that it enables you to communicate quickly in a <em>concise, unambiguous</em> way. But when you don&#8217;t <em>really</em> understand what you&#8217;re doing you don&#8217;t want to be concise and unambiguous out of fear of making a mistake and looking stupid.</p>

<p>The mental load of analyzing a problem and deconstructing it into a finite set of 1-line To Do-items is far greater than spending 45 minutes writing a 1200-word review of a design comp. At least, that&#8217;s how it feels in the short term. And as long as nobody points out the alternatives than even in the long term it feels alright. That&#8217;s how businesses got into the habit of having four two-hour meetings a day while everybody knows it&#8217;s a waste of time.</p>

<h3>The challenge</h3>

<p>Small budget-projects need an agile approach for success, but this requires a full understanding of the subject matter <em>and of why the agile approach is necessary</em>. But how can we make sure all participants meet these requirement before the damage of inefficient, costly communication has been done?</p>
]]></content:encoded>
			<wfw:commentRss>http://agwebdesign.nl/2006/09/28/the-complexity-of-simple-communication/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bridge&#160;here</title>
		<link>http://agwebdesign.nl/2006/08/16/bridge-here/</link>
		<comments>http://agwebdesign.nl/2006/08/16/bridge-here/#comments</comments>
		<pubDate>Wed, 16 Aug 2006 18:43:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[software]]></category>

		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://agwebdesign.nl/2006/08/16/bridge-here/</guid>
		<description><![CDATA[So Adobe Bridge is an awesome tool. You do have Adobe CS2 but don&#8217;t use Bridge? Go try it out right now, then. Bridge let&#8217;s you easily manage all the files you use with the other CS2-applications&#8211;and then some.

But Bridge is really, really slow. So to make life a little easier here&#8217;s a trick I [...]]]></description>
			<content:encoded><![CDATA[<p>So <a href="http://www.adobe.com/products/creativesuite/vector/movie_bridge.html" title="See an introductory movie about Bridge">Adobe Bridge</a> is an awesome tool. You do have Adobe <acronym title="Creatie Suite 2">CS2</acronym> but don&#8217;t use Bridge? Go try it out right now, then. Bridge let&#8217;s you easily manage all the files you use with the other CS2-applications&#8211;and then some.</p>

<p><strong>But Bridge is really, <em>really</em> slow</strong>. So to make life a little easier here&#8217;s a trick I found to add a feature to Bridge that is so obviously useful I don&#8217;t know why Adobe haven&#8217;t built it in themselves: a Windows Explorer &#8216;Adobe Bridge here&#8217; context-menu option that lets you open Bridge straight from the explorer in the folder you choose. A real time-saver!</p>

<p>To enable this option you need to edit your registry, but it&#8217;s easier than it sounds. Take this code:</p>

<pre><code>Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\shell\Bridge]
@="Adobe Bridge Here"

[HKEY_CLASSES_ROOT\Directory\shell\Bridge\command]
@="\"C:\\Program Files\\Adobe\\Adobe Bridge\\Bridge.exe\" \"%L\""</code></pre>

<p>Paste it into a new file and save it as <code>Adobe Bridge Here.reg</code>. Note the <code>.reg</code> extension. Make sure the path to Bridge is correct for your system.</p>

<p><a href="http://agwebdesign.nl/resources/uploads/bridgehere.png"><img src="http://agwebdesign.nl/resources/uploads/bridgehere.thumbnail.png" alt="Screenshot" title="" /></a></p>

<p>When the file is saved the default Windows action for it will be to merge it into the registry, so just double-clicking your newly-created file should do the trick. <strong>You can now open Bridge quickly from anywhere on you hard drive</strong>. How cool is that?</p>
]]></content:encoded>
			<wfw:commentRss>http://agwebdesign.nl/2006/08/16/bridge-here/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Logitech shouldn&#8217;t make me think so&#160;much</title>
		<link>http://agwebdesign.nl/2006/08/11/when-does-the-hurting-stop/</link>
		<comments>http://agwebdesign.nl/2006/08/11/when-does-the-hurting-stop/#comments</comments>
		<pubDate>Fri, 11 Aug 2006 10:23:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://agwebdesign.nl/2006/08/11/when-does-the-hurting-stop/</guid>
		<description><![CDATA[I bought a cheap Logitech webcam the other day. I know Logitech usually puts out crap, but this was the only cheap camera with decent specs available. And as expected the installations process was another demonstration of their &#8216;we don&#8217;t care about our customers&#8217;-attitude.

The driver installation app was in Dutch. I&#8217;m Dutch, so you&#8217;d think [...]]]></description>
			<content:encoded><![CDATA[<p>I bought a cheap Logitech webcam the other day. I know Logitech usually puts out crap, but this was the only cheap camera with decent specs available. And as expected the installations process was another demonstration of their &#8216;we don&#8217;t care about our customers&#8217;-attitude.</p>

<p>The driver installation app was <em>in Dutch</em>. I&#8217;m Dutch, so you&#8217;d think that&#8217;d be alright&#8211;and it would be if the translating had been done by somebody who speaks Dutch. Logitech however seem to have Microsoft Word &#8216;95 automatically doing the translating for them. I just don&#8217;t understand a word of what they&#8217;re saying. Luckily I cannot set a language preference.</p>

<h3>Don&#8217;t make me think</h3>

<p>I had to choose which drivers to install. I&#8217;ll say that again, just to make sure you understand: <em>I had to choose which drivers to install</em>. Apparently Logitech ships the same CD with every possible webcam it makes (after all, CDs are horribly expensive). I&#8217;m asked for what webcam I want to install the drivers. How should I know what webcam I have? It says nowhere on the device itself so there&#8217;s no way to find out<sup>1</sup>, so that only leaves trial and error.</p>

<p>Luckily my first guess worked. Maybe they all work and the point of choosing is only to annoy you&mdash;it wouldn&#8217;t surprise me. But I think they meant for something else to annoy the user: your simple webcam comes with three different bloated, &#8216;enterprisy&#8217;-titled 85Mb-software suites. And it&#8217;s free! Setting up your preferences, vital system configuration, proxies and extra hard-drive partitions only takes 2.5 hours! Thanks, but no thanks. I&#8217;ll pass, even if you ask me again. Or a third time.</p>

<p>And last but not least, the bloody camera <em>works</em> once I&#8217;ve installed the drivers. <strong>Why then should I reboot my computer?</strong> Don&#8217;t you people know this is annoying?</p>

<p><small><sup>1</sup> I actually <em>reinstalled</em> the drivers. The product name was displayed on its original packaging, but I threw that away a <em>long</em> time ago. Yeah, I know, but that&#8217;s besides the point.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://agwebdesign.nl/2006/08/11/when-does-the-hurting-stop/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Not a limited but an underrated&#160;craft</title>
		<link>http://agwebdesign.nl/2006/07/24/not-a-limited-but-an-underrated-craft/</link>
		<comments>http://agwebdesign.nl/2006/07/24/not-a-limited-but-an-underrated-craft/#comments</comments>
		<pubDate>Mon, 24 Jul 2006 17:17:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[The biz]]></category>

		<guid isPermaLink="false">http://agwebdesign.nl/2006/07/24/not-a-limited-but-an-underrated-craft/</guid>
		<description><![CDATA[It&#8217;s time for a little blog-to-blog conversation! According to Olav web development is a craft of limitations; browser bugs, a limited set of available fonts and near-unrealistically high expectations have fed him up. I share his frustration but I think we should look just a little bit further.

Nobody said it was going to be easy. [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s time for a little blog-to-blog conversation! <a href="http://blog.bjorkoy.com/2006/07/24/a-craft-of-limitations" title="Original post">According to Olav web development is a craft of limitations</a>; browser bugs, a limited set of available fonts and near-unrealistically high expectations have fed him up. I share his frustration but I think we should look just a little bit further.</p>

<p>Nobody said it was going to be easy. Web development is a maturing profession and it is only a natural process for the boys to be separated from the men at some stage. Not calling Olav a boy&mdash;man, his site is <em>sexy</em>&mdash;I think browser bugs and the wide variety of screen resolutions are as much part of our job as safety and environmental regulations are to automobile manufacturers&mdash;you&#8217;ve just got to learn to live with them.</p>

<p>The <em>process of</em> and <em>tools for</em> building websites are complex and your choices therein affect your end product&#8217;s quality more than in print design. That is because we web developers <strong>add more value to our products</strong>: we not only <em>design</em> but also <em>mark up</em> our message, so that both people and computers can interpret and act upon the information we present them.</p>

<p>I prefer web documents over <acronym title="Portable Document Format">PDF</acronym>s or print media because they offer you so much more: descriptions with images, tables and links; explanations for abbreviations; citations with source referrals; dynamic behaviour with <acronym title="Document Object Model">DOM</acronym>-scripting and full control over page styling&mdash;they all make the web a great medium from the user&#8217;s perspective<sup>1</sup>.</p>

<p>I&#8217;m glad to contribute to that superior user experience even at the cost of dealing with <a href="http://www.microsoft.com/windows/ie/default.mspx" title="Microsoft Internet Explorer">buggy legacy browsers</a> or differing <a href="http://en.wikipedia.org/wiki/User_agent" title="The term 'user agent' explained at WikiPedia">user agents</a>. The real issue here is the appreciation we web developers get for our work. In my experience, non-tech savvy computer users still believe they can let their 14-year old nephew build their company website&mdash;and that is the <em>real</em> reason for frustration.</p>

<p><small><sup>1</sup>Let&#8217;s just ignore that nobody uses these features; we can only blame ourselves for that</small></p>
]]></content:encoded>
			<wfw:commentRss>http://agwebdesign.nl/2006/07/24/not-a-limited-but-an-underrated-craft/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Moving</title>
		<link>http://agwebdesign.nl/2006/07/17/moving/</link>
		<comments>http://agwebdesign.nl/2006/07/17/moving/#comments</comments>
		<pubDate>Mon, 17 Jul 2006 12:40:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://agwebdesign.nl/2006/07/17/moving/</guid>
		<description><![CDATA[Moving into a new home is a great way to get rid of all the stuff you never use anyway. It&#8217;s a simple trick: pack everything, move it but don&#8217;t unpack it until you need it. All that is still in a box after four weeks can usually safely be thrown away. Just a quick [...]]]></description>
			<content:encoded><![CDATA[<p>Moving into a new home is a great way to get rid of all the stuff you never use anyway. It&#8217;s a simple trick: pack everything, move it but don&#8217;t unpack it until you need it. All that is still in a box after four weeks can usually safely be thrown away. Just a quick tip I wanted to share.</p>

<p><a href="http://www.flickr.com/photos/arjanvandergaag/189513058/" title="See full-size image at Flickr"><img src="http://static.flickr.com/53/189513058_bf9baa3bc7_m.jpg" width="240" height="160" alt="Picture of my new workplace" /></a></p>

<p>I&#8217;ve <a href="http://www.arjanvandergaag.nl/2006/07/12/moving-to-zeist/" title="Read more at my personal site">recently moved from Tilburg to Zeist</a> (near Utrecht) and although it took some time to get business going again I&#8217;m back on track now. I took the opportunity to pimp my workplace to a bigger, more comfortable desk that allows some more distance between me and my display.</p>

<p>It&#8217;s a far better set-up than I used to have so I&#8217;m very excited&mdash;but I&#8217;m also very excited about my new balcony that&#8217;s right behind my back. It&#8217;s got a comfy chair, nice summer sunshine and a good book. Must&#8230; resist&#8230; the temptation&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://agwebdesign.nl/2006/07/17/moving/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The key to good writing is&#160;editing</title>
		<link>http://agwebdesign.nl/2006/06/14/the-key-to-good-writing-is-editing/</link>
		<comments>http://agwebdesign.nl/2006/06/14/the-key-to-good-writing-is-editing/#comments</comments>
		<pubDate>Wed, 14 Jun 2006 12:59:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://agwebdesign.nl/2006/06/14/the-key-to-good-writing-is-editing/</guid>
		<description><![CDATA[The key to good writing is editing. It seems obvious, but patience usually doesn&#8217;t come naturally. As a an entrepreneur I write invoices, documentation, letters and proposals. I also write weblog posts, articles and I do some copywriting occasionally. And every piece is a challenge.


Writing is a complex, tiring process but the end-result is very [...]]]></description>
			<content:encoded><![CDATA[<p>The key to good writing is editing. It seems obvious, but patience usually doesn&#8217;t come naturally. As a an entrepreneur I write invoices, documentation, letters and proposals. I also write weblog posts, articles and I do some copywriting occasionally. And every piece is a challenge.</p>

<p><a href="http://www.sxc.hu/photo/412006" title="See original image at sxc.hu"><img src="http://agwebdesign.nl/resources/uploads/writing.png" alt="Writing is a complex process" title="" /></a>
Writing is a complex, tiring process but the end-result is very rewarding. So in my pride I always want to rush publishing/sending my rants as soon as I have &#8216;finished&#8217; it. But as every <em>real</em> writer (I&#8217;m only a wannabe) can tell you: <strong>no piece is written in one go</strong>. The key to good writing is editing: revise, revise, revise. Take a break and come back to your piece in 2 hours. Save that blog post as a draft and come back tomorrow. Walk the dog, cook dinner, talk it through with some friends&mdash;anything goes.</p>

<p>Looking at your work again <em>with an empty, unbiased mind</em> will help you recognise mistakes, typo&#8217;s, uncomfortable sentences and odd word choices. You will find better metaphors, you&#8217;ll throw away whole paragraphs and rearrange your text to make it more logical. Correct your work, even if that means re-writing a piece you&#8217;ve worked on for hours. And do it again. Double-check every word, every sentence, every paragraph and every footnote. Then do it some more.</p>

<p>It&#8217;s a tiring and tedious process. Sometimes it will not be worth it. I don&#8217;t always practice what I preach, but it is important to realize that if you want to improve your own writing this is the key.</p>

<p>Will people laugh at you if your work contains faulty grammar or spelling mistakes? Probably not. Most people write without properly editing it. <strong>You won´t stand out in a negative way. But if you <em>do</em> pay that little extra attention you most certainly will get noticed in a positive way</strong>. And that&#8217;s what you&#8217;re after.</p>
]]></content:encoded>
			<wfw:commentRss>http://agwebdesign.nl/2006/06/14/the-key-to-good-writing-is-editing/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
