<?xml version="1.0"?>
<rss version="2.0">
  <channel>
    <title>Advogato blog for garnacho</title>
    <link>http://www.advogato.org/person/garnacho/</link>
    <description>Advogato blog for garnacho</description>
    <language>en-us</language>
    <generator>mod_virgule</generator>
    <pubDate>Wed, 19 Jun 2013 07:14:42 GMT</pubDate>
    <item>
      <pubDate>Fri, 17 Jun 2005 00:22:54 GMT</pubDate>
      <title>17 Jun 2005</title>
      <link>http://www.advogato.org/person/garnacho/diary.html?start=20</link>
      <guid>http://www.advogato.org/person/garnacho/diary.html?start=20</guid>
      <description>Finally got some time to work on new possible features for GST 1.4, I'm giving (at last!) &lt;a href="http://www.gnome.org/~carlosg/stuff/gst/new-services.png" &gt; some love&lt;/a&gt; to the services-admin tool, so maybe could be an option for &lt;a href="http://udu.wiki.ubuntu.com/GraphicalConfigTools" &gt;the Ubuntu people&lt;/a&gt; or for GNOME itself.

&lt;p&gt; &lt;p&gt; It's still in some need of coding love, and I should categorise at least the most used services for providing useful descriptions, so there's still &lt;a href="http://packages.debian.org/cgi-bin/search_contents.pl?version=unstable&amp;arch=i386&amp;case=insensitive&amp;word=etc%2Finit.d%2F&amp;searchmode=searchword" &gt;work to do&lt;/a&gt;.

&lt;p&gt; &lt;p&gt; &lt;a href="http://blogs.gnome.org/view/calum/2005/06/16/0" &gt;Calum&lt;/a&gt;: Maybe what I missed when adding accessibility support to the gnome-control-center shell were some docs about where to begin when adding accessibility support to custom widgets. The better source of information I could find was other widgets' code, as the API may look quite raw if you're unfamiliar with it :)
</description>
    </item>
    <item>
      <pubDate>Wed, 18 May 2005 23:43:01 GMT</pubDate>
      <title>18 May 2005</title>
      <link>http://www.advogato.org/person/garnacho/diary.html?start=19</link>
      <guid>http://www.advogato.org/person/garnacho/diary.html?start=19</guid>
      <description>Finally had time to apply NotZed's suggestions (Thanks!) to the small evo plugin I wrote to remove duplicates, and as of evo 2.3.2, plugins can be compiled independently, eliminating the need of patching evo sources, really good stuff :)

&lt;p&gt; IMHO, the next great step would be to create a small repository for plugins (i.e.: a evolution-plugins-extras VCS module), cluttering evo sources with plugins that will be barely used might not be very desirable, and OTOH cluttering the CVS with small software pieces like this would be crazy.

&lt;p&gt; So, while I don't know where to put the thingy, the code is &lt;a href="http://www.gnome.org/~carlosg/stuff/evolution/remove-duplicates-plugin-0.0.1.tar.gz" &gt;here&lt;/a&gt;. Enjoy!
</description>
    </item>
    <item>
      <pubDate>Mon, 16 May 2005 01:44:55 GMT</pubDate>
      <title>16 May 2005</title>
      <link>http://www.advogato.org/person/garnacho/diary.html?start=18</link>
      <guid>http://www.advogato.org/person/garnacho/diary.html?start=18</guid>
      <description>&lt;b&gt;Kudos to evolution developers&lt;/b&gt;

&lt;p&gt; It's all I have to say, they have created an excellent development platform with e-d-s and the plugins stuff:

&lt;p&gt; The other day, while evo was downloading mail, I managed to break download operation, leaving me with about 1000 duplicated mails. Thanks to the cool work of the evo people, making a plugin for removing duplicated mails has surely taken me less time than removing the mails by hand (the code is barely 100 lines). There are still some issues to sort out, but they're mostly ui-wise.

