<?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; Google</title>
	<atom:link href="http://bradkellett.com/p/tag/google/feed/" rel="self" type="application/rss+xml" />
	<link>http://bradkellett.com</link>
	<description></description>
	<lastBuildDate>Sat, 04 Feb 2012 15:42:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Limit App Engine to Minified JS and CSS</title>
		<link>http://bradkellett.com/p/limit-app-engine-to-minified-js-and-css/</link>
		<comments>http://bradkellett.com/p/limit-app-engine-to-minified-js-and-css/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 10:28:03 +0000</pubDate>
		<dc:creator>Brad Kellett</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[app engine]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[minified]]></category>

		<guid isPermaLink="false">http://bradkellett.com/?p=590</guid>
		<description><![CDATA[Call me paranoid or call me efficient, but I don&#8217;t like non-minified CSS and Javascript accessible in a production environment. It&#8217;s one thing setting up your web application to use minified files when it&#8217;s rolled out , but I&#8217;d prefer that the originals aren&#8217;t available at all &#8211; and yes, part of that is me [...]]]></description>
			<content:encoded><![CDATA[<p>Call me paranoid or call me efficient, but I don&#8217;t like non-minified CSS and Javascript accessible in a production environment. It&#8217;s one thing setting up your web application to use minified files when it&#8217;s rolled out , but I&#8217;d prefer that the originals aren&#8217;t available at all &#8211; and yes, part of that is me not wanting to make it too easy for people to snoop through my code (though I do release a lot as open source anyway).</p>
<p>In any event, this proved a little tricky when using <a href="http://code.google.com/appengine/">Google App Engine</a> for <a href="http://locationfu.com">LocationFu</a>. Google&#8217;s deploy process has the option of excluding certain application files from being sent up, but it can&#8217;t exclude any files that sit within a directory marked as a static path. The solution is simple, but took me a while to figure out. Previously, I had my static path set up like so in my app.yaml file (note that this is for Python App Engine):</p>
<div class="codesnip-container" >- url: /static<br />
   static_dir: static</div>
<p>That will map any file starting with /static into the static directory in the app tree. Instead, you can map individual files, and limit the extensions you want to serve:</p>
<div class="codesnip-container" >- url: /static/(.*?)<br />
   static_files: static/\1<br />
   upload: static/(.*\.(gif|png|jpg|min\.css|min\.js))</div>
<p>That tells App Engine to grab the file name requested and map it into the static directory, while the upload parameter includes a regex to match only selected file extensions (.min.js, but not just .js, for example). This won&#8217;t stop your app from serving any file while running on the local development server, but when pushed to production, your JS and CSS files will only be accessible in minified form.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradkellett.com/p/limit-app-engine-to-minified-js-and-css/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Sync Google Calendar/Contacts to Everywhere with Exchange</title>
		<link>http://bradkellett.com/p/sync-google-calendar-contacts-with-exchange/</link>
		<comments>http://bradkellett.com/p/sync-google-calendar-contacts-with-exchange/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 11:35:02 +0000</pubDate>
		<dc:creator>Brad Kellett</dc:creator>
				<category><![CDATA[Mobile Tech]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[contacts]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[sync]]></category>
		<category><![CDATA[synchronize]]></category>

		<guid isPermaLink="false">http://bradkellett.com/?p=531</guid>
		<description><![CDATA[I see it all the time &#8211; some new blog post detailing how to sync your Google calendar and contacts to somewhere, usually to the iPhone, using some new 3rd party service or crazy trick. Many people suggest NuevaSync to sync directly to the iPhone, or using CalDAV to get your calendars to iCal so [...]]]></description>
			<content:encoded><![CDATA[<p>I see it all the time &#8211; some new blog post detailing how to sync your Google calendar and contacts to somewhere, usually to the iPhone, using some new 3rd party service or crazy trick. Many people suggest <a href="https://www.nuevasync.com/">NuevaSync</a> to sync directly to the iPhone, or using CalDAV to get your calendars to iCal so they can be synced through iTunes.</p>
<p>Fact is, they are missing a key feature of Google apps that lets you sync to a lot of places, including the iPhone, directly and with push updates &#8211; Google supports Microsoft Exchange for both contacts and calendars.</p>
<p>With the Exchange support, you can get push updates to any device or application that supports Exchange, including Outlook on the desktop and the iPhone with v3.0 software and above. It doesn&#8217;t get around syncing to iCal (unless you&#8217;re already on Snow Leopard, which supports Exchange out of the box), but it&#8217;s damn good for mobile devices.</p>
<p><a href="http://www.google.com/support/mobile/bin/answer.py?answer=138740&amp;topic=14252">Here are the instructions for setting it up on the iPhone</a>, and you can use the server settings from there to set up any other device/app that supports Exchange.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradkellett.com/p/sync-google-calendar-contacts-with-exchange/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Review of the Fever RSS Reader</title>
		<link>http://bradkellett.com/p/review-of-the-fever-rss-reader/</link>
		<comments>http://bradkellett.com/p/review-of-the-fever-rss-reader/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 18:34:36 +0000</pubDate>
		<dc:creator>Brad Kellett</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Feed]]></category>
		<category><![CDATA[fever]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[mint]]></category>
		<category><![CDATA[newsgator]]></category>
		<category><![CDATA[reader]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://bradkellett.com/?p=445</guid>
		<description><![CDATA[The premise of Fever is simple: your current RSS reader is full of unread items that you&#8217;ll never get through, you can&#8217;t keep up with the volume, and you don&#8217;t want to add more subscriptions for fear of compounding the problem. Clearly, Fever is aimed at RSS &#8216;power users,&#8217; and people with only a few [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_463" class="wp-caption alignleft" style="width: 160px"><a href="http://bradkellett.com/wp-content/uploads/2009/06/list.png"><img class="size-thumbnail wp-image-463" title="Fever List View" src="http://bradkellett.com/wp-content/uploads/2009/06/list-150x117.png" alt="Fever List View" width="150" height="117" /></a><p class="wp-caption-text">Fever List View</p></div>
<p>The premise of <a href="http://feedafever.com">Fever</a> is simple: your current RSS reader is full of unread items that you&#8217;ll never get through, you can&#8217;t keep up with the volume, and you don&#8217;t want to add more subscriptions for fear of compounding the problem. Clearly, Fever is aimed at RSS &#8216;power users,&#8217; and people with only a few subscriptions should probably save themselves the effort and stick to a simpler solution like <a href="http://reader.google.com">Google Reader</a> or <a href="http://newsgator.com">NewsGator</a>. That said, can Fever really live up to the premise of saving you from second inbox overload?</p>
<p><span id="more-445"></span></p>
<p>Fever is the latest endeavor from venerable designer/developer <a href="http://shauninman.com/">Shaun Inman</a>, creator of the renowned website statistics package <a href="http://haveamint.com">Mint</a>. At it&#8217;s core, Fever is a regular RSS reader, with the ability to group feeds and read through each feed, group of feeds, or all of your feeds in an attractive river-of-news style view. Like Google Reader, Fever has nice features like endless scrolling (loading more unread items as you approach the bottom of the current list automatically), but unlike Google Reader, Fever is self-hosted, meaning you must have a web server to run it on. Also going against the grain of online RSS readers, Fever costs money &#8211; US$30 to be exact. That&#8217;s a fair chunk of cash considering most other readers, desktop and otherwise, are free.</p>
<div id="attachment_458" class="wp-caption alignright" style="width: 160px"><a href="http://bradkellett.com/wp-content/uploads/2009/06/hot.png"><img class="size-thumbnail wp-image-458" title="Fever Hot List" src="http://bradkellett.com/wp-content/uploads/2009/06/hot-150x117.png" alt="Fever Hot List" width="150" height="117" /></a><p class="wp-caption-text">Fever Hot List</p></div>
<p>Beyond simple RSS reading, however, Fever&#8217;s banner feature and one thing that could make it worth the purchase for some is it&#8217;s Hot list. To use the Hot list properly, Fever asks the user to split their subscriptions into two categories: Kindling, which are your must-read subscriptions, and Sparks, which are less important and higher volume feeds. Once this is done, the Fever Hot list becomes essentially an automatic, personal <a href="http://digg.com">Digg</a>. Fever uses the sites that the Sparks link to in order to ignite the Kindling, bubbling the popular and active items to the top of the list. This means you can always see the most important items from your subscriptions at a glance, and leave reading the rest until later (or not at all).</p>
<p>This feature does have a few limitations though, most notably the fact that it can&#8217;t determine what is a link to a real news item, and what is a link to a home page, privacy policy, or other non-news pages. For example, if you subscribe to many Weblogs Inc. feeds, you will find that the Weblogs privacy policy hits the top of your Hot list very quickly, since it&#8217;s linked to at the bottom of every Weblogs post. Similarly, sites like the Twitter homepage, which seem to get linked to everywhere these days, will also run to the top. Thankfully, Fever has a URL blacklist, so once you spend a bit of time blocking these types of things, the Hot list becomes a pretty damn useful feature, showing you the news articles that are most popular amongst your subscriptions</p>
<div id="attachment_461" class="wp-caption alignleft" style="width: 110px"><a href="http://bradkellett.com/wp-content/uploads/2009/06/IMG_0085.PNG"><img class="size-thumbnail wp-image-461" title="Fever iPhone Item View" src="http://bradkellett.com/wp-content/uploads/2009/06/IMG_0085-100x150.PNG" alt="Fever iPhone Item View" width="100" height="150" /></a><p class="wp-caption-text">Fever iPhone Item View</p></div>
<p>One feature that is very important to me is a mobile version of the reader. Google Reader has a great iPhone compatible site that I use all the time, it&#8217;s a solid UI and quite fast, but Fever one-ups Reader&#8217;s mobile site by not only looking a whole lot better, but also bringing across the infinite scrolling from it&#8217;s full version. This means that when you are flipping down the page on your iPhone and nearing the bottom, it&#8217;ll load up more items in the background so can can keep on scrolling, making reading feeds very fast.</p>
<div id="attachment_462" class="wp-caption alignright" style="width: 110px"><a href="http://bradkellett.com/wp-content/uploads/2009/06/IMG_0086.PNG"><img class="size-thumbnail wp-image-462" title="Fever iPhone Frame" src="http://bradkellett.com/wp-content/uploads/2009/06/IMG_0086-100x150.PNG" alt="Fever iPhone Frame" width="100" height="150" /></a><p class="wp-caption-text">Fever iPhone Frame</p></div>
<p>One thing I don&#8217;t like about the iPhone UI is that if you try to open an external link in a feed item, it adds it&#8217;s own frame to the top of the page, which would be fine if it didn&#8217;t mess up the view port every time you tried to go back to the reading list. This can be fixed with a quick change of orientation of your phone, but it is annoying none the less. This feature is necessary because of another Fever feature, the ability to be used as a chromeless web app. If you bookmark Fever on your iPhone home screen, it get&#8217;s itself a nice icon and starts up without the Safari UI over the top of it.</p>
<p>On the technical front, Fever was very easy to install. After setting up a database for it to use and running the compatibility checker, you need only enter your activation code  for everything to be set up and ready. Updates to Fever are pulled automatically, and you can automate the fetching of new feeds via a simple cron job on your server. It doesn&#8217;t seem like you can automatically fetch feeds at less than 15 minute intervals with the cron job, though the Fever UI has a refresh button you can hit at any time to reload feeds from the browser.</p>
<p>Fever includes a few niceties like a bookmarklet so you can easily subscribe to feeds while browsing, which is handy since Fever cannot be set as a default feed reader for your browser or operating system. Keyboard shortcuts are fully supported, and are actually more logical than those in Google Reader, and a pretty effective search feature is available.</p>
<p>Overall, Fever is an extremely slick, fast, and well-featured RSS reader. The Hot list feature is it&#8217;s main differentiator from Google Reader and other online RSS readers, as well as the ability to control the feed refresh interval instead of relying on whatever schedule the developer has chosen. It&#8217;s also a hell of a lot faster than Google Reader when browsing a lot of items &#8211; I find Firefox slows to a crawl with Reader after about 500 items, but not so with Fever. Is it worth $30? No, not when the RSS reader market price has bottomed out at $0, but for people with a lot of subscriptions, it is a great package. If you don&#8217;t mind parting with your $30, I can highly recommend Fever, but I think it would get a lot more users if it were priced at about $15. I&#8217;d also like the option of turning off the Fever header when clicking links on the iPhone version when running in full Safari, but otherwise Fever is almost perfect.</p>

<a href='http://bradkellett.com/p/review-of-the-fever-rss-reader/hot/' title='Fever Hot List'><img width="150" height="117" src="http://bradkellett.com/wp-content/uploads/2009/06/hot-150x117.png" class="attachment-thumbnail" alt="Fever Hot List" title="Fever Hot List" /></a>
<a href='http://bradkellett.com/p/review-of-the-fever-rss-reader/img_0083/' title='Fever iPhone Reading List'><img width="100" height="150" src="http://bradkellett.com/wp-content/uploads/2009/06/IMG_0083-100x150.PNG" class="attachment-thumbnail" alt="Fever iPhone Reading List" title="Fever iPhone Reading List" /></a>
<a href='http://bradkellett.com/p/review-of-the-fever-rss-reader/img_0084/' title='Fever iPhone Feed List'><img width="100" height="150" src="http://bradkellett.com/wp-content/uploads/2009/06/IMG_0084-100x150.PNG" class="attachment-thumbnail" alt="Fever iPhone Feed List" title="Fever iPhone Feed List" /></a>
<a href='http://bradkellett.com/p/review-of-the-fever-rss-reader/img_0085/' title='Fever iPhone Item View'><img width="100" height="150" src="http://bradkellett.com/wp-content/uploads/2009/06/IMG_0085-100x150.PNG" class="attachment-thumbnail" alt="Fever iPhone Item View" title="Fever iPhone Item View" /></a>
<a href='http://bradkellett.com/p/review-of-the-fever-rss-reader/img_0086/' title='Fever iPhone Frame'><img width="100" height="150" src="http://bradkellett.com/wp-content/uploads/2009/06/IMG_0086-100x150.PNG" class="attachment-thumbnail" alt="Fever iPhone Frame" title="Fever iPhone Frame" /></a>
<a href='http://bradkellett.com/p/review-of-the-fever-rss-reader/list/' title='Fever List View'><img width="150" height="117" src="http://bradkellett.com/wp-content/uploads/2009/06/list-150x117.png" class="attachment-thumbnail" alt="Fever List View" title="Fever List View" /></a>

]]></content:encoded>
			<wfw:commentRss>http://bradkellett.com/p/review-of-the-fever-rss-reader/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Cuil: We Get Over It</title>
		<link>http://bradkellett.com/p/cuil-we-get-over-it/</link>
		<comments>http://bradkellett.com/p/cuil-we-get-over-it/#comments</comments>
		<pubDate>Sun, 10 May 2009 02:15:11 +0000</pubDate>
		<dc:creator>Brad Kellett</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[competition]]></category>
		<category><![CDATA[cuil]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[related]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[timeline]]></category>

		<guid isPermaLink="false">http://bradkellett.com/?p=423</guid>
		<description><![CDATA[Note: Opinions expressed here are my own, and not that of my employer, Cuil. Google is full of creative, smart, and innovative people, but above all else, they are a fantastic PR machine. Sometimes it&#8217;s because of a carefully executed PR plan; sometimes it&#8217;s just because they are such a household name; either way, anything [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Note: Opinions expressed here are my own, and not that of my employer, Cuil.</strong></p>
<p>Google is full of creative, smart, and innovative people, but above all else, they are a fantastic PR machine. Sometimes it&#8217;s because of a carefully executed PR plan; sometimes it&#8217;s just because they are such a household name; either way, anything the giant does becomes news.</p>
<p>There is <a href="http://www.marksonland.com/2009/04/google_likes_to_steal_others_t_1.html">discussion</a> at the <a href="http://www.dullest.com/blog/stealing-thunder/">moment</a> about Google stealing the up-and-coming competition&#8217;s thunder, and I&#8217;d be lying if I didn&#8217;t feel the same at times. Take Cuil&#8217;s recent <a href="http://www.cuil.com/info/blog/2009/03/31/launching-timelines">launch of timelines</a>, followed just a few weeks later with Google&#8217;s <a href="http://googlenewsblog.blogspot.com/2009/04/introducing-google-news-timeline.html">News Timeline launch</a>, and inclusion of it&#8217;s experimental timeline result view into the normal search results days later. We <a href="http://www.cuil.com/info/blog/2009/03/12/category-improvements">tweaked our related searches</a> to make them better, then Google <a href="http://googleblog.blogspot.com/2008/06/fresher-related-search-suggestions.html">did the same thing</a> a short time later (there are others doing related searches as well, it&#8217;s just a good idea).</p>
<p>But you know what? We get over it.</p>
<p>Competition is good for the industry, and we welcome it from competitors big and small. Google wouldn&#8217;t be the successful company it is if they didn&#8217;t notice what was going on around them and react accordingly. Any company looking to catch up to Google is doing the exact same thing.</p>
<p>Cuil is largely <a href="http://www.marketwatch.com/news/story/story.aspx?guid={4814dbd8-bcc5-4e3c-8902-edc107773452}">written off in the press</a>, so we never expect to get the same reaction when launching new features. That&#8217;s not going to stop us: we&#8217;re going to keep innovating and trying to make discovering information easier and more enjoyable. If Google wants to implement some of our ideas, they can go right ahead &#8211; the difference is in the execution, and every search engine needs to learn that ideas are only half the equation. You need to take these ideas and make them into features that average people enjoy using. We try to create a human-focused search engine, easing exploration, instead of being a dull list that amounts to a popularity contest.</p>
<p>We&#8217;re not as big as Google yet, but we&#8217;re still here, and we&#8217;re not going to stop bringing a fresh perspective to search.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradkellett.com/p/cuil-we-get-over-it/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Things in America That Australia Needs</title>
		<link>http://bradkellett.com/p/things-in-america-that-australia-needs/</link>
		<comments>http://bradkellett.com/p/things-in-america-that-australia-needs/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 23:48:50 +0000</pubDate>
		<dc:creator>Brad Kellett</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[australia]]></category>
		<category><![CDATA[car sharing]]></category>
		<category><![CDATA[craigslist]]></category>
		<category><![CDATA[ebay]]></category>
		<category><![CDATA[fandango]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[grandcentral]]></category>
		<category><![CDATA[hulu]]></category>
		<category><![CDATA[mint]]></category>
		<category><![CDATA[muni]]></category>
		<category><![CDATA[netflix]]></category>
		<category><![CDATA[phonetag]]></category>
		<category><![CDATA[threadless]]></category>
		<category><![CDATA[voicemail]]></category>

		<guid isPermaLink="false">http://bradkellett.com/?p=400</guid>
		<description><![CDATA[I&#8217;ve been living in the United States for almost a year now, and there are a few services that I use very regularly that would do fantastically well if someone were to bring them to Australia. It&#8217;s been a while since I&#8217;ve been home, so someone could have started these already, but here is the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been living in the United States for almost a year now, and there are a few services that I use very regularly that would do fantastically well if someone were to bring them to Australia. It&#8217;s been a while since I&#8217;ve been home, so someone could have started these already, but here is the list of things that should really be in Australia:</p>
<ul>
<li><a href="http://craigslist.org">Craigslist</a>: This is the No. 1 thing I&#8217;d miss if I moved back home. Fast, easy, super simple online classifieds. In Australia, you have to turn to eBay or Trading Post, which aren&#8217;t nearly as quick and easy. There is a Sydney Craigslist category, but that&#8217;s as far as it goes &#8211; the beauty of Craigslist is in the refined localization.</li>
<li><a href="http://threadless.com">Threadless</a>: Yes, almost my entire wardrobe is made up of Threadless shirts. Sure, you can get them shipped, but it takes forever and can be costly.</li>
<li><a href="http://amazon.com">Amazon</a>: The entire online department store scene in Australia is horrible, bring Amazon in please.</li>
<li><a href="http://google.com/voice">Google Voice</a>: I could care less whether it&#8217;s from Google or not, but the GrandCentral/Google Voice model is a winner and should absolutely come down under.</li>
<li><a href="http://phonetag.com">PhoneTag</a>: Short of a full Google Voice style system, voicemail-to-text services are almost as awesome.</li>
<li><a href="http://fandango.com">Fandango</a>: Online movie ticketing just makes sense. Buy online, pick up at the theatre with a swipe of your card.</li>
<li>Public WiFi: It&#8217;s starting to pick up in Australia, but there is a heap of public WiFi in the States. Not all of it is free, but at least it&#8217;s there at a pinch if you need it.</li>
<li><a href="http://hulu.com">Hulu</a>: I don&#8217;t use it all the time, but online video streaming is great. NetFlix to the Xbox 360 and other TV-connected gear is a great idea too, I just hate NetFlix&#8217;s implementation of it.</li>
<li><a href="http://mint.com">Mint</a>: This is by far the best way to manage your money. Awesome on every level, from the elegant and information-rich web interface, to the handy SMS notifications and savings tips via email.</li>
</ul>
<p>And a few offline things that rock too:</p>
<ul>
<li>Unlimited bus transport for $1.50: Muni might be dirty, but the price rocks, especially with unlimited transfers for four hours.</li>
<li><a href="http://zipcar.com">ZipCar</a>: Car sharing is awesome. I hear that it&#8217;s just starting in Sydney, but it needs to be everywhere.</li>
<li>At home snail mail postage: you can just leave letters in your letterbox, and the postman grabs them when he does his rounds</li>
<li>Bikes on public transport: more a San Francisco thing than a general USA thing, but CityRail needs bike cars like Caltrain has.</li>
<li>Bike lanes: San Francisco still doesn&#8217;t have enough, but it at least has some bike lanes. These are sorely missing in Australia, and really do encourage people to leave the car at home.</li>
</ul>
<p>Obviously, this list isn&#8217;t exhaustive, but could someone please bring them to Australia? Thanks, I appreciate it&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://bradkellett.com/p/things-in-america-that-australia-needs/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>See Protected Content &#8211; be the Googlebot</title>
		<link>http://bradkellett.com/p/see-protected-content-be-the-googlebot/</link>
		<comments>http://bradkellett.com/p/see-protected-content-be-the-googlebot/#comments</comments>
		<pubDate>Wed, 24 Dec 2008 04:15:55 +0000</pubDate>
		<dc:creator>Brad Kellett</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[googlebot]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[user agent]]></category>

		<guid isPermaLink="false">http://pantsland.com/?p=363</guid>
		<description><![CDATA[I&#8217;m sure most of us have had the problem &#8211; search for something with Google, see a search result appear that is exactly what you&#8217;re looking for, only to find that when you click through to the page you get told that you must log in to see the content or (gasp!) pay to see [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure most of us have had the problem &#8211; search for something with Google, see a search result appear that is exactly what you&#8217;re looking for, only to find that when you click through to the page you get told that you must log in to see the content or (gasp!) pay to see it in full. Well, there is a simple way around this: pretend to be Google!</p>
<p>Sites like these detect when Google is crawling their site and show the full content, but don&#8217;t give regular people the same luxury. Sites generally detect this by looking at the user agent, which is a string that identifies what kind of browser/device is requesting the page. Therefore, if we change our user agent string to match that of the Googlebot (the system Google uses to find content on the web), we can see the content that was indexed to make the search result we found.</p>
<p>There are various ways to change the user agent that your browser is reporting, including the great <a href="https://addons.mozilla.org/en-US/firefox/addon/59">User Agent Switcher extension</a> for Firefox, or the <a href="http://www.ie7pro.com/">IE7Pro plugin</a> for Internet Explorer 7.</p>
<p>Whichever way you go about it, you want to change your user agent string to:</p>
<blockquote><p>Googlebot/1.0 (googlebot@googlebot.com http://googlebot.com/)</p></blockquote>
<p>You may have to restart your browser for the change to take effect, but after that you should be able to go back to the site you were trying to access and see exactly what Google does &#8211; the content!</p>
]]></content:encoded>
			<wfw:commentRss>http://bradkellett.com/p/see-protected-content-be-the-googlebot/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>On Joining Cuil</title>
		<link>http://bradkellett.com/p/on-joining-cuil/</link>
		<comments>http://bradkellett.com/p/on-joining-cuil/#comments</comments>
		<pubDate>Sat, 20 Dec 2008 01:05:13 +0000</pubDate>
		<dc:creator>Brad Kellett</dc:creator>
				<category><![CDATA[Commentary]]></category>
		<category><![CDATA[cuil]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[internet archive]]></category>
		<category><![CDATA[jobs]]></category>

		<guid isPermaLink="false">http://pantsland.com/?p=360</guid>
		<description><![CDATA[As I announced on Twitter, I have recently joined Cuil as Senior UI Developer. While there are many reasons I chose to come on at Cuil in favor of other opportunities, there is one factor that really won me over: the people. Cuil has a very flat management structure, and as such everyone has to [...]]]></description>
			<content:encoded><![CDATA[<p>As I announced on Twitter, I have recently joined <a href="http://cuil.com">Cuil</a> as Senior UI Developer. While there are many reasons I chose to come on at Cuil in favor of other opportunities, there is one factor that really won me over: the people.</p>
<p>Cuil has a very flat management structure, and as such everyone has to be very good at a variety of things. There are some incredibly talented people here at Cuil, including ex-senior Google, Internet Archive, and IBM employees (our VP of Engineering was the architect of Googleâ€™s large search index, TeraGoogle). Not only is everyone smart, but they are all focused on a very exciting goal, and moving toward it in logical and defined steps. We all share a vision, and that isn&#8217;t to be a direct competitor to Google right now &#8211; ask anyone here, we know we aren&#8217;t there yet, but we have some amazing technology that is set to really change things with time.</p>
<p>I strongly believe that Cuil is the evolution of search. This doesn&#8217;t just extend to the magazine-style search results presentation we use now, nor the interesting relevancy and multimedia data we&#8217;re splicing into search results, but also to the very cool things that are on the road map. I&#8217;m in a very good position to direct the next generation of information presentation, I have a ton of ideas, and am very excited about the future.</p>
<p>Technology, people, and ideas &#8211; three things that all add up to a very exciting opportunity.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradkellett.com/p/on-joining-cuil/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Tools For Agile Development</title>
		<link>http://bradkellett.com/p/tools-for-agile-development/</link>
		<comments>http://bradkellett.com/p/tools-for-agile-development/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 04:31:54 +0000</pubDate>
		<dc:creator>Brad Kellett</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[aptana]]></category>
		<category><![CDATA[beanstalk]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[bug tracking]]></category>
		<category><![CDATA[bug tracking system]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[development methodologies]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[jot]]></category>
		<category><![CDATA[macfuse]]></category>
		<category><![CDATA[repositories]]></category>
		<category><![CDATA[revisions]]></category>
		<category><![CDATA[source tree]]></category>
		<category><![CDATA[spreadsheet]]></category>
		<category><![CDATA[startup]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[wiki]]></category>

		<guid isPermaLink="false">http://pantsland.com/?p=288</guid>
		<description><![CDATA[I&#8217;ve been doing web development for many years now, and over time I&#8217;ve discovered a few tools that make my life easier. I&#8217;ve used these in personal projects and recommended them to others, and I thought I&#8217;d share them here. While I&#8217;m a web guy, most of these can quite easily be used for other [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been doing web development for many years now, and over time I&#8217;ve discovered a few tools that make my life easier. I&#8217;ve used these in personal projects and recommended them to others, and I thought I&#8217;d share them here. While I&#8217;m a web guy, most of these can quite easily be used for other types of projects as well.</p>
<p>To begin, tools for managing the development process:</p>
<h3>Beanstalk (SVN)</h3>
<p>SVN is an obvious requirement for any company doing development. The problem is, SVN takes time to set up and maintain properly, and smaller companies just can&#8217;t afford to spend this time taking care of it. <a href="http://beanstalkapp.com">Beanstalk</a> provides a simple solution to the problem with off-site SVN server hosting, but the real beauty is not in just the stock SVN server &#8211; Beanstalk have a great web interface to enable you to manage your repositories and users/permissions, as well as see the latest activity in any repository and browse the source tree. The web UI also allows you to easily diff revisions and download files at specific revisions, and you can configure Beanstalk to send you emails for every commit in pretty HTML format with a full diff. With it&#8217;s reasonable pricing and great features above and beyond standard SVN, you really can&#8217;t go past it.</p>
<h3>16bugs (Bug Tracking)</h3>
<p><a href="http://16bugs.com">16bugs</a> has a few bugs itself, but overall it is a great, simple, &#8216;web 2.0&#8242; style bug tracking system. 16bugs has a fairly basic feature set when compared with some of the more mature products like <a href="http://trac.edgewall.org/">Trac</a>, but its hosted, web-based nature makes it a snap to maintain.</p>
<h3>Google Sites (Wiki)</h3>
<p><a href="http://sites.google.com/">Google Sites</a> provides a great, simple wiki solution. Sites was created out of Google&#8217;s purchase of Jot, and while I prefer the layout of the Jot version, Google Sites is almost as good. Both products take care of the core feature set for a wiki. I&#8217;ve used <a href="http://www.mediawiki.org">MediaWiki</a> and <a href="http://www.pmwiki.org/">PmWiki</a> for various purposes in the past, but they can be a pain to set up and I&#8217;ve really only used the most basic features of them, which Google Sites easily takes care of.</p>
<p>The key thing you will notice about the above is that they are all hosted solutions. In a small, fast-moving company or for personal purposes, hosted solutions are often the best option to cut down on the time needed to maintain the various systems. Had I not already vested myself in the above, I would have loved to have checked out <a href="http://www.assembla.com/">Assembla</a>, which groups all these things into a single product (SVN, wiki, and Trac for bug management). Though if I did go with Assembla, I&#8217;m sure I would miss Beanstalk&#8217;s great web UI.</p>
<p>Now, a couple of tools for the development itself:</p>
<h3>Aptana Studio (IDE)</h3>
<p>Originally based on Eclipse, my IDE of choice for the web is <a href="http://aptana.com/">Aptana Studio</a>. Aptana Studio was built for developing AJAX web applications, includes code highlighting and completion for HTML, Javascript, and CSS, and has plugins for PHP and Ruby on Rails. Plugins are also available to ease development for AIR applications and the iPhone.</p>
<h3>MacFUSE (Remote Access)</h3>
<p><a href="http://code.google.com/p/macfuse/">Google&#8217;s MacFUSE</a>, cutting through the highly technical descriptions, is a way for you to mount a bunch of file systems on your Mac computer. I use it to mount remote file systems on development machines via SSH, meaning I can work within my home directory on the server as if it was just another locally connected hard drive. This is invaluable when you don&#8217;t have a totally self contained local development environment, saving you the effort of having to transfer files back and forth to the server.</p>
<p>In a similar situation? What are your tools of choice?</p>
]]></content:encoded>
			<wfw:commentRss>http://bradkellett.com/p/tools-for-agile-development/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Twitter Stats on Google Code</title>
		<link>http://bradkellett.com/p/twitter-stats-on-google-code/</link>
		<comments>http://bradkellett.com/p/twitter-stats-on-google-code/#comments</comments>
		<pubDate>Thu, 03 Jan 2008 09:53:08 +0000</pubDate>
		<dc:creator>Brad Kellett</dc:creator>
				<category><![CDATA[Announcments]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[csv]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[statistics]]></category>
		<category><![CDATA[stats]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.pantsland.com/2008/01/03/twitter-stats-on-google-code/</guid>
		<description><![CDATA[I have created a Google Code page to house the source for Twitter Stats. Both the web version and the command line CSV-output version are available through a straight download or SVN. While the other contributors and I don&#8217;t have a problem with derivative works (the code is released under the GPLv2 license), we would [...]]]></description>
			<content:encoded><![CDATA[<p>I have created a <a href="http://code.google.com/p/twitterstats" title="Twitter Stats Google Code Page">Google Code page</a> to house the source for <a href="http://bradkellett.com/twitter_stats.html">Twitter Stats</a>. Both the web version and the command line CSV-output version are available through a straight download or SVN.</p>
<p>While the other contributors and I don&#8217;t have a problem with derivative works (the code is released under the GPLv2 license), we would appreciate it if you instead thought about contributing back into the project. If you would like to contribute code, make a <a href="http://code.google.com/p/twitterstats/w/">wiki page</a> or <a href="/contact">contact me</a> to become a member of the project so you can check-in using SVN. If you do choose to use some of the code in your own projects, please provide prominent attribution and a link back to the Google Code page and/or the web version of the script.</p>
<p>The code is pretty hideous at the moment, and there are quite a few bugs to work out, but please bear with us &#8211; we will be making enhancements and bug fixes very soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradkellett.com/p/twitter-stats-on-google-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cautious Android Excitement</title>
		<link>http://bradkellett.com/p/cautious-android-excitement/</link>
		<comments>http://bradkellett.com/p/cautious-android-excitement/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 11:06:19 +0000</pubDate>
		<dc:creator>Brad Kellett</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Commentary]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Mobile Tech]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[opengl]]></category>
		<category><![CDATA[sdk]]></category>
		<category><![CDATA[windows mobile]]></category>

		<guid isPermaLink="false">http://www.pantsland.com/2007/11/13/cautious-android-excitement/</guid>
		<description><![CDATA[Like many, I have been watching the news related to Google, among other&#8217;s, announcement of the Android mobile platform and the Open Handset Alliance. Until today&#8217;s release of several videos demonstrating the UI and parts of the system itself, there was not a lot of meat to get excited about. Now, I am filled with [...]]]></description>
			<content:encoded><![CDATA[<p>Like many, I have been watching the news related to Google, among other&#8217;s, announcement of the Android mobile platform and the Open Handset Alliance. Until today&#8217;s release of <a href="http://www.engadget.com/2007/11/12/googles-android-os-early-look-sdk-now-available/">several videos</a> demonstrating the UI and parts of the system itself, there was not a lot of meat to get excited about. Now, I am filled with cautious optimism over Android.</p>
<p>After viewing <a href="http://www.youtube.com/watch?v=1FJHYqE0RDg">this video</a> in particular, one can see that at this point in the development cycle, it appears as though Google is looking to pull in the best features of Windows Mobile and the iPhone UI. On first inspection, Android looks most like Windows Mobile, especially the home screen. Once the device is in use, however, a very &#8216;smooth&#8217; quality reminiscant of the iPhone can be seen. The browser especially is obviously modeled off Apple&#8217;s efforts, though there is a lack of finish at this early stage.</p>
<p>The most interesting and exciting part of Android is the level of openness. The iPhone is a great product, but like many Apple releases, it is basically Apple&#8217;s way or the highway. Sure, Apple has now announced an SDK for third party applications, but it is an afterthought, rather than Google&#8217;s release of an SDK months before devices are in the hands of customers.</p>
<p>Don&#8217;t get me wrong, I love my iPhone, but should Android provide the same slick UI elements on an open platform, I will switch in a second. Many features demonstrated on Android so far are available on other handsets, such as Google maps, but with Google&#8217;s announcement of a $10 million competition for the best applications, I am looking forward to seeing what can be done. Particularity, I am keen to see where developers go with the built-in OpenGL support. Already Google has shown some pretty cool features, though, like Street View in the Maps application.</p>
<p>What I am really curious about is where this leaves the Apple/Google relationship. Google is basically releasing the best competitor to the iPhone, despite Eric Schmidt serving on Apple&#8217;s board, and Google taking a large part in the development of the iPhone. I was surprised at Google&#8217;s involvement with the development of the iPhone originally, considering its love of all things open, and this proves my point in a way.</p>
<p>Indeed, if Android shapes up to be the open version of the iPhone as it is appearing as at this early stage, there might just be an iPhone for sale out of my place.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradkellett.com/p/cautious-android-excitement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

