<?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 &#187; Downloads</title>
	<atom:link href="http://mattbusse.com/cat/downloads/feed/" rel="self" type="application/rss+xml" />
	<link>http://mattbusse.com</link>
	<description>Journalism, technology and Web design</description>
	<lastBuildDate>Tue, 24 Aug 2010 13:59:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<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>Get around Gannett news sites&#8217; pagination of long articles</title>
		<link>http://mattbusse.com/get-around-gannett-news-sites-pagination-of-long-articles/</link>
		<comments>http://mattbusse.com/get-around-gannett-news-sites-pagination-of-long-articles/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 21:32:26 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[Stylish]]></category>

		<guid isPermaLink="false">http://mattbusse.com/?p=149</guid>
		<description><![CDATA[Many Gannett newspaper sites now split long articles up onto multiple pages. This user style for the Firefox Web browser puts the whole article on one page.]]></description>
			<content:encoded><![CDATA[<p>I had written about this on my old blog, so now I&#8217;m resurrecting it for this one.</p>
<p>Many <a href="http://www.gannett.com/">Gannett</a> newspaper sites now split long articles up onto multiple pages. However, if you look at the page&#8217;s source code, it actually loads the entire article in your browser but splits it into several <a href="http://www.w3schools.com/tags/tag_DIV.asp">divs</a>, showing you only one at a time.</p>
<p>There is no benefit to the reader by doing this. From a readability standpoint, <a href="http://www.merriam-webster.com/dictionary/subheads">subheads</a> splitting up the text into chunks would work much better. I assume the reason for it is to get multiple page views for a single article.</p>
<p><span id="more-149"></span></p>
<p><strong>Reclaim the user experience</strong></p>
<p>Thanks to Web browser add-ons, Web site users can modify the way Web pages are displayed. We can then show all of the article&#8217;s divs at once without having to click to see the next one.</p>
<p><a href="http://userstyles.org/styles/16759"><strong>Download the Gannett newspaper site anti-pagination user style here.</strong></a></p>
<p>It requires either (a) the <a href="http://www.getfirefox.com">Firefox</a> browser with either the <a href="https://addons.mozilla.org/en-US/firefox/addon/2108">Stylish</a> or <a href="https://addons.mozilla.org/en-US/firefox/addon/748">Greasemonkey</a> add-ons, or (b) the <a href="http://www.opera.com/">Opera</a> browser. It&#8217;s free.</p>
<p>Reporter Meranda Watling has <a href="http://merandawrites.com/2009/04/08/why-page-jumps-online-are-annoying-counterproductive/">written more about the pagination issue</a>.</p>
<p>The fix works on <a href="http://www.gannett.com/web/newspapers.htm">these sites</a>. If you would like more Gannett sites added to it, please let me know by leaving a comment here.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattbusse.com/get-around-gannett-news-sites-pagination-of-long-articles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Reader Style: Clean, Minimalist and Readable</title>
		<link>http://mattbusse.com/google-reader-style-clean-minimalist-and-readable/</link>
		<comments>http://mattbusse.com/google-reader-style-clean-minimalist-and-readable/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 15:38:05 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://mattbusse.com/?p=133</guid>
		<description><![CDATA[This user style gives Google Reader a stripped-down appearance with a larger Georgia font and pleasant use of whitespace. It requires Mozilla Firefox and the Stylish add-on.]]></description>
			<content:encoded><![CDATA[<p><em><strong>Updated July 31, 2009:</strong></em></p>
<p><em>I have changed the style slightly. Before, it narrowed the reading area to 45 em. This made text very pleasant to read as the eye didn&#8217;t have to move left to right as much.</em></p>
<p><em>However, it required readers to scroll horizontally when pictures were in a post, which made reading picture-heavy blog posts (and especially comic strips) annoying.</em></p>
<p><em>The 45 em attribute has been removed, and now the width fills the viewing area.</em></p>
<p><em><br />
</em></p>
<p><strong><a href="http://userstyles.org/styles/19714"><strong>Here&#8217;s a redesign of Google Reader I made called &#8220;Google Reader &#8211; Clean, Minimalist and Readable.&#8221;</strong></a></strong></p>
<div class="wp-caption alignnone" style="width: 510px"><strong><a href="http://userstyles.org/styles/19714"><strong> </strong></a><strong><a href="http://userstyles.org/styles/19714"><img title="Google Reader - Clean Minimalist and Readable" src="http://userstyles.org/style_screenshots/19714_after.gif" border="0" alt="Google Reader - Clean Minimalist and Readable" width="500" /></a></strong></strong><p class="wp-caption-text">Google Reader - Clean Minimalist and Readable</p></div>
<p>Like the design of this blog, the goal was to make something that used a cleaner style with larger fonts, a narrower reading column and more whitespace.</p>
<p><span id="more-133"></span></p>
<p>Many of the icons and background colors have been removed and the font is &#8220;Georgia.&#8221; <span style="text-decoration: line-through;">and the reading column is narrowed to 45 <a href="http://www.w3schools.com/css/css_units.asp">em</a>, a width much easier on the eyes.</span></p>
<p>It was inspired by the <a href="http://lab.arc90.com/experiments/readability/">Readability</a> project.</p>
<p>To apply the redesign, you must use <a href="http://www.getfirefox.com">Mozilla Firefox</a> with the <a href="https://addons.mozilla.org/en-US/firefox/addon/2108">Stylish</a> add-on. The browser, add-on and style are all free downloads.</p>
<p><strong>I would love to hear feedback, so please leave a comment below!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://mattbusse.com/google-reader-style-clean-minimalist-and-readable/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Add Associated Press Stylebook search to Firefox or Internet Explorer</title>
		<link>http://mattbusse.com/add-an-ap-associated-press-stylebook-search-plugin-to-firefox-or-internet-explorer/</link>
		<comments>http://mattbusse.com/add-an-ap-associated-press-stylebook-search-plugin-to-firefox-or-internet-explorer/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 19:05:45 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Journalism Tips]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Internet Explorer]]></category>

		<guid isPermaLink="false">http://mattbusse.com/?p=61</guid>
		<description><![CDATA[Would you like a faster way to search the AP (Associated Press) Stylebook online? Now you can install a search plugin in your browser that will search the AP Stylebook's online edition from your search box.]]></description>
			<content:encoded><![CDATA[<p>Would you like a faster way to search the AP (Associated Press) Stylebook online?</p>
<p>Now you can install a search plugin in your browser that will search the AP Stylebook&#8217;s online edition from your search box.</p>
<p><span id="more-61"></span></p>
<p><strong>This requires an AP Stylebook account.</strong></p>
<p>If you search, and you have not already logged in, you will be taken to the login page. After you log in, you will be taken to your search results.</p>
<p>Once you&#8217;re logged in, you can search from the search box to your heart&#8217;s content.</p>
<p><a href="http://mycroft.mozdev.org/search-engines.html?name=apstylebook">Click here to go to the download page.</a></p>
<p>Click &#8220;AP Stylebook&#8221; on that page to install it.</p>
<p>It works with Internet Explorer and Firefox. It may work with other browsers but I haven&#8217;t tested it.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattbusse.com/add-an-ap-associated-press-stylebook-search-plugin-to-firefox-or-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
