<?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>Think Bohemian &#187; systems administration</title>
	<atom:link href="http://www.thinkbohemian.com/category/systems-administration/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thinkbohemian.com</link>
	<description>Secede from Convention in Life and Code</description>
	<lastBuildDate>Mon, 26 Jul 2010 17:13:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How I got WhySpam.Me from Page Rank 0 to 4 in Four Months</title>
		<link>http://www.thinkbohemian.com/2010/04/16/how-i-got-whyspam-me-from-page-rank-0-to-4-in-four-months/</link>
		<comments>http://www.thinkbohemian.com/2010/04/16/how-i-got-whyspam-me-from-page-rank-0-to-4-in-four-months/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 19:00:37 +0000</pubDate>
		<dc:creator>Richard Schneeman</dc:creator>
				<category><![CDATA[Musings]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[systems administration]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[page rank]]></category>
		<category><![CDATA[pr]]></category>
		<category><![CDATA[press]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.thinkbohemian.com/?p=397</guid>
		<description><![CDATA[Back in January I got serious about improving, my disposable email app, WhySpam.Me’s search engine  ranking. I started religiously checking Hacker News and paying specific  attention to search engine optimization (SEO) articles. Since then i’ve  gone from page rank (PR) zero to four in a little under four months, you can see [...]]]></description>
			<content:encoded><![CDATA[<p>Back in January I got serious about improving, my <a href="http://whyspam.me">disposable email</a> app, WhySpam.Me’s search engine  ranking. I started religiously checking Hacker News and paying specific  attention to search engine optimization (SEO) articles. Since then i’ve  gone from <a href="http://en.wikipedia.org/wiki/PageRank">page rank</a> (PR) zero to four in a little under four months, you can see for  yourself using <a href="http://prchecker.info/">prchecker</a> or <a href="http://www.rapidsitecheck.com/all-datacenters.php?domain=whyspam.me&amp;botInfo=given&amp;__ec_i=ec.1271165549.e5e3bbf23822daf6c30d14b496a120d2&amp;__ec_s=hjnt3&amp;submit=Submit">rapidSiteCheck</a>.  This is the story of how I did it:</p>
<p><a href=" http://blog.whyspam.me/index.php/2010/04/16/page-rank-0-to-4-in-under-four-months/">Page Rank 0 to 4 in Four Months</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinkbohemian.com/2010/04/16/how-i-got-whyspam-me-from-page-rank-0-to-4-in-four-months/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pretty Permalinks with Wordpress and Nginx</title>
		<link>http://www.thinkbohemian.com/2010/01/31/pretty-permalinks-with-wordpress-and-nginx/</link>
		<comments>http://www.thinkbohemian.com/2010/01/31/pretty-permalinks-with-wordpress-and-nginx/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 17:31:34 +0000</pubDate>
		<dc:creator>Richard Schneeman</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[systems administration]]></category>
		<category><![CDATA[conf]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[permalink]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.thinkbohemian.com/?p=331</guid>
		<description><![CDATA[A permalink is a permanent link to an article or blog entry. Its what you get when a user clicks on the titles of one of your wordpress entries, so if they want to give the link to someone else, the url will always be the same. By default wordpress will make the permalink to [...]]]></description>
			<content:encoded><![CDATA[<p>A <a href="http://en.wikipedia.org/wiki/Permalink">permalink</a> is a permanent link to an article or blog entry. Its what you get when a user clicks on the titles of one of your wordpress entries, so if they want to give the link to someone else, the url will always be the same. By default wordpress will make the permalink to the article the articles ID, so it would look like example.com/?p=123, which isn&#8217;t very descriptive. Instead if you log into your admin panel and select settings and then permalinks you can change the format of your links to something a little more human readable, and much more search friendly such as <a href="http://www.thinkbohemian.com/2010/01/29/national-instruments-extreme-video/">http://www.thinkbohemian.com/2010/01/29/national-instruments-extreme-video/</a> which tells you not only the date it was published but the title too.</p>
<p>You may find after you&#8217;ve changed your permalinks that your articles now all get a 404 error. This is because your server thinks that your looking for a file in the /2010/01/29/national-instruments-extreme-video/ directory. So we need to let our server know not to do that. There are plenty of examples of how to do the re-write if you&#8217;re using <a href="http://maisonbisson.com/blog/post/11617/wordpress-permalinks-mod_rewrite-and-avoiding-404s/">apache</a>, but if you&#8217;re an nginx fanboy like I am, there wasn&#8217;t very much information. So to make this happen we need to add a few extra lines under our nginx.conf under the location / { section like this:</p>
<pre>       location / {
        if (!-e $request_filename) {
            rewrite ^.*$ /index.php last;
         }
        }</pre>
<p>Enjoy the pretty permalinks!!</p>
<p>Update:</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinkbohemian.com/2010/01/31/pretty-permalinks-with-wordpress-and-nginx/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Waterloolabs</title>
		<link>http://www.thinkbohemian.com/2009/11/05/waterloolabs/</link>
		<comments>http://www.thinkbohemian.com/2009/11/05/waterloolabs/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 04:56:53 +0000</pubDate>
		<dc:creator>Richard Schneeman</dc:creator>
				<category><![CDATA[Austin]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[systems administration]]></category>

		<guid isPermaLink="false">http://www.thinkbohemian.com/?p=174</guid>
		<description><![CDATA[It&#8217;s official, I&#8217;ll be re-designing and re-writing Waterloolabs.com woohoo!! Even better than that, i&#8217;ll be hosting the site on my own servers. It&#8217;s hard to believe that in two years time i&#8217;ve gone from not knowing how website applications worked to hosting my own stack and serving a site capable of getting 100, 000 hits [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s official, I&#8217;ll be re-designing and re-writing <a href="http://www.waterloolabs.com">Waterloolabs.com</a> woohoo!! Even better than that, i&#8217;ll be hosting the site on my own servers. It&#8217;s hard to believe that in two years time i&#8217;ve gone from not knowing how website applications worked to hosting my own stack and serving a site capable of getting 100, 000 hits on a episode launch day (btw, thats only from the second episode, one can safely assume that number will increase).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinkbohemian.com/2009/11/05/waterloolabs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install RMagick and MySQL with SnowLeopard</title>
		<link>http://www.thinkbohemian.com/2009/10/29/install-rmagick-and-mysql-with-snowleopard/</link>
		<comments>http://www.thinkbohemian.com/2009/10/29/install-rmagick-and-mysql-with-snowleopard/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 18:29:31 +0000</pubDate>
		<dc:creator>Richard Schneeman</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[systems administration]]></category>

		<guid isPermaLink="false">http://www.thinkbohemian.com/?p=147</guid>
		<description><![CDATA[This post is mostly for myself, but the easiest way to install RMagick is  to download the script from:
http://onrails.org/articles/2009/09/04/rmagick-from-source-on-snow-leopard
and to execute it by entering into terminal
sudo sh rmagick-build.sh

If you get errors related to &#8220;jpeg&#8221; or &#8220;jpg&#8221; then make sure you don&#8217;t have the macports library installed:
sudo port uninstall jpeg

Then run this install script for only [...]]]></description>
			<content:encoded><![CDATA[<p>This post is mostly for myself, but the easiest way to install RMagick is  to download the script from:</p>
<p><a href="http://onrails.org/articles/2009/09/04/rmagick-from-source-on-snow-leopard">http://onrails.org/articles/2009/09/04/rmagick-from-source-on-snow-leopard</a></p>
<p>and to execute it by entering into terminal</p>
<pre>sudo sh rmagick-build.sh
</pre>
<p>If you get errors related to &#8220;jpeg&#8221; or &#8220;jpg&#8221; then make sure you don&#8217;t have the macports library installed:</p>
<pre><code>sudo port uninstall jpeg
</code></pre>
<p>Then run this install script for only installing image magick and all of its dependencies:</p>
<p><a rel="nofollow" href="http://github.com/masterkain/ImageMagick-sl">http://github.com/masterkain/ImageMagick-sl</a></p>
<p>After that install RMagick, and you should be good to go</p>
<pre><code>sudo gem install rmagick</code></pre>
<p>&lt;hr /&gt;</p>
<hr />
To install MySql from source you need to follow these instructions:</p>
<pre><a href="http://hivelogic.com/articles/compiling-mysql-on-snow-leopard/">http://hivelogic.com/articles/compiling-mysql-on-snow-leopard/</a></pre>
<p>Note: some of the version numbers don&#8217;t line up, but that&#8217;s an easy fix&#8230;just means you can&#8217;t copy and paste. Then you&#8217;ll probably want mysql admin:</p>
<p><a href="http://dev.mysql.com/get/Downloads/MySQLGUITools/mysql-gui-tools-5.0-r12-osx10.4-universal.dmg/from/pick#mirrors">MYSql Admin Download</a></p>
<p>then to get mysql admin to work with OS-X, we need to make sure mysql is running and to set the default configurations  in a new terminal window type:</p>
<pre>
<div>
<div>
<pre style="font-family: monospace;">mysqladmin <span style="color: #660033;">-u</span> root password <span style="color: #ff0000;">"mypassword"</span></pre>
</div>
</div>
</pre>
<p>Where &#8220;mypassword&#8221; needs to be replaced with your actual password. Once done you can launch mysqladmin from your application directory and connect to it using these settings:</p>
<pre>Servername: localhost</pre>
<pre>Username: root</pre>
<pre>Password: mypassword</pre>
<p><img class="alignleft size-full wp-image-155" title="mysql admin connection window" src="http://www.thinkbohemian.com/wp-content/uploads/2009/10/Screen-shot-2009-10-29-at-1.52.30-PM.png" alt="mysql admin connection window" width="415" height="285" /></p>
<p>Now you can then create new tables by going to &#8220;catalogs&#8221; and selecting the &#8220;+&#8221; button under schemata. Type in the name of your database and you&#8217;re good to go!</p>
<p>You can change your password in terminal any time by typing:</p>
<pre>mysqladmin -u root -p'mypassword' password "mynewpassword"</pre>
<p>Note: there is no space between the <strong>-p</strong> and <strong>&#8216;mypassword</strong>&#8216;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinkbohemian.com/2009/10/29/install-rmagick-and-mysql-with-snowleopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting Fresh</title>
		<link>http://www.thinkbohemian.com/2009/10/29/starting-fresh/</link>
		<comments>http://www.thinkbohemian.com/2009/10/29/starting-fresh/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 16:39:42 +0000</pubDate>
		<dc:creator>Richard Schneeman</dc:creator>
				<category><![CDATA[systems administration]]></category>

		<guid isPermaLink="false">http://www.thinkbohemian.com/?p=144</guid>
		<description><![CDATA[As I&#8217;m re-installing all of my system software, i&#8217;m taking the opportunity to learn about why, i&#8217;m doing the things i&#8217;m doing. I&#8217;m familiar with the whole sudo make install dance, but theres alot more going on that many how-to articles don&#8217;t touch. Here are a few really good articles discussing systems administration and the [...]]]></description>
			<content:encoded><![CDATA[<p>As I&#8217;m re-installing all of my system software, i&#8217;m taking the opportunity to learn about why, i&#8217;m doing the things i&#8217;m doing. I&#8217;m familiar with the whole sudo make install dance, but theres alot more going on that many how-to articles don&#8217;t touch. Here are a few really good articles discussing systems administration and the why of why we do certain things in unix and unix-like operating systems (OS X):</p>
<p>Note: none of these contain current instructions on how to install things, just interesting side information about why and how some of the installation items function.</p>
<p><a href="http://howto.wired.com/wiki/Compile_Software_from_Source_Code">Compile_Software_from_Source_Code</a></p>
<p><a href="http://hivelogic.com/articles/using_usr_local/">Using /usr/local</a></p>
<p><a href="http://hivelogic.com/articles/ruby-rails-leopard/">Installing Ruby, Rubygems, Rails, and Mongrel on Mac OS X 10.5 (Leopard)</a> (indepth with explanations as to why)</p>
<p><a href="http://hivelogic.com/articles/installing-mysql-on-mac-os-x/">Installing MySQL on Mac OS X</a></p>
<p>Thats all for now, i&#8217;ll update this article as i come across any good reads.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thinkbohemian.com/2009/10/29/starting-fresh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
