<?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>Smallest Business . com</title>
	<atom:link href="http://smallestbusiness.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://smallestbusiness.com</link>
	<description>The new Personal Business revolution</description>
	<lastBuildDate>Mon, 13 Feb 2012 13:05:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>PHP debugging with vim</title>
		<link>http://smallestbusiness.com/php-debugging-with-vim/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=php-debugging-with-vim</link>
		<comments>http://smallestbusiness.com/php-debugging-with-vim/#comments</comments>
		<pubDate>Mon, 13 Feb 2012 13:05:27 +0000</pubDate>
		<dc:creator>Ami</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://smallestbusiness.com/?p=196</guid>
		<description><![CDATA[http://www.apaddedcell.com/easy-php-debugging-ubuntu-using-xdebug-and-vim tldr; 1. Add ?XDEBUG_SESSION_START=1 to the end of the url 2. in vim press F5 and quickly switch to the browser and hit F5 to refresh. 3. switch back to vim, set breakpoint and hit F5 to reach it.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.apaddedcell.com/easy-php-debugging-ubuntu-using-xdebug-and-vim">http://www.apaddedcell.com/easy-php-debugging-ubuntu-using-xdebug-and-vim</a></p>
<p>tldr;</p>
<p>1. Add ?XDEBUG_SESSION_START=1 to the end of the url</p>
<p>2. in vim press F5 and quickly switch to the browser and hit F5 to refresh.</p>
<p>3. switch back to vim, set breakpoint and hit F5 to reach it.</p>
]]></content:encoded>
			<wfw:commentRss>http://smallestbusiness.com/php-debugging-with-vim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to find large files</title>
		<link>http://smallestbusiness.com/how-to-find-large-files/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-find-large-files</link>
		<comments>http://smallestbusiness.com/how-to-find-large-files/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 14:51:23 +0000</pubDate>
		<dc:creator>Ami</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://smallestbusiness.com/?p=191</guid>
		<description><![CDATA[sudo find / -name &#8216;*&#8217; -size +1G via RecoverLostDiskSpace &#8211; Community Ubuntu Documentation. And then, read: http://httpd.apache.org/docs/2.2/programs/rotatelogs.html BETTER: http://library.linode.com/linux-tools/utilities/logrotate]]></description>
			<content:encoded><![CDATA[<p>sudo find / -name &#8216;*&#8217; -size +1G</p>
<p>via <a href="https://help.ubuntu.com/community/RecoverLostDiskSpace">RecoverLostDiskSpace &#8211; Community Ubuntu Documentation</a>.</p>
<p>And then, read: <a href="http://httpd.apache.org/docs/2.2/programs/rotatelogs.html">http://httpd.apache.org/docs/2.2/programs/rotatelogs.html</a></p>
<p>BETTER: <a href="http://library.linode.com/linux-tools/utilities/logrotate">http://library.linode.com/linux-tools/utilities/logrotate</a></p>
]]></content:encoded>
			<wfw:commentRss>http://smallestbusiness.com/how-to-find-large-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Out of disk free space in remote ubuntu server</title>
		<link>http://smallestbusiness.com/out-of-disk-free-space-in-remote-ubuntu-server/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=out-of-disk-free-space-in-remote-ubuntu-server</link>
		<comments>http://smallestbusiness.com/out-of-disk-free-space-in-remote-ubuntu-server/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 13:38:02 +0000</pubDate>
		<dc:creator>Ami</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://smallestbusiness.com/?p=186</guid>
		<description><![CDATA[I received a cron email from the server I have at linode, saying I ran out of disk space. I installed lsof using: Then I ran: to see the source of the problem since didn&#8217;t show the problem. After suspecting &#8230; <a href="http://smallestbusiness.com/out-of-disk-free-space-in-remote-ubuntu-server/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I received a cron email from the server I have at linode, saying I ran out of disk space.<br />
I installed lsof using: </p>
<pre class="brush: bash; title: ; notranslate">
sudo apt-get install lsof
</pre>
<p>Then I ran:
<pre class="brush: bash; title: ; notranslate">lsof | grep '(deleted)'</pre>
<p> to see the source of the problem since</p>
<pre class="brush: bash; title: ; notranslate">
df
du -h --max-depth=1 ./
</pre>
<p>didn&#8217;t show the problem.</p>
<p>After suspecting the mysql I did a
<pre class="brush: bash; title: ; notranslate">sudo reboot</pre>
<p> and now I consider adding this as a nightly cron job.</p>
]]></content:encoded>
			<wfw:commentRss>http://smallestbusiness.com/out-of-disk-free-space-in-remote-ubuntu-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flickr: ami heines&#8217; Photostream</title>
		<link>http://smallestbusiness.com/flickr-ami-heines-photostream/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=flickr-ami-heines-photostream</link>
		<comments>http://smallestbusiness.com/flickr-ami-heines-photostream/#comments</comments>
		<pubDate>Sat, 14 Jan 2012 19:29:38 +0000</pubDate>
		<dc:creator>Ami</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://smallestbusiness.com/?p=181</guid>
		<description><![CDATA[http://www.flickr.com/photos/74330247@N02/]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/74330247@N02/">http://www.flickr.com/photos/74330247@N02/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://smallestbusiness.com/flickr-ami-heines-photostream/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upload image from android to blog</title>
		<link>http://smallestbusiness.com/upload-image-from-android-to-blog/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=upload-image-from-android-to-blog</link>
		<comments>http://smallestbusiness.com/upload-image-from-android-to-blog/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 14:45:48 +0000</pubDate>
		<dc:creator>Ami</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://smallestbusiness.com/?p=179</guid>
		<description><![CDATA[Upload image to blog.]]></description>
			<content:encoded><![CDATA[<p><img title="1326293054469.jpg" class="alignnone" alt="image" src="http://smallestbusiness.com/wp-content/uploads/2012/01/wpid-1326293054469.jpg" /></p>
<p>Upload image to blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://smallestbusiness.com/upload-image-from-android-to-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogging from my android pc</title>
		<link>http://smallestbusiness.com/blogging-from-my-android-pc/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=blogging-from-my-android-pc</link>
		<comments>http://smallestbusiness.com/blogging-from-my-android-pc/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 13:18:40 +0000</pubDate>
		<dc:creator>Ami</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://smallestbusiness.com/?p=176</guid>
		<description><![CDATA[This is a small test post to see if blogging from a mini laptop is possible. I hope this works, I&#8217;m begginning to like this toy.]]></description>
			<content:encoded><![CDATA[<p>This is a small test post to see if blogging from a mini laptop is possible. I hope this works, I&#8217;m begginning to like this toy.</p>
]]></content:encoded>
			<wfw:commentRss>http://smallestbusiness.com/blogging-from-my-android-pc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CakePHP app/tmp permissions</title>
		<link>http://smallestbusiness.com/cakephp-apptmp-permissions/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=cakephp-apptmp-permissions</link>
		<comments>http://smallestbusiness.com/cakephp-apptmp-permissions/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 09:03:12 +0000</pubDate>
		<dc:creator>Ami</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://smallestbusiness.com/?p=168</guid>
		<description><![CDATA[first run the simple PHP script Whatever gets output by this script is your web server user. And then just cd into your app folder and do]]></description>
			<content:encoded><![CDATA[<pre class="brush: bash; title: ; notranslate">
chown -R www-data app/tmp
</pre>
<p>first run the simple PHP script</p>
<pre class="brush: php; title: ; notranslate">
 &lt;?php echo `whoami`; ?&gt;
</pre>
<p>Whatever gets output by this script is your web server user.<br />
And then just cd into your app folder and do</p>
<pre class="brush: bash; title: ; notranslate">
chown -R whateverGotOutputByThePHPScriptAbove tmp
</pre>
]]></content:encoded>
			<wfw:commentRss>http://smallestbusiness.com/cakephp-apptmp-permissions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTTP POST from PHP, without cURL</title>
		<link>http://smallestbusiness.com/http-post-from-php-without-curl/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=http-post-from-php-without-curl</link>
		<comments>http://smallestbusiness.com/http-post-from-php-without-curl/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 12:21:02 +0000</pubDate>
		<dc:creator>Ami</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://smallestbusiness.com/?p=166</guid>
		<description><![CDATA[Nice explanation on making ajax requests in PHP, sort of. HTTP POST from PHP, without cURL.]]></description>
			<content:encoded><![CDATA[<p>Nice explanation on making ajax requests in PHP, sort of.</p>
<p><a href="http://wezfurlong.org/blog/2006/nov/http-post-from-php-without-curl/">HTTP POST from PHP, without cURL</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://smallestbusiness.com/http-post-from-php-without-curl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mushroom &#8211; Powerful Immune Secret to Prevent Cold and Flu</title>
		<link>http://smallestbusiness.com/mushroom-powerful-immune-secret-to-prevent-cold-and-flu/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mushroom-powerful-immune-secret-to-prevent-cold-and-flu</link>
		<comments>http://smallestbusiness.com/mushroom-powerful-immune-secret-to-prevent-cold-and-flu/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 08:14:36 +0000</pubDate>
		<dc:creator>Ami</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://smallestbusiness.com/?p=164</guid>
		<description><![CDATA[Interesting properties of mushrooms, they help the environment and promote health! Mushroom &#8211; Powerful Immune Secret to Prevent Cold and Flu.]]></description>
			<content:encoded><![CDATA[<p>Interesting properties of mushrooms, they help the environment and promote health!</p>
<p><a href="http://articles.mercola.com/sites/articles/archive/2011/12/31/organic-mushrooms-for-immune-support.aspx?e_cid=20111231_DNL_art_1">Mushroom &#8211; Powerful Immune Secret to Prevent Cold and Flu</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://smallestbusiness.com/mushroom-powerful-immune-secret-to-prevent-cold-and-flu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rubik&#8217;s cube solution in one page</title>
		<link>http://smallestbusiness.com/rubiks-cube-solution-in-one-page/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rubiks-cube-solution-in-one-page</link>
		<comments>http://smallestbusiness.com/rubiks-cube-solution-in-one-page/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 19:55:36 +0000</pubDate>
		<dc:creator>Ami</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://smallestbusiness.com/?p=153</guid>
		<description><![CDATA[פתרון לקוביה הונגרית, לא אני המצאתי אותו, אך איבדתי את הדף מספיק פעמים והייתי צריך לשחזר אותו כדי שלתת לאחרים, אז הנה הכנתי אותו בפעם האחרונה וסרקתי אותו. תהנו עמיחי היינס]]></description>
			<content:encoded><![CDATA[<p style="text-align: right;">פתרון לקוביה הונגרית, לא אני המצאתי אותו, אך איבדתי את הדף מספיק פעמים והייתי צריך לשחזר אותו כדי שלתת לאחרים, אז הנה הכנתי אותו בפעם האחרונה וסרקתי אותו.<br />
תהנו<br />
עמיחי היינס</p>
<p style="text-align: right;"><a href="http://smallestbusiness.com/wp-content/uploads/2011/12/scan0001.jpg"><img class="alignnone size-large wp-image-158" title="Rubik's cube solution" src="http://smallestbusiness.com/wp-content/uploads/2011/12/scan0001-654x1024.jpg" alt="" width="584" height="914" /></a></p>
<p style="text-align: right;">
]]></content:encoded>
			<wfw:commentRss>http://smallestbusiness.com/rubiks-cube-solution-in-one-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