&lt;p&gt; You can get the code and the glue patch with evo &lt;a href="http://www.gnome.org/~carlosg/stuff/evolution/" &gt;here&lt;/a&gt;.
</description>
    </item>
    <item>
      <pubDate>Wed, 20 Apr 2005 21:20:46 GMT</pubDate>
      <title>20 Apr 2005</title>
      <link>http://www.advogato.org/person/garnacho/diary.html?start=17</link>
      <guid>http://www.advogato.org/person/garnacho/diary.html?start=17</guid>
      <description>&lt;b&gt;Getting a name&lt;/b&gt;

&lt;p&gt; The plan I've briefly talked about in other ocassions (more details in the &lt;a href="http://live.gnome.org/SystemToolsBackends" &gt;wiki&lt;/a&gt;) is getting a good shape, now I have a dbus-ified backend object for the shares list [1] and a library that allows just doing:

&lt;p&gt; &lt;pre&gt;
int
main (int argc, char *argv[]))
{
  GMainLoop  *loop;
  StbSession *session;
  StbObject  *shares_list;

&lt;p&gt;   g_type_init ();

&lt;p&gt;   session = stb_session_new ();
  shares_list = stb_shares_list_new (session);

&lt;p&gt;   g_signal_connect (G_OBJECT (shares_list), "changed", G_CALLBACK (foo), NULL);

&lt;p&gt;   ...
}
&lt;/pre&gt;

