<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2" -->
<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>jesse crouch's log</title>
	<link>http://ifakedit.com/log</link>
	<description>the official log and website of jesse allen crouch</description>
	<pubDate>Thu, 26 Jun 2008 22:28:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2</generator>
	<language>en</language>
			<item>
		<title>Censorship in America 1930-1970 - Comics and Movies</title>
		<link>http://ifakedit.com/log/2008/06/26/censorship-in-america-1930-1970-comics-and-movies/</link>
		<comments>http://ifakedit.com/log/2008/06/26/censorship-in-america-1930-1970-comics-and-movies/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 22:27:22 +0000</pubDate>
		<dc:creator>jessecrouch</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ifakedit.com/log/2008/06/26/censorship-in-america-1930-1970/</guid>
		<description><![CDATA[I&#8217;ve learned of some very interesting things that happened in this country recently as a result of researching about The Dark Knight and the very different character of the Joker (Heath Ledger) in this film than the previous Joker played by Jack Nicholson.
Comics Code Authority
The Comics Code Authority (CCA) is part of the Comics Magazine [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve learned of some very interesting things that happened in this country recently as a result of researching about <a href="http://en.wikipedia.org/wiki/The_Dark_Knight_(film)">The Dark Knight</a> and the very different character of <a href="http://en.wikipedia.org/wiki/Joker_(comics)">the Joker</a> (Heath Ledger) in this film than the previous Joker played by Jack Nicholson.</p>
<p><a href="http://en.wikipedia.org/wiki/Comics_Code_Authority">Comics Code Authority</a></p>
<blockquote><p>The Comics Code Authority (CCA) is part of the Comics Magazine Association of America (CMAA), and was created to regulate the content of comic books in the United States&#8230;</p>
<p>&#8230;The CCA was created in 1954 as part of the CMAA in response to public concern about what was deemed inappropriate material in many comic books. This included graphic depictions of violence and gore in crime and horror comics, as well as the sexual innuendo of what aficionados refer to as good girl art&#8230;</p>
<p>&#8230;the CCA prohibited the presentation of &#8220;policemen, judges, government officials, and respected institutions &#8230; in such a way as to create disrespect for established authority.&#8221; But it added the requirements that &#8220;in every instance good shall triumph over evil&#8221; and discouraged &#8220;instances of law enforcement officers dying as a result of a criminal&#8217;s activities.&#8221;&#8230;</p>
<p>&#8230;Depictions of &#8220;excessive violence&#8221; were forbidden, as were &#8220;lurid, unsavory, gruesome illustrations.&#8221; Vampires, werewolves, ghouls and zombies could not be portrayed. In addition, comics could not use the words &#8220;horror&#8221; or &#8220;terror&#8221; in their titles. The use of the word &#8220;crime&#8221; was subject to numerous restrictions&#8230;.
</p></blockquote>
<p>And then of course I did research about the further back-in-time censorship of the film industry.</p>
<p><a href="http://en.wikipedia.org/wiki/United_States_Motion_Picture_Production_Code_of_1930">United States Motion Picture Production Code of 1930</a></p>
<blockquote><p>The Production Code (also known as the Hays Code) was the set of industry censorship guidelines governing the production of United States motion pictures. The Motion Pictures Producers and Distributors Association (MPPDA), which later became the Motion Picture Association of America (MPAA), adopted the code in 1930, began effectively enforcing it in 1934&#8230;</p>
<p>The Production Code enumerated three &#8220;General Principles&#8221; As Follows:</p>
<ol>
<li>No picture shall be produced that will lower the moral standards of those who see it. Hence the sympathy of the audience should never be thrown to the side of crime, wrongdoing, evil or sin.</li>
<li>Correct standards of life, subject only to the requirements of drama and entertainment, shall be presented.</li>
<li>Law, natural or human, shall not be ridiculed, nor shall sympathy be created for its violation.</li>
</ol>
</blockquote>
<p>And then of course the more previous unanimous ruling of the Supreme Court of the United States that the First Amendment of the United States Constitution did not extend to motion pictures:</p>
<p><a href="http://en.wikipedia.org/wiki/Mutual_Film_Corporation_v._Industrial_Commission_of_Ohio">Mutual Film Corporation v. Industrial Commission of Ohio</a></p>
<blockquote><p>The Court described movies in some technical detail and noted their popularity, but wrote &#8220;they may be used for evil,&#8221; and for this reason, &#8220;We cannot regard [the censorship of movies] as beyond the power of government.&#8221;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ifakedit.com/log/2008/06/26/censorship-in-america-1930-1970-comics-and-movies/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Month name helper passing month number for Rails</title>
		<link>http://ifakedit.com/log/2008/06/18/month-name-helper-passing-month-number-for-rails/</link>
		<comments>http://ifakedit.com/log/2008/06/18/month-name-helper-passing-month-number-for-rails/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 21:21:32 +0000</pubDate>
		<dc:creator>jessecrouch</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ifakedit.com/log/2008/06/18/month-name-helper-passing-month-number-for-rails/</guid>
		<description><![CDATA[I couldn&#8217;t find a helper in the API to just display months if you&#8217;re storing them as numbers (1-12) so I made one.
Add this helper code to your application_helper.rb or other appropriate *_helper.rb file.

	def monthname(monthnumber)
		if monthnumber
			Date::MONTHNAMES[monthnumber]
		end
	end

Use it in your view like this:

< %=h monthname(item.month) %>

]]></description>
			<content:encoded><![CDATA[<p>I couldn&#8217;t find a helper in the API to just display months if you&#8217;re storing them as numbers (1-12) so I made one.<br />
Add this helper code to your application_helper.rb or other appropriate *_helper.rb file.</p>
<pre name="code" class="ruby">
	def monthname(monthnumber)
		if monthnumber
			Date::MONTHNAMES[monthnumber]
		end
	end
</pre>
<p>Use it in your view like this:</p>
<pre name="code" class="ruby">
< %=h monthname(item.month) %>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://ifakedit.com/log/2008/06/18/month-name-helper-passing-month-number-for-rails/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Business ventures.. Reputation management and question/answer-based social networking</title>
		<link>http://ifakedit.com/log/2008/06/02/business-ventures-reputation-management-and-questionanswer-based-social-networking/</link>
		<comments>http://ifakedit.com/log/2008/06/02/business-ventures-reputation-management-and-questionanswer-based-social-networking/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 15:38:50 +0000</pubDate>
		<dc:creator>jessecrouch</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ifakedit.com/log/2008/06/02/business-ventures-reputation-management-and-questionanswer-based-social-networking/</guid>
		<description><![CDATA[So I&#8217;ve had two really good ideas lately that I found already had plenty of other people already doing them in practice.  First one was a question/answer-based social networking site.  Three sites found:

http://www.pollsb.com/
http://wis.dm/
http://airow.com/

airow was closest to my idea&#8230; actually almost exactly.  Too bad they beat me to the punch three years ago. [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve had two really good ideas lately that I found already had plenty of other people already doing them in practice.  First one was a question/answer-based social networking site.  Three sites found:</p>
<ul>
<li><a href="http://www.pollsb.com/">http://www.pollsb.com/</a></li>
<li><a href="http://wis.dm/">http://wis.dm/</a></li>
<li><a href="http://airow.com/">http://airow.com/</a></li>
</ul>
<p>airow was closest to my idea&#8230; actually almost exactly.  Too bad they beat me to the punch three years ago.  It&#8217;s interesting that wis.dm got so much venture money.  I think they&#8217;re going about their site the entirely wrong way trying to section out their users and questions into different segments.  Their terminology and other things are their site are huge usability breaks too.</p>
<p>Also recently had ideas about reputation-management.  Found three sites which all basically do what I wanted to do (I think):</p>
<ul>
<li><a href="http://www.rapleaf.com/">http://www.rapleaf.com/</a></li>
<li><a href="http://www.trustplus.com/">http://www.trustplus.com/</a></li>
<li><a href="http://claimid.com/">http://claimid.com/</a></li>
</ul>
<p>Trustplus looks the coolest and most promising of the three.  Claimid is cool, but I don&#8217;t think it&#8217;ll go anywhere unless some more automation is added to it.  It&#8217;s cool to have something based around openid, but it shouldn&#8217;t require you to do <b>everything</b>.  Rapleaf is neat, but it&#8217;s been hard to find information about their roadmap.  It looks like they&#8217;re mainly looking into social networks and e-commerce for users.  Good place to start and I think Trustplus is starting there too, but Trustplus already has stuff built that you can use as a broswer addon; really good way to get it off the ground and working no matter how small your community is.</p>
<p>So these pretty much blew me out of the water.  It&#8217;s likely you&#8217;ll see at least one of these rep-management companies get huge in the next few years here.</p>
<p>My goal now is to look years more into the future and come up with the next big thing THEN instead of the next big thing from last year that five people have already started on.</p>
]]></content:encoded>
			<wfw:commentRss>http://ifakedit.com/log/2008/06/02/business-ventures-reputation-management-and-questionanswer-based-social-networking/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Working on Soashable</title>
		<link>http://ifakedit.com/log/2008/04/29/working-on-soashable/</link>
		<comments>http://ifakedit.com/log/2008/04/29/working-on-soashable/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 01:22:30 +0000</pubDate>
		<dc:creator>jessecrouch</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ifakedit.com/log/2008/04/29/working-on-soashable/</guid>
		<description><![CDATA[So it&#8217;s official.  I&#8217;m working on Soashable.  Not going to replace my current job, but it&#8217;s going to be a big focus for me now.  It&#8217;s basically an opensource clone of meebo.  It allows you to use your instant messaging accounts through a web interface.
Right now I&#8217;m mainly working design, research, [...]]]></description>
			<content:encoded><![CDATA[<p>So it&#8217;s official.  I&#8217;m working on <a href="http://soashable.com/">Soashable</a>.  Not going to replace my current job, but it&#8217;s going to be a big focus for me now.  It&#8217;s basically an opensource clone of <a href="http://www.meebo.com/">meebo</a>.  It allows you to use your instant messaging accounts through a web interface.</p>
<p>Right now I&#8217;m mainly working design, research, business/marketing strategy and internal documentation.</p>
]]></content:encoded>
			<wfw:commentRss>http://ifakedit.com/log/2008/04/29/working-on-soashable/feed/</wfw:commentRss>
		</item>
		<item>
		<title>OpenID plus another method of verification/validation</title>
		<link>http://ifakedit.com/log/2008/04/20/openid-plus-another-method-of-verificationvalidation/</link>
		<comments>http://ifakedit.com/log/2008/04/20/openid-plus-another-method-of-verificationvalidation/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 02:55:37 +0000</pubDate>
		<dc:creator>jessecrouch</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ifakedit.com/log/2008/04/20/openid-plus-another-method-of-verificationvalidation/</guid>
		<description><![CDATA[In thinking about using OpenID with TYWYK I&#8217;m now thinking about security issues with it.
OpenID is really just about as insecure as email is for authenticating.  Anyone can create an OpenID server (just like a mail server) and as many users as they want (just like a mail server).  OpenID is not a [...]]]></description>
			<content:encoded><![CDATA[<p>In thinking about using OpenID with <a href="http://tywyk.com/">TYWYK</a> I&#8217;m now thinking about security issues with it.</p>
<p>OpenID is really just about as insecure as email is for authenticating.  Anyone can create an OpenID server (just like a mail server) and as many users as they want (just like a mail server).  OpenID is not a spam-blocker and as far as I can tell never will be.</p>
<p>So how to verify?  Well we could send a verification link to the email address associated with the OpenID account, but that would be just as insecure as OpenID is.  I&#8217;m thinking now the best way to do it is require the user to fill out a CAPTCHA <i>with</i> their OpenID the first time they login to a site.  This would prevent automated spamming of user account creation.</p>
<h3>Other ideas</h3>
<p>On a sidenote there should be another level to this with white/black-listing.  There should be list lookups for OpenID providers just as there are for email servers.  With this you could allow first-time authentication <b>without</b> a CAPTCHA and still be safe.</p>
]]></content:encoded>
			<wfw:commentRss>http://ifakedit.com/log/2008/04/20/openid-plus-another-method-of-verificationvalidation/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Watching Rails logs realtime on Windows</title>
		<link>http://ifakedit.com/log/2008/04/20/watching-rails-in-realtime-on-windows/</link>
		<comments>http://ifakedit.com/log/2008/04/20/watching-rails-in-realtime-on-windows/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 16:25:11 +0000</pubDate>
		<dc:creator>jessecrouch</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ifakedit.com/log/2008/04/20/watching-rails-in-realtime-on-windows/</guid>
		<description><![CDATA[There&#8217;s no good tail -f equivalent for commandline in Windows.  I&#8217;ve tried the following with success.  All are free:

Lightweight and my favorite for now, pretty easy to customize: BareTail
Very lightweight:  Tail for Win32
Somewhat more heavyweight and customizable.  Easy to change highlight colors: MakeLogic Tail

All of these have tabbed/multi-buffer interfaces.
Just download one [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s no good <code>tail -f</code> equivalent for commandline in Windows.  I&#8217;ve tried the following with success.  All are free:</p>
<ul>
<li>Lightweight and my favorite for now, pretty easy to customize: <a href="http://www.baremetalsoft.com/baretail/">BareTail</a></li>
<li>Very lightweight:  <a href="http://sourceforge.net/project/showfiles.php?group_id=51715">Tail for Win32</a></li>
<li>Somewhat more heavyweight and customizable.  Easy to change highlight colors: <a href="http://www.makelogic.com/tail/TailHome.htm#Download">MakeLogic Tail</a></li>
</ul>
<p>All of these have tabbed/multi-buffer interfaces.<br />
Just download one and tell it where your rails app&#8217;s log/development.log file is.</p>
]]></content:encoded>
			<wfw:commentRss>http://ifakedit.com/log/2008/04/20/watching-rails-in-realtime-on-windows/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Using ReCAPTCHA on Rails</title>
		<link>http://ifakedit.com/log/2008/04/20/using-recaptcha-on-rails/</link>
		<comments>http://ifakedit.com/log/2008/04/20/using-recaptcha-on-rails/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 16:01:13 +0000</pubDate>
		<dc:creator>jessecrouch</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ifakedit.com/log/2008/04/20/using-recaptcha-on-rails/</guid>
		<description><![CDATA[For TYWYK I wanted to prevent spam early on, but still allow anyone to post.  I chose using a CAPTCHA.  I&#8217;m using Jason Perry&#8217;s ReCAPTCHA plugin which uses ReCAPTCHA.
It&#8217;s pretty straightforward.  Just read the README and all the comments on agilewebdevelopment and you should be good to go!
Only gotcha that I ran [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://ifakedit.com/log/wp-content/2008/04/recaptcha.png" title="recaptcha on tywyk"><img src="http://ifakedit.com/log/wp-content/2008/04/recaptcha.thumbnail.png" alt="recaptcha on tywyk" style="float: right;"/></a>For <a href="http://tywyk.com">TYWYK</a> I wanted to prevent spam early on, but still allow anyone to post.  I chose using a CAPTCHA.  I&#8217;m using <a href="http://agilewebdevelopment.com/plugins/recaptcha">Jason Perry&#8217;s ReCAPTCHA plugin</a> which uses <a href="http://recaptcha.net/">ReCAPTCHA</a>.</p>
<p>It&#8217;s pretty straightforward.  Just read the README and all the comments on agilewebdevelopment and you should be good to go!</p>
<p>Only gotcha that I ran into was making the ReCAPTCHA match <a href="http://tywyk.com/advice">the design on my submit page</a>.  Took me awhile to find <a href="http://recaptcha.net/fastcgi/demo/customtheme">this</a>, but basically I had to just copy/paste the HTML and manually insert my public key INSTEAD of using <code>recaptcha_tags</code>.</p>
<ul>
<li>Custom theming your ReCAPTCHA: <a href="http://recaptcha.net/fastcgi/demo/customtheme">http://recaptcha.net/fastcgi/demo/customtheme</a></li>
<li>Other security and CAPTCHA info for Rails: <a href="http://www.quarkruby.com/2007/9/20/ruby-on-rails-security-guide">http://www.quarkruby.com/2007/9/20/ruby-on-rails-security-guide</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ifakedit.com/log/2008/04/20/using-recaptcha-on-rails/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Safari: Web Inspector &gt; Network Profiler</title>
		<link>http://ifakedit.com/log/2008/04/09/safari-web-inspector-network-profiler/</link>
		<comments>http://ifakedit.com/log/2008/04/09/safari-web-inspector-network-profiler/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 19:45:48 +0000</pubDate>
		<dc:creator>jessecrouch</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ifakedit.com/log/2008/04/09/safari-web-inspector-network-profiler/</guid>
		<description><![CDATA[So I downloaded Safari 3.1 for Windows today and I started playing with the &#8220;Develop Menu&#8221;.  You can enable it through Edit>Preferences>Advanced and check &#8220;Show develop menu in menu bar&#8221;.
The network profiler thing on this is an amazing piece of work.  If you&#8217;re ever looking to do a performance assessment of a website [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://ifakedit.com/log/wp-content/2008/04/networkprofiler.png" title="safari network profiler"><img src="http://ifakedit.com/log/wp-content/2008/04/networkprofiler.thumbnail.png" alt="safari network profiler" style="float:right;" /></a>So I <a href="http://www.apple.com/safari/download/">downloaded Safari 3.1 for Windows</a> today and I started playing with the &#8220;Develop Menu&#8221;.  You can enable it through Edit>Preferences>Advanced and check &#8220;Show develop menu in menu bar&#8221;.</p>
<p>The network profiler thing on this is an amazing piece of work.  If you&#8217;re ever looking to do a performance assessment of a website based on page size/load times this is what you&#8217;ll want to use.  You can see how long it takes for the page to respond, how long each element takes to load and how big all of the page elements are individually or in groups.  I did one for my <a href="http://ifakedit.com/log/guides/small-budget-photograhpy/">small budget photo</a> page.  Check out the <a href="http://ifakedit.com/log/wp-content/2008/04/networkprofiler.png" title="safari network profiler">screenshot</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ifakedit.com/log/2008/04/09/safari-web-inspector-network-profiler/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Squatting on the toilet for health</title>
		<link>http://ifakedit.com/log/2008/04/06/squatting-on-the-toilet-for-health/</link>
		<comments>http://ifakedit.com/log/2008/04/06/squatting-on-the-toilet-for-health/#comments</comments>
		<pubDate>Sun, 06 Apr 2008 17:13:05 +0000</pubDate>
		<dc:creator>jessecrouch</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ifakedit.com/log/2008/04/06/squatting-on-the-toilet-for-health/</guid>
		<description><![CDATA[I often try to find ways to get back to nature in my life.  It may seem odd that my job involves me spending all day on my computer, but I really do try to incorporate the old ways of the world.  There&#8217;s a lot of ancient wisdom that has been lost for [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://naturesplatform.com/health_benefits.html" title="squatting position"><img src="http://ifakedit.com/log/wp-content/2008/04/rb3.thumbnail.gif" alt="squatting position" style="float: right;" /></a>I often try to find ways to get back to nature in my life.  It may seem odd that my job involves me spending all day on my computer, but I really do try to incorporate the old ways of the world.  There&#8217;s a lot of ancient wisdom that has been lost for one reason or another and I&#8217;m bent on bringing it back.</p>
<p>I&#8217;m male.  In the past few months however I&#8217;ve been sitting on the toilet when I go to the bathroom to help exercise my legs and also to prevent splashing.  It&#8217;s much easier cleaning up.</p>
<p>Recently I&#8217;ve been thinking more about it and thought that sitting really isn&#8217;t the way we&#8217;re meant to go to the bathroom though.  Whether it&#8217;s pee or poop there is no instance you can imagine in nature where one would sit down as though he was on a chair to do it.  I would say it&#8217;s likely that even men in older times would not stand all of the times they do it.  If you&#8217;ve ever peed standing in the wild you&#8217;ll find that you get a great deal of splash on yourself.</p>
<p>So I was watching a video on <a href="http://en.wikipedia.org/wiki/Qigong">qigong</a> the other day and the instructor on the tape mentioned it.  I thought what the hell I might as well try it.  So I did this morning.  No problems.  In fact it felt pretty good.  It&#8217;s a very comfortable position.  I could balance quite well on the platform of the toilet seat alone.</p>
<p>So after doing it I thought &#8220;well I wonder how many other people do this&#8221;, so of course I googled.  I didn&#8217;t really find numbers.. I found that most of Asia and Africa does it and most of the US and Europe does not pretty much.  But what was more striking to me than any numbers was facts I&#8217;ve found about health benefits:</p>
<ul>
<li><a href="http://naturesplatform.com/health_benefits.html">http://naturesplatform.com/health_benefits.html</a></li>
<li><a href="http://en.wikipedia.org/wiki/Squat_toilet#Arguments_in_favour_of_squat_toilets">http://en.wikipedia.org/wiki/Squat_toilet#Arguments_in_favour_of_squat_toilets</a></li>
<li><a href="http://hubpages.com/hub/squattoilet">http://hubpages.com/hub/squattoilet</a></li>
</ul>
<p>And the benefits:</p>
<ul>
<li>Makes elimination faster, easier and more complete.</li>
<li>Protects the nerves that control the prostate, bladder and uterus from becoming stretched and damaged.</li>
<li>Securely seals the ileocecal valve, between the colon and the small intestine. In the conventional sitting position, this valve is unsupported and often leaks during evacuation, contaminating the small intestine.</li>
<li>Relaxes the puborectalis muscle which normally chokes the rectum in order to maintain continence. </li>
<li>Uses the thighs to support the colon and prevent straining. Chronic straining on the toilet can cause hernias, diverticulosis, and pelvic organ prolapse. </li>
<li>A highly effective, non-invasive treatment for hemorrhoids, as shown by published clinical research. </li>
<li>For pregnant women, squatting avoids pressure on the uterus when using the toilet. Daily squatting helps prepare one for a more natural delivery.</li>
</ul>
<p>So I&#8217;m sold.  Probably won&#8217;t be buying a squat-style toilet ever since western ones work fine for me, but I&#8217;ll be squatting from now on =)</p>
]]></content:encoded>
			<wfw:commentRss>http://ifakedit.com/log/2008/04/06/squatting-on-the-toilet-for-health/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Munin - Awesome server monitoring software</title>
		<link>http://ifakedit.com/log/2008/04/05/munin-awesome-server-monitoring-software/</link>
		<comments>http://ifakedit.com/log/2008/04/05/munin-awesome-server-monitoring-software/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 22:41:59 +0000</pubDate>
		<dc:creator>jessecrouch</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ifakedit.com/log/2008/04/05/munin-awesome-server-monitoring-software/</guid>
		<description><![CDATA[I&#8217;ve used MRTG in the past.  It&#8217;s cool, but it&#8217;s hell to configure.  I just need something simple for a single server that just works.
Munin rules.. especially if you&#8217;re on Ubuntu/Debian.  It&#8217;s good for monitoring multiple servers or just one.  Here&#8217;s a demo.
Install is pretty much:
sudo apt-get install munin munin-node
Pretty much [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve used MRTG in the past.  It&#8217;s cool, but it&#8217;s hell to configure.  I just need something simple for a single server that <b>just works</b>.</p>
<p><a href="http://munin.projects.linpro.no/">Munin</a> rules.. especially if you&#8217;re on Ubuntu/Debian.  It&#8217;s good for monitoring multiple servers or just one.  <a href="http://munin.ping.uio.no/">Here&#8217;s a demo</a>.</p>
<p>Install is pretty much:<br />
<code>sudo apt-get install munin munin-node</code></p>
<p>Pretty much zero config if you&#8217;re starting a server from scratch.</p>
<p>Here are two of the sites I used to help me get up and running:</p>
<ul>
<li><a href="http://waste.mandragor.org/munin_tutorial/munin.html">http://waste.mandragor.org/munin_tutorial/munin.html - short guide</a></li>
<li><a href="http://www.debuntu.org/how-to-monitoring-a-server-with-munin">http://www.debuntu.org/how-to-monitoring-a-server-with-munin - big guide</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ifakedit.com/log/2008/04/05/munin-awesome-server-monitoring-software/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
