<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<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/"
	>

<channel>
	<title>Pub Hackers</title>
	<link>http://www.pubhackers.com</link>
	<description>Caffiene. Liquor. Mac Nerdery.</description>
	<pubDate>Fri, 02 Feb 2007 20:58:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<item>
		<title>Showing MacFUSE How To Follow Symlinks, Using SSHFS</title>
		<link>http://www.pubhackers.com/2007/02/02/showing-macfuse-how-to-follow-symlinks-using-sshfs/</link>
		<comments>http://www.pubhackers.com/2007/02/02/showing-macfuse-how-to-follow-symlinks-using-sshfs/#comments</comments>
		<pubDate>Fri, 02 Feb 2007 20:58:06 +0000</pubDate>
		<dc:creator>Phil Nelson</dc:creator>
		
		<category><![CDATA[Posts]]></category>

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

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

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

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

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

		<guid isPermaLink="false">http://www.pubhackers.com/2007/02/02/showing-macfuse-how-to-follow-symlinks-using-sshfs/</guid>
		<description><![CDATA[Not long ago, crazy-nerd Amit Singh posted the fruits of his (and others) labour to get FUSE (File System In Userspace) working under OS X. The results are nice, and work more-or-less out of the box.

What&#8217;s neat about SSHFS is that I can now, for example, mount the hard drives of the web servers I [...]]]></description>
			<content:encoded><![CDATA[<p>Not long ago, crazy-nerd <a href="http://www.kernelthread.com/" title="Amit">Amit Singh</a> posted the fruits of his (and others) labour to get <a href="http://fuse.sourceforge.net/" title="FUSE">FUSE</a> (File System In Userspace) working under OS X. <a href="http://code.google.com/p/macfuse/" title="Google Code: MacFUSE">The results</a> are nice, and work more-or-less out of the box.</p>

<p>What&#8217;s neat about SSHFS is that I can now, for example, mount the hard drives of the web servers I work on as normal directories on my computer, eliminating the need for dealing with an FTP client, and allowing me to open websites are projects using my text-editor of choice, <a href="http://micromates.com" title="TextMate">TextMate</a>.</p>

<p>However, all is not well if your server layout uses a lot of symlinks, as mine does. The sshfs.app that comes with the MacFUSE SSHFS package doesn&#8217;t use the <code>follow_symlinks</code> option by default, and there&#8217;s no preference to turn it on. Luckily for us, sshfs.app comes with the command-line version of SSHFS built-in. All it takes is a couple terminal commands, and you&#8217;ll be opening Transmit with less frequency in no time.</p>

<h3>How To Do This Thing I Mentioned: The Pre-Requesiting</h3>

<p>The first thing we&#8217;ll need to do, obviously, is to download and install both MacFUSE and the SSHFS packages from the project&#8217;s <a href="http://code.google.com/p/macfuse/" title="Google Code: MacFUSE">Google Code site</a>. After installing MacFUSE, you&#8217;ll have to reboot your machine, due to the fact that FUSE is actually a kernel extension, that need to load when OS X first starts up. While you&#8217;re doing that, I&#8217;m going to go crack open a Red Bull. We&#8217;ll see who finishes first.</p>

<h3>Step 2: Termina, Round 1: The symlink</h3>

<p>The next step is the meat of our SSHFS implementation, and you&#8217;ll need the use of our friend, the Terminal. He lives in /Applications/Utilities/ and likes long walks on the beach, shell scripts, and perl. Luckily for us, we won&#8217;t need any of those things. Just a couple of simple commands.</p>

<p>As stated above, the SSFHS package provided by Google Code gives us just what we need, but it&#8217;s kind of hidden. After you&#8217;ve downloaded the package, and dragged sshfs.app into your /Applications folder, pop open your Terminal and put in the following code:</p>

<p><code>sudo ln -s /Applications/sshfs.app/Contents/Resources/sshfs-static /usr/local/bin/sshfs</code></p>

<p>The above code creates a symlink (symbolic link) to the command-line version of the SSHFS application, which exists inside the app we downloaded from Google Code. We use <code>sudo</code> here, because we need temporary Root access, to modify the /usr/local/bin directory. Putting a link to the application inside /usr/local/bin is entirely optional- it just makes things simpler. Instead of typing &#8216;/Applications/sshfs.app/Contents/Resources/sshfs-static&#8217; every time we want to use the app, now we can just type &#8216;sshfs&#8217;, instead.</p>

<h3>Step 3: The Finishing Of the Thing We Started A Minute Ago</h3>

<p>The final step is to actually USE the <code>sshfs</code> tool, now that we&#8217;re all set up. sshfs&#8217; invocation is pretty simple, and if you want more info, you can check out the documentation for yourself. For the purposes of this howto, though, I&#8217;m just going to show you how I do it. I do it like this:</p>

<p><code>sshfs user:remote.server:/remote/path /your/path/here -oreconnect,ping_diskarb,follow_symlinks,volname=VOLUME_NAME</code></p>

<p>This invokes our new friend sshfs, tells it we want to log onto a server, located at the address <code>remote.server</code>, directory <code>/remote/path</code>, with the username <code>user</code>. We also want to mount the directory on our machine in the directory <code>/your/path/here</code> (personally, I use /Volumes/servername), and with a bunch of options at the end. You don&#8217;t really need to know about those, I promise. The main one we&#8217;re interested in is follow_symlinks, which was the whole point of my taking this journey down tutorial lane.</p>

<p>If you&#8217;re successful, the server share should mount onto your desktop, and you can interact with it just like it&#8217;s a normal part of your own hard drive, without needing to use an FTP client to transfer files, browse directories, delete items, or any other mundane or advanced task. Enjoy.</p>

<p><em>This article was originally posted to <a href="http://www.murderthoughts.com/2007/01/30/a-quick-note-on-macfuse-sshfs-and-how-to-make-fuse-follow-symlinks/" title="A Quick Note On MacFUSE, SSHFS, and How To Make FUSE Follow Symlinks">murderthoughts.com</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pubhackers.com/2007/02/02/showing-macfuse-how-to-follow-symlinks-using-sshfs/feed/</wfw:commentRss>
		</item>
		<item>
		<title>iPhone Shuffle</title>
		<link>http://www.pubhackers.com/2007/01/10/iphone-shuffle/</link>
		<comments>http://www.pubhackers.com/2007/01/10/iphone-shuffle/#comments</comments>
		<pubDate>Wed, 10 Jan 2007 22:43:19 +0000</pubDate>
		<dc:creator>Phil Nelson</dc:creator>
		
		<category><![CDATA[Posts]]></category>

		<guid isPermaLink="false">http://www.pubhackers.com/2007/01/10/iphone-shuffle/</guid>
		<description><![CDATA[That&#8217;s right, the Pub Hackers have uncovered the even newer phone product currently incubating in the dark, cold, idea-chambers of Apple, Inc&#8217;s Cupertino campus: the iPhone Shuffle.

One button. No GUI. A key press might just call someone, or maybe it will add a seemingly random entry to your calendar, or maybe it will even send [...]]]></description>
			<content:encoded><![CDATA[<p>That&#8217;s right, the Pub Hackers have uncovered the even newer phone product currently incubating in the dark, cold, idea-chambers of Apple, Inc&#8217;s Cupertino campus: the iPhone Shuffle.</p>

<p>One button. No GUI. A key press might just call someone, or maybe it will add a seemingly random entry to your calendar, or maybe it will even send $600 to Steve Job&#8217;s secret offshore bank account. The only way to know is to press it. Who are you to resist?</p>

<h2>No-Screen Shuffle</h2>

<p>iPhone Shuffle is an iPod Shuffle with easy one-touch controls that lets you enjoy all your content — including music, audiobooks, videos, TV shows, and movies — on a device with absolutley no screen. It also lets you sync your content from the iTunes library, we think. And then you can access it all with just the touch of a finger.</p>

<h2>Revolutionary Phone</h2>

<p>iPhone Shuffle is a revolutionary new mobile phone that allows you to make a call by simply pressing the iPhone Shuffle&#8217;s innovative one-button control system, and letting the phone randomly choose who you call. Sometimes it won&#8217;t, though. The only way to know is to try. Randomize your life!</p>

<h2>Breakthrough Internet Device (Maybe!)</h2>

<p>iPhone Shuffle features a rich HTML email client, probably! And several other things! We think! We can&#8217;t really tell what it&#8217;s doing most of the time. You want it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pubhackers.com/2007/01/10/iphone-shuffle/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How To: Add givemebackmygoogle Filters To OmniWeb</title>
		<link>http://www.pubhackers.com/2006/10/16/how-to-add-givemebackmygoogle-filters-to-omniweb/</link>
		<comments>http://www.pubhackers.com/2006/10/16/how-to-add-givemebackmygoogle-filters-to-omniweb/#comments</comments>
		<pubDate>Mon, 16 Oct 2006 20:42:46 +0000</pubDate>
		<dc:creator>Phil Nelson</dc:creator>
		
		<category><![CDATA[Posts]]></category>

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

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

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

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

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

		<guid isPermaLink="false">http://www.pubhackers.com/2006/10/16/how-to-add-givemebackmygoogle-filters-to-omniweb/</guid>
		<description><![CDATA[If you&#8217;ve seen givemebackmygoogle.com, odds are you&#8217;re wondering how to make sure those godawful affiliate sites stay out of your search results forever. I&#8217;m gonna show you how to do so using my browser of choice, OmniWeb. Google being a pretty clever platform, and OmniWeb being the most kick ass browser on the planet, it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve seen <a href="http://www.givemebackmygoogle.com/" title="Give Me Back My Google!">givemebackmygoogle.com</a>, odds are you&#8217;re wondering how to make sure those godawful affiliate sites stay out of your search results forever. I&#8217;m gonna show you how to do so using my browser of choice, <a href="http://www.omnigroup.com/applications/omniweb/" title="OmniWeb">OmniWeb</a>. Google being a pretty clever platform, and OmniWeb being the most kick ass browser on the planet, it&#8217;s really simple to do.</p>

<p>You might wonder why, instead of simply modifying OmniWeb&#8217;s default google search shortcut, we&#8217;re making a new one. It&#8217;s not complicated: this way, if you want to go back to regular old google, it&#8217;s just a mouse-click away, no harm, no foul.</p>

<h3>First things first</h3>

<p>Open OmniWeb. Simple enough, no?</p>

<p>Once OW is open and loaded, click <code>OmniWeb -&gt; Preferences</code>. Once you&#8217;re in the Preferences panel, click on the <code>Shortcuts</code> icon. Here&#8217;s where OmniWeb stores all the available search functions, for the search bar in the top-right of it&#8217;s default window. In the left side of the preferences window, you&#8217;ll have a listing of the currently available ones. We&#8217;re going to add a new one.</p>

<h3>Adding A Shortcut</h3>

<p>Adding a shortcut in OmniWeb is simple: click the <code>+</code> sign at the bottom left of the window. This will add a new shortcut at the bottom of our list, with the Name and Keyword &#8216;somewhere&#8217;. Clicking on this will bring up it&#8217;s relevant information in the right pane of the preferences window, so we can edit it.</p>

<p>You can name the shortcut whatever you like. For simplicity&#8217;s sake, I&#8217;m going to call it &#8216;GoogFilter&#8217;, and make it&#8217;s shortcut <code>goog@</code>. Pick something easy to remember for the shortcut.</p>

<h3>Pasting In The URL</h3>

<p>Here&#8217;s the real meat of this tutorial, adding the proper options to a normal google search. In the <code>URL</code> field, paste in the following text:</p>

<blockquote>
  <p><code>http://www.google.com/search?ie=utf8&amp;oe=utf8&amp;q=%@+-site%3Akelkoo+-site%3Aciao+-site%3Abizrate+-site%3Apixmania.co.uk+-site%3Apixmania.com+-site%3Adealtime.com+-site%3Apricerunner.co.uk+-site%3Apricerunner.com+-site%3Apricegrabber+-site%3Apricewatch+-site%3Ashopping.msn.com+-site%3Aresellerratings+-site%3Aepinions.com+-site%3Anextag+-site%3Acomparestoreprices.co.uk+-site%3Aunbeatable.co.uk+-site%3Aebay+-site%3Ashopping.com+-site%3Ashopbot</code></p>
</blockquote>

<p>Make sure you copy and paste it, instead of trying to type it all in like an insane person, otherwise you could miss something important.</p>

<h3>That&#8217;s Pretty Much It, Really</h3>

<p>Close your preferences window (OmniWeb saved all of our changes automatically. Don&#8217;t you love it?), and click on the magnifying glass in the search bar up top. Select our new <code>GoogFilter</code> shortcut, and type something in to search. If you did what I told you to, and I honestly can&#8217;t imagine why you wouldn&#8217;t, then you should be getting considerably less spam results in your google searches, especially for things like movies and consumer electronics. Enjoy!</p>

<p>This short how to was brought to you by the <a href="http://www.murderthoughts.com/" title="Phil's Website">brevity council</a>. I guess the sub-headings were kind of unnecessary. I&#8217;d apologize if I were sorry.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pubhackers.com/2006/10/16/how-to-add-givemebackmygoogle-filters-to-omniweb/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A Short Treatise On The Locations Of Various Config Files In OS X</title>
		<link>http://www.pubhackers.com/2006/10/15/a-short-trestise-on-the-locations-of-various-config-files-in-os-x/</link>
		<comments>http://www.pubhackers.com/2006/10/15/a-short-trestise-on-the-locations-of-various-config-files-in-os-x/#comments</comments>
		<pubDate>Sun, 15 Oct 2006 19:58:54 +0000</pubDate>
		<dc:creator>Phil Nelson</dc:creator>
		
		<category><![CDATA[Posts]]></category>

		<guid isPermaLink="false">http://www.pubhackers.com/2006/10/15/a-short-trestise-on-the-locations-of-various-config-files-in-os-x/</guid>
		<description><![CDATA[The default locations for various config files and data directories, by default, under Mac OS 10.4:

Apache Web Server*: /private/etc/httpd/httpd.conf

MySQL*: /private/etc/my.cnf

To be added to as time permits.

* Editing these files requires you to be logged in as root, or use the sudo command.

Yes, I know that &#8216;short treatise&#8217; is somewhat of an oxymoron, and I am [...]]]></description>
			<content:encoded><![CDATA[<p>The default locations for various config files and data directories, by default, under Mac OS 10.4:</p>

<p>Apache Web Server*: <code>/private/etc/httpd/httpd.conf</code></p>

<p>MySQL*: <code>/private/etc/my.cnf</code></p>

<p>To be added to as time permits.</p>

<p><code>* Editing these files requires you to be logged in as root, or use the sudo command.</code></p>

<p>Yes, I know that &#8216;short treatise&#8217; is somewhat of an oxymoron, and I am also aware that this post is, in fact, not a treatise at all. So?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pubhackers.com/2006/10/15/a-short-trestise-on-the-locations-of-various-config-files-in-os-x/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Last.fm Collectively Kicks My Nuts</title>
		<link>http://www.pubhackers.com/2006/07/15/lastfm-collectively-kicks-my-nuts/</link>
		<comments>http://www.pubhackers.com/2006/07/15/lastfm-collectively-kicks-my-nuts/#comments</comments>
		<pubDate>Sat, 15 Jul 2006 19:37:24 +0000</pubDate>
		<dc:creator>Phil Nelson</dc:creator>
		
		<category><![CDATA[Posts]]></category>

		<guid isPermaLink="false">http://www.pubhackers.com/2006/07/15/lastfm-collectively-kicks-my-nuts/</guid>
		<description><![CDATA[Last.fm, why have you forsaken me? Today last.fm (&#8220;the social music revolution&#8221;) unveiled a big redesign of the site (which isn&#8217;t bad, just really light red), and also a new version of their music playing/rating/tagging system. So far, so good. Oh, and they also all but killed off the iTunes and Winamp and Windows Media [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.last.fm" title="Last.fm">Last.fm</a>, why have you forsaken <a href="http://www.last.fm/user/zerolives/" title="my Last.fm Profile">me</a>? Today last.fm (&#8220;the social music revolution&#8221;) unveiled a <a href="http://www.last.fm/updates/" title="Last.fm: Operation Depth Charge">big redesign</a> of the site (which isn&#8217;t bad, just really light red), and also a new version of their music playing/rating/tagging system. So far, so good. Oh, and they also all but <em>killed off</em> the iTunes and Winamp and Windows Media Player track-submission plugins. The only one you can still grab is iScrobbler (for iTunes on OS X), and that&#8217;s only because the OS X Last.fm client is in beta. I&#8217;d imagine once it goes GM, they&#8217;ll remove it entirely.</p>

<p>I really like Last.fm. They seem like cool people, their service has been great to me over the last year or so, and it&#8217;s cost me nothing. But here&#8217;s the thing: I&#8217;m not going to use your shitty music player, last.fm. I&#8217;m sure you&#8217;ve spent a lot of time on it, and lots of people have worked very hard. But it&#8217;s feature set is suspect, it bogs down my aging G4 Powermac, the OS X interface is pretty lame, and I love iTunes. I have 6,220 songs in my iTunes library already categorized, cross-referenced, tagged, shagged, and playlisted. I&#8217;ve spent 4 years constantly tweaking the semi-random &#8216;radio&#8217; playlist. I&#8217;m not going to toss away all of that, or run another application concurrenty, just because I like you, and I&#8217;m not sure why you think I will.</p>

<p>We&#8217;ve had fun, last.fm. I&#8217;m sorry, but I think once you entirely kill off iScrobbler, we should just be friends.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pubhackers.com/2006/07/15/lastfm-collectively-kicks-my-nuts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Treacherous Fucks Now Embed Sound In Ebay Auctions</title>
		<link>http://www.pubhackers.com/2006/05/18/treacherous-fucks-now-embed-sound-in-ebay-auctions/</link>
		<comments>http://www.pubhackers.com/2006/05/18/treacherous-fucks-now-embed-sound-in-ebay-auctions/#comments</comments>
		<pubDate>Thu, 18 May 2006 15:34:11 +0000</pubDate>
		<dc:creator>Phil Nelson</dc:creator>
		
		<category><![CDATA[Posts]]></category>

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

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

		<guid isPermaLink="false">http://www.pubhackers.com/2006/05/18/treacherous-fucks-now-embed-sound-in-ebay-auctions/</guid>
		<description><![CDATA[Looking for some parts for my car, I came across this auction for a set of clear headlights. You&#8217;ll notice, if you click on the link, as soon as the page loads there&#8217;s a nice, loud, unrequested sound file that starts playing. It sounds like a retarded chipmonk reading a legal disclaimer.

Here&#8217;s how to block [...]]]></description>
			<content:encoded><![CDATA[<p>Looking for some parts for my car, I came across <a href="http://cgi.ebay.com/ebaymotors/99-04-FORD-MUSTANG-EURO-CLEAR-HEADLIGHT-CHROME-HOUSING_W0QQitemZ8061592987QQcategoryZ33710QQssPageNameZWD1VQQrdZ1QQcmdZViewItem" title="Hideous Ebay Auction">this auction</a> for a set of clear headlights. You&#8217;ll notice, if you click on the link, as soon as the page loads there&#8217;s a nice, loud, unrequested sound file that starts playing. It sounds like a retarded chipmonk reading a legal disclaimer.</p>

<p>Here&#8217;s how to block it in OmniWeb:</p>

<p>Navigate to <code>OmniWeb -&gt; Preferences -&gt; Ad Blocking -&gt; Edit Blocked URLs List</code>. Click the <code>+</code> symbol below the text box at the top of the screen, and simply ad the word &#8216;buysafe&#8217; without quotes. Problem solved.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pubhackers.com/2006/05/18/treacherous-fucks-now-embed-sound-in-ebay-auctions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google Trends Roshambo</title>
		<link>http://www.pubhackers.com/2006/05/12/google-trends-roshambo/</link>
		<comments>http://www.pubhackers.com/2006/05/12/google-trends-roshambo/#comments</comments>
		<pubDate>Fri, 12 May 2006 14:31:46 +0000</pubDate>
		<dc:creator>Phil Nelson</dc:creator>
		
		<category><![CDATA[Posts]]></category>

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

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

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

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

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

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

		<guid isPermaLink="false">http://www.pubhackers.com/2006/05/12/google-trends-roshambo/</guid>
		<description><![CDATA[Inspired by the &#8220;pirate, ninja, bear&#8221; thing, and with the recent announcement of Google Trends, Pubhacker Shawn and I have come up with a 21st century version of Roshambo: Google Trendshambo.

It resolves any conflict instantly! For example, Shawn and I might be arguing about who thinks Rob Glaser is more of a douchebag. We Google [...]]]></description>
			<content:encoded><![CDATA[<p>Inspired by the &#8220;<a href="http://flickr.com/photos/seemann/136150730/" title="Pirate, Ninja, Bear">pirate, ninja, bear</a>&#8221; thing, and with the recent announcement of <a href="http://www.google.com/trends" title="Google Trends">Google Trends</a>, Pubhacker Shawn and I have come up with a 21st century version of <a href="http://www.emf.net/~estephen/roshambo/" title="Roshambo">Roshambo</a>: Google Trendshambo.</p>

<p>It resolves any conflict instantly! For example, Shawn and I might be arguing about who thinks <a href="http://daringfireball.net/2006/05/rob_glaser_jackass" title="John Gruber takes the piss out of Rob Glaser">Rob Glaser</a> is more of a douchebag. We Google Trendshambo for it. I throw <a href="http://www.google.com/search?ie=utf8&amp;oe=utf8&amp;q=titties" title="Titties">titties</a>, Shawn throws <a href="http://www.google.com/search?ie=utf8&amp;oe=utf8&amp;q=ass" title="Ass">ass</a>. <a href="http://google.com/trends?q=ass%2C+titties&amp;ctab=0&amp;geo=all&amp;date=all" title="Ass .vs. Titties">According to the graph</a>, Shawn hates him more. See? Simple, and no bloodshed.</p>

<p>However, <a href="http://google.com/trends?q=ass%2C+tits&amp;ctab=0&amp;geo=all&amp;date=all" title="Ass .vs. Tits">tits makes a much better run at ass</a> than titties did.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pubhackers.com/2006/05/12/google-trends-roshambo/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How To Stop Flash Files From Automatically Playing In OmniWeb</title>
		<link>http://www.pubhackers.com/2006/02/22/how-to-stop-flash-files-from-automatically-playing-in-omniweb/</link>
		<comments>http://www.pubhackers.com/2006/02/22/how-to-stop-flash-files-from-automatically-playing-in-omniweb/#comments</comments>
		<pubDate>Wed, 22 Feb 2006 16:28:20 +0000</pubDate>
		<dc:creator>Phil Nelson</dc:creator>
		
		<category><![CDATA[Posts]]></category>

		<guid isPermaLink="false">http://www.pubhackers.com/2006/02/22/how-to-stop-flash-files-from-automatically-playing-in-omniweb/</guid>
		<description><![CDATA[After using Camino as my every day browser for many many months, I&#8217;m back on the OmniWeb train. I can&#8217;t help it. I just missed it too much. OmniWeb is to Safari/Camino what BBEdit is to TextEdit.

If you work on websites with flash content, like I sometimes do, and this flash content is often comprised [...]]]></description>
			<content:encoded><![CDATA[<p>After using <a href="http://www.caminobrowser.org" title="Camino - mozilla power, mac style">Camino</a> as my every day browser for many many months, I&#8217;m back on the <a href="http://www.omnigroup.com/applications/omniweb/" title="OmniWeb">OmniWeb</a> train. I can&#8217;t help it. I just missed it too much. OmniWeb is to Safari/Camino what BBEdit is to TextEdit.</p>

<p>If you work on websites with flash content, like I sometimes do, and this flash content is often comprised of, say, animations with really shitty audio&#8230; well, you get the picture. Spending an hour working on one page of a site with flash in it, while it loops over and over and over, is enough to turn a man sour.</p>

<p>So, here&#8217;s how to tame Flash in OmniWeb, so you have to click any/all flash files before they play:</p>

<ol>
<li>Click OmniWeb in the menubar, and go to Preferences.</li>
<li>Then click Ad Blocking.</li>
<li>Make sure &#8220;From blocked URLs&#8221; is checked under &#8220;Block images and other inline content&#8221;.</li>
<li>Click the Edit Blocked URLs List button.</li>
<li>This screen has two boxes. In the top one should have some stuff in it already, like this: <code>/ads\..*\.net/</code>. Click the + button under the box, and type in <code>swf</code>, then click done.</li>
<li>???</li>
<li>Profit.</li>
</ol>

<p>And you&#8217;re done. Now all that awful flash content must be clicked before it plays, and you can keep that slim grasp you have on sanity for a little longer.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pubhackers.com/2006/02/22/how-to-stop-flash-files-from-automatically-playing-in-omniweb/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Camino 1.0</title>
		<link>http://www.pubhackers.com/2006/02/15/camino-10/</link>
		<comments>http://www.pubhackers.com/2006/02/15/camino-10/#comments</comments>
		<pubDate>Wed, 15 Feb 2006 17:36:42 +0000</pubDate>
		<dc:creator>Phil Nelson</dc:creator>
		
		<category><![CDATA[Posts]]></category>

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

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

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

		<guid isPermaLink="false">http://www.pubhackers.com/?p=81</guid>
		<description><![CDATA[Camino, the gecko-based web browser for OS X, hit 1.0 yesterday. Honestly, I never thought they&#8217;d hit that particular milestone, and I think they kinda rushed it. There&#8217;s no spell checking, for one thing, which is something every other browser out there has.

But, it&#8217;s still snappy, and it&#8217;s still camino. I&#8217;ve been using it as [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.caminobrowser.org" title="Camino's homepage">Camino</a>, the gecko-based web browser for OS X, <a href="http://weblogs.mozillazine.org/pinkerton/archives/009747.html" title="Camino 1.0 is here">hit 1.0 yesterday</a>. Honestly, I never thought they&#8217;d hit that particular milestone, and I think they kinda rushed it. There&#8217;s no spell checking, for one thing, which is something every other browser out there has.</p>

<p>But, it&#8217;s still snappy, and it&#8217;s still camino. I&#8217;ve been using it as my every day browser for 6 months or so, grabbing nightlies from <a href="http://homepage.mac.com/krmathis/" title="G4 optimized Camino">krmathis&#8217; site</a>. Camino is good, and it&#8217;s even better if you grab <a href="http://www.nadamac.de/camitools/index.php" title="CamiTools">CamiTools</a> and <a href="http://www.nadamac.de/camiscript/index.php" title="CamiScript">CamiScript</a>, which makes up for a lot of the features Camino gives up to OmniWeb and Firefox out of the box.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pubhackers.com/2006/02/15/camino-10/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sci-Pod-Fi</title>
		<link>http://www.pubhackers.com/2006/02/09/sci-pod-fi/</link>
		<comments>http://www.pubhackers.com/2006/02/09/sci-pod-fi/#comments</comments>
		<pubDate>Thu, 09 Feb 2006 17:14:30 +0000</pubDate>
		<dc:creator>Phil Nelson</dc:creator>
		
		<category><![CDATA[Posts]]></category>

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

		<category><![CDATA[sci-fi]]></category>

		<guid isPermaLink="false">http://www.pubhackers.com/2006/02/09/sci-pod-fi/</guid>
		<description><![CDATA[Yeah, I listen to Escape Pod, what of it?
]]></description>
			<content:encoded><![CDATA[<p>Yeah, I listen to <a href="http://www.escapepod.org" title="Escape Pod, free sci-fi podcast">Escape Pod</a>, what of it?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pubhackers.com/2006/02/09/sci-pod-fi/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
