<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for 8ball-media.de</title>
	<atom:link href="http://8ball-media.de/wp/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://8ball-media.de/wp</link>
	<description>pieces from everything</description>
	<lastBuildDate>Sun, 07 Apr 2019 00:25:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4</generator>
	<item>
		<title>Comment on A New Desktop Design by Reinerstreeservices.com.au/</title>
		<link>http://8ball-media.de/wp/2010/08/a-new-desktop-design/#comment-27289</link>
		<dc:creator>Reinerstreeservices.com.au/</dc:creator>
		<pubDate>Sun, 07 Apr 2019 00:25:46 +0000</pubDate>
		<guid isPermaLink="false">http://8ball-media.de/2010/08/a-new-desktop-design/#comment-27289</guid>
		<description>Greetings! Very useful advice in this particular article!
It&#039;s the little changes which will make the largest changes.
Many thanks for sharing!</description>
		<content:encoded><![CDATA[<p>Greetings! Very useful advice in this particular article!<br />
It&#8217;s the little changes which will make the largest changes.<br />
Many thanks for sharing!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CasperJS &#8211; fail test with custom testcase-name in xml report by shoes with lifts</title>
		<link>http://8ball-media.de/wp/2014/08/1077/#comment-20373</link>
		<dc:creator>shoes with lifts</dc:creator>
		<pubDate>Wed, 29 Jun 2016 02:36:56 +0000</pubDate>
		<guid isPermaLink="false">http://8ball-media.de/wp/?p=1077#comment-20373</guid>
		<description>Very interesting points you have observed, thanks for putting up.</description>
		<content:encoded><![CDATA[<p>Very interesting points you have observed, thanks for putting up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Keep your ~/.bash_history entries unique by Philippe Petrinko</title>
		<link>http://8ball-media.de/wp/2011/05/keep-your-bash_history-entries-unique/#comment-3323</link>
		<dc:creator>Philippe Petrinko</dc:creator>
		<pubDate>Mon, 02 Mar 2015 20:59:42 +0000</pubDate>
		<guid isPermaLink="false">http://8ball-media.de/?p=803#comment-3323</guid>
		<description>Hi David,

AAMOF, there is already a builtin feature that allow control of bash history.

It is called ... HISTCONTROL.


HISTCONTROL

A colon-separated list of values controlling how commands are saved on the history list:

ignorespace	lines which begin with a space character are not saved in the history list
ignoredups	don&#039;t save lines matching the previous history entry
ignoreboth	short for ignorespace:ignoredups
erasedups	remove all previous lines matching the current line from the history list before the current line is saved

Check this on the internet, you&#039;ll see it fulfills your needs.

Thanks anyway for your Ruby code.

KUTGW !

-- Philippe Petrinko</description>
		<content:encoded><![CDATA[<p>Hi David,</p>
<p>AAMOF, there is already a builtin feature that allow control of bash history.</p>
<p>It is called &#8230; HISTCONTROL.</p>
<p>HISTCONTROL</p>
<p>A colon-separated list of values controlling how commands are saved on the history list:</p>
<p>ignorespace	lines which begin with a space character are not saved in the history list<br />
ignoredups	don&#8217;t save lines matching the previous history entry<br />
ignoreboth	short for ignorespace:ignoredups<br />
erasedups	remove all previous lines matching the current line from the history list before the current line is saved</p>
<p>Check this on the internet, you&#8217;ll see it fulfills your needs.</p>
<p>Thanks anyway for your Ruby code.</p>
<p>KUTGW !</p>
<p>&#8211; Philippe Petrinko</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A New Desktop Design by David Linse</title>
		<link>http://8ball-media.de/wp/2010/08/a-new-desktop-design/#comment-250</link>
		<dc:creator>David Linse</dc:creator>
		<pubDate>Thu, 20 Mar 2014 18:59:29 +0000</pubDate>
		<guid isPermaLink="false">http://8ball-media.de/2010/08/a-new-desktop-design/#comment-250</guid>
		<description>What is this useful for ? 
It looks like `md5sum` is a *nix only command as it does not work on OSX 10.6.x (?)</description>
		<content:encoded><![CDATA[<p>What is this useful for ?<br />
It looks like `md5sum` is a *nix only command as it does not work on OSX 10.6.x (?)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A New Desktop Design by Tarek</title>
		<link>http://8ball-media.de/wp/2010/08/a-new-desktop-design/#comment-246</link>
		<dc:creator>Tarek</dc:creator>
		<pubDate>Tue, 18 Mar 2014 03:23:54 +0000</pubDate>
		<guid isPermaLink="false">http://8ball-media.de/2010/08/a-new-desktop-design/#comment-246</guid>
		<description>FYI I&#039;m running somhneitg like this: 

&lt;code&gt;    
  $ for locale in $(locale -a); do \
      LC_ALL=$locale sort ./foo.txt &gt; $locale.txt; \
    done;
  $ md5sum *.txt &gt; sums
  $ md5sum *.txt &#124; awk  {print $1}&#039; &#124; sort &#124; uniq -c
&lt;/code&gt;

Which will show the number of different results, then you can grep the sums file for which locales sort in which order(s).
</description>
		<content:encoded><![CDATA[<p>FYI I&#8217;m running somhneitg like this: </p>
<p><code><br />
  $ for locale in $(locale -a); do \<br />
      LC_ALL=$locale sort ./foo.txt &gt; $locale.txt; \<br />
    done;<br />
  $ md5sum *.txt &gt; sums<br />
  $ md5sum *.txt | awk  {print $1}' | sort | uniq -c<br />
</code></p>
<p>Which will show the number of different results, then you can grep the sums file for which locales sort in which order(s).</p>
]]></content:encoded>
	</item>
</channel>
</rss>
