<?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>Raim &#187; history meme</title>
	<atom:link href="http://raim.codingfarm.de/blog/tag/history-meme/feed/" rel="self" type="application/rss+xml" />
	<link>http://raim.codingfarm.de/blog</link>
	<description>My personal front yard on the web</description>
	<lastBuildDate>Sat, 03 Jul 2010 20:31:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>History meme (2)</title>
		<link>http://raim.codingfarm.de/blog/2008/06/09/history-meme-2/</link>
		<comments>http://raim.codingfarm.de/blog/2008/06/09/history-meme-2/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 20:29:26 +0000</pubDate>
		<dc:creator>Rainer Müller</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[history meme]]></category>

		<guid isPermaLink="false">http://raim.codingfarm.de/blog/?p=5</guid>
		<description><![CDATA[$ history&#124;awk '{print $2}'&#124;sort &#124;uniq -c&#124;sort -rn&#124;head 1134 vim 791 make 516 port 508 svn 305 sudo 283 cd 127 la 124 man 116 wcgrep 103 ./lcs-bottom-up Some explanations: lcs-bottom-up is an implementation of LCS I needed for a talk For other explanations follow the history-meme tag.]]></description>
			<content:encoded><![CDATA[<p><code>$ history|awk '{print $2}'|sort |uniq -c|sort -rn|head<br />
1134 vim<br />
791 make<br />
516 port<br />
508 svn<br />
305 sudo<br />
283 cd<br />
127 la<br />
124 man<br />
116 wcgrep<br />
103 ./lcs-bottom-up</code></p>
<p><span id="more-5"></span>Some explanations:</p>
<ul>
<li><strong>lcs-bottom-up</strong> is an implementation of <a href="http://en.wikipedia.org/wiki/Longest_common_subsequence_problem">LCS</a> I needed for a talk</li>
</ul>
<p>For other explanations follow the <a href="/blog/tag/history-meme/">history-meme</a> tag.</p>
]]></content:encoded>
			<wfw:commentRss>http://raim.codingfarm.de/blog/2008/06/09/history-meme-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>History meme</title>
		<link>http://raim.codingfarm.de/blog/2008/06/02/history-meme/</link>
		<comments>http://raim.codingfarm.de/blog/2008/06/02/history-meme/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 17:12:37 +0000</pubDate>
		<dc:creator>Rainer Müller</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[history meme]]></category>

		<guid isPermaLink="false">http://raim.codingfarm.de/blog/?p=4</guid>
		<description><![CDATA[As I now have a blog, I can finally take part in the history meme: $ history&#124;awk '{print $2}'&#124;sort &#124;uniq -c&#124;sort -rn&#124;head 1052 vim 975 make 585 port 444 svn 278 cd 213 sudo 186 man 161 la 120 wcgrep 68 open Some explanations: port is MacPorts la is a shell alias for &#8216;ls -lA&#8217; [...]]]></description>
			<content:encoded><![CDATA[<p>As I now have a blog, I can finally take part in the history meme:</p>
<p><code>$ history|awk '{print $2}'|sort |uniq -c|sort -rn|head<br />
1052 vim<br />
975 make<br />
585 port<br />
444 svn<br />
278 cd<br />
213 sudo<br />
186 man<br />
161 la<br />
120 wcgrep<br />
68 open</code></p>
<p><span id="more-4"></span>Some explanations:</p>
<ul>
<li><strong>port</strong> is <a href="http://macports.org">MacPorts</a></li>
<li><strong>la</strong> is a shell alias for <em>&#8216;ls -lA&#8217;</em></li>
<li><strong>wcgrep</strong> is a little helper <a href="http://svn.collab.net/repos/svn/trunk/contrib/client-side/wcgrep">script</a> to grep inside <a href="http://svn.tigris.org">Subversion</a> working copies excluding <em>.svn</em> directories</li>
<li><strong>open</strong> is a command in Mac OS X to open a file with the associated application (something similar exists for Linux as <a href="http://portland.freedesktop.org/xdg-utils-1.0/xdg-open.html">xdg-open</a>)</li>
</ul>
<p>The rest should be clear. I am keeping 5000 commands in my history, so don&#8217;t be suprised by the high numbers. The relevant settings from my <em>.bashrc</em>:</p>
<p><code>export HISTSIZE=5000<br />
export HISTIGNORE="jobs,fg,bg"<br />
</code></p>
<p>I have seen this meme before and the output back then was really different (for example, there is no git in there although I use it occasionally). Maybe I will post this history stuff more often, as it might be interesting how my workflow changes over time. Weekly? See next monday <img src='http://raim.codingfarm.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://raim.codingfarm.de/blog/2008/06/02/history-meme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
