<?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>Matt Busse</title>
	<atom:link href="http://mattbusse.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mattbusse.com</link>
	<description>Journalism, technology and Web design</description>
	<lastBuildDate>Tue, 27 Jul 2010 12:11:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Re-blogging: The General&#8217;s Lament</title>
		<link>http://mattbusse.com/re-blogging-the-generals-lament/</link>
		<comments>http://mattbusse.com/re-blogging-the-generals-lament/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 12:56:40 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://mattbusse.com/?p=1040</guid>
		<description><![CDATA[My brother, Chris Busse, has a great post, titled "The General's Lament," on his blog. He talks about how today's rapid spread of information naturally leads to a rapid spread of misinformation.]]></description>
			<content:encoded><![CDATA[<p>My brother, <a href="http://twitter.com/busse">Chris Busse</a>, has a great post, titled &#8220;The General&#8217;s Lament,&#8221; on his blog. He talks about how today&#8217;s rapid spread of information naturally leads to a rapid spread of misinformation.</p>
<p>It&#8217;s a good reminder that verification of facts should always trump speed.</p>
<p><a class="external-link" href="http://www.chrisbusse.com/Blog/tabid/61/ID/14/The-Generals-Lament-The-spread-of-misinformation-in-an-age-of-instant-communication.aspx">The General&#8217;s Lament (Chris Busse)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mattbusse.com/re-blogging-the-generals-lament/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Today in Wikipedia shows you the Wikipedia entry for today&#8217;s date</title>
		<link>http://mattbusse.com/today-in-wikipedia-shows-you-the-wikipedia-entry-for-todays-date/</link>
		<comments>http://mattbusse.com/today-in-wikipedia-shows-you-the-wikipedia-entry-for-todays-date/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 17:00:31 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Wikipedia]]></category>

		<guid isPermaLink="false">http://mattbusse.com/?p=959</guid>
		<description><![CDATA[Today in Wikipedia takes you to the current date's Wikipedia entry. Each day's entry is a list of links to Wikipedia articles about interesting events that happened on that day as well as notable births and deaths. If you're looking for a new home page, or just another site to add to your daily reading, check it out.]]></description>
			<content:encoded><![CDATA[<p>A new site I made, Today in Wikipedia, takes you to the current date&#8217;s Wikipedia entry.</p>
<p>Each day&#8217;s entry is a list of links to Wikipedia articles about interesting events that happened on that day as well as notable births and deaths.</p>
<p>If you&#8217;re looking for a new home page, or just another site to add to your daily reading, check it out.<br />
<span id="more-959"></span><br />
You can try it out here:</p>
<blockquote><p><a href="http://www.todayinwikipedia.com" title="Go to Today in Wikipedia">Today in Wikipedia</a></p></blockquote>
<h2>To set it as your home page:</h2>
<p><strong>Firefox:</strong></p>
<ul>
<li>Go to the &#8220;Tools&#8221; menu and choose &#8220;Options&#8221;</li>
<li>Click the &#8220;General&#8221; tab</li>
<li>Under &#8220;Home Page&#8221; enter <strong>http://todayinwikipedia.com</strong></li>
<li>Make sure &#8220;When Firefox starts&#8221; is set to &#8220;Show my home page&#8221;</li>
</ul>
<p><strong>Internet Explorer:</strong></p>
<ul>
<li>Go to the &#8220;Tools&#8221; men and choose &#8220;Internet Options&#8221;</li>
<li>In the &#8220;Home Page&#8221; box enter <strong>http://todayinwikipedia.com</strong></li>
</ul>
<h2>To bookmark it (if you don&#8217;t want it as your home page):</h2>
<ul>
<li>In Firefox, right-click this link &#8211; <a title="Go to Today in Wikipedia" href="http://www.todayinwikipedia.com">Today in Wikipedia</a> &#8211; and choose &#8220;Bookmark This Link.&#8221;</li>
<li>In Internet Explorer, right-click this link &#8211; <a title="Go to Today in Wikipedia" href="http://www.todayinwikipedia.com/">Today in Wikipedia</a> &#8211; and choose &#8220;Add to Favorites.&#8221;</li>
</ul>
<h2>How it works</h2>
<p>I made Today in Wikipedia using a simple bit of Javascript to retrieve the current date, create a URL based on that date and redirect you to it.</p>
<p>It works because the date is in the Wikipedia article URL. Example:</p>
<blockquote><p><a title="Go to the Wikipedia entry for June 1" href="http://en.wikipedia.org/wiki/June_1">http://en.wikipedia.org/wiki/June_1</a></p></blockquote>
<p>Here is the relevant code:</p>
<pre class="brush: jscript;">

today = new Date();

day = today.getDate();

month = today.getMonth();

if (month==0) x=(&amp;quot;January&amp;quot;);
 else if (month==1) x=(&amp;quot;February&amp;quot;);
 else if (month==2) x=(&amp;quot;March&amp;quot;);
 else if (month==3) x=(&amp;quot;April&amp;quot;);
 else if (month==4) x=(&amp;quot;May&amp;quot;);
 else if (month==5) x=(&amp;quot;June&amp;quot;);
 else if (month==6) x=(&amp;quot;July&amp;quot;);
 else if (month==7) x=(&amp;quot;August&amp;quot;);
 else if (month==8) x=(&amp;quot;September&amp;quot;);
 else if (month==9) x=(&amp;quot;October&amp;quot;);
 else if (month==10) x=(&amp;quot;November&amp;quot;);
 else x=(&amp;quot;December&amp;quot;);

window.location = &amp;quot;http://www.wikipedia.org/wiki/&amp;quot; + x + &amp;quot;_&amp;quot; + day;
</pre>
<p>That&#8217;s all there is to it. If you have any questions, please leave a comment or <a title="Go to Matt Busse's contact page" href="http://mattbusse.com/contact/">contact me</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://mattbusse.com/today-in-wikipedia-shows-you-the-wikipedia-entry-for-todays-date/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Duck Duck Go search engine promises privacy, delivers great search results</title>
		<link>http://mattbusse.com/duck-duck-go-search-engine-promises-privacy-delivers-great-search-results/</link>
		<comments>http://mattbusse.com/duck-duck-go-search-engine-promises-privacy-delivers-great-search-results/#comments</comments>
		<pubDate>Thu, 27 May 2010 17:20:32 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Online Privacy]]></category>
		<category><![CDATA[Duck Duck Go]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://mattbusse.com/?p=822</guid>
		<description><![CDATA[Duck Duck Go is a search engine created by "serial entrepreneur" Gabriel Weinberg. Its search results are drawn from a combination of sources, including its own crawler, Bing and crowdsourced sites like Wikipedia. Here are my initial impressions.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://dukgo.com"><img class="size-medium wp-image-824 aligncenter" title="nduck_v103" src="http://mattbusse.com/wp-content/uploads/nduck_v103-300x52.jpg" alt="Duck Duck Go logo" width="300" height="52" /></a></p>
<p style="text-align: left;">Duck Duck Go is a search engine created by &#8220;serial entrepreneur&#8221; <a title="Go to Gabriel Weinberg's site" href="http://www.gabrielweinberg.com/">Gabriel Weinberg</a>. It&#8217;s at <a href="http://duckduckgo.com">http://duckduckgo.com</a> or <a href="http://dukgo.com">http://dukgo.com</a>.</p>
<p>Its search results are drawn from a combination of sources, including its own <a title="Learn about Duck Duck Go's crawler" href="http://duckduckgo.com/duckduckbot.html">crawler</a>, <a title="Go to Bing" href="http://bing.com">Bing</a> and crowdsourced sites like <a title="Go to Wikipedia" href="http://wikipedia.com">Wikipedia</a>.</p>
<p>I started using it May 11. Here are a few notes on my initial impressions in no particular order.<br />
<span id="more-822"></span></p>
<h2>Pros</h2>
<ul>
<li>Duck Duck Go is fast. Very fast. As the Web editor of several news sites, much of my searching is done on a tight breaking-news deadline. I have no patience for slow-loading search results.</li>
<li>
<p><span class="highlight">Duck Duck Go has a fantastic <a title="Read Duck Duck Go's privacy policy" href="http://duckduckgo.com/privacy.html">privacy policy</a>.</span> This is a big deal. It&#8217;s one of the main <a title="Read Gabriel Weinberg's blog on Duck Duck Go's privacy policy" href="http://www.gabrielweinberg.com/blog/2010/03/care-about-search-privacy-use-duck-duck-go.html">reasons</a> its creator encourages people to use it.</p>
<p><a title="Go to Google" href="http://www.google.com">Google</a>, the current king of search engines, gets a lot of press for its data aggregation used to tailor ads to users&#8217; interests. Essentially they are scanning your searches, Gmail, online documents, etc. to find out information about you and sell you things. Even though they claim some data is anonymized, such as data gathered through its <a title="Go to the homepage for Google's Chrome browser" href="http://www.google.com/chrome">Chrome</a> browser, we know that when such data is collected at all <a title="Read a New York Times article about the AOL search data scandal of 2006" href="http://www.nytimes.com/2006/08/09/technology/09aol.html">it is rarely truly anonymous.</a></p>
<p>Duck Duck Go&#8217;s privacy policy states it doesn&#8217;t collect any information about you and doesn&#8217;t use cookies unless you save certain settings about the site, like fonts. And you can use <a title="Read about Duck Duck Go's URL parameters" href="http://http://duckduckgo.com/params.html">URL parameters</a> for those instead.</p>
<p>Duck Duck Go does log search queries and apparently there&#8217;s no time limit at the moment, but the site&#8217;s creator says he doesn&#8217;t know where they are coming from and they are not linked together by an ID number.</p>
<p><span class="highlight">Compare that to Google, which not only <a href="http://www.google.com/privacy_faq.html#toc-terms-server-logs">logs your IP address and other information</a> about your computer but also uses cookies with unique numbers for each computer and ties your web search history to your Google account. </span></p>
<p>Additionally, some services, such as <a title="Go to the Google Toolbar home page" href="http://toolbar.google.com">Google Toolbar&#8217;s</a> <a title="Go to a Wikipedia entry on PageRank" href="http://en.wikipedia.org/wiki/PageRank">PageRank</a>, send all the URLs you visit to Google. Google&#8217;s search suggestions (on Google.com and in the Chrome browser) send your searches as you type them to Google even before you hit Search.</p>
<p><a title="Read the Wikipedia entry on HTTP referrers" href="http://en.wikipedia.org/wiki/HTTP_referrer">HTTP referrers</a> —  If I search for &#8220;how to bury a body&#8221; on Google, and click a  result to YouTube (for example), the HTTP referrer tells YouTube  that I got to it by searching for that term, along with  my IP address. Duck Duck Go (and, to be fair, <a href="https://www.google.com/">Google&#8217;s new SSL search</a>) <a href="http://www.gabrielweinberg.com/blog/2010/05/duck-duck-go-searches-are-now-externally-anonymous.html">hides the referrer</a>.</li>
<li>In Duck Duck Go, the entire search result is clickable, not just the title. This is a small user-interface detail that makes a big difference.</li>
<li>Duck Duck Go auto-loads the next page of results. For Google you need a <a title="Go to the Mozilla Add-ons page for Auto Pager" href="https://addons.mozilla.org/en-US/firefox/addon/4925/">Firefox add-on</a> to do this.</li>
<li>The Zero Click info boxes are very handy (<a title="Go to a Duck Duck Go search for IRS 8889" href="http://duckduckgo.com/?q=irs+8889">click here</a> and check out the box of information at the top). Sometimes you just need a little bit of info, a general question answered. These are great for that.</li>
<li>Customizing fonts is cool. Unnecessary for me personally, because the defaults are just fine (and I like them being bigger than you usually see, by the way), but it&#8217;s nice to have the option.</li>
<li>The <a title="Read the Wikipedia entry about favicons" href="http://en.wikipedia.org/wiki/Favicon">favicons</a> next to search results are a nice touch, but sometimes they look messed up (<a href="http://duckduckgo.com/?q=test+site%3Anewsadvance.com">example</a>). That could be the site&#8217;s fault, though, for all I know.</li>
<li><a title="Read about Duck Duck Go's bang keywords" href="http://duckduckgo.com/bang.html">Bang</a> search keywords are interesting. I haven&#8217;t used them much but I see potential there.</li>
<li><a title="See an example of a Duck Duck Go disambiguation page" href="http://duckduckgo.com/?q=honey">Disambiguation pages</a>, a la <a title="Go to Wikipedia" href="http://www.wikipedia.org">Wikipedia</a>, are very nice.</li>
<li>Duck Duck Go supports <a href="http://duckduckgo.com/?q=45-20&amp;v=">calculations</a>, phone numbers, ZIP codes, ISBNs, etc.</li>
</ul>
<h2>Cons</h2>
<ul>
<li>I still have to trust someone. Weinberg says he doesn&#8217;t record my personal information, but how do I know for sure? He could be lying. I doubt it, of course, because he seems to have a solid online reputation. If he were an unknown faceless developer I would not trust the site.</li>
<li>I&#8217;m not really sure what the &#8220;Information&#8221; sites encompass. If this was a little more clear, that would be helpful.</li>
<li>Duck Duck Go requires Javascript. Google doesn&#8217;t. This probably doesn&#8217;t affect many people, but some people on strict corporate networks, or fans of <a href="http://noscript.net/">NoScript</a>, might have problems.</li>
<li>There&#8217;s no <a title="Go to Google News" href="http://news.google.com">News section like Google&#8217;s</a>. Not a big deal, but when I search for something on Google, I often flip over to the news section for more results.</li>
</ul>
<h2>Questions:</h2>
<ul>
<li><span class="highlight">When it comes right down to it, are the search results as good as Google&#8217;s?</span> They seem to be so far. But it&#8217;s possible I&#8217;ll hit a snag where Duck Duck Go can&#8217;t find something for me and Google will. It&#8217;s hard to say. I still find myself using Google out of habit when I&#8217;m moving quickly, but maybe over time that habit will change.</li>
<li>
<p>What&#8217;s the business model? There are no sidebar ads, even when I search for <a title="Search Duck Duck Go for &quot;buy laptop ram&quot;" href="http://duckduckgo.com/?q=buy+laptop+ram&amp;v=). ">something that screams &#8220;sell to me&#8221;</a>. Weinberg says <a href="http://twitter.com/duckduckgo/status/14002428248">he&#8217;s not making money</a> on DDG right now but might put a few ads up. A<a href="http://investor.untd.com/releasedetail.cfm?releaseid=328835"> previous business of his sold</a> for $10 million, so maybe he is not concerned about making money yet.</p>
<p>You may say this is none of my business, but it&#8217;s relevant because many times when money enters the picture, privacy goes out the window. See also: <a title="Go to Facebook" href="http://www.facebook.com">Facebook</a>. Weinberg will need to have the integrity to resist this.</p>
</li>
</ul>
<h2>Summary</h2>
<p><span class="highlight">Duck Duck Go is fast, it appears to have an ironclad privacy policy and it delivers fantastic search results.</span> I&#8217;m going to keep using it and may post a follow-up in a few months once I&#8217;ve had enough experience to give a more well-informed opinion.</span></p>
<h2>More info</h2>
<p>Weinberg, under the username &#8220;yegg,&#8221; <a title="Go to the Reddit thread about Duck Duck Go" href="http://www.reddit.com/comments/bagef/new_search_engine_duck_duck_go/">answers questions</a> on Reddit.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattbusse.com/duck-duck-go-search-engine-promises-privacy-delivers-great-search-results/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>7 steps to a minimalist Firefox setup</title>
		<link>http://mattbusse.com/7-steps-to-a-minimalist-firefox-setup/</link>
		<comments>http://mattbusse.com/7-steps-to-a-minimalist-firefox-setup/#comments</comments>
		<pubDate>Tue, 11 May 2010 13:00:53 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Minimalism]]></category>

		<guid isPermaLink="false">http://mattbusse.com/?p=781</guid>
		<description><![CDATA[I have my Web browser of choice, Firefox, set up in a minimalist fashion. It has everything I need and nothing more: only the necessary controls for browsing are visible and I can search my bookmarks, Web history and favorite search engines right from the address bar. Any extras are only a click or two away.]]></description>
			<content:encoded><![CDATA[<p>I have my Web browser of choice, <a href="http://www.getfirefox.com">Firefox</a>, set up in a minimalist fashion. It has everything I need and nothing more: only the necessary controls for browsing are visible and I can search my bookmarks, Web history and favorite search engines right from the address bar. Any extras are only a click or two away.</p>
<p><span id="more-781"></span></p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-783" title="minimalist-firefox" src="http://mattbusse.com/wp-content/uploads/minimalist-firefox1.jpg" alt="Screenshot: Minimalist Firefox" width="600" height="364" /></p>
<p>Here&#8217;s how you can get it:</p>
<p><strong>1. Install <a href="https://addons.mozilla.org/en-US/firefox/addon/8782">Chromifox Basic</a>.<br />
</strong><br />
OK, this part is totally optional. I just like the blue look. You can skip this step, so I guess this guide is really six steps.</p>
<p><strong>2. Get rid of unnecessary buttons. </strong></p>
<p>Right-click in the toolbar area and choose &#8220;Customize.&#8221; Drag everything you don&#8217;t want into the box that pops up to get rid of it. I even got rid of my Home button, although not everyone will want to.</p>
<p><img class="alignnone size-full wp-image-803" title="minimalist-firefox-toolbars" src="http://mattbusse.com/wp-content/uploads/minimalist-firefox-toolbars1.jpg" alt="Screenshot: Customizing Firefox buttons" width="600" height="481" /></p>
<p><strong>3. Install <a href="https://addons.mozilla.org/en-US/firefox/addon/2108">Stylish</a> and the <a href="http://userstyles.org/styles/10">Combine Stop/Reload Buttons</a> style.</strong></p>
<p>This will make Stop and Reload one button to further reduce the number of buttons.</p>
<p><strong>4. Install <a href="https://addons.mozilla.org/en-US/firefox/addon/1951">Fission</a>.</strong></p>
<p>This turns your address bar into a progress bar.</p>
<p><strong>5. Install <a href="https://addons.mozilla.org/en-US/firefox/addon/12015/">URL Tooltip</a>. </strong></p>
<p>This lets you see URLs of links by hovering over them.</p>
<p>Once you have this and Fission, you no longer need the Status bar. Hide it by unchecking it under the &#8220;View&#8221; menu.</p>
<p><strong>6. Set up Firefox to quickly search the Web from the address bar.</strong></p>
<p>On the dropdown menu of your search box, choose Manage Search Engines.</p>
<p>Here you can assign a keyword to each search engine. For example, if you assign the keyword &#8220;g&#8221; to Google, you simply have to type &#8220;g [your search term]&#8221; in the address bar to search Google.</p>
<p><img class="alignnone size-full wp-image-786" title="minimalist-firefox-search" src="http://mattbusse.com/wp-content/uploads/minimalist-firefox-search.jpg" alt="Screenshot: Firefox search engines" width="392" height="365" /></p>
<p>Since there&#8217;s no more need for a search box, you can get rid of it just like you got rid of your other buttons in step No. 2.</p>
<p><strong>7. Ditch all the toolbars except the navigation bar.</strong></p>
<p>Right-click in the toolbar area and uncheck everything except &#8220;Navigation Toolbar.&#8221;</p>
<p>If you need the menu bar, you can hit the &#8220;Alt&#8221; key to temporarily show it again. You won&#8217;t need the bookmarks menu because you can simply search for your bookmarks in the address bar, also called the <a href="http://www.mozilla.com/en-US/firefox/features/#location-bar">Awesome Bar</a>.</p>
<p><strong>That&#8217;s it!</strong></p>
<p>If you need a bookmark or a Web history entry, start typing it into the Awesome Bar and let Firefox find it for you. If you need the menu bar, just press Alt.</p>
<p>Clean and uncluttered.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattbusse.com/7-steps-to-a-minimalist-firefox-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bypass the Wall Street Journal paywall faster with a browser bookmarklet</title>
		<link>http://mattbusse.com/bypass-the-wall-street-journal-paywall-faster-with-a-browser-bookmarklet/</link>
		<comments>http://mattbusse.com/bypass-the-wall-street-journal-paywall-faster-with-a-browser-bookmarklet/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 12:47:59 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mattbusse.com/?p=573</guid>
		<description><![CDATA[Here's a Javascript bookmarklet that will save you a few steps in reading Wall Street Journal articles for free.]]></description>
			<content:encoded><![CDATA[<p>In November, I wrote about how you can <a href="http://mattbusse.com/use-google-to-read-the-wall-street-journal-for-free/">use Google to read the Wall Street Journal for free</a>.</p>
<p>In a nutshell, <a title="Go to the Wall Street Journal Web site" href="http://www.wsj.com">WSJ.com</a> has some articles where you can only read the first few paragraphs for free before being prompted to subscribe.</p>
<p>However, you can read these same articles for free by coming to them via <a title="Go to Google" href="http://www.google.com">Google</a> or <a title="Go to Google News" href="http://news.google.com">Google News</a>. I&#8217;ve made a Web browser <a title="Read the Wikipedia entry on bookmarklets" href="http://en.wikipedia.org/wiki/Bookmarklet">bookmarklet</a> that speeds up the process a bit.</p>
<p><span id="more-573"></span></p>
<p>The normal process without the bookmarklet involves a few steps:</p>
<ul>
<li>Go to the article and see that it&#8217;s restricted to subscribers</li>
<li>Copy the headline</li>
<li>Go to Google.com</li>
<li>Enter the headline (and a <em>site:wsj.com</em> for good measure)</li>
<li>Search</li>
<li>Click the resulting link</li>
</ul>
<p>Firefox users can simplify it somewhat:</p>
<ul>
<li>Go to the article</li>
<li>Highlight the headline</li>
<li>Right-click the headline and choose &#8220;Search Google for&#8230;&#8221;</li>
<li>Click the resulting link</li>
</ul>
<p>However, when you do this, WSJ.com isn&#8217;t always the first result (I keep getting <a title="Go to Yahoo News" href="http://news.yahoo.com">Yahoo! News</a> results), hence the benefit of a WSJ.com-specific search.</p>
<p>In the spirit of <span style="text-decoration: line-through;">being really lazy</span> efficiency, I have made a Javascript bookmarklet that shaves a few steps off.</p>
<p>It&#8217;s not perfect though. Ideally, you could go to the WSJ article, click the bookmarklet and go straight to the full version.</p>
<p>This bookmarklet is a step removed:</p>
<ul>
<li>Go to the article</li>
<li>Click the bookmarklet, which pulls up a WSJ.com-specific Google search for the headline</li>
<li>Click the resulting link</li>
</ul>
<p>It works by using Javascript to extract the article&#8217;s headline from its <a title="Read a W3Schools post about headline tags" href="http://www.w3schools.com/TAGS/tag_hn.asp">h1 tag</a> and perform a WSJ.com-specific Google search for that headline.</p>
<p>This should ensure that the first search result is the article in question, although it might not be perfect.</p>
<p>(In fact, if the article is not yet indexed in Google, it won&#8217;t work at all. So there&#8217;s that.)</p>
<p>If anyone knows how to make it go that final step of essentially clicking through to the Google search result using Javascript, <a title="Go to my contact page" href="http://mattbusse.com/contact/">please let me know</a>. I am not sure it&#8217;s possible, however; I think WSJ.com might check the HTTP referrer to see if you are coming from Google, and I don&#8217;t think you can spoof that with Javascript (though you can get <a title="Go to the Mozilla Add-ons page for RefControl for Firefox" href="https://addons.mozilla.org/en-US/firefox/addon/953">Firefox add-ons that do it</a>).</p>
<p>So what&#8217;s the point of all this? It was mainly a Javascript bookmarklet exercise for me, and if it does save someone a little bit of hassle by removing a few steps from the process of reading WSJ, that&#8217;s very good. It&#8217;s not stealing from the WSJ; after all, the paper&#8217;s Web site allows readers coming from Google to read for free. This just expedites the process.</p>
<p>Anyway, here is the bookmarklet.</p>
<p>Firefox users, drag the button below to your browser&#8217;s Bookmarks toolbar. Internet Explorer users, right-click it and choose &#8220;Add to Favorites.&#8221;</p>
<p>Then go to a Wall Street Journal article and click the button.</p>
<p class="download">
<a href="javascript:x=document.getElementsByTagName(&quot;h1&quot;);window.location='http://www.google.com/search?hl=en&amp;q=site%3Awsj.com+&quot;'+x[0].innerHTML+'&quot;';">[WSJ-&gt;Google]</a>
</p>
<p>Questions? Comments? Leave me a comment!</p>
]]></content:encoded>
			<wfw:commentRss>http://mattbusse.com/bypass-the-wall-street-journal-paywall-faster-with-a-browser-bookmarklet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Track news story changes with Update Scanner for Firefox</title>
		<link>http://mattbusse.com/track-news-story-changes-with-update-scanner-for-firefox/</link>
		<comments>http://mattbusse.com/track-news-story-changes-with-update-scanner-for-firefox/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 17:45:07 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Journalism Tips]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Update Scanner]]></category>

		<guid isPermaLink="false">http://mattbusse.com/?p=519</guid>
		<description><![CDATA[With the Update Scanner add-on for Firefox, you can see exactly how a news story changes as it evolves online.]]></description>
			<content:encoded><![CDATA[<p>The <a title="Download the Update Scanner add-on" href="https://addons.mozilla.org/en-US/firefox/addon/3362">Update Scanner</a> add-on for <a title="Download the Firefox Web browser" href="http://www.getfirefox.com">Firefox</a> is one of my favorites.</p>
<p>You give it a set of Web pages to watch and tell it how often to check them, and it notifies you when they change.</p>
<p>It&#8217;s ideal for keeping up with Web sites that don&#8217;t offer <a title="Read the Wikipedia entry on RSS" href="http://en.wikipedia.org/wiki/RSS">RSS</a> feeds, or checking changes on just a single page of a large Web site (for example, a company&#8217;s listing of open jobs).</p>
<p>You can also use it to see exactly how a news story changes as it evolves online.</p>
<p><span id="more-519"></span></p>
<p>Here&#8217;s an example: I set Update Scanner to watch a page that showed an Associated Press story about President Barack Obama planning to call for tighter restrictions on banks.</p>
<p>Update Scanner has options, as you can see in the screen shot below, including setting how often it checks the page (as often as every five minutes, though it gives you a warning if you choose this).</p>
<p>Another option is to highlight changes to the text.</p>
<p><a href="http://mattbusse.com/wp-content/uploads/2010/01/update-scanner-panel.jpg"><img class="alignnone size-full wp-image-520" title="update-scanner-panel" src="http://mattbusse.com/wp-content/uploads/2010/01/update-scanner-panel.jpg" alt="Screen shot: Update Scanner Options Panel" width="345" height="524" /></a></p>
<p>If Update Scanner checks a page and sees a change, it alerts you with a small box in the lower right corner of your Firefox window.</p>
<p><a href="http://mattbusse.com/wp-content/uploads/2010/01/update-scanner-alert.jpg"><img class="alignnone size-full wp-image-521" title="update-scanner-alert" src="http://mattbusse.com/wp-content/uploads/2010/01/update-scanner-alert.jpg" alt="Screen shot: Update Scanner alert box" width="230" height="56" /></a></p>
<p>Clicking on the link in the alert takes you to the page. Update Scanner highlights the changes (if you&#8217;ve chosen that option) and offers you a chance to see both the old version of the page before the change and the new version.</p>
<p><a href="http://mattbusse.com/wp-content/uploads/2010/01/update-scanner-screenshot.jpg"><img class="alignnone size-full wp-image-522" title="update-scanner-screenshot" src="http://mattbusse.com/wp-content/uploads/2010/01/update-scanner-screenshot.jpg" alt="Screen shot: Update Scanner showing a changed Web page" width="501" height="821" /></a></p>
<p>As you can see, this is useful for learning which parts of a news story change from one update to the next.</p>
<p>The changes to the news story above are relatively minor, but on fast-paced breaking news stories you may get frequent updates bathed in yellow highlighting. Such is the nature of online news!</p>
<p>Update Scanner only uses highlighting for changes, not strike-through text, so it appears it won&#8217;t show you when text is eliminated.</p>
<p>However, you can see for yourself where text has been eliminated by looking at the older version of the page (via the &#8220;Old Page&#8221; link) and comparing it to the newer version.</p>
<p>Do you find this useful? Do you know another good use for Update Scanner? Leave a comment below!</p>
]]></content:encoded>
			<wfw:commentRss>http://mattbusse.com/track-news-story-changes-with-update-scanner-for-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flip video camera modification round-up</title>
		<link>http://mattbusse.com/flip-video-camera-modification-round-up/</link>
		<comments>http://mattbusse.com/flip-video-camera-modification-round-up/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 00:13:55 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Video]]></category>
		<category><![CDATA[flip]]></category>

		<guid isPermaLink="false">http://mattbusse.com/?p=489</guid>
		<description><![CDATA[Here are some links to tutorials on various modifications and tips for the Flip video camera.]]></description>
			<content:encoded><![CDATA[<p>I recently bought a <a href="http://www.theflip.com" target="_blank">Flip UltraHD</a> video camera for shooting home videos.</p>
<p>I believe electronic devices can almost always be taken beyond their out-of-the-box limits.</p>
<p>In that spirit, here are some links to tutorials on various modifications and tips for the Flip video camera.</p>
<p><span id="more-489"></span></p>
<p>I haven&#8217;t personally tried any of these on my Flip video camera; if you have, I&#8217;d love to hear how they turned out.</p>
<p><a rel="bookmark" href="http://www.geeked.info/how-to-take-apart-the-flip-video-ultra/">How To Take Apart the Flip Video Ultra</a></p>
<p><a href="http://www.hdhat.com/flip-video.html" target="_blank">How to hack any Flip Video Camera with a Wide Angle Lens</a></p>
<p><a title="Permanent Link to Flip camera microscope and macro lenses" rel="bookmark" href="http://hackaday.com/2008/07/01/flip-camera-microscope-and-macro-lenses/">Flip camera microscope and macro lenses</a></p>
<p><a href="http://www.homeserverhacks.com/2008/11/using-mino-flip-hd-with-windows-home.html">Using the Flip Mino HD with Windows Home Server </a></p>
<p><a href="http://www.bikecommuters.com/2008/09/08/hack-your-flip/" target="_blank">Another wide-angle lens guide plus an easy way to frame your viewing window for 16:9 shooting</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mattbusse.com/flip-video-camera-modification-round-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use Google to read the Wall Street Journal for free</title>
		<link>http://mattbusse.com/use-google-to-read-the-wall-street-journal-for-free/</link>
		<comments>http://mattbusse.com/use-google-to-read-the-wall-street-journal-for-free/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 14:17:29 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://mattbusse.com/?p=465</guid>
		<description><![CDATA[Rupert Murdoch&#8217;s statement yesterday that he wants to block Google and other search engines from indexing News Corp. sites. — such as the Wall Street Journal, which hides some of its articles behind a $1.99-a-week paywall — makes now a good time to remind people that you can use Google to read those guarded Wall [...]]]></description>
			<content:encoded><![CDATA[<p>Rupert Murdoch&#8217;s statement yesterday that he wants to <a href="http://features.csmonitor.com/innovation/2009/11/10/rupert-murdoch-get-lost-google/">block Google</a> and other search engines from indexing News Corp. sites. — such as the <a href="http://wsj.com">Wall Street Journal</a>, which hides some of its articles behind a $1.99-a-week paywall — makes now a good time to remind people that you can <strong>use Google to read those guarded Wall Street Journal stories for free.</strong></p>
<p><strong><span id="more-465"></span><br />
</strong></p>
<p>If you click an article headline while browsing WSJ.com, you may get the first few paragraphs and a note asking you to subscribe (this is what Murdoch calls a paywall <a href="http://tech.yahoo.com/news/pcworld/20091109/tc_pcworld/murdochswebsitesmayblockgooglesearches">&#8220;not right to the ceiling&#8221;</a>).</p>
<p><img class="alignnone size-full wp-image-467" title="wsj-1" src="http://mattbusse.com/wp-content/uploads/2009/11/wsj-11.JPG" alt="wsj-1" /></p>
<p>But if you come to an article via Google, you can read the whole thing for free.</p>
<p>So if you find an article you like, just search for the headline in Google and, for good measure, add &#8220;site:wsj.com&#8221; to restrict it to the Wall Street Journal site.</p>
<p><img class="alignnone size-full wp-image-469" title="wsj-2" src="http://mattbusse.com/wp-content/uploads/2009/11/wsj-21.JPG" alt="wsj-2" /></p>
<p><img class="alignnone size-full wp-image-470" title="wsj-3" src="http://mattbusse.com/wp-content/uploads/2009/11/wsj-3.JPG" alt="wsj-3" /></p>
<p>Click the headline in the search result and &#8212; hey! no paywall.</p>
<p><img class="alignnone size-full wp-image-471" title="wsj-4" src="http://mattbusse.com/wp-content/uploads/2009/11/wsj-4.JPG" alt="wsj-4" /></p>
<p>You can make the process even easier by bookmarking <a href="http://news.google.com/news?q=%s+source%3Awall_street_journal">this link</a> &#8211; It&#8217;s a Google News page filtered to show stories from the Wall Street Journal.</p>
<p>Oh, and this isn&#8217;t new. It&#8217;s been an open secret since at least <a href="http://consumerist.com/370841/read-the-wall-street-journal-for-free">March 2008.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mattbusse.com/use-google-to-read-the-wall-street-journal-for-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter List for Lynchburg, Virginia</title>
		<link>http://mattbusse.com/twitter-list-for-lynchburg-virginia/</link>
		<comments>http://mattbusse.com/twitter-list-for-lynchburg-virginia/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 13:35:40 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://mattbusse.com/?p=436</guid>
		<description><![CDATA[This Twitter List for Lynchburg, Virginia is meant to include everyone who lives or works in or around Lynchburg, Virginia.]]></description>
			<content:encoded><![CDATA[<p>I have started a <a href="http://blog.twitter.com/2009/09/soon-to-launch-lists.html" target="_blank">Twitter List</a> for <a href="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=lynchburg,+va&amp;sll=37.0625,-95.677068&amp;sspn=49.223579,79.013672&amp;ie=UTF8&amp;hq=&amp;hnear=Lynchburg,+Virginia&amp;z=12" target="_blank">Lynchburg, Virginia</a>.</p>
<p><span id="more-436"></span></p>
<p><strong><a class="alert" href="http://twitter.com/mbusse/lynchburg-va" target="_blank">Check out the list here.</a></strong></p>
<p>The goal is to include everyone who lives or works in or around Lynchburg, Virginia, including Amherst County, Appomattox County, Bedford County, Campbell County, etc.</p>
<p>If you are not on the list but should be, or you know someone who should be on the list, please let me know through this site or <a href="http://twitter.com/mbusse">find me on Twitter</a>.</p>
<p>Let&#8217;s bring all the Twitter users in Lynchburg, Virginia together!</p>
]]></content:encoded>
			<wfw:commentRss>http://mattbusse.com/twitter-list-for-lynchburg-virginia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 tips for great Twitter background design</title>
		<link>http://mattbusse.com/5-tips-for-great-twitter-background-design/</link>
		<comments>http://mattbusse.com/5-tips-for-great-twitter-background-design/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 16:42:18 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://mattbusse.com/?p=418</guid>
		<description><![CDATA[Identify your goals before you begin, design for multiple screen sizes and other useful tips for Twitter background design.]]></description>
			<content:encoded><![CDATA[<p>Recently I made a new background for <a href="http://twitter.com/newsadvance">@newsadvance</a> on Twitter, the Twitter presence of <a href="http://newsadvance.com">The News &amp; Advance</a>.</p>
<p><span id="more-418"></span></p>
<p>Click the image below to see the full-size background.</p>
<p><a href="http://a1.twimg.com/profile_background_images/47373820/Twitter-BG-LNA.jpg"><img class="alignnone size-medium wp-image-419" title="Twitter-BG-LNA" src="http://mattbusse.com/wp-content/uploads/2009/10/Twitter-BG-LNA-300x185.jpg" alt="Twitter-BG-LNA" width="300" height="185" /></a></p>
<p>It was a fun process and I thought I would share some tips on Twitter background design.</p>
<p><!--more--></p>
<h2>1. Identify your goals</h2>
<p>Different people have different goals when designing a Twitter background. Some people want to wow visitors with stunning visuals; others simply want to convey information.</p>
<p>Regardless of what your goals are, you should at least have some. A Twitter background can make a big impression, especially when someone is seeing your profile for the first time.</p>
<p>The three main goals in designing the @newsadvance background were, in order of importance:</p>
<ol>
<li><strong>Provide additional contact information for our organization</strong>: This was satisfied by an info box on the left side that lists an e-mail address, two phone numbers and two physical addresses (one for visiting, one for mail).</li>
<li><strong>Keep the file size small for fast loading</strong>: Using Photoshop to optimize the image, I struck a balance between picture quality and file size. It&#8217;s about 95 kb, far lower than the maximum Twitter allows.</li>
<li><strong>Be visually appealing</strong>: A variety of free images from <a href="http://sxc.hu/">Stock.XCHNG</a> helped here.</li>
</ol>
<h2>2. Emphasize the upper left</h2>
<p>Twitter backgrounds are anchored at the upper left corner. No matter what your screen resolution, you will always see at least some of the upper left.</p>
<p>That&#8217;s why the infobox and graphic items are all there on the @newsadvance background.</p>
<p>The layer of less important graphic items &#8211; the binary code and the white streaks -  extends farther out until it fades into a solid color background.</p>
<h2>3. Design for multiple screen sizes</h2>
<p>The @newsadvance background is designed so that even people with smaller 1024&#215;768 screen resolutions can see the info box, the minimum requirement for this background.</p>
<p>Those with larger screens can see more of the background image.</p>
<p>Additionally, the bottom of the info box is only about 420 pixels from the top of the image, so it can be seen even on smaller netbooks.</p>
<p>An invaluable tool for making sure a Twitter background design works for 1024&#215;768, 1280&#215;1024 and other screen resolutions is Chris Spooner&#8217;s <a href="http://blogspoon.s3.amazonaws.com/wp-content/uploads/2009/twitter-theme/Twitter-BG-Template.psd.zip">Twitter background template</a>, which has layers that show you how much of your design is visible at various resolutions.</p>
<p>I found Spooner&#8217;s template while reading his excellent blog post, &#8220;<a href="http://www.blog.spoongraphics.co.uk/tutorials/twitter-background-design-how-to-and-best-practices">Twitter Background Design How-To and Best Practices.</a>&#8221;</p>
<h2>4. Use your visuals to send a message</h2>
<p>It&#8217;s great to have a visually appealing Twitter background, but it should also mean something.</p>
<p>One of The News &amp; Advance&#8217;s missions is to provide news and information to readers regardless of their choice of platform: print, computer, mobile device, etc.</p>
<p>On the Twitter background, the presence of the printed newspaper, the computer mouse and the cell phone are intended to suggest that philosophy.</p>
<h2>5. Don&#8217;t repeat yourself</h2>
<p>When designing the info box, I thought about including the logo, the name (either &#8220;The News &amp; Advance&#8221; or &#8220;Newsadvance.com&#8221;) and/or the Web URL.</p>
<p>However, these items are all, in one way or another, already a part of the Twitter sidebar information.</p>
<p>So why clutter up the background design with extra information?</p>
<p>Including those redundant elements may have increased the height of the info box to the point where it would have been cut off on some netbooks, some of which have screen heights smaller than 600 pixels.</p>
<p>As a bonus, the newspaper logo is partially visible anyway because of the paper&#8217;s positioning in the corner.</p>
<p><strong>That&#8217;s about it. Have any other tips you&#8217;d like to share? Leave a comment!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://mattbusse.com/5-tips-for-great-twitter-background-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
