<?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>Rachel's Blog</title>
	<atom:link href="http://www.willmer.com/kb/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.willmer.com/kb</link>
	<description></description>
	<lastBuildDate>Thu, 09 Feb 2012 18:30:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Steve Blank new &#8216;Lean Startup&#8217; book not available as ebook</title>
		<link>http://www.willmer.com/kb/2012/02/steve-blank-new-lean-startup-book-not-available-as-ebook/</link>
		<comments>http://www.willmer.com/kb/2012/02/steve-blank-new-lean-startup-book-not-available-as-ebook/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 18:25:33 +0000</pubDate>
		<dc:creator>Rachel</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Lean Startup]]></category>
		<category><![CDATA[Steve Blank]]></category>

		<guid isPermaLink="false">http://www.willmer.com/kb/?p=200</guid>
		<description><![CDATA[Steve Blank is famous as part of the &#8220;Lean Startup&#8221; / &#8220;Customer Development&#8221; idea of growing a business (and if you are in publishing and don&#8217;t know about these concepts, google them and learn because someone who does is about to eat your business&#8230;) He was scheduled to start a new &#8216;Lean Launchpad&#8217; course at [...]]]></description>
			<content:encoded><![CDATA[<p>Steve Blank is famous as part of the &#8220;Lean Startup&#8221; / &#8220;Customer<br />
Development&#8221; idea of growing a business (and if you are in publishing<br />
and don&#8217;t know about these concepts, google them and learn because<br />
someone who does is about to eat your business&#8230;)</p>
<p>He was scheduled to start a new &#8216;Lean Launchpad&#8217; course at Stanford<br />
this month, available free over the Internet. But he&#8217;s postponed it<br />
for two months to rewrite the course based on his new book &#8220;The<br />
Startup Owner&#8217;s Manual&#8221;, available next month.</p>
<p><a href="http://steveblank.com/2012/02/09/two-giant-steps-forward-for-entrepreneurs/">http: //steveblank.com/2012/02/09/two-giant-steps-forward-for-entrepreneurs</a></p>
<p>Almost every comment on his blog page says &#8220;Great! Want the new book!<br />
Please can we have an ebook version?&#8221;</p>
<p>He is undoubtedly someone worth listening to; I&#8217;m really looking<br />
forward to the course.</p>
<p>But I do find it slightly amusing that he didn&#8217;t do the &#8220;Customer<br />
Development&#8221; about his own book <img src='http://www.willmer.com/kb/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Would it *really* have been that hard to release both a physical book<br />
and an ebook at the same time?</p>
<p>It looks as though he&#8217;s decided to self-publish, and is using Amazon<br />
for payments. But not for publishing. Strange.</p>
<p>P.S. Why do I care? Because I want to buy the book and he&#8217;s just doubled the price for me here in the UK</p>
<blockquote><pre>
Item(s) Subtotal: 	$39.95
Shipping &#038; Handling: 	$32.90
Estimated Tax: 	$0.00
Order Total: 	$72.85
</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.willmer.com/kb/2012/02/steve-blank-new-lean-startup-book-not-available-as-ebook/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Minor gotcha with Liza Daly&#8217;s fast_iter</title>
		<link>http://www.willmer.com/kb/2012/02/minor-gotcha-with-liza-dalys-fast_iter/</link>
		<comments>http://www.willmer.com/kb/2012/02/minor-gotcha-with-liza-dalys-fast_iter/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 14:27:00 +0000</pubDate>
		<dc:creator>Rachel</dc:creator>
				<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.willmer.com/kb/?p=195</guid>
		<description><![CDATA[http://www.ibm.com/developerworks/xml/library/x-hiperfparse This is a really useful article about &#8220;High-performance XML parsing in Python with lxml&#8221;. But there&#8217;s one gotcha I&#8217;ve discovered with the fast_iter() method described therein. Can&#8217;t comment on that website without getting yet another developer ID, so I&#8217;ll describe the issue here and hope that Google picks it up. The problem comes with [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ibm.com/developerworks/xml/library/x-hiperfparse">http://www.ibm.com/developerworks/xml/library/x-hiperfparse</a></p>
<p>This is a really useful article about &#8220;High-performance XML parsing in Python with lxml&#8221;.</p>
<p>But there&#8217;s one gotcha I&#8217;ve discovered with the fast_iter() method described therein. Can&#8217;t comment on that website without getting yet another developer ID, so I&#8217;ll describe the issue here and hope that Google picks it up.</p>
<p>The problem comes with nested tags with the same name.</p>
<p>For example:</p>
<p><code><br />
&lt;product&gt;<br />
  &lt;data&gt;<br />
    &lt;product&gt;Some useful data&lt;/product&gt;<br />
  &lt;/data&gt;<br />
&lt;/product&gt;<br />
</code></p>
<p>As far as I can see, the internal &#8220;product&#8221; will be cleared before the external one is handled, leaving with you with an empty tag.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.willmer.com/kb/2012/02/minor-gotcha-with-liza-dalys-fast_iter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop Telling Everyone To Do Startups &#8211; Tell Them to Not Do It!</title>
		<link>http://www.willmer.com/kb/2011/12/stop-telling-everyone-to-do-startups-tell-them-to-not-do-it/</link>
		<comments>http://www.willmer.com/kb/2011/12/stop-telling-everyone-to-do-startups-tell-them-to-not-do-it/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 01:07:03 +0000</pubDate>
		<dc:creator>Rachel</dc:creator>
				<category><![CDATA[Op-Ed]]></category>

		<guid isPermaLink="false">http://www.willmer.com/kb/?p=187</guid>
		<description><![CDATA[As a woman who has run a startup, I&#8217;m confused by the furore about Penelope Trunk&#8217;s article &#8220;Stop Telling Women To Do Startups&#8221;. I&#8217;d encourage anyone to think about working for themselves; I&#8217;ve found it on the whole more fun and better paid than working for others, you certainly have a closer idea of when [...]]]></description>
			<content:encoded><![CDATA[<p>As a woman who has run a startup, I&#8217;m confused by the furore about Penelope Trunk&#8217;s article &#8220;Stop Telling Women To Do Startups&#8221;.</p>
<p>I&#8217;d encourage anyone to think about working for themselves; I&#8217;ve found it on the whole more fun and better paid than working for others, you certainly have a closer idea of when your employer (= you) is going to run out of money and stop paying you&#8230;</p>
<p>But running a startup? When I founded my first startup in 1995, I&#8217;d always say to anyone who was thinking about starting their own &#8211; &#8220;Don&#8217;t Do It&#8221;. On the basis that if anyone was put off by that minor pushback, they&#8217;d never be able to stand the real pressure of actually doing it!</p>
<p>So the idea of telling anyone &#8211; woman, man, whatever &#8211; that they *should* be doing a startup&#8230; Well, that seems to me like something that would only be said by someone with a vested interest; or from someone who had no idea what they were talking about and therefore should not be talking.</p>
<p>Rachel</p>
<p>P.S. The original article from Penelope Trunk had a different title “Investors fund mostly men, which is fine for women”. TechCrunch seem to have added their own title to the same article.</p>
<p>Here’s the links:</p>
<p><a href="http://blog.penelopetrunk.com/2011/12/11/men-are-getting-all-the-vc-funding-and-thats-fine/">http://blog.penelopetrunk.com/2011/12/11/men-are-getting-all-the-vc-funding-and-thats-fine/</a></p>
<p><a href="http://techcrunch.com/2011/12/11/stop-telling-women-to-do-startups/">http://techcrunch.com/2011/12/11/stop-telling-women-to-do-startups/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.willmer.com/kb/2011/12/stop-telling-everyone-to-do-startups-tell-them-to-not-do-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Query &#8216;SHOW PROCESSLIST&#8217;</title>
		<link>http://www.willmer.com/kb/2011/10/query-show-processlist/</link>
		<comments>http://www.willmer.com/kb/2011/10/query-show-processlist/#comments</comments>
		<pubDate>Mon, 03 Oct 2011 18:35:47 +0000</pubDate>
		<dc:creator>Rachel</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.willmer.com/kb/?p=184</guid>
		<description><![CDATA[SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST; gives the same info (in recent MySqls) and can be filtered;]]></description>
			<content:encoded><![CDATA[<p>SELECT * FROM INFORMATION_SCHEMA.PROCESSLIST;</p>
<p>gives the same info (in recent MySqls) and can be filtered;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.willmer.com/kb/2011/10/query-show-processlist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOWTO reconfigure timezone on ubuntu</title>
		<link>http://www.willmer.com/kb/2011/09/howto-reconfigure-timezone-on-ubuntu/</link>
		<comments>http://www.willmer.com/kb/2011/09/howto-reconfigure-timezone-on-ubuntu/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 07:28:23 +0000</pubDate>
		<dc:creator>Rachel</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.willmer.com/kb/?p=182</guid>
		<description><![CDATA[sudo dpkg-reconfigure tzdata]]></description>
			<content:encoded><![CDATA[<p>sudo dpkg-reconfigure tzdata</p>
]]></content:encoded>
			<wfw:commentRss>http://www.willmer.com/kb/2011/09/howto-reconfigure-timezone-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOWTO: setup a new remote git branch</title>
		<link>http://www.willmer.com/kb/2011/09/howto-setup-a-new-remote-git-branch/</link>
		<comments>http://www.willmer.com/kb/2011/09/howto-setup-a-new-remote-git-branch/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 04:18:23 +0000</pubDate>
		<dc:creator>Rachel</dc:creator>
				<category><![CDATA[Git]]></category>

		<guid isPermaLink="false">http://www.willmer.com/kb/?p=177</guid>
		<description><![CDATA[- on local machine, create the branch git branch mynewbranch - push to remote git push origin mynewbranch - remove local branch git branch -d mynewbranch - pull down new remote branch git checkout -b mynewbranch origin/mynewbranch For any other nodes which need this branch: git fetch origin git checkout -b mynewbranch origin/mynewbranch Based on [...]]]></description>
			<content:encoded><![CDATA[<p>- on local machine, create the branch<br />
<code>git branch mynewbranch</code></p>
<p>- push to remote<br />
<code>git push origin mynewbranch</code></p>
<p>- remove local branch<br />
<code>git branch -d mynewbranch</code></p>
<p>- pull down new remote branch<br />
<code>git checkout -b mynewbranch origin/mynewbranch</code></p>
<p>For any other nodes which need this branch:<br />
<code><br />
git fetch origin<br />
git checkout -b mynewbranch origin/mynewbranch<br />
</code></p>
<p>Based on <a href="http://progit.org/book/ch3-5.html">http://progit.org/book/ch3-5.html</a>, which has the clearest explanation I&#8217;ve seen.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.willmer.com/kb/2011/09/howto-setup-a-new-remote-git-branch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AttributeError: &#8216;Libvirt&#8217; object has no attribute &#8216;vm&#8217;</title>
		<link>http://www.willmer.com/kb/2011/08/attributeerror-libvirt-object-has-no-attribute-vm/</link>
		<comments>http://www.willmer.com/kb/2011/08/attributeerror-libvirt-object-has-no-attribute-vm/#comments</comments>
		<pubDate>Sun, 28 Aug 2011 08:47:11 +0000</pubDate>
		<dc:creator>Rachel</dc:creator>
				<category><![CDATA[KVM]]></category>

		<guid isPermaLink="false">http://www.willmer.com/kb/?p=173</guid>
		<description><![CDATA[Probable reason: Not providing the hostname option. (plus bug in handling the &#8211;overwrite option) Workaround: Use a distinct hostname]]></description>
			<content:encoded><![CDATA[<p>Probable reason: Not providing the hostname option. (plus bug in handling the &#8211;overwrite option)</p>
<p>Workaround: Use a distinct hostname</p>
]]></content:encoded>
			<wfw:commentRss>http://www.willmer.com/kb/2011/08/attributeerror-libvirt-object-has-no-attribute-vm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to describe a power cable</title>
		<link>http://www.willmer.com/kb/2011/08/how-to-describe-a-power-cable/</link>
		<comments>http://www.willmer.com/kb/2011/08/how-to-describe-a-power-cable/#comments</comments>
		<pubDate>Fri, 26 Aug 2011 08:12:33 +0000</pubDate>
		<dc:creator>Rachel</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.willmer.com/kb/?p=171</guid>
		<description><![CDATA[http://en.wikipedia.org/wiki/IEC_60320]]></description>
			<content:encoded><![CDATA[<p>http://en.wikipedia.org/wiki/IEC_60320</p>
]]></content:encoded>
			<wfw:commentRss>http://www.willmer.com/kb/2011/08/how-to-describe-a-power-cable/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ImportError: No module named pstats</title>
		<link>http://www.willmer.com/kb/2011/07/importerror-no-module-named-pstats/</link>
		<comments>http://www.willmer.com/kb/2011/07/importerror-no-module-named-pstats/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 17:56:22 +0000</pubDate>
		<dc:creator>Rachel</dc:creator>
				<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.willmer.com/kb/?p=167</guid>
		<description><![CDATA[Install python-profiler]]></description>
			<content:encoded><![CDATA[<p>Install python-profiler</p>
]]></content:encoded>
			<wfw:commentRss>http://www.willmer.com/kb/2011/07/importerror-no-module-named-pstats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MBR problem solved</title>
		<link>http://www.willmer.com/kb/2011/07/mbr-problem-solved/</link>
		<comments>http://www.willmer.com/kb/2011/07/mbr-problem-solved/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 17:36:56 +0000</pubDate>
		<dc:creator>Rachel</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.willmer.com/kb/?p=163</guid>
		<description><![CDATA[I&#8217;ve got one machine with a totally screwed MBR. Booted into Ubuntu LiveCD, mounted main partition. Reinstalled grub. Working. Phew. mount /dev/sda7 /media/maverick grub-install --root-directory=/media/maverick /dev/sda reboot]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve got one machine with a totally screwed MBR.</p>
<p>Booted into Ubuntu LiveCD, mounted main partition. Reinstalled grub. Working. Phew.</p>
<p><code><br />
mount /dev/sda7 /media/maverick<br />
grub-install --root-directory=/media/maverick /dev/sda<br />
reboot<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.willmer.com/kb/2011/07/mbr-problem-solved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

