<?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>bradKELLETT &#187; Internet</title>
	<atom:link href="http://bradkellett.com/p/tag/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://bradkellett.com</link>
	<description></description>
	<lastBuildDate>Sun, 20 May 2012 22:28:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Documenting the Hacks: CSS Browser Targeting</title>
		<link>http://bradkellett.com/p/documenting-the-hacks-css-browser-targeting/</link>
		<comments>http://bradkellett.com/p/documenting-the-hacks-css-browser-targeting/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 03:30:11 +0000</pubDate>
		<dc:creator>Brad Kellett</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css hacks]]></category>
		<category><![CDATA[css property]]></category>
		<category><![CDATA[css selector]]></category>
		<category><![CDATA[explorer]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[ie7]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[internet explorer 7]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[target]]></category>
		<category><![CDATA[targeting]]></category>

		<guid isPermaLink="false">http://pantsland.com/?p=318</guid>
		<description><![CDATA[I think I&#8217;m somewhat of a rarity in the world of web developers &#8211; I actively use and certainly approve of CSS hacks to target and fix certain browsers. Of course, I don&#8217;t condone their use unless it is absolutely necessary, and in most cases good, standards compliant CSS should alleviate most issues before they [...]]]></description>
			<content:encoded><![CDATA[<p>I think I&#8217;m somewhat of a rarity in the world of web developers &#8211; I actively use and certainly approve of CSS hacks to target and fix certain browsers. Of course, I don&#8217;t condone their use unless it is absolutely necessary, and in most cases good, standards compliant CSS should alleviate most issues before they occur, but when there is a need I think these hacks can be a great way to fix issues while still keeping your CSS logical and concise. The caveat to this is that all hacks need good comments to describe what is going on for future reference, whether that be your own or that of another developer. Also, always keep in mind that hacks can break when new browser versions are released, so always keep an eye out and use them sparingly.</p>
<p>I&#8217;ve always found it hard to find a good reference for these hacks. There are many sites that talk about an individual hack, but finding a single place that goes through targeting all the different browsers has been hard. This post hopes to solve that &#8211; more for my own use, but hopefully other developers can find it useful as well. What follows are the hacks that I use, which I believe to be the most logical and simple ones out there. In every case, <em>#selector</em> represents the element you want to apply a rule to (this can be either an ID or a class), and <em>property</em> and <em>value</em> represent any normal CSS property.</p>
<p><span id="more-318"></span></p>
<h3>Internet Explorer 6</h3>
<p>Let&#8217;s start with the one that developers will probably need to use most often. To target IE6:</p>
<div class="codesnip-container" >
<div class="css codesnip" style="font-family:monospace;">
<ol>
<li class="li1">
<div class="de1"><span class="re0">#selector</span> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; _property<span class="sy0">:</span> value<span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
</ol>
</div>
</div>
<h3>Internet Explorer 7</h3>
<p>The following targets IE7 and below. You can use it in conjunction with the above rule to be able to target IE7 and IE6 individually &#8211; just make sure you declare the IE7 rule first, then the IE6 rule.</p>
<div class="codesnip-container" >
<div class="css codesnip" style="font-family:monospace;">
<ol>
<li class="li1">
<div class="de1"><span class="coMULTI">/* Target IE7 and below */</span></div>
</li>
<li class="li1">
<div class="de1"><span class="re0">#selector</span> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="sy0">*</span>property<span class="sy0">:</span> value<span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="coMULTI">/* Then overwrite for targeting IE6 specifically */</span></div>
</li>
<li class="li1">
<div class="de1"><span class="re0">#selector</span> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; _property<span class="sy0">:</span> value<span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
</ol>
</div>
</div>
<h3>Firefox 2</h3>
<p>The easiest way to target versions of Firefox is with selectors that only work in Gecko-based browsers. The following will target Firefox version 2 and below:</p>
<div class="codesnip-container" >
<div class="css codesnip" style="font-family:monospace;">
<ol>
<li class="li1">
<div class="de1"><span class="re0">#selector</span><span class="sy0">,</span> x<span class="re2">:-moz-any-link </span><span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; property<span class="sy0">:</span> value<span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
</ol>
</div>
</div>
<h3>Firefox 3</h3>
<p>As with the Internet Explorer 7 hack, you can easily combine the Firefox 2 and Firefox 3 hacks to target those specific versions of Firefox.</p>
<div class="codesnip-container" >
<div class="css codesnip" style="font-family:monospace;">
<ol>
<li class="li1">
<div class="de1"><span class="coMULTI">/* Target Firefox 2 */</span></div>
</li>
<li class="li1">
<div class="de1"><span class="re0">#selector</span><span class="sy0">,</span> x<span class="re2">:-moz-any-link </span><span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; property<span class="sy0">:</span> value<span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="coMULTI">/* Then overwrite for Firefox 3 specifically */</span></div>
</li>
<li class="li1">
<div class="de1"><span class="re0">#selector</span><span class="sy0">,</span> x<span class="re2">:-moz-any-link</span><span class="sy0">,</span> x<span class="sy0">:</span><span class="kw2">default</span> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; property<span class="sy0">:</span> value<span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
</ol>
</div>
</div>
<h3>Safari 3.0+</h3>
<p>The following will target Safari version 3 and above. To target just Safari 3.1, see the next hack. <strong>Note</strong> that this is valid CSS3, and as such other browsers will eventually start supporting it, so be wary.</p>
<p><strong><em>Update:</em></strong><em> Firefox 3.5 now supports this, and will read the style</em></p>
<div class="codesnip-container" >
<div class="css codesnip" style="font-family:monospace;">
<ol>
<li class="li1">
<div class="de1">body<span class="re2">:first-of-type </span><span class="re0">#selector</span> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; property<span class="sy0">:</span>value<span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
</ol>
</div>
</div>
<h3>Safari 3.1 and Google Chrome</h3>
<p>Google Chrome and Safari both use the Webkit rendering engine, and as such shouldn&#8217;t usually need to be targeted separately. So far, I have not found a way to target just Google Chrome, so attack that with JavaScript for the best results. Make sure you declare this <em>after</em> the Safari 3.0 hack above, as Chrome and Safari 3.1 will read that as well.</p>
<p><strong><em>Update:</em></strong><em> Firefox 3.5 now supports this, and will read the style</em></p>
<div class="codesnip-container" >
<div class="css codesnip" style="font-family:monospace;">
<ol>
<li class="li1">
<div class="de1">body<span class="re2">:nth-of-</span>type<span class="br0">&#40;</span>1<span class="br0">&#41;</span> <span class="re0">#selector</span> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; property<span class="sy0">:</span> value<span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
</ol>
</div>
</div>
<h3>Opera 9</h3>
<p>While Opera is pretty good at rendering standards compliant code, and won&#8217;t generally need hacks, there are times when it is necessary. Unfortunately, I haven&#8217;t found a good way to target just Opera &#8211; instead, the easiest way is to use a rule that targets Opera and Safari (and other Webkit browsers like Chrome), then reset for the Webkit browsers.</p>
<div class="codesnip-container" >
<div class="css codesnip" style="font-family:monospace;">
<ol>
<li class="li1">
<div class="de1"><span class="coMULTI">/* Declare for Opera and Webkit */</span></div>
</li>
<li class="li1">
<div class="de1"><span class="co1">@media screen and (-webkit-min-device-pixel-ratio:0){</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="re0">#selector</span> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; property<span class="sy0">:</span> value<span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="coMULTI">/* Revert for Safari (and other Webkit browsers) and Firefox 3.5 */</span></div>
</li>
<li class="li1">
<div class="de1">body<span class="re2">:first-of-type </span><span class="re0">#selector</span> <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; property<span class="sy0">:</span>value<span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
</ol>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://bradkellett.com/p/documenting-the-hacks-css-browser-targeting/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>On Online Journalism: Why it&#8217;s the Place to Be</title>
		<link>http://bradkellett.com/p/on-online-journalism-why-its-the-place-to-be/</link>
		<comments>http://bradkellett.com/p/on-online-journalism-why-its-the-place-to-be/#comments</comments>
		<pubDate>Mon, 04 Jun 2007 02:59:13 +0000</pubDate>
		<dc:creator>Brad Kellett</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Journalism]]></category>
		<category><![CDATA[feature_articles]]></category>
		<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Handsets]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[magazine]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[media_outlets]]></category>
		<category><![CDATA[newspaper]]></category>
		<category><![CDATA[portability]]></category>

		<guid isPermaLink="false">http://www.pantsland.com/2007/06/04/on-online-journalism-why-its-the-place-to-be/</guid>
		<description><![CDATA[I have been in online journalism for several years now, surely not that long compared to a lot of the veterans I know, but enough to realize a few observations about the industry. I love journalism, and can&#8217;t imagine doing much else anymore, and I solidly believe that the place to be is not in [...]]]></description>
			<content:encoded><![CDATA[<p>I have been in online journalism for several years now, surely not that long compared to a lot of the veterans I know, but enough to realize a few observations about the industry. I love journalism, and can&#8217;t imagine doing much else anymore, and I solidly believe that the place to be is not in print, but online.</p>
<p>By no means am I saying that there isn&#8217;t a place in the future for print media, but I believe that its place in the world will change. No longer will print media be where people turn for news, instead I believe that more and more people will look to the internet &#8211;  we are seeing this already, is isn&#8217;t a new thing. Print media will transform into a place for feature articles and longer pieces, mainly due to the major advantage that online journalism has over print: speed. Print media still has the advantage of portability currently, which is why it still has a place with feature articles and the like, but even that content is available online and will be made more accessible with the advent of e-readers, UMPCs, and other fun gadgets.</p>
<p>I can think of many times I have been up in the wee hours of the morning preparing an article on a piece of news that has just dropped. I can write a story and publish it online before most print media outlets are even aware of it. Take the announcement of the iPhone for example: I was preparing an article during Steve Jobs&#8217; keynote, with the article live on MobileBurn not 30 seconds after the facts were revealed. Tech magazines would have had to wait until the following month at least to report on the news, and even newspapers would have had to have held off for an afternoon edition, if not the next day. It just makes sense for people to turn to the most recently updated news source, which will almost always be the internet.</p>
<p>Online media also has the ability to be very specialized. At MobileBurn, we do better reviews of handsets than almost any print publication out there. We know phones, it&#8217;s what we do. Most magazines have to cover a broader range of subject matter, and as such do not have the same depth of knowledge on all topics. The perfect publication would be made up of specialists reporting on what they know best, and this is far easier online. It does happen in print, but through RSS feeds and other syndication technology readers now have the ability to view exactly the content they like, rather than one publication choosing who is the best in a field.</p>
<p>I have no problem writing feature articles for print media, I quite enjoy it, but I really do believe in online media.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradkellett.com/p/on-online-journalism-why-its-the-place-to-be/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Recommended Reading</title>
		<link>http://bradkellett.com/p/recommended-reading/</link>
		<comments>http://bradkellett.com/p/recommended-reading/#comments</comments>
		<pubDate>Wed, 30 May 2007 13:31:50 +0000</pubDate>
		<dc:creator>Brad Kellett</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Off-Topic]]></category>
		<category><![CDATA[bloggers]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[opml]]></category>
		<category><![CDATA[reading_list]]></category>

		<guid isPermaLink="false">http://www.pantsland.com/2007/05/30/recommended-reading/</guid>
		<description><![CDATA[This is in response to Kent Newsome&#8217;s request for inspiration for his feed reading list (his &#8216;swivel feeds&#8217; experiment). As you can imagine, most of my 150 or so feeds I read regularly (there are more that I only glance at now and then) are focused on mobile technology, but there are still some that [...]]]></description>
			<content:encoded><![CDATA[<p>This is in response to Kent Newsome&#8217;s <a href="http://www.newsome.org/2007/05/swivel-feeds-group-2.shtml">request for inspiration</a> for his feed reading list (his &#8216;swivel feeds&#8217; experiment). As you can imagine, most of my 150 or so feeds I read regularly (there are more that I only glance at now and then) are focused on mobile technology, but there are still some that I think would be of interest. I don&#8217;t read as many personal blogs as I should, but there are quite a few one-man shows that I enjoy, and even non-commercial group blogs that come in very useful.</p>
<p>So without further ado, here are five blogs not already on Kent&#8217;s list that I think he, and others, might enjoy:</p>
<ul>
<li><a href="http://www.bloggingpro.com/"><strong>Blogging Pro</strong></a><br />
Lots of news and tips for personal bloggers and pros alike</li>
<li><a href="http://www.darcynorman.net/"><strong>D&#8217;Arcy Norman</strong></a><br />
Works at the University of Calgary, has an interesting insight on the education scene and internet trends in general</li>
<li><a href="http://www.dailycupoftech.com/"><strong>Daily Cup of Tech</strong></a><br />
Timothy Fehlman&#8217;s blog, full of freeware and really great guides to doing fun things with technology</li>
<li><a href="http://uneasysilence.com/"><strong>UNEASYsilence</strong></a><br />
&#8220;Observing the unobserved,&#8221; full of interesting little bits and pieces on all sorts of topics</li>
<li><a href="http://paulstamatiou.com/"><strong>PaulStamatiou.com</strong></a><br />
Young blogger from  Georgia Tech, interesting insights and reviews</li>
</ul>
<p>I have tried to steer away from the larger, professional blogs in favor of the smaller outfits. Also, I mainly subscribe to technology feeds, which may have limited appeal to some. Hopefully someone will get something out of that lot though.</p>
<p>Remember, my main reading list is always available in OPML format <a href="/wp-content/feeds.opml">here</a>, and a rotating selection of links from that list that refreshes every ten minutes appears in my sidebar.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradkellett.com/p/recommended-reading/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Easy Natural Language in Google</title>
		<link>http://bradkellett.com/p/easy-natural-language-in-google/</link>
		<comments>http://bradkellett.com/p/easy-natural-language-in-google/#comments</comments>
		<pubDate>Sat, 12 Aug 2006 09:52:19 +0000</pubDate>
		<dc:creator>Brad Kellett</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Natural-Language]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Time-Saver]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://www.pantsland.com/2006/08/12/easy-natural-language-in-google/</guid>
		<description><![CDATA[Greg Hughes writes about a great feature in Google where you can actually ask it what time it is in a certain place in natural language and get a response. This is cool, and something I&#8217;m sure I&#8217;ll be making big use of when traveling. Google keeps amazing me more every day. I also make [...]]]></description>
			<content:encoded><![CDATA[<p>Greg Hughes <a title="View Greg's Post" href="http://www.greghughes.net/rant/EverWonderWhatTimeItIsWhereYouJustLanded.aspx">writes</a> about a great feature in Google where you can actually ask it what time it is in a certain place in natural language and get a response. This is cool, and something I&#8217;m sure I&#8217;ll be making big use of when traveling. Google keeps amazing me more every day.</p>
<p>I also make big use of Google&#8217;s conversion features where, for example, typing <em>&#8220;11cm in inches&#8221;</em> yields the actual answer. Handy.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradkellett.com/p/easy-natural-language-in-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Desktop and My Feed &#8211; Love at First Sight</title>
		<link>http://bradkellett.com/p/google-desktop-and-my-feed-love-at-first-sight/</link>
		<comments>http://bradkellett.com/p/google-desktop-and-my-feed-love-at-first-sight/#comments</comments>
		<pubDate>Fri, 10 Mar 2006 10:40:50 +0000</pubDate>
		<dc:creator>Brad Kellett</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google-Desktop]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Sage]]></category>

		<guid isPermaLink="false">http://www.pantsland.com/?p=95</guid>
		<description><![CDATA[I have been quite busy with CeBIT, as well as some other projects, these last couple of days, so I have been quite bad with updating the blog. Sorry folks, my bad. Something interesting to note though &#8211; I was looking through my feed statistics just then, and by a rather large margin, Google Desktop [...]]]></description>
			<content:encoded><![CDATA[<p>I have been quite busy with <a href="http://www.cebit.com">CeBIT</a>, as well as some other projects, these last couple of days, so I have been quite bad with updating the blog. Sorry folks, my bad.</p>
<p>Something interesting to note though &#8211; I was looking through my feed statistics just then, and by a rather large margin, <a href="http://desktop.google.com">Google Desktop</a> is the most popular reader for subscribing to my site. This surprises me a little &#8211; I have tried (and since uninstalled) Google Desktop, and it is something I would not consider to be a full-time feed reader.</p>
<p>It might just be me and the way I read feeds, but I would personally limit the use of a reader like GD (which sits as a sidebar or floating in a widget-like fashion) to reading things like news headlines. It is not something that I would use for reading personal blogs.</p>
<p>For my feed reading endeavors, I use the excellent <a href="http://sage.mozdev.org/">Sage</a> plug-in for the equally excellent <a href="http://www.getfirefox.com">Firefox</a>. It works with the live bookmarks feature of the browser, and displays the list of feed names in a sidebar. Clicking on the feed (which displays bold if there are unread entries) takes you to an attractive two-column page with the text of the feed. Simple, brilliant.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradkellett.com/p/google-desktop-and-my-feed-love-at-first-sight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Substandard Standard</title>
		<link>http://bradkellett.com/p/substandard-standard/</link>
		<comments>http://bradkellett.com/p/substandard-standard/#comments</comments>
		<pubDate>Tue, 07 Mar 2006 12:35:06 +0000</pubDate>
		<dc:creator>Brad Kellett</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Atom]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Feed]]></category>
		<category><![CDATA[Feed-Icon]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Standards]]></category>

		<guid isPermaLink="false">http://www.pantsland.com/?p=91</guid>
		<description><![CDATA[I just threw what is being touted as the new standard feed icon on to the sidebar of this blog &#8211; the little orange box with the radio waves. I&#8217;m all for a standard in this department, as much as I don&#8217;t really like the look of the icon, but will use it to (as [...]]]></description>
			<content:encoded><![CDATA[<p>I just threw what is being touted as the new standard feed icon on to the sidebar of this blog &#8211; the little orange box with the radio waves. I&#8217;m all for a standard in this department, as much as I don&#8217;t really like the look of the icon, but will use it to (as the <a title="Feed Icons" href="http://www.feedicons.com/">Feed Icons</a> site puts it) &#8216;bring feeds to the forefront.&#8217;</p>
<p>One little thing bugs me on the Feed Icons (a group trying to promote the standard icon) website &#8211; it states down the bottom that they will soon be adding a gallery for people to upload custom feed icons for others to see and use. Is it just me, or does this destroy the point of having a standardized icon in the first place? It is bad enough that the site offers the icon in different colors, let alone whatever other form of customization that may surface.</p>
<p>Really, what is the point of a standard that is not being followed, even by the very place that is trying to promote it?</p>
<p>Also, while there is a feed for the icon releases, why does the site not utilize feed auto-discovery?</p>
]]></content:encoded>
			<wfw:commentRss>http://bradkellett.com/p/substandard-standard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Call Me Slow on the Uptake (Firefox Tip)</title>
		<link>http://bradkellett.com/p/call-me-slow-on-the-uptake-firefox-tip/</link>
		<comments>http://bradkellett.com/p/call-me-slow-on-the-uptake-firefox-tip/#comments</comments>
		<pubDate>Tue, 07 Mar 2006 11:48:43 +0000</pubDate>
		<dc:creator>Brad Kellett</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Off-Topic]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.pantsland.com/?p=89</guid>
		<description><![CDATA[Maybe this is old news, but I just realized that I can switch between tabs in Firefox by holding down the middle-click (press on the scroll wheel) and clicking either the left or right mouse button. Genius&#8230;]]></description>
			<content:encoded><![CDATA[<p>Maybe this is old news, but I just realized that I can switch between tabs in Firefox by holding down the middle-click (press on the scroll wheel) and clicking either the left or right mouse button. Genius&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://bradkellett.com/p/call-me-slow-on-the-uptake-firefox-tip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Design Mistakes on Weblogs</title>
		<link>http://bradkellett.com/p/design_mistakes_on_weblogs/</link>
		<comments>http://bradkellett.com/p/design_mistakes_on_weblogs/#comments</comments>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<dc:creator>Brad Kellett</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Jakob Nielsen has written a great list of the Top Ten Design Mistakes people make on weblogs. If you have your own blog, definitely give it a read. I think my biggest rule breaker is the fact that I don&#8217;t have an about me page. I have never really though about this, but now that [...]]]></description>
			<content:encoded><![CDATA[<p>Jakob Nielsen has written a great list of the <a href="http://www.useit.com/alertbox/weblogs.html">Top Ten Design Mistakes</a> people make on weblogs. If you have your own blog, definitely give it a read.</p>
<p>I think my biggest rule breaker is the fact that I don&#8217;t have an about me page. I have never really though about this, but now that I am I have no idea why I don&#8217;t. I will get on up by next week, for sure.</p>
<p>Other than that, I think I did pretty good with those rules. The only other thing I could improve on is my posting frequency, though new content should be up daily from now on.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradkellett.com/p/design_mistakes_on_weblogs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No TV For Canadian iTMS</title>
		<link>http://bradkellett.com/p/no_tv_for_canadian_itms/</link>
		<comments>http://bradkellett.com/p/no_tv_for_canadian_itms/#comments</comments>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<dc:creator>Brad Kellett</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[LMS]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[D&#8217;Arcy notes that Blackboard and WebCT are merging. I too, am a little worried about this. A university that I contract for is nearing the final stages of upgrading our current WebCT CE system to WebCT Vista. I am very impressed with Vista so far, and I think that the competition between BB and WebCT [...]]]></description>
			<content:encoded><![CDATA[<p>D&#8217;Arcy <a href="http://www.darcynorman.net/2005/10/12/webct-blackboard">notes</a> that Blackboard and WebCT are merging. I too, am a little worried about this.</p>
<p>A university that I contract for is nearing the final stages of upgrading our current WebCT CE system to WebCT Vista. I am very impressed with Vista so far, and I think that the competition between BB and WebCT for the LMS market has made both stronger products. I don&#8217;t want to see that stop. I can only hope that the combined companies continue to innovate in this space.</p>
<p>I&#8217;m happy to hear that both brands will be around a while longer, I would hate for us to finish rolling out Vista to 18,000 students only to have it be made obsolete&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://bradkellett.com/p/no_tv_for_canadian_itms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update: Free Opera</title>
		<link>http://bradkellett.com/p/update_free_opera/</link>
		<comments>http://bradkellett.com/p/update_free_opera/#comments</comments>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<dc:creator>Brad Kellett</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Opera]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Well, the email address thing was a fake, but Opera have put up a form now to get your free registration codes. As a side note, it only seems to work if you check the box to subscribe to the Opera newsletter. This page is valid for today only!]]></description>
			<content:encoded><![CDATA[<p>Well, the email address thing was a fake, but Opera have put up a <a href="http://my.opera.com/community/party/reg.dml">form</a> now to get your free registration codes. As a side note, it only seems to work if you check the box to subscribe to the Opera newsletter.</p>
<p>This page is valid for today only!</p>
]]></content:encoded>
			<wfw:commentRss>http://bradkellett.com/p/update_free_opera/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

