<?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 on: a major first for me</title>
	<atom:link href="http://macslow.net/?feed=rss2&#038;p=97" rel="self" type="application/rss+xml" />
	<link>http://macslow.net/?p=97</link>
	<description>stuff happening on macslow.net</description>
	<pubDate>Sat, 31 Jul 2010 23:00:39 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: macewan</title>
		<link>http://macslow.net/?p=97&#038;cpage=1#comment-8575</link>
		<dc:creator>macewan</dc:creator>
		<pubDate>Tue, 26 Dec 2006 18:50:05 +0000</pubDate>
		<guid isPermaLink="false">http://macslow.thepimp.net/?p=97#comment-8575</guid>
		<description>works beautifully on Edgy</description>
		<content:encoded><![CDATA[<p>works beautifully on Edgy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cyberorg</title>
		<link>http://macslow.net/?p=97&#038;cpage=1#comment-8404</link>
		<dc:creator>cyberorg</dc:creator>
		<pubDate>Thu, 21 Dec 2006 07:00:42 +0000</pubDate>
		<guid isPermaLink="false">http://macslow.thepimp.net/?p=97#comment-8404</guid>
		<description>After packaging the last version, I have been waiting for the smooooth version to include in openSUSE build-service repository.

Cheers

-J</description>
		<content:encoded><![CDATA[<p>After packaging the last version, I have been waiting for the smooooth version to include in openSUSE build-service repository.</p>
<p>Cheers</p>
<p>-J</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: devsk</title>
		<link>http://macslow.net/?p=97&#038;cpage=1#comment-8397</link>
		<dc:creator>devsk</dc:creator>
		<pubDate>Wed, 20 Dec 2006 23:40:44 +0000</pubDate>
		<guid isPermaLink="false">http://macslow.thepimp.net/?p=97#comment-8397</guid>
		<description>I just wrote the patch, please include it in next patch:

$ diff -u cairo-clock.c~ cairo-clock.c
--- cairo-clock.c~      2006-04-01 10:37:38.000000000 -0800
+++ cairo-clock.c       2006-12-20 15:17:27.977303074 -0800
@@ -122,6 +122,7 @@
 int                                    g_iDay;
 int                                    g_iMonth;
 char                           g_acDate[6];
+char                           g_acDay[4];
 static time_t          g_timeOfDay;
 struct tm*                     g_pTime;
 int                 g_i24 = 0; /* make/don't make hour-hand use 24h-display */
@@ -362,6 +363,32 @@
        g_iDay = g_pTime-&gt;tm_mday;
        g_iMonth = g_pTime-&gt;tm_mon + 1;
        sprintf (g_acDate, &#34;%02d/%02d&#34;, g_iDay, g_iMonth);
+       switch(g_pTime-&gt;tm_wday)
+       {
+               case 0:
+                       sprintf (g_acDay, &#34;%03s&#34;, &#34;SUN&#34;);
+                       break;
+               case 1:
+                       sprintf (g_acDay, &#34;%03s&#34;, &#34;MON&#34;);
+                       break;
+               case 2:
+                       sprintf (g_acDay, &#34;%03s&#34;, &#34;TUE&#34;);
+                       break;
+               case 3:
+                       sprintf (g_acDay, &#34;%03s&#34;, &#34;WED&#34;);
+                       break;
+               case 4:
+                       sprintf (g_acDay, &#34;%03s&#34;, &#34;THU&#34;);
+                       break;
+               case 5:
+                       sprintf (g_acDay, &#34;%03s&#34;, &#34;FRI&#34;);
+                       break;
+               case 6:
+                       sprintf (g_acDay, &#34;%03s&#34;, &#34;SAT&#34;);
+                       break;
+               default:
+                       break;
+       }

        cairo_set_operator (g_pMainContext, CAIRO_OPERATOR_SOURCE);

@@ -384,10 +411,12 @@
                cairo_set_line_width (g_pMainContext, 5.0f);
                cairo_text_extents (g_pMainContext, g_acDate, &amp;textExtents);
                cairo_rotate (g_pMainContext, (M_PI/180.0f) * 90.0f);
-               cairo_move_to (g_pMainContext,
-                                          -textExtents.width / 2.0f,
+               cairo_move_to (g_pMainContext, -textExtents.width / 2.0f,
                                           2.0f * textExtents.height);
                cairo_show_text (g_pMainContext, g_acDate);
+               cairo_move_to (g_pMainContext, -textExtents.width / 2.0f+2.0f,
+                                          2.0f * textExtents.height-25.0f);
+               cairo_show_text (g_pMainContext, g_acDay);
                cairo_restore (g_pMainContext);
        }</description>
		<content:encoded><![CDATA[<p>I just wrote the patch, please include it in next patch:</p>
<p>$ diff -u cairo-clock.c~ cairo-clock.c<br />
&#8212; cairo-clock.c~      2006-04-01 10:37:38.000000000 -0800<br />
+++ cairo-clock.c       2006-12-20 15:17:27.977303074 -0800<br />
@@ -122,6 +122,7 @@<br />
 int                                    g_iDay;<br />
 int                                    g_iMonth;<br />
 char                           g_acDate[6];<br />
+char                           g_acDay[4];<br />
 static time_t          g_timeOfDay;<br />
 struct tm*                     g_pTime;<br />
 int                 g_i24 = 0; /* make/don&#8217;t make hour-hand use 24h-display */<br />
@@ -362,6 +363,32 @@<br />
        g_iDay = g_pTime-&gt;tm_mday;<br />
        g_iMonth = g_pTime-&gt;tm_mon + 1;<br />
        sprintf (g_acDate, &quot;%02d/%02d&quot;, g_iDay, g_iMonth);<br />
+       switch(g_pTime-&gt;tm_wday)<br />
+       {<br />
+               case 0:<br />
+                       sprintf (g_acDay, &quot;%03s&quot;, &quot;SUN&quot;);<br />
+                       break;<br />
+               case 1:<br />
+                       sprintf (g_acDay, &quot;%03s&quot;, &quot;MON&quot;);<br />
+                       break;<br />
+               case 2:<br />
+                       sprintf (g_acDay, &quot;%03s&quot;, &quot;TUE&quot;);<br />
+                       break;<br />
+               case 3:<br />
+                       sprintf (g_acDay, &quot;%03s&quot;, &quot;WED&quot;);<br />
+                       break;<br />
+               case 4:<br />
+                       sprintf (g_acDay, &quot;%03s&quot;, &quot;THU&quot;);<br />
+                       break;<br />
+               case 5:<br />
+                       sprintf (g_acDay, &quot;%03s&quot;, &quot;FRI&quot;);<br />
+                       break;<br />
+               case 6:<br />
+                       sprintf (g_acDay, &quot;%03s&quot;, &quot;SAT&quot;);<br />
+                       break;<br />
+               default:<br />
+                       break;<br />
+       }</p>
<p>        cairo_set_operator (g_pMainContext, CAIRO_OPERATOR_SOURCE);</p>
<p>@@ -384,10 +411,12 @@<br />
                cairo_set_line_width (g_pMainContext, 5.0f);<br />
                cairo_text_extents (g_pMainContext, g_acDate, &amp;textExtents);<br />
                cairo_rotate (g_pMainContext, (M_PI/180.0f) * 90.0f);<br />
-               cairo_move_to (g_pMainContext,<br />
-                                          -textExtents.width / 2.0f,<br />
+               cairo_move_to (g_pMainContext, -textExtents.width / 2.0f,<br />
                                           2.0f * textExtents.height);<br />
                cairo_show_text (g_pMainContext, g_acDate);<br />
+               cairo_move_to (g_pMainContext, -textExtents.width / 2.0f+2.0f,<br />
+                                          2.0f * textExtents.height-25.0f);<br />
+               cairo_show_text (g_pMainContext, g_acDay);<br />
                cairo_restore (g_pMainContext);<br />
        }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: devsk</title>
		<link>http://macslow.net/?p=97&#038;cpage=1#comment-8394</link>
		<dc:creator>devsk</dc:creator>
		<pubDate>Wed, 20 Dec 2006 22:48:53 +0000</pubDate>
		<guid isPermaLink="false">http://macslow.thepimp.net/?p=97#comment-8394</guid>
		<description>like this http://home.comcast.net/~funtoos/cairo-clock-day.png</description>
		<content:encoded><![CDATA[<p>like this <a href="http://home.comcast.net/~funtoos/cairo-clock-day.png" rel="nofollow">http://home.comcast.net/~funtoos/cairo-clock-day.png</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: devsk</title>
		<link>http://macslow.net/?p=97&#038;cpage=1#comment-8342</link>
		<dc:creator>devsk</dc:creator>
		<pubDate>Tue, 19 Dec 2006 20:08:02 +0000</pubDate>
		<guid isPermaLink="false">http://macslow.thepimp.net/?p=97#comment-8342</guid>
		<description>when are we going to see the &#34;day&#34; in the &#34;date&#34; inside the cairo-clock?</description>
		<content:encoded><![CDATA[<p>when are we going to see the &quot;day&quot; in the &quot;date&quot; inside the cairo-clock?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ajax</title>
		<link>http://macslow.net/?p=97&#038;cpage=1#comment-7648</link>
		<dc:creator>ajax</dc:creator>
		<pubDate>Wed, 13 Dec 2006 17:15:07 +0000</pubDate>
		<guid isPermaLink="false">http://macslow.thepimp.net/?p=97#comment-7648</guid>
		<description>I don't think you're likely to ever get submissions for RHL; cairo didn't even exist in Fedora 4, let alone RHL9.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t think you&#8217;re likely to ever get submissions for RHL; cairo didn&#8217;t even exist in Fedora 4, let alone RHL9.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MacSlow</title>
		<link>http://macslow.net/?p=97&#038;cpage=1#comment-7643</link>
		<dc:creator>MacSlow</dc:creator>
		<pubDate>Wed, 13 Dec 2006 16:48:10 +0000</pubDate>
		<guid isPermaLink="false">http://macslow.thepimp.net/?p=97#comment-7643</guid>
		<description>Oh, I had no idea. This is really nice to know! Thanks for the heads up, folks!</description>
		<content:encoded><![CDATA[<p>Oh, I had no idea. This is really nice to know! Thanks for the heads up, folks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex Smith</title>
		<link>http://macslow.net/?p=97&#038;cpage=1#comment-7640</link>
		<dc:creator>Alex Smith</dc:creator>
		<pubDate>Wed, 13 Dec 2006 16:33:35 +0000</pubDate>
		<guid isPermaLink="false">http://macslow.thepimp.net/?p=97#comment-7640</guid>
		<description>http://frugalware.org/packages/10595

Frugalware Linux has had it for quite a few months now.</description>
		<content:encoded><![CDATA[<p><a href="http://frugalware.org/packages/10595" rel="nofollow">http://frugalware.org/packages/10595</a></p>
<p>Frugalware Linux has had it for quite a few months now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Ballard</title>
		<link>http://macslow.net/?p=97&#038;cpage=1#comment-7637</link>
		<dc:creator>Dan Ballard</dc:creator>
		<pubDate>Wed, 13 Dec 2006 16:24:11 +0000</pubDate>
		<guid isPermaLink="false">http://macslow.thepimp.net/?p=97#comment-7637</guid>
		<description>Gentoo does, and has for a  bit now.
http://packages.gentoo.org/search/?sstring=cairo-clock</description>
		<content:encoded><![CDATA[<p>Gentoo does, and has for a  bit now.<br />
<a href="http://packages.gentoo.org/search/?sstring=cairo-clock" rel="nofollow">http://packages.gentoo.org/search/?sstring=cairo-clock</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pascal</title>
		<link>http://macslow.net/?p=97&#038;cpage=1#comment-7633</link>
		<dc:creator>Pascal</dc:creator>
		<pubDate>Wed, 13 Dec 2006 16:11:16 +0000</pubDate>
		<guid isPermaLink="false">http://macslow.thepimp.net/?p=97#comment-7633</guid>
		<description>0.3.2 had been added to Mandriva on May 17 and is in Mandriva 2007.0 which was released in September :-)
ftp://ftp.free.fr/pub/Distributions_Linux/MandrivaLinux/official/2007.0/i586/media/contrib/release/cairo-clock-0.3.2-4mdv2007.0.i586.rpm</description>
		<content:encoded><![CDATA[<p>0.3.2 had been added to Mandriva on May 17 and is in Mandriva 2007.0 which was released in September <img src='http://macslow.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
<a href="ftp://ftp.free.fr/pub/Distributions_Linux/MandrivaLinux/official/2007.0/i586/media/contrib/release/cairo-clock-0.3.2-4mdv2007.0.i586.rpm" rel="nofollow">ftp://ftp.free.fr/pub/Distributions_Linux/MandrivaLinux/official/2007.0/i586/media/contrib/release/cairo-clock-0.3.2-4mdv2007.0.i586.rpm</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
