<?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>mindeater.com - web builder</title>
	<atom:link href="http://www.mindeater.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mindeater.com</link>
	<description>on the web since 1998</description>
	<lastBuildDate>Mon, 03 Sep 2012 00:47:14 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Network windows 7 and OS X</title>
		<link>http://www.mindeater.com/network-windows-7-and-os-x/</link>
		<comments>http://www.mindeater.com/network-windows-7-and-os-x/#comments</comments>
		<pubDate>Mon, 03 Sep 2012 00:46:21 +0000</pubDate>
		<dc:creator>mindeater</dc:creator>
				<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://www.mindeater.com/?p=326</guid>
		<description><![CDATA[Goto Start Menu Search for: security Click on Local Security Policy Goto Local Policies&#62; Security Options Double Click on Network security: LAN Manager Authentication Look in Network for the OS X computer you have enabled sharing on ! Change level &#8230; <a href="http://www.mindeater.com/network-windows-7-and-os-x/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Goto Start Menu<br />
Search for: security<br />
Click on Local Security Policy<br />
Goto Local Policies&gt; Security Options<br />
Double Click on Network security: LAN Manager Authentication</p>
<p>Look in Network for the OS X computer you have enabled sharing on !<br />
Change level to: Send LM # LTLM Responses</p>
<p>Then, scroll down to Network security: Minimum session security for NTLM SSP<br />
De-select Require 128-bit encryption<br />
Hit OK</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mindeater.com/network-windows-7-and-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>add xCode install of git to your path</title>
		<link>http://www.mindeater.com/add-xcode-install-of-git-to-your-path/</link>
		<comments>http://www.mindeater.com/add-xcode-install-of-git-to-your-path/#comments</comments>
		<pubDate>Mon, 03 Sep 2012 00:28:04 +0000</pubDate>
		<dc:creator>mindeater</dc:creator>
				<category><![CDATA[OS X]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.mindeater.com/?p=322</guid>
		<description><![CDATA[http://vandadnp.wordpress.com/2012/04/06/git-from-command-line-after-installing-xcode-on-os-x-lion/ export PATH=”/Applications/Xcode.app/Contents/Developer/usr/libexec/git-core/”:$PATH]]></description>
				<content:encoded><![CDATA[<p>http://vandadnp.wordpress.com/2012/04/06/git-from-command-line-after-installing-xcode-on-os-x-lion/</p>
<p>export PATH=”/Applications/Xcode.app/Contents/Developer/usr/libexec/git-core/”:$PATH</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mindeater.com/add-xcode-install-of-git-to-your-path/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OS X apache permissions</title>
		<link>http://www.mindeater.com/os-x-apache-permissions/</link>
		<comments>http://www.mindeater.com/os-x-apache-permissions/#comments</comments>
		<pubDate>Mon, 03 Sep 2012 00:25:19 +0000</pubDate>
		<dc:creator>mindeater</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[Web Programming]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.mindeater.com/?p=319</guid>
		<description><![CDATA[Setting up a web server on OS X other than the built in one and serving sites from the Document directory always causes permissions headaches this stackoverflow response helped nut it out ( http://stackoverflow.com/questions/2001881/correct-owner-group-permissions-for-apache-2-site-files-folders-under-mac-os-x ) In Summary This is the most &#8230; <a href="http://www.mindeater.com/os-x-apache-permissions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Setting up a web server on OS X other than the built in one and serving sites from the Document directory always causes permissions headaches this stackoverflow response helped nut it out ( http://stackoverflow.com/questions/2001881/correct-owner-group-permissions-for-apache-2-site-files-folders-under-mac-os-x )</p>
<p>In Summary</p>
<p style="padding-left: 30px;">This is the most restrictive and safest way I&#8217;ve found, as explained here for hypothetical<code>~/my/web/root/</code> directory for your web content:</p>
<ul style="padding-left: 30px;">
<li style="padding-left: 30px;">For each parent directory leading to your web root (e.g. <code>~/my</code>, <code>~/my/web</code>, <code>~/my/web/root</code>):
<ul style="padding-left: 30px;">
<li style="padding-left: 30px;"><code>chmod go-rwx DIR</code> (nobody other than owner can access content)</li>
<li style="padding-left: 30px;"><code>chmod go+x DIR</code> (to allow &#8220;users&#8221; including _www to &#8220;enter&#8221; the dir)</li>
</ul>
</li>
<li style="padding-left: 30px;"><code>sudo chgrp -R _www ~/my/web/root</code> (all web content is now group _www)</li>
<li style="padding-left: 30px;"><code>chmod -R go-rwx ~/my/web/root</code> (nobody other than owner can access web content)</li>
<li style="padding-left: 30px;"><code>chmod -R g+rx ~/my/web/root</code> (all web content is now readable/executable/enterable by _www)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mindeater.com/os-x-apache-permissions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>www.yesprimeminister.com</title>
		<link>http://www.mindeater.com/www-yesprimeminister-com/</link>
		<comments>http://www.mindeater.com/www-yesprimeminister-com/#comments</comments>
		<pubDate>Fri, 02 Mar 2012 00:04:29 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.mindeater.com/?p=284</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.mindeater.com/www-yesprimeminister-com/www-yesprimeminister-com/" rel="attachment wp-att-285"><img class="alignnone size-medium wp-image-285" title="www.yesprimeminister.com" src="http://www.mindeater.com/wp-content/uploads/www.yesprimeminister.com_-400x291.png" alt="" width="400" height="291" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mindeater.com/www-yesprimeminister-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>www.thecompletegarden.com</title>
		<link>http://www.mindeater.com/www-thecompletegarden-com/</link>
		<comments>http://www.mindeater.com/www-thecompletegarden-com/#comments</comments>
		<pubDate>Fri, 02 Mar 2012 00:02:45 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.mindeater.com/?p=280</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.mindeater.com/www-thecompletegarden-com/www-thecompletegarden-com/" rel="attachment wp-att-281"><img class="alignnone size-medium wp-image-281" title="www.thecompletegarden.com" src="http://www.mindeater.com/wp-content/uploads/www.thecompletegarden.com_-400x292.png" alt="" width="400" height="292" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mindeater.com/www-thecompletegarden-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>www.whack.com</title>
		<link>http://www.mindeater.com/www-whack-com/</link>
		<comments>http://www.mindeater.com/www-whack-com/#comments</comments>
		<pubDate>Fri, 02 Mar 2012 00:00:50 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.mindeater.com/?p=276</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.mindeater.com/www-whack-com/www-whack-com/" rel="attachment wp-att-277"><img class="alignnone size-medium wp-image-277" title="www.whack.com" src="http://www.mindeater.com/wp-content/uploads/www.whack_.com_-400x223.png" alt="" width="400" height="223" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mindeater.com/www-whack-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>www.reggaefest.com</title>
		<link>http://www.mindeater.com/www-reggaefest-com/</link>
		<comments>http://www.mindeater.com/www-reggaefest-com/#comments</comments>
		<pubDate>Thu, 01 Mar 2012 23:58:50 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.mindeater.com/?p=272</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.mindeater.com/www-reggaefest-com/www-reggaefest-com/" rel="attachment wp-att-273"><img class="alignnone size-medium wp-image-273" title="www.reggaefest.com" src="http://www.mindeater.com/wp-content/uploads/www.reggaefest.com_-400x240.png" alt="" width="400" height="240" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mindeater.com/www-reggaefest-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>www.passionateflowers.com</title>
		<link>http://www.mindeater.com/www-passionateflowers-com/</link>
		<comments>http://www.mindeater.com/www-passionateflowers-com/#comments</comments>
		<pubDate>Thu, 01 Mar 2012 23:57:30 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.mindeater.com/?p=268</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.mindeater.com/www-passionateflowers-com/www-passionateflowers-com/" rel="attachment wp-att-269"><img class="alignnone size-medium wp-image-269" title="www.passionateflowers.com" src="http://www.mindeater.com/wp-content/uploads/www.passionateflowers.com_-400x285.png" alt="" width="400" height="285" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mindeater.com/www-passionateflowers-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>www.mindeater.com</title>
		<link>http://www.mindeater.com/www-mindeater-com/</link>
		<comments>http://www.mindeater.com/www-mindeater-com/#comments</comments>
		<pubDate>Thu, 01 Mar 2012 23:56:23 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.mindeater.com/?p=264</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.mindeater.com/www-mindeater-com/www-mindeater-com/" rel="attachment wp-att-265"><img class="alignnone size-medium wp-image-265" title="www.mindeater.com" src="http://www.mindeater.com/wp-content/uploads/www.mindeater.com_-400x317.png" alt="" width="400" height="317" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mindeater.com/www-mindeater-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>www.gardenersgiftimports.com</title>
		<link>http://www.mindeater.com/www-gardenersgiftimports-com/</link>
		<comments>http://www.mindeater.com/www-gardenersgiftimports-com/#comments</comments>
		<pubDate>Thu, 01 Mar 2012 23:55:00 +0000</pubDate>
		<dc:creator>mark</dc:creator>
				<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://www.mindeater.com/?p=260</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.mindeater.com/www-gardenersgiftimports-com/www-gardenersgiftimports-com/" rel="attachment wp-att-261"><img class="alignnone size-medium wp-image-261" title="www.gardenersgiftimports.com" src="http://www.mindeater.com/wp-content/uploads/www.gardenersgiftimports.com_-400x270.png" alt="" width="400" height="270" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mindeater.com/www-gardenersgiftimports-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