&lt;p&gt; just to get a list of shared folders, sadly the hardest part right now is being to get a good name before creating a CVS module (libSTB isn't neither nice nor descriptive), so I brought up the issue in the #gst channel and some ideas for the name came up:

&lt;p&gt; &lt;ul&gt;
&lt;li&gt;BackWrap (from Backends Wrapper)
&lt;li&gt;GarBack (something about my back? I swear I didn't tell it! :)
&lt;li&gt;LibNacho (again my surname got mixed, but this name is tasty)
&lt;li&gt;GoBack (GObject backends?)
&lt;li&gt;LibOObs (Object Oriented backends system)
&lt;/ul&gt;

&lt;p&gt; Honestly, I have to admit that I like the last one, it's fun and descriptive, and I don't get disturbed if I read "boobs" somewhere (nor to touch them, if the carrier allows me to do so), but people may find it offending [2], so I guess that I'll have to keep thinking in a name and fall back on this one if I don't find anything better... any suggestion? :)

&lt;p&gt; [1] Of course, in an &lt;a href="http://cvs.freedesktop.org/system-tools-backends/system-tools-backends/?only_with_tag=waiting-the-dbus" &gt;experimental&lt;/a&gt; branch&lt;br&gt;
[2] remember the "pair of testicles" issue?



&lt;p&gt; &lt;b&gt;Other GNOME stuff&lt;/b&gt;

&lt;p&gt; both &lt;a href="http://2005.guadec-es.org/" &gt;Guadec-ES&lt;/a&gt; and &lt;a href="http://2005.guadec.org/" &gt;Guadec&lt;/a&gt; are getting nearer, I'm impatient :)



&lt;p&gt; &lt;b&gt;Concerts&lt;/b&gt;

&lt;p&gt; It seems to be a good season for Heavy rock concerts in Madrid/Spain!, I've already got tickets for &lt;i&gt;Porcupine tree&lt;/i&gt; + &lt;i&gt;Anathema&lt;/i&gt;, &lt;i&gt;Soul Sirkus&lt;/i&gt;, and Lorca rock Festival (in Murcia, featuring &lt;i&gt;Dream Theater&lt;/i&gt;, &lt;i&gt;Iron Maiden&lt;/i&gt;, &lt;i&gt;Running wild&lt;/i&gt; and others), I'm missing another good music festival in favour of Guadec, and had to refund the &lt;i&gt;In extremo&lt;/i&gt; ticket, due to their concert being cancelled...


&lt;p&gt; &lt;b&gt;Congrats to Jeff and Pia!&lt;/b&gt;
</description>
    </item>
    <item>
      <pubDate>Tue, 8 Mar 2005 01:21:32 GMT</pubDate>
      <title>8 Mar 2005</title>
      <link>http://www.advogato.org/person/garnacho/diary.html?start=16</link>
      <guid>http://www.advogato.org/person/garnacho/diary.html?start=16</guid>
      <description>&lt;b&gt;GNOME&lt;/b&gt;

&lt;p&gt; At last (with the rest of the 2.10 packages) the gnome-system-tools 1.2.0 have been released, lots of hard work and bugfixing have gone in this release cicle, so I hope that people will appreciate it. 

&lt;p&gt; &lt;b&gt;Software Patents&lt;/b&gt;

&lt;p&gt; What can I say... it's a shame to live in the &lt;a href="http://ue.eu.int/" &gt;banana republic&lt;/a&gt; these days :(

&lt;p&gt; &lt;b&gt;And the big thanks goes to...&lt;/b&gt;
&lt;ul&gt;
&lt;li&gt;The GNOME hackers, translators, documenters and artists, they've done an awesome work in the last 6 months
&lt;li&gt;&lt;a href="berrange.com" &gt;Daniel P. Berrange&lt;/a&gt;, who has created &lt;a href="http://cvs.berrange.com/cgi-bin/viewcvs.cgi/freeware/DBus/" &gt;all I was missing&lt;/a&gt; for experimenting with my &lt;a href="http://live.gnome.org/SystemToolsBackends" &gt;crazy plans&lt;/a&gt;, I really hope that these bindings will be in FreeDesktop someday soon
&lt;/ul&gt;
</description>
    </item>
    <item>
      <pubDate>Mon, 14 Feb 2005 01:42:26 GMT</pubDate>
      <title>14 Feb 2005</title>
      <link>http://www.advogato.org/person/garnacho/diary.html?start=15</link>
      <guid>http://www.advogato.org/person/garnacho/diary.html?start=15</guid>
      <description>&lt;a href="http://www.gnome.org/~jdub/blog/projects/ubuntu/1108076752" &gt;Jeff&lt;/a&gt;: I can tell a couple of reasons for doing it in that "silly" way:

&lt;p&gt; &lt;ul&gt;
&lt;li&gt;It will make the network tool a bit closer to the instant-apply model
&lt;li&gt;It will allow this in a non-intrusive way ("why the f*ck have my config files changed if I didn't click the OK button?" :)
&lt;/ul&gt;

&lt;p&gt; &lt;a href="http://danilo.segan.org/blog/razno/back-to-hack" &gt;Danilo&lt;/a&gt;: I have to agree with you that dial-up is a bit buggy (it's hard to code something you can't test, and specifically in debian has switched from wvdial to pppconfig-like), but those aren't the reasons for this, the config is modified too in the distro specific config files when the user agrees to do so, as I answered to jeff, it's more related to instant-apply and user-frienlyness

&lt;p&gt; In another GNOME related stuff, I got my Guadec talk rejected, it seems that my proposal wasn't interesting enough... *shrug*
</description>
    </item>
    <item>
      <pubDate>Tue, 8 Feb 2005 00:23:53 GMT</pubDate>
      <title>8 Feb 2005</title>
      <link>http://www.advogato.org/person/garnacho/diary.html?start=14</link>
      <guid>http://www.advogato.org/person/garnacho/diary.html?start=14</guid>
      <description>Sometimes I wonder if people even understand what I'm talking about, of if they simply manage not to hear/read me</description>
    </item>
    <item>
      <pubDate>Wed, 2 Feb 2005 15:59:53 GMT</pubDate>
      <title>2 Feb 2005</title>
      <link>http://www.advogato.org/person/garnacho/diary.html?start=13</link>
      <guid>http://www.advogato.org/person/garnacho/diary.html?start=13</guid>
      <description>Yesterday after some thinking I managed to write down my thoughts about the possible future of the GST backends, it's in the &lt;a href="http://live.gnome.org/SystemToolsBackends" &gt;GNOME wiki&lt;/a&gt;. Somehow &lt;a href="http://carlosgc.linups.org" &gt;Carlos&lt;/a&gt; was able to &lt;a href="http://carlosgc.linups.org/gnome/gst-future" &gt;make public&lt;/a&gt; my thoughts before myself, this makes me think seriously that I should blog more often :)

&lt;p&gt; Of course opinions are welcome</description>
    </item>
    <item>
      <pubDate>Tue, 7 Dec 2004 11:29:20 GMT</pubDate>
      <title>7 Dec 2004</title>
      <link>http://www.advogato.org/person/garnacho/diary.html?start=12</link>
      <guid>http://www.advogato.org/person/garnacho/diary.html?start=12</guid>
      <description>This morning &lt;a href="http://kiwnix-cs.blogspot.com/" &gt;Kiwnix&lt;/a&gt; told me about the &lt;a href="http://www.dwheeler.com/sloccount/" &gt;sloccount&lt;/a&gt; application, it's a funny program which will perform some Software Engineering studies on your code and will show you how much your effort would cost. 

&lt;p&gt; As a little example, I did run it against my current network-admin code (it took me about a month and a week to rewrite it), here's the result:

&lt;p&gt; &lt;pre&gt;

&lt;p&gt; Totals grouped by language (dominant language first):
ansic:         4443 (100.00%)

&lt;p&gt; Total Physical Source Lines of Code (SLOC)                = 4,443
Development Effort Estimate, Person-Years (Person-Months) = 0.96 (11.49)
 (Basic COCOMO model, Person-Months = 2.4 * (KSLOC**1.05))
Schedule Estimate, Years (Months)                         = 0.53 (6.32)
 (Basic COCOMO model, Months = 2.5 * (person-months**0.38))
Estimated Average Number of Developers (Effort/Schedule)  = 1.82
Total Estimated Cost to Develop                           = $ 129,331
 (average salary = $56,286/year, overhead = 2.40).
SLOCCount, Copyright (C) 2001-2004 David A. Wheeler
SLOCCount is Open Source Software/Free Software, licensed under the GNU GPL.
SLOCCount comes with ABSOLUTELY NO WARRANTY, and you are welcome to
redistribute it under certain conditions as specified by the GNU GPL license;
see the documentation for details.
Please credit this data as "generated using David A. Wheeler's 'SLOCCount'."

&lt;p&gt; &lt;/pre&gt;

&lt;p&gt; So I've done my work in about 1/10th of the estimated time, and in my spare time! I don't know whether this means that I'm really really smart, or whether Software Engineering estimates (or this program estimates) are non-functional stuff.

&lt;p&gt; Anyway, I had a laught with this :)
</description>
    </item>
    <item>
      <pubDate>Mon, 11 Oct 2004 02:57:11 GMT</pubDate>
      <title>11 Oct 2004</title>
      <link>http://www.advogato.org/person/garnacho/diary.html?start=11</link>
      <guid>http://www.advogato.org/person/garnacho/diary.html?start=11</guid>
      <description>&lt;b&gt;life&lt;/b&gt;&lt;br&gt;
Just arrived from a friend's house. we've seen &lt;a href="http://www.imdb.com/title/tt0253474/" &gt;"The pianist"&lt;/a&gt;, a really sad movie, what it makes it even more sad is the fact that it's based in &lt;a href="http://www.szpilman.net/" &gt;real facts&lt;/a&gt;. sometimes I shame to be part of the human race...

&lt;p&gt; &lt;b&gt;GNOME&lt;/b&gt;&lt;br&gt;
the last days I've been mostly working on an authentication API which lets trusted users to run things with root privileges, it's half-way between su and sudo, relying on it's own setuid program. Some people has already told me that trusting in a new setuid program is a bad idea, but I think it's worth, some kind of improvement has to be done in this area regarding to linux desktops, after all, there are lots of tasks that a desktop (no console) user should be able to do and belong to the root user, and the good ol' sudo is much more suitable for command line.
</description>
    </item>
  </channel>
</rss>
