<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Patching tty-clock</title>
	<atom:link href="http://kmandla.wordpress.com/2009/04/10/patching-tty-clock/feed/" rel="self" type="application/rss+xml" />
	<link>http://kmandla.wordpress.com/2009/04/10/patching-tty-clock/</link>
	<description>K.Mandla's blog of Linux experiences</description>
	<lastBuildDate>Mon, 11 Feb 2013 18:19:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Clayton Holloway</title>
		<link>http://kmandla.wordpress.com/2009/04/10/patching-tty-clock/#comment-39440</link>
		<dc:creator><![CDATA[Clayton Holloway]]></dc:creator>
		<pubDate>Mon, 25 May 2009 07:04:26 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/04/10/patching-tty-clock/#comment-39440</guid>
		<description><![CDATA[I agree.
I don&#039;t know where he got the idea that it was the Americans that do that.

I guess it could be that the brits say things like &quot;Today is the 9th day of April, 2009&quot;, but then again they drive on the wrong side of the road. :P]]></description>
		<content:encoded><![CDATA[<p>I agree.<br />
I don&#8217;t know where he got the idea that it was the Americans that do that.</p>
<p>I guess it could be that the brits say things like &#8220;Today is the 9th day of April, 2009&#8243;, but then again they drive on the wrong side of the road. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Adams</title>
		<link>http://kmandla.wordpress.com/2009/04/10/patching-tty-clock/#comment-39059</link>
		<dc:creator><![CDATA[Tom Adams]]></dc:creator>
		<pubDate>Sun, 12 Apr 2009 10:39:19 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/04/10/patching-tty-clock/#comment-39059</guid>
		<description><![CDATA[You&#039;ll want something like this:

_gitroot=&quot;git://github.com/xorg62/tty-clock.git&quot;
_gitname=&quot;tty-clock&quot;

build() {
  cd $srcdir

  msg &quot;Connecting to GIT server...&quot;
  if [[ -d $_gitname ]]; then
    (cd $_gitname &amp;&amp; git pull origin)
  else
    git clone $_gitroot $_gitname
  fi
  msg &quot;GIT checkout done or server timeout&quot;
  msg &quot;Starting make...&quot;
  cd $_gitname

  make &#124;&#124; return 1
  make DESTDIR=$pkgdir install &#124;&#124; return 1
}

Although it won&#039;t quite work because the Makefile doesn&#039;t pay attention to DESTDIR.]]></description>
		<content:encoded><![CDATA[<p>You&#8217;ll want something like this:</p>
<p>_gitroot=&#8221;git://github.com/xorg62/tty-clock.git&#8221;<br />
_gitname=&#8221;tty-clock&#8221;</p>
<p>build() {<br />
  cd $srcdir</p>
<p>  msg &#8220;Connecting to GIT server&#8230;&#8221;<br />
  if [[ -d $_gitname ]]; then<br />
    (cd $_gitname &amp;&amp; git pull origin)<br />
  else<br />
    git clone $_gitroot $_gitname<br />
  fi<br />
  msg &#8220;GIT checkout done or server timeout&#8221;<br />
  msg &#8220;Starting make&#8230;&#8221;<br />
  cd $_gitname</p>
<p>  make || return 1<br />
  make DESTDIR=$pkgdir install || return 1<br />
}</p>
<p>Although it won&#8217;t quite work because the Makefile doesn&#8217;t pay attention to DESTDIR.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: K.Mandla</title>
		<link>http://kmandla.wordpress.com/2009/04/10/patching-tty-clock/#comment-39037</link>
		<dc:creator><![CDATA[K.Mandla]]></dc:creator>
		<pubDate>Sat, 11 Apr 2009 22:14:10 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/04/10/patching-tty-clock/#comment-39037</guid>
		<description><![CDATA[Quick question: I want to draft a Pkgfile for this, rather than manually rebuilding it each time. Is there a direct link to the source tarball somewhere, and I&#039;m overlooking it? I need something I can link to with wget, but it appears that the Flash-esque download link is the only way to get the source, and it comes appended with a hash of some sort.

Any suggestions?]]></description>
		<content:encoded><![CDATA[<p>Quick question: I want to draft a Pkgfile for this, rather than manually rebuilding it each time. Is there a direct link to the source tarball somewhere, and I&#8217;m overlooking it? I need something I can link to with wget, but it appears that the Flash-esque download link is the only way to get the source, and it comes appended with a hash of some sort.</p>
<p>Any suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Adams</title>
		<link>http://kmandla.wordpress.com/2009/04/10/patching-tty-clock/#comment-39036</link>
		<dc:creator><![CDATA[Tom Adams]]></dc:creator>
		<pubDate>Sat, 11 Apr 2009 22:05:53 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/04/10/patching-tty-clock/#comment-39036</guid>
		<description><![CDATA[xorg62 already pulled it into their tree so you may as well use that.]]></description>
		<content:encoded><![CDATA[<p>xorg62 already pulled it into their tree so you may as well use that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: K.Mandla</title>
		<link>http://kmandla.wordpress.com/2009/04/10/patching-tty-clock/#comment-39013</link>
		<dc:creator><![CDATA[K.Mandla]]></dc:creator>
		<pubDate>Fri, 10 Apr 2009 22:17:25 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/04/10/patching-tty-clock/#comment-39013</guid>
		<description><![CDATA[Great! Thanks. I&#039;m going to start using this one now.]]></description>
		<content:encoded><![CDATA[<p>Great! Thanks. I&#8217;m going to start using this one now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://kmandla.wordpress.com/2009/04/10/patching-tty-clock/#comment-39010</link>
		<dc:creator><![CDATA[Mike]]></dc:creator>
		<pubDate>Fri, 10 Apr 2009 18:36:43 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/04/10/patching-tty-clock/#comment-39010</guid>
		<description><![CDATA[&quot;What confuses me is the UK, which does day-month-year, since that’s not the way it’s spoken.&quot;
It is here, we say &quot;The 9th of April, 2009&quot;. &quot;April the 9th, 2009&quot; is sometimes used, but it is much rarer.

I prefer DD-MM-YYYY, but if I am going to display the date and time I prefer ISO 8601 format, eg 2009-01-01T13:45:12+00:00.]]></description>
		<content:encoded><![CDATA[<p>&#8220;What confuses me is the UK, which does day-month-year, since that’s not the way it’s spoken.&#8221;<br />
It is here, we say &#8220;The 9th of April, 2009&#8243;. &#8220;April the 9th, 2009&#8243; is sometimes used, but it is much rarer.</p>
<p>I prefer DD-MM-YYYY, but if I am going to display the date and time I prefer ISO 8601 format, eg 2009-01-01T13:45:12+00:00.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Adams</title>
		<link>http://kmandla.wordpress.com/2009/04/10/patching-tty-clock/#comment-39009</link>
		<dc:creator><![CDATA[Tom Adams]]></dc:creator>
		<pubDate>Fri, 10 Apr 2009 16:12:17 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/04/10/patching-tty-clock/#comment-39009</guid>
		<description><![CDATA[Nice patch (I&#039;m a strong believer in freedom 3, whatever your ability). Mine&#039;s a little more flexible:
http://github.com/holizz/tty-clock

Now you can use whatever format you like for the date:
tty-clock -f &#039;%Y-%m-%d&#039;

Hope you like it.]]></description>
		<content:encoded><![CDATA[<p>Nice patch (I&#8217;m a strong believer in freedom 3, whatever your ability). Mine&#8217;s a little more flexible:<br />
<a href="http://github.com/holizz/tty-clock" rel="nofollow">http://github.com/holizz/tty-clock</a></p>
<p>Now you can use whatever format you like for the date:<br />
tty-clock -f &#8216;%Y-%m-%d&#8217;</p>
<p>Hope you like it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Foster</title>
		<link>http://kmandla.wordpress.com/2009/04/10/patching-tty-clock/#comment-39008</link>
		<dc:creator><![CDATA[Dave Foster]]></dc:creator>
		<pubDate>Fri, 10 Apr 2009 16:07:29 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/04/10/patching-tty-clock/#comment-39008</guid>
		<description><![CDATA[As an American who lived in the UK for a year, and being endlessly confused about which was which, I now only write my dates as &quot;10 Apr 2009&quot; - Americans sometimes look at it funny but there&#039;s no mistaking which means which.]]></description>
		<content:encoded><![CDATA[<p>As an American who lived in the UK for a year, and being endlessly confused about which was which, I now only write my dates as &#8220;10 Apr 2009&#8243; &#8211; Americans sometimes look at it funny but there&#8217;s no mistaking which means which.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Timmy Macdonald</title>
		<link>http://kmandla.wordpress.com/2009/04/10/patching-tty-clock/#comment-39006</link>
		<dc:creator><![CDATA[Timmy Macdonald]]></dc:creator>
		<pubDate>Fri, 10 Apr 2009 13:37:07 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/04/10/patching-tty-clock/#comment-39006</guid>
		<description><![CDATA[Pure American dating conventions dictate month-day-year. Which makes sense, since we normally say:
&quot;Today is April 9, 2009.&quot;
What confuses me is the UK, which does day-month-year, since that&#039;s not the way it&#039;s spoken.]]></description>
		<content:encoded><![CDATA[<p>Pure American dating conventions dictate month-day-year. Which makes sense, since we normally say:<br />
&#8220;Today is April 9, 2009.&#8221;<br />
What confuses me is the UK, which does day-month-year, since that&#8217;s not the way it&#8217;s spoken.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Flowers</title>
		<link>http://kmandla.wordpress.com/2009/04/10/patching-tty-clock/#comment-39004</link>
		<dc:creator><![CDATA[Jeff Flowers]]></dc:creator>
		<pubDate>Fri, 10 Apr 2009 11:36:01 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/04/10/patching-tty-clock/#comment-39004</guid>
		<description><![CDATA[I love Year-Month-Day, especially for anything that requires sorting. For example, I like to use Jhead to automate the naming of my digital photos, which gives me files named like this:

20090329_22-45-13.jpg

or

YYYYMMDD_hh-mm-ss.jpg

which means that it is very easy to get files sorted in chronological order. I also like using this format in spreadsheets, as it makes sorting easier there as well.

I don&#039;t understand why it isn&#039;t more popular world wide.]]></description>
		<content:encoded><![CDATA[<p>I love Year-Month-Day, especially for anything that requires sorting. For example, I like to use Jhead to automate the naming of my digital photos, which gives me files named like this:</p>
<p>20090329_22-45-13.jpg</p>
<p>or</p>
<p>YYYYMMDD_hh-mm-ss.jpg</p>
<p>which means that it is very easy to get files sorted in chronological order. I also like using this format in spreadsheets, as it makes sorting easier there as well.</p>
<p>I don&#8217;t understand why it isn&#8217;t more popular world wide.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
