<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Matt Bug</title>
	
	<link>http://mattbug.com/blog</link>
	<description>Internet. Life. Debugged.</description>
	<lastBuildDate>Thu, 22 Oct 2009 20:14:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/MattBug" /><feedburner:info uri="mattbug" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Simple TO-DO lists for Mac: TaskPaper</title>
		<link>http://feedproxy.google.com/~r/MattBug/~3/KApbcPmfpAA/to-do-lists-taskpaper.html</link>
		<comments>http://mattbug.com/blog/to-do-lists-taskpaper.html#comments</comments>
		<pubDate>Thu, 22 Oct 2009 20:14:21 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Productivity]]></category>
		<category><![CDATA[gtd]]></category>
		<category><![CDATA[TaskPaper]]></category>
		<category><![CDATA[to-do]]></category>

		<guid isPermaLink="false">http://mattbug.com/blog/?p=64</guid>
		<description><![CDATA[Everyone who&#8217;s busy and want to be more organized should use to-do lists. At first my to-do list was my Gmail account, but it did not worked for me (if you use your email as to-do list I would recommend to watch this video: Inbox Zero by Merlin Mann). Then I tried to keep my [...]]]></description>
			<content:encoded><![CDATA[<p>Everyone who&#8217;s busy and want to be more organized should use <a href="http://en.wikipedia.org/wiki/Time_management#Task_list">to-do lists</a>. At first my to-do list was my Gmail account, but it did not worked for me (<em>if you use your email as to-do list I would recommend to watch this video: <a href="http://video.google.com/videoplay?docid=973149761529535925#">Inbox Zero by Merlin Mann</a></em>). Then I tried to keep my to-do&#8217;s in multiple text files &#8211; one file for every project I&#8217;m working on, and one file called <em>today.txt</em> whith my most important tasks for today &#8211; this was a bit complex system, but was working for me.</p>
<p><img class="alignleft size-full wp-image-65" title="taskpaper" src="http://mattbug.com/blog/wp-content/uploads/2009/10/taskpaper.jpg" alt="taskpaper" width="200" height="62" />Anyway, few months ago I found this simple and easy to use application called <a href="http://www.hogbaysoftware.com/products/taskpaper">TaskPaper</a>. I love it! I recommend to try TaskPaper for all of you who feel that you are not 100% happy with you to-do manager.</p>
<blockquote><p>For Mac users who want an easier way to make lists and stay organized. TaskPaper is a simple to-do list that’s surprisingly adept. Unlike today’s complex organizers, TaskPaper lets you focus on getting things done.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://mattbug.com/blog/to-do-lists-taskpaper.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://mattbug.com/blog/to-do-lists-taskpaper.html</feedburner:origLink></item>
		<item>
		<title>SEO: server downtime</title>
		<link>http://feedproxy.google.com/~r/MattBug/~3/ZAQEOb7zmy8/seo-server-downtime.html</link>
		<comments>http://mattbug.com/blog/seo-server-downtime.html#comments</comments>
		<pubDate>Wed, 21 Oct 2009 23:05:54 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://mattbug.com/blog/?p=54</guid>
		<description><![CDATA[Say you need to move your web servers to new data center, or upgrade some hardware or perform any other task that requires to power off your web servers. Here&#8217;s a solution that is recommended by most SEO&#8217;s and Google:
Configure the server to return a status of 503 (network unavailable), you can also add the [...]]]></description>
			<content:encoded><![CDATA[<p>Say you need to move your web servers to new data center, or upgrade some hardware or perform any other task that requires to power off your web servers. Here&#8217;s a solution that is recommended by most SEO&#8217;s and <a href="http://groups.google.com/group/Google_Webmaster_Help-Indexing/browse_thread/thread/32221070b5595d2c/">Google</a>:</p>
<p>Configure the server to return a status of 503 (network unavailable), you can also add the Retry-After response-header field to tell bots when to come back.</p>
<p>If you use PHP scripting language something like this should work:<br />
<code>&lt;?php<br />
    header("HTTP/1.1 503 Service Temporarily Unavailable");<br />
    header("Status: 503 Service Temporarily Unavailable");<br />
    header("Retry-After: 3600");<br />
    php?></code></p>
<p>Another thing &#8211; you shouldn&#8217;t use 301 (or any other) redirects. I mean if someone comes to yoursite.com/somepage.html this page should display the 503 not redirect to some yoursite.com/503.html page. </p>
<p>As for content you can show something like this:</p>
<p><code>&lt;title>503 Service Temporarily Unavailable</title><br />
    &lt;h1>Service Temporarily Unavailable&lt;/h1><br />
    &lt;p>Welcome to YourSite.com, we're currently under maintenance and will be offline until SOME DATE &#038; TIME. <br />Please try again later.&lt;/p></code></p>
<p>You can also add your logo or any other content you wish to show your visitors while your site is down.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattbug.com/blog/seo-server-downtime.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://mattbug.com/blog/seo-server-downtime.html</feedburner:origLink></item>
		<item>
		<title>Umbilical Brothers – Gli-Glitch</title>
		<link>http://feedproxy.google.com/~r/MattBug/~3/joB5d0sGrIs/umbilical-brothers-gli-glitch.html</link>
		<comments>http://mattbug.com/blog/umbilical-brothers-gli-glitch.html#comments</comments>
		<pubDate>Wed, 21 Oct 2009 22:50:29 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Video]]></category>
		<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://mattbug.com/blog/?p=51</guid>
		<description><![CDATA[Have you seen The Umbilical Borthers show?  This episode always makes me laugh :)

]]></description>
			<content:encoded><![CDATA[<p>Have you seen <a href="http://www.umbilicalbrothers.com/">The Umbilical Borthers</a> show?  This episode always makes me laugh :)</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/qlyfSiHR9-k&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/qlyfSiHR9-k&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://mattbug.com/blog/umbilical-brothers-gli-glitch.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://mattbug.com/blog/umbilical-brothers-gli-glitch.html</feedburner:origLink></item>
		<item>
		<title>How to increase size of VirtualBox VM disk</title>
		<link>http://feedproxy.google.com/~r/MattBug/~3/OC2ha1trdgk/increase-size-of-virtualbox-vm-disk.html</link>
		<comments>http://mattbug.com/blog/increase-size-of-virtualbox-vm-disk.html#comments</comments>
		<pubDate>Wed, 07 Oct 2009 00:30:20 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://mattbug.com/blog/?p=46</guid>
		<description><![CDATA[I needed more space in my WinXP VM, and here&#8217;s how I increased it&#8217;s disk size.

Currently (VirtualBox 3.0.6) there is no feature to resize .vdi images. But there is a workaround for that. You can increase the space available for your VM using these steps:

Create a new temporary virtual disk (with the size of your [...]]]></description>
			<content:encoded><![CDATA[<p><em><img class="alignright size-full wp-image-42" title="VirtualBox256" src="http://mattbug.com/blog/wp-content/uploads/2009/10/VirtualBox256.png" alt="VirtualBox256" width="154" height="154" />I needed more space in my WinXP VM, and here&#8217;s how I increased it&#8217;s disk size.<br />
</em><br />
Currently (<a href="http://www.virtualbox.org/">VirtualBox 3.0.6</a>) there is no feature to resize .vdi images. But there is a workaround for that. You can increase the space available for your VM using these steps:</p>
<ol>
<li><a href="http://www.virtualbox.org/manual/UserManual.html#vdis">Create a new temporary virtual disk</a> (with the size of your data on VM) and attach it to the VM</li>
<li>Boot to your VM and install a disk-cloning software (e.g. for Windows there is <a href="http://www.acronis.com">Acronis</a> <a href="http://en.wikipedia.org/wiki/Acronis_True_Image">True Image</a> or <a href="http://www.symantec.com/norton/ghost">Norton Ghost</a>), use it to create a backup/clone image file on the attached temporary disk.</li>
<li>Create a third virtual disk with the size you would like to have for your VM</li>
<li><a href="http://www.virtualbox.org/manual/UserManual.html#id2502797">Detach your original virtual disk from your VM</a>, attach the new bigger disk and the temporary disk (that has the backup/clone image) to your VM</li>
<li>Use Recovery disk (of the disk-cloning software you used in step 2) to boot to your VM (actually, <a href="http://www.virtualbox.org/manual/UserManual.html#id2502914">you can mount it&#8217;s image</a>) and use restore function to restore your files to the new larger disk.</li>
<li>Detach temporary disk and unmount the recovery disk.</li>
</ol>
<p>You should have your VM with the larger disk now. Check if everything is working OK, and delete the temporary and old disk images.<br />
This is just an example which worked perfectly for me, I believe you can achieve this using other clone/backup tools and maybe even w/o using the temporary virtual disk. Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://mattbug.com/blog/increase-size-of-virtualbox-vm-disk.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://mattbug.com/blog/increase-size-of-virtualbox-vm-disk.html</feedburner:origLink></item>
		<item>
		<title>How to reduce your VirtualBox disk image size</title>
		<link>http://feedproxy.google.com/~r/MattBug/~3/Z8g2gPJ0F6o/reduce-virtualbox-disk-size.html</link>
		<comments>http://mattbug.com/blog/reduce-virtualbox-disk-size.html#comments</comments>
		<pubDate>Sun, 04 Oct 2009 23:26:24 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://mattbug.com/blog/?p=36</guid>
		<description><![CDATA[I use VirtualBox on my Mac when I need to test/use/check something on Windows or Linux. This is very useful application from Sun (and it&#8217;s completely free!).
If you use VirtualBox, you&#8217;ve probably already seen that the size of the &#8220;.vdi&#8221; image file can be a lot bigger than disk space actually used in your Virtual [...]]]></description>
			<content:encoded><![CDATA[<p><em><img class="alignright size-full wp-image-42" title="VirtualBox256" src="http://mattbug.com/blog/wp-content/uploads/2009/10/VirtualBox256.png" alt="VirtualBox256" width="154" height="154" />I use <a href="http://www.virtualbox.org/">VirtualBox</a> on my Mac when I need to test/use/check something on Windows or Linux. This is very useful application from Sun (and it&#8217;s completely free!).</em></p>
<p>If you use VirtualBox, you&#8217;ve probably already seen that the size of the &#8220;.vdi&#8221; image file can be a lot bigger than disk space actually used in your Virtual Machine. And it grows with time as you use your VM.</p>
<p>There is a solution to that. You can shrink your vdi images to the size that files actually are using inside of them in 3 quick steps:</p>
<ol>
<li>Launch your VM and defragment the disk.</li>
<li>Zero free space (use <a title="sdelete app" href="http://technet.microsoft.com/en-us/sysinternals/bb897443.aspx">sdelete.exe</a> -c on Windows VM, there are tools for other OS&#8217;es too)</li>
<li>Compact the vdi file, e.g., on Mac I run such command in Terminal:<br />
<em>$ VBoxManage modifyhd WindowsXP.vdi &#8211;compact</em></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://mattbug.com/blog/reduce-virtualbox-disk-size.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://mattbug.com/blog/reduce-virtualbox-disk-size.html</feedburner:origLink></item>
		<item>
		<title>My way of organizing to-do lists and calendar</title>
		<link>http://feedproxy.google.com/~r/MattBug/~3/WyMRBdtL0Ps/my-way-of-organizing-to-do-lists-and-calendar.html</link>
		<comments>http://mattbug.com/blog/my-way-of-organizing-to-do-lists-and-calendar.html#comments</comments>
		<pubDate>Mon, 17 Nov 2008 20:28:31 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[gtd]]></category>
		<category><![CDATA[todo]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://mattbug.com/blog/?p=29</guid>
		<description><![CDATA[




Staying productive and getting things done are very popular questions these days &#8211; especially for those who are working at home. There are numerous various methods and practices, but I will put here a little advice, what I found working for me, three types of to-do&#8217;s &#8211; three steps:


Write down all tasks that are reoccurring [...]]]></description>
			<content:encoded><![CDATA[<div class="mceTemp">
<dl id="attachment_30" class="wp-caption alignleft" style="width: 310px;">
<dt class="wp-caption-dt"><a href="http://mattbug.com/blog/wp-content/uploads/2008/11/todo-list.jpg"><img class="size-full wp-image-30" title="todo-list" src="http://mattbug.com/blog/wp-content/uploads/2008/11/todo-list.jpg" alt="A to-do list" width="300" height="211" /></a></dt>
</dl>
</div>
<p>Staying productive and <a title="GTD" href="http://en.wikipedia.org/wiki/Getting_Things_Done">getting things done</a> are very popular questions these days &#8211; especially for those who are working at home. There are numerous various methods and practices, but I will put here a little advice, what I found working for me, three types of to-do&#8217;s &#8211; three steps:</p>
<p><span id="more-29"></span></p>
<ol>
<li>Write down all tasks that are reoccurring daily/weekly/monthly and add them to your calendar (I recommend to also set reminders for them);<br />
<em>This will define and let you know of your rhythm and routine. For some tasks you will have the exact time (for example weekly call with your client/boss) for other you just set it for your self &#8211; for example if you know that you have to send some report to someone every Monday evening, so you can reserve hour or two for this every Monday morning. I even recommend you to add such tasks as &#8220;have lunch&#8221;, &#8220;take a nap&#8221;, &#8220;exercise time!&#8221;, or &#8220;watch the news&#8221;, &#8220;check email&#8221;, &#8220;read important RSS feeds&#8221; etc.</em></li>
<li>Write down non-reoccurring tasks, group them by areas (personal, work, anything else) or by projects you&#8217;re working on and keep them close, prioritize what you can.<br />
<em>The most important part of this is not to forget to look at the to-do list before starting to work on any project/area and to not forget to instantly add new tasks to the to-do lists as soon as you find them. If it&#8217;s possible I recommend you to use free slots of the calendar, which left after the first step and use them for working on projects/areas tasks. When calendar informs you about the time to start to work on some project/area &#8211; just look into it&#8217;s to-do list (and if there isn&#8217;t such yet, take time to create one).</em></li>
<li>Have a Not-to-do list (Yes, I know, it sounds strange :), but<strong> &#8220;not to-do lists&#8221; work</strong>!). And I recommend you very much to see <a title="Not to-do list" href="http://www.52projects.com/52_projects/2005/09/a_nottodo_list.html">this list</a>. Review this and leave the things that fit you and add more.<br />
<em>I highly recommend to set a 15mins monthly task in your calendar for reviewing your not to-do list.</em></li>
</ol>
<p>Of course these steps are not for everyone, but hope this will help somebody :) Cheers!</p>
]]></content:encoded>
			<wfw:commentRss>http://mattbug.com/blog/my-way-of-organizing-to-do-lists-and-calendar.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://mattbug.com/blog/my-way-of-organizing-to-do-lists-and-calendar.html</feedburner:origLink></item>
		<item>
		<title>Nice tutorial – how to setup Apache, PHP &amp; MySQL on a Mac</title>
		<link>http://feedproxy.google.com/~r/MattBug/~3/F2kI3PWVhr4/nice-tutorial-how-to-setup-apache-php-mysql-on-a-mac.html</link>
		<comments>http://mattbug.com/blog/nice-tutorial-how-to-setup-apache-php-mysql-on-a-mac.html#comments</comments>
		<pubDate>Sat, 11 Oct 2008 16:26:47 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://mattbug.com/blog/?p=23</guid>
		<description><![CDATA[I recently bought a MacBook Pro and started learning and using MacOS X. At first it was quite wierd but the longer I use it the more I love it! Before this all my life I was a Windows user, I also have tried various other OS&#8217;es from time to time just of curiosity (various [...]]]></description>
			<content:encoded><![CDATA[<p>I recently bought a MacBook Pro and started learning and using MacOS X. At first it was quite wierd but the longer I use it the more I love it! Before this all my life I was a Windows user, I also have tried various other OS&#8217;es from time to time just of curiosity (various linux and *bsd distributions) but none of them was so good for me to replace windows, MacOS made it ;) It&#8217;s not that I do not like Windows XP &#8211; in fact I love it and use it on my old computer &#8211; through such a long time of working with Windows I have a really nice buch of various applications that make windows XP computer a very productive tool for me.</p>
<p>Anyway &#8211; as I have a Mac now, I wanted to make me a nice setup for web development which I still like to do when I have free time ;) I found <a href="http://www.stuff.yellowswordfish.com/installing-wordpress-on-your-apple-mac/">this tutorial</a> - it is really easy to understand and I highly recommend it for all people who want to save a lot of time on this task.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattbug.com/blog/nice-tutorial-how-to-setup-apache-php-mysql-on-a-mac.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://mattbug.com/blog/nice-tutorial-how-to-setup-apache-php-mysql-on-a-mac.html</feedburner:origLink></item>
		<item>
		<title>Business failure reasons</title>
		<link>http://feedproxy.google.com/~r/MattBug/~3/UrkgP_KKbZY/why-a-business-will-fail.html</link>
		<comments>http://mattbug.com/blog/why-a-business-will-fail.html#comments</comments>
		<pubDate>Mon, 29 Sep 2008 10:09:15 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Management]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[ideas]]></category>
		<category><![CDATA[startup]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://mattbug.com/blog/?p=13</guid>
		<description><![CDATA[Today I stumbled upon a Jason Calacanis&#8217; post to his email mailing list called &#8220;(The) Startup Depression&#8221; (I&#8217;ve put a link to a Google search because the original post was removed from TechCrunch). Some thoughts I liked the most:
There are three reasons why businesses can fail: 

it&#8217;s a bad idea 
bad execution
outside factors 

Examine your business with these three filters to [...]]]></description>
			<content:encoded><![CDATA[<p>Today I stumbled upon a Jason Calacanis&#8217; post to his <a href="http://www.calacanis.com/2008/07/11/official-announcement-regarding-my-retirement-from-blogging/" target="_blank">email mailing list</a> called &#8220;<a href="http://www.google.com/search?hl=en&amp;q=%28The%29+Startup+Depression&amp;btnG=Google+Search&amp;aq=f&amp;oq=">(The) Startup Depression</a>&#8221; <em>(I&#8217;ve put a link to a Google search because the original post was removed from <a href="http://www.techcrunch.com/">TechCrunch</a>)</em>. Some thoughts I liked the most:</p>
<p>There are three reasons why businesses can fail: </p>
<ul>
<li>it&#8217;s a bad idea </li>
<li>bad execution</li>
<li>outside factors </li>
</ul>
<p>Examine your business with these three filters to see where you&#8217;re at.</p>
<p>Outside factors are the things you cannot control, but Execution and Ideas are the things that you should review and re-estimate very often if you want your startup to succeed. Here&#8217;s how Calacanis ofers to do this:</p>
<p><span id="more-13"></span></p>
<p><strong>The Execution</strong></p>
<p>How well you&#8217;re executing?</p>
<ul>
<li>Are you ahead, behind or on schedule? </li>
<li>How everyone in your organization rank your product?</li>
<li>How outsiders rank your product and features?</li>
</ul>
<p>Put your project up against your two top competitors, compare yourself and your competitors on the top 10 features. </p>
<p>Execution is the easiest thing to fix, and you can do it one of two ways: </p>
<ul>
<li>get the people in your organization to perform at a higher level, </li>
<li>or get <a href="http://mattbug.com/blog/the-right-people.html">higher-level folks</a> into your organization.</li>
</ul>
<p>It really is that simple: folks can either step up or step out.</p>
<p><strong>The Idea</strong></p>
<p>If you&#8217;re idea is wrong, it really doesn&#8217;t matter. What matters is if the original idea allows you to evolve into your big idea.</p>
<ul>
<li>Have you adapted to your market? </li>
<li>Have your customers asked you for something different than you&#8217;re currently providing? </li>
<li>Have you given it to them?</li>
<li>After you give them what they want, can you anticipate what they&#8217;ll ask for next? </li>
<li>Are those items following a theme?</li>
</ul>
<p>Your first idea is rarely your best.</p>
<p>Indeed many of todays widely-known successful projects have started with totally different idea and than evolved.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattbug.com/blog/why-a-business-will-fail.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://mattbug.com/blog/why-a-business-will-fail.html</feedburner:origLink></item>
		<item>
		<title>Fighting cat allergy</title>
		<link>http://feedproxy.google.com/~r/MattBug/~3/x3GTtoyCODg/fighting-cat-allergy.html</link>
		<comments>http://mattbug.com/blog/fighting-cat-allergy.html#comments</comments>
		<pubDate>Tue, 16 Sep 2008 07:33:45 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Cats]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[allergy]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://mattbug.com/blog/?p=9</guid>
		<description><![CDATA[
Many cat-lovers cannot have cat at home because of allergy. If you feel itchy eyes, running nose or difficulties with breathing everytime you meet a cat then you probably have cat allergy and it is not recommended for you to live with a cat. But if you already got one &#8211; you DO NOT have [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://icanhascheezburger.com/2008/09/11/funny-pictures-u-kids-turn-dat-music-down/"><img class="mine_1772663 alignright" title="funny-pictures-cat-asks-you-to-turn-the-music-down" src="http://icanhascheezburger.wordpress.com/files/2008/09/funny-pictures-cat-asks-you-to-turn-the-music-down.jpg" alt="cat" width="304" height="198" /></a><br />
Many cat-lovers cannot have cat at home because of allergy. If you feel itchy eyes, running nose or difficulties with breathing everytime you meet a cat then you probably have cat allergy and it is not recommended for you to live with a cat. But if you already got one &#8211; you DO NOT have to get rid of your cat - here are some ways to controll the situation:</p>
<p><span id="more-9"></span></p>
<ul>
<li>Leave at least one room cat free.</li>
<li>Don&#8217;t let the cat sleep with you. (Your sleeping area should always be a cat free zone.)</li>
<li>Vacuum frequently. If possible, get someone else to do the vacuuming when you&#8217;re not home. Buy a vacuum cleaner with good HEPA filter for this.</li>
<li>Try to not leave your clothes where your cat can rub on them or sleep on them.</li>
<li>Wash your hands often &#8211; and try to avoid touching your eyes or nose after you touch your cat.</li>
<li>Wash all bedding in high-degree hot water at least twice a month.</li>
<li>Clean your cat at least twice a month with a special shampoo (you can use a parfume-free baby shampoo).</li>
<li>When the allergy symptoms flair up (especially this happens when you meet your friends&#8217; cats), use an anti-histamine medications to make you comfortable.</li>
</ul>
<p>Many people believe that allergy is caused by cat&#8217;s fur &amp; hair, but it is not true &#8211; the allergen is in cat saliva. This allergen is a protein called <a href="http://en.wikipedia.org/wiki/Fel_d_1">Fel d 1</a>. It is well described in this <a href="http://www.messybeast.com/allergy.htm">article about cat allergy</a>:</p>
<blockquote><p>When a cat washes itself, saliva is deposited on its fur (or skin in the case of hairless cats). The saliva dries into dust (dander or dandruff) which is released when a cat scratches or moves and when humans stroke or brush a cat.</p></blockquote>
<p>I hope this post will help you to live happilly with your cat. For more info read these online discussions: <a href="http://answers.yahoo.com/question/index?qid=20080827124737AAN9GxO">One</a>, <a href="http://au.answers.yahoo.com/question/index?qid=20080807042045AAbEvRn">Two</a>, <a href="http://www.surroundedbycats.com/aa-alergy.html">Three</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattbug.com/blog/fighting-cat-allergy.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://mattbug.com/blog/fighting-cat-allergy.html</feedburner:origLink></item>
		<item>
		<title>The right people</title>
		<link>http://feedproxy.google.com/~r/MattBug/~3/eL6dZkXyzRE/the-right-people.html</link>
		<comments>http://mattbug.com/blog/the-right-people.html#comments</comments>
		<pubDate>Mon, 15 Sep 2008 07:26:38 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Management]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[people]]></category>
		<category><![CDATA[startup]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://mattbug.com/blog/?p=7</guid>
		<description><![CDATA[This morning I stumbled upon a nice article named &#8220;Elements of a Successful Start-up&#8220;. Author overviews various aspects of start-up success discussed in blogosphere. Lots of interesting and useful tips.
I like this quote from TechCrunch&#8217;s post about hiring right people:
The most important part of hiring correctly is to not hire the wrong people. The second [...]]]></description>
			<content:encoded><![CDATA[<p>This morning I stumbled upon a nice article named &#8220;<a href="http://jenslapinski.wordpress.com/2008/03/09/elements-of-a-successful-start-up/">Elements of a Successful Start-up</a>&#8220;. Author overviews various aspects of start-up success discussed in blogosphere. Lots of interesting and useful tips.</p>
<p>I like this quote from <a href="http://www.techcrunch.com/2008/03/08/startups-must-hire-the-right-people-and-watch-every-penny/">TechCrunch&#8217;s post</a> about hiring right people:</p>
<blockquote><p>The most important part of hiring correctly is to not hire the wrong people. The second most important part of hiring correctly is to hire the right people. What that means is that it is better to not hire anyone at all if you can’t find the right person.</p>
<p>&lt;&#8230;&gt;</p>
<p>The right people are the ones that really, really want to work with you. You can tell they’re excited to be a part of the team. They actively look for problems to solve, and then solve them. This is a personality type that is very easy to spot once you know what to look for &#8211; they have fire in their eyes. They’re warriors.</p></blockquote>
<p>I totally agree with this. I have seen lots of interesting projects/ideas die because of hiring wrong people.</p>
]]></content:encoded>
			<wfw:commentRss>http://mattbug.com/blog/the-right-people.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://mattbug.com/blog/the-right-people.html</feedburner:origLink></item>
	</channel>
</rss>
