<?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>Parazoid.net</title>
	<atom:link href="http://parazoid.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://parazoid.net</link>
	<description>The Blog of Ben Stoutenburgh</description>
	<lastBuildDate>Wed, 26 Oct 2011 19:49:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Ctrl-left in bash on OS X</title>
		<link>http://parazoid.net/2011/10/26/ctrl-left-in-bash-on-os-x/</link>
		<comments>http://parazoid.net/2011/10/26/ctrl-left-in-bash-on-os-x/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 19:43:44 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://parazoid.net/?p=204</guid>
		<description><![CDATA[I finally got my MacBook Pro for work a couple weeks ago and found out how much I actually depend on using ctrl-left and ctrl-right while in bash to move back and forth between words. Yes, I should probably set bash to be in vi mode, but emacs mode is how I learned so why [...]]]></description>
			<content:encoded><![CDATA[<p>I finally got my MacBook Pro for work a couple weeks ago and found out how much I actually depend on using ctrl-left and ctrl-right while in bash to move back and forth between words.  Yes, I should probably set bash to be in vi mode, but emacs mode is how I learned so why change?</p>
<p>On my MBP that combination does not work. I have no idea what combination it defaults to, but since I constantly bounce between linux machines and this laptop it should be exactly what I&#8217;m used to.  Thanks to Labrat&#8217;s blog post <a href="http://blog.labrat.info/20100408/ctrl-left-arrow-on-osx/">Making BASH&#8217;s ctrl-left arrow work on OSX</a> I know now to go to Terminals&#8217;s preferences to change this.  Once in Settings go to the Settings panel (yes, you read that right) and select the Keyboard tab.  The first two entries for Key/Action mappings are for &#8220;control cursor left&#8221; and &#8220;control cursor right&#8221;.  Double click on each and change the entries to \033b and \033f respectively (hold Esc down for \033).</p>
<p><strong>Edit:</strong> I forgot about Spaces which likes &#8220;^ Arrow Keys&#8221; for switching between spaces.  I had to remember to change this to avoid conflicts.</p>
]]></content:encoded>
			<wfw:commentRss>http://parazoid.net/2011/10/26/ctrl-left-in-bash-on-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dropbox tip: Delayed start</title>
		<link>http://parazoid.net/2011/07/01/dropbox-tip-delayed-start/</link>
		<comments>http://parazoid.net/2011/07/01/dropbox-tip-delayed-start/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 15:37:48 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://parazoid.net/?p=194</guid>
		<description><![CDATA[Dropbox is a great utility to have handy, especially since it&#8217;s multi-platform and I don&#8217;t have to think about it. However, I primarily use a Linux laptop which isn&#8217;t always Internet-connected or at least not immediately when I login. This confuses Dropbox significantly since the client cannot find the servers and doesn&#8217;t retry. But this [...]]]></description>
			<content:encoded><![CDATA[<p>Dropbox is a great utility to have handy, especially since it&#8217;s multi-platform and I don&#8217;t have to think about it.  However, I primarily use a Linux laptop which isn&#8217;t always Internet-connected or at least not immediately when I login.  This confuses Dropbox significantly since the client cannot find the servers and doesn&#8217;t retry.  But this is nothing a little shell magic can&#8217;t fix.</p>
<p>The client starts up based on <code>~/.config/autostart/dropbox.desktop</code>, which calls <code>dropbox start -i</code>.  Based on this <a href="http://wiki.dropbox.com/TipsAndTricks/NetworkManagerWifiWorkaround">NetworkManagerWifiWorkaround</a> tip, replace the Command in Startup Applications with the following and dropbox will wait until your system successfully can ping www.google.com:</p>
<blockquote><p><code>bash -c 'while ! ping -q -w5 -c1 www.google.com; do sleep 5s; done; dropbox start -i'</code></p></blockquote>
<p>That&#8217;s great, except after some time (I believe a restart of dropbox) the command will revert back.  So once you have the right command in <code>~/.config/autostart/dropbox.desktop</code> open up a terminal and run this command:</p>
<blockquote><p><code>sudo chattr +i ~/.config/autostart/dropbox.desktop</code></p></blockquote>
<p>So now dropbox will wait for you to be connected, and won&#8217;t overwrite your change.  If you still don&#8217;t use Dropbox check out their <a href="https://www.dropbox.com/tour">tour</a> and then signup with my <a href="http://db.tt/5TMfzsQ">referral link</a> to get an additional 250MB of space.</p>
]]></content:encoded>
			<wfw:commentRss>http://parazoid.net/2011/07/01/dropbox-tip-delayed-start/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First Mid-Hudson Drupal Users meetup</title>
		<link>http://parazoid.net/2011/05/08/first-mid-hudson-drupal-users-meetup/</link>
		<comments>http://parazoid.net/2011/05/08/first-mid-hudson-drupal-users-meetup/#comments</comments>
		<pubDate>Sun, 08 May 2011 18:10:48 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[meetups]]></category>
		<category><![CDATA[mhdug]]></category>

		<guid isPermaLink="false">http://parazoid.net/?p=174</guid>
		<description><![CDATA[We had our first meeting of the Mid-Hudson Drupal Users Group yesterday. With about 7 people for the first meetup, we had a good mix of people who have never used it and some who make Drupal sites for a living. I&#8217;m very happy we finally met and excited for future meetups. We talked about [...]]]></description>
			<content:encoded><![CDATA[<p>We had our first meeting of the <a href="http://groups.drupal.org/hudson-valley-ny">Mid-Hudson Drupal Users Group</a> yesterday.  With about 7 people for the first meetup, we had a good mix of people who have never used it and some who make Drupal sites for a living.  I&#8217;m very happy we finally met and excited for future meetups.</p>
<p>We talked about quite a few things, mainly on what we should talk about in the future.  Here is some brain dumping from the session.</p>
<ul>
<li>We should meet monthly.  Weekday evenings seem to work out best, especially with nice summer days coming up.</li>
<p></p>
<li>Something that worked well and we will continue for future meetings is going around the room so each person can share their favorite module.  This month&#8217;s list included:
<ul>
<li><a href="http://drupal.org/project/rules">Rules</a></li>
<li><a href="http://drupal.org/project/imagecache">ImageCache</a></li>
<li><a href="http://drupal.org/project/calendar">Calendar</a></li>
<li><a href="http://drupal.org/project/drush">Drush</a></li>
<li><a href="http://drupal.org/project/admin_menu">Administration Menu</a></li>
</ul>
</li>
<li>We should have a main topic of discussion for someone to present on.  If we cannot get a projector from the library either Sean or Ben could probably wrangle up a projector for the night.  Possible future topics include:
<ul>
<li>Payment Gateways</li>
<li>CiviCRM</li>
<li>Ubercart</li>
<li>Scaling and Caching</li>
<li>Mobile design</li>
<li>Organic Groups</li>
<li>Taxonomy</li>
</ul>
</li>
<li>Possible things the group might do:
<ul>
<li>Mentoring</li>
<li>Peer Review (ex, &#8220;I need to display this data which includes x,y,z so I used modules k,q and d.  What do you think?&#8221;)</li>
<li>Homework Assignments</li>
</ul>
</li>
<li>Helpful blogs and video podcasts to pay attention to:
<ul>
<li><a href="http://mobiledrupal.com/">Mobile Drupal</a></li>
<li><a href="http://www.drupaltherapy.com/">Drupaltherapy.com</a></li>
<li><a href="http://learnbythedrop.com/">Learn By The Drop</a></li>
<li><a href="http://www.lullabot.com/">Lullabot</a></li>
<li><a href="http://www.gotdrupal.com/">GotDrupal.com</a></li>
</ul>
</li>
</ul>
<p>I think we&#8217;re off to a good start.  We have some networking going and have already shared useful information.  The next meetup will feature <a href="http://vnew-tech.com/">Vonn</a> presenting on Taxonomy, which will most likely take place <strong>Wednesday, June 8th</strong> at 6:00pm. Vonn is lining up the Charwat Meeting Room at <a href="http://www.poklib.org/about/">Adriance Memorial Library</a> again.  Pay attention to twitter feeds and the <a href="http://groups.drupal.org/hudson-valley-ny">Hudson Valley, NY</a> group at <a href="http://groups.drupal.org/">g.d.o</a> to make sure you catch all the details.</p>
]]></content:encoded>
			<wfw:commentRss>http://parazoid.net/2011/05/08/first-mid-hudson-drupal-users-meetup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>O&#8217;Reilly Media Wish list sweepstakes</title>
		<link>http://parazoid.net/2011/02/13/oreilly-media-wish-list-sweepstakes/</link>
		<comments>http://parazoid.net/2011/02/13/oreilly-media-wish-list-sweepstakes/#comments</comments>
		<pubDate>Sun, 13 Feb 2011 23:56:48 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[oreilly]]></category>

		<guid isPermaLink="false">http://parazoid.net/?p=160</guid>
		<description><![CDATA[You&#8217;ve all heard me promote the O&#8217;Reilly Media Wish list sweepstakes. Go read the rules but the basics are you generate a wish list of O&#8217;Reilly titles including books, ebooks and videos that total up to $500, and then you get an entry for the random selection. Slimming down a wish list to $500 is [...]]]></description>
			<content:encoded><![CDATA[<p>You&#8217;ve all heard me promote the <a href="http://oreilly.com/new-year-2011">O&#8217;Reilly Media Wish list</a> sweepstakes.  Go read the rules but the basics are you generate a wish list of O&#8217;Reilly titles including books, ebooks and videos that total up to $500, and then you get an entry for the random selection.  Slimming down a wish list to $500 is very much the hard part, but here is my selection.</p>
<p><em>(Disclaimer: All prices are O&#8217;Reilly prices with no discounts)</em></p>

<table id="wp-table-reloaded-id-1-no-1" class="wp-table-reloaded wp-table-reloaded-id-1">
<thead>
	<tr class="row-1 odd">
		<th class="column-1">Title</th><th class="column-2">Format</th><th class="column-3">Price</th>
	</tr>
</thead>
<tbody class="row-hover">
	<tr class="row-2 even">
		<td class="column-1"><a href="http://oreilly.com/catalog/9780596526788/">bash Cookbook</a></td><td class="column-2">Print</td><td class="column-3">$49.99</td>
	</tr>
	<tr class="row-3 odd">
		<td class="column-1"><a href="http://oreilly.com/catalog/9780596510046/">Beautiful Code</a></td><td class="column-2">Print + Ebook</td><td class="column-3">$44.49</td>
	</tr>
	<tr class="row-4 even">
		<td class="column-1"><a href="http://oreilly.com/catalog/9780596155407/">Being Geek</a></td><td class="column-2">Print</td><td class="column-3">$24.99</td>
	</tr>
	<tr class="row-5 odd">
		<td class="column-1"><a href="http://oreilly.com/catalog/9780596155933/">CSS Cookbook, Third Edition</a></td><td class="column-2">Print</td><td class="column-3">$49.99</td>
	</tr>
	<tr class="row-6 even">
		<td class="column-1"><a href="http://oreilly.com/catalog/9781449388393/">Hackers</a></td><td class="column-2">Print</td><td class="column-3">$21.99</td>
	</tr>
	<tr class="row-7 odd">
		<td class="column-1"><a href="http://oreilly.com/catalog/9780596157609/">HTML &amp; CSS: The Good Parts</a></td><td class="column-2">Print</td><td class="column-3">$34.99</td>
	</tr>
	<tr class="row-8 even">
		<td class="column-1"><a href="http://oreilly.com/catalog/9780596004613/">Linux Server Hacks</a></td><td class="column-2">Print</td><td class="column-3">$24.95</td>
	</tr>
	<tr class="row-9 odd">
		<td class="column-1"><a href="http://oreilly.com/catalog/9780596100827/">Linux Server Hacks, Volume Two</a></td><td class="column-2">Print</td><td class="column-3">$39.99</td>
	</tr>
	<tr class="row-10 even">
		<td class="column-1"><a href="http://oreilly.com/catalog/9780596101190/">Open Source for the Enterprise</a></td><td class="column-2">Print</td><td class="column-3">$22.95</td>
	</tr>
	<tr class="row-11 odd">
		<td class="column-1"><a href="http://oreilly.com/catalog/9780596529260/">RESTful Web Services</a></td><td class="column-2">Print</td><td class="column-3">$39.99</td>
	</tr>
	<tr class="row-12 even">
		<td class="column-1"><a href="http://oreilly.com/catalog/9780596801687/">RESTful Web Services Cookbook</a></td><td class="column-2">Print</td><td class="column-3">$39.99</td>
	</tr>
	<tr class="row-13 odd">
		<td class="column-1"><a href="http://oreilly.com/catalog/9780596523695/">Ruby Cookbook</a></td><td class="column-2">Print</td><td class="column-3">$49.99</td>
	</tr>
	<tr class="row-14 even">
		<td class="column-1"><a href="http://oreilly.com/catalog/9780596801502/">Windows PowerShell Cookbook, Second Edition</a></td><td class="column-2">Print</td><td class="column-3">$54.99</td>
	</tr>
</tbody>
</table>

<p>That&#8217;s right, a total of $499.29.  I&#8217;m sure it&#8217;s possible to get closer to the $500 limit, but my goal was books I want and I will read.  I&#8217;m happy with this list.  Go read the rules an get your own entry in and best of luck.</p>
]]></content:encoded>
			<wfw:commentRss>http://parazoid.net/2011/02/13/oreilly-media-wish-list-sweepstakes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>November is here</title>
		<link>http://parazoid.net/2010/11/01/november-is-here/</link>
		<comments>http://parazoid.net/2010/11/01/november-is-here/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 20:12:51 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux journal]]></category>
		<category><![CDATA[movember]]></category>
		<category><![CDATA[november]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://parazoid.net/?p=150</guid>
		<description><![CDATA[If you somehow missed the fact that it&#8217;s November 1 or this past weekend was Halloween, November is here. So what? There are plenty of things going on in November in case you need more than all the new comics, games, TV, movies, etc. Movember: You&#8217;ve spent all of October thinking about breast cancer awareness, [...]]]></description>
			<content:encoded><![CDATA[<p>If you somehow missed the fact that it&#8217;s November 1 or this past weekend was Halloween, November is here.  So what?  There are plenty of things going on in November in case you need more than all the new comics, games, TV, movies, etc.</p>
<p><a href="http://www.movember.com"><img src="/blag/wp-content/uploads/2010/11/moustache-logo11.png" alt="Movember" width="42" height="9" class="alignleft size-full wp-image-150" />Movember</a>: You&#8217;ve spent all of October thinking about breast cancer awareness, which is great but now you need something else.  Enter Movember, a month of moustache growing to bring aware to men&#8217;s health concers.  No, this is not just a silly gimmic, this actually does raise money and awareness.  Head over to <a href="http://www.movember.com"> www.movember.com</a> to find out more, register, and check out various moustache styles to choose from.</p>
<p><a href="http://www.nablopomo.com/">NaBloPoMo</a>: Yes, I&#8217;ve blogged about it before but it is time once more for National Blog Posting Month.  I could have sworn this was an annual thing that took place in November but it appears to have branched out to now have themes for each month, November being &#8220;there is no theme&#8221; month.  If posting regularly is something you are interested in go register and you might win prizes.</p>
<p><a href="http://www.nanowrimo.org/"><img src="/blag/wp-content/uploads/2010/11/nano-th1.jpg" alt="National November Writing Month" width="160" height="120" class="alignright size-full wp-image-152" />NaNoWriMo</a>: National November Writing Month, the predecessor to NaBloPoMo.  Yes I&#8217;m promoting another reason to have people write this month.  NaNoWriMo gives people a goal of writing a 50,000 word book over the course of the month.  But check out their site as it is also a fundraiser for young writers, but be patient as they don&#8217;t seem to be handling load well after having a <a href="http://lifehacker.com/5678654/">Lifehacker post</a> on them.</p>
<p><strong>Edit:</strong> I did not see this until the second day of the month, but <a href="http://www.linuxjournal.com">Linux Journal</a> is running a <a href="http://www.linuxjournal.com/content/daily-giveaways-entire-month-november">daily giveaway</a> each day of the month in celebration of the 200th issue.  No purchase is necessary so head over to <a href="http://www.linuxjournal.com/giveaway">http://www.linuxjournal.com/giveaway</a> for your chance to enter for a variety of things you can win.</p>
]]></content:encoded>
			<wfw:commentRss>http://parazoid.net/2010/11/01/november-is-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

