<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:planet="http://planet.intertwingly.net/" xmlns:indexing="urn:atom-extension:indexing" indexing:index="no"><access:restriction xmlns:access="http://www.bloglines.com/about/specs/fac-1.0" relationship="deny"/>
  <title>Planet GNU</title>
  <updated>2013-05-19T23:15:03Z</updated>
  <generator uri="http://intertwingly.net/code/venus/">Venus</generator>
  <author>
    <name>GNU webmasters admins</name>
    <email>planet@gnu.org</email>
  </author>
  <id>http://planet.gnu.org/atom.xml</id>
  <link href="http://planet.gnu.org/atom.xml" rel="self" type="application/atom+xml"/>
  <link href="http://planet.gnu.org/" rel="alternate"/>

  <entry xml:lang="en">
    <id>http://smalltalk.gnu.org/761 at http://smalltalk.gnu.org</id>
    <link href="http://smalltalk.gnu.org/blog/zecke/using-new-packageloader-feature-when-creating-unit-tests-dbd-postgresql" rel="alternate" type="text/html"/>
    <title>Using the new PackageLoader feature when creating unit tests for DBD-PostgreSQL</title>
    <summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>In the previous post I briefly mentioned the new feature of the PackageLoader that went into the development version of GNU Smalltalk. Today I am going show a usage of it.</p>

<p>GNU Smalltalk has a database abstraction called DBI and multiple backends (MySQL, SQLite and PostgreSQL). In general I am using the SQLite backend to develop my application and depending on the users (e.g. do I need concurrent access) I will move to PostgreSQL. When moving my new application to PostgreSQL the import of data failed and this was due some issues with the conversion of Smalltalk types to PostgreSQL.</p>

<p/>

<p>After some exploring to understand the issue I started to develop a unit test. The first thing I did was to create a test entry in the package description of DBD-PostgreSQL, fileIn a file and name a SUnit TestCase or TestSuite.</p>

<p><code><br/>
</code></p><pre><code> &lt;test&gt;
   &lt;sunit&gt;DBI.PostgreSQL.PostgresTestCase&lt;sunit&gt;
   &lt;filein&gt;Tests.st&lt;/filein&gt;
 &lt;/test&gt;</code></pre><code><br/>
</code><p/>

<p>The next thing is to start GNU Smalltalk and load the package and get the test. I cheated a bit and directly constructed a Kernel.DirPackage instance.</p>

<p><code><br/>
$ gst<br/>
st&gt; package := Kernel.DirPackage file: 'package.xml'<br/>
st&gt; package fileIn.<br/>
st&gt; test := package test.<br/>
st&gt; test fileIn.<br/>
</code></p>

<p>The above code has loaded the main package (and dependencies) and the test package as well. I went ahead and manually invoked the tests I have. This can be done by sending the &gt;&gt;#buildSuite message to my TestCase and then calling run on the result.</p>

<p><code><br/>
st&gt; DBI.PostgreSQL.PostgresTestCase buildSuite run<br/>
0 run, 0 passes<br/>
</code></p>

<p>Now I can start to write the actual testcases. I decided to write one test per datatype. I created a &gt;&gt;#setUp selector that opens the database connection and creates a table that contains every built-in type of PostgreSQL as column and a &gt;&gt;#tearDown to close the database connection. Then I decided to write one test per datatype and started with the ones I knew that were broken. I could incrementally create tests and type the following commands to execute them.</p>

<p><code><br/>
st&gt; test fileIn. DBI.PostgreSQL.PostgresTestCase buildSuite run<br/>
</code></p>

<p>As expected my first tests were failing. I decided to use the open classes feature of Smalltalk and put the fixes to the tests into the Tests.st file and re-executed the above and my test started to pass, then I wrote another test, executed the suite, created a fix, re-loaded and ran the tests.  This has worked nicely but then there was a fix that manipulated a lookup table owned by a singleton. This means that my changes to the code were not picked up as the instance was already initialized. There are multiple ways to overcome this. I could have called the initialize function of the singleton again, I could have manipulated the lookup table inside the singleton or I could have re-set the singleton. I decided to do the later using the reflection facilities of Smalltalk. I put a nil into the instanceVariable called uniqueInstance of the PGFieldConverter class.</p>

<p><code><br/>
st&gt; DBI.PostgreSQL.PGFieldConverter instVarNamed: #uniqueInstance put: nil<br/>
</code></p>

<p>After re-executing the testsuite the singleton was re-created and the next testcase was fixed. The only thing left to do was to move the fixes from the Tests.st to the right place in the original files and run make check on the entire codebase to check that everything works as expected.</p></div>
    </summary>
    <updated>2013-05-18T08:21:23Z</updated>
    <category scheme="http://smalltalk.gnu.org/tags/packageloader" term="packageloader"/>
    <category scheme="http://smalltalk.gnu.org/tags/postgres" term="postgres"/>
    <category scheme="http://smalltalk.gnu.org/tags/sunit" term="sunit"/>
    <author>
      <name>Holger Hans Peter Freyther</name>
    </author>
    <source>
      <id>http://smalltalk.gnu.org/blog</id>
      <link href="http://smalltalk.gnu.org/blog" rel="alternate" type="text/html"/>
      <link href="http://smalltalk.gnu.org/blog/feed" rel="self" type="application/rss+xml"/>
      <title>GNU Smalltalk blogs</title>
      <updated>2013-05-19T22:16:20Z</updated>
    </source>
  </entry>

  <entry>
    <id>http://ageinghacker.net/blog/posts/12</id>
    <link href="http://ageinghacker.net/blog/posts/12" rel="alternate" type="text/html"/>
    <title>GNU Hackers Meeting 2013 in Paris, France</title>
    <summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Thanks to a kind offer from Sylvestre Ledru () we have a venue for this year’s GNU Hackers Meeting: we will be at IRILL () in Paris, France, for the second time after the very successful 2011 edition. Since I live near Paris and I also happen to work at IRILL once or twice a week I’ve decided to do something to help organize the event, along with Sylvestre and Dodji Seketeli () who graciously volunteered as well. The meeting will take place in late August 2013: right now we’re deciding whether to have talks on Friday 23 and Saturday    ... <a href="http://ageinghacker.net/blog/posts/12">[Read more]</a></div>
    </summary>
    <updated>2013-05-17T18:39:00Z</updated>
    <category term="english"/>
    <category term="ghm"/>
    <category term="gnu"/>
    <category term="hacking"/>
    <category term="paris"/>
    <author>
      <name>Luca Saiu</name>
      <email>positron@gnu.org</email>
    </author>
    <source>
      <id>http://ageinghacker.net/blog</id>
      <link href="http://ageinghacker.net/blog" rel="alternate" type="text/html"/>
      <link href="http://ageinghacker.net/blog/tags/gnu/rss.xml" rel="self" type="application/rss+xml"/>
      <subtitle>Luca Saiu's blog</subtitle>
      <title>An ag(e)ing hacker - posts tagged as "gnu"</title>
      <updated>2013-05-17T23:37:12Z</updated>
    </source>
  </entry>

  <entry>
    <id>http://www.fsf.org/news/the-fsf-is-hiring-seeking-a-full-time-outreach-and-communication-coordinator</id>
    <link href="http://www.fsf.org/news/the-fsf-is-hiring-seeking-a-full-time-outreach-and-communication-coordinator" rel="alternate" type="text/html"/>
    <title>The FSF is hiring: Seeking a full-time outreach and communication coordinator</title>
    <summary>The Free Software Foundation (FSF), a Boston-based 501(c)(3) charity with a worldwide mission to protect freedoms critical to the computer-using public, seeks a motivated and organized tech-friendly Boston-based individual to be its full-time outreach and communication coordinator.</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">The Free Software Foundation (FSF), a Boston-based 501(c)(3) charity with a worldwide mission to protect freedoms critical to the computer-using public, seeks a motivated and organized tech-friendly Boston-based individual to be its full-time outreach and communication coordinator.
<p>This newly created position, reporting to the executive director, will work closely with our <a href="https://fsf.org/campaigns">campaigns</a>, <a href="https://fsf.org/licensing">licensing</a>, and <a href="https://fsf.org/blogs/sysadmin">technical</a> staff, as well as our board of directors, to edit, publish, and promote high-quality, effective materials both digital and printed.</p>
<p>These materials are a critical part of advancing the FSF's work to support the GNU Project, free software adoption, free media formats, and freedom on the Internet; and to oppose DRM, software patents, and proprietary software.</p>
<p>Some of the position's more important responsibilities include:</p>
<ul>
<li>
<p>stewarding the online publication and editing process for all outreach staff; including copyediting, formatting, posting, and maintaining material on our Web sites; and sending out e-mail messages to our lists;</p>
</li>
<li>
<p>producing and improving our monthly e-mail newsletter the <a href="https://fsf.org/fss">Free Software Supporter</a>;</p>
</li>
<li>
<p>improving the effectiveness of our audio and video materials use;</p>
</li>
<li>
<p>editing and building our biannual printed <a href="https://fsf.org/bulletin">Bulletin</a>;</p>
</li>
<li>
<p>promoting our work and the work of others in the area of computing freedom on social networking sites;</p>
</li>
<li>
<p>helping to produce fundraising materials and assisting with our fundraising drives;</p>
</li>
<li>
<p>cultivating the community around the <a class="external-link" href="http://libreplanet.org">LibrePlanet</a> wiki and network, including the annual conference;</p>
</li>
<li>
<p>working with and encouraging volunteers; and</p>
</li>
<li>
<p>being an approachable, humble, and friendly representative of the FSF to our worldwide community of existing supporters and the broader public, both in person and online.</p>
</li>
</ul>
<p>A successful candidate will have strong editing skills, especially in the area of copyediting, and will take pride in working with a team to create consistently polished and effective materials.</p>
<p>While this is a job for a person who is passionate about technology and its social impact, it is not a technical position. The main technical requirement is the willingness to learn to use many new and possibly unfamiliar pieces of software, with a positive attitude. That being said, experience with any of the following technologies will be considered a big plus: GNU/Linux, Plone, Drupal, CiviCRM, Ikiwiki, Subversion, Git, CVS, Ssh, JavaScript, CSS, HTML, Emacs, LaTeX, Inkscape, GIMP, Markdown, and MediaWiki.</p>
<p>Because the FSF works globally and seeks to have our materials distributed in as many languages as possible, multilingual candidates will have an advantage. English, German, French, Spanish, Dutch, Mandarin, Czech, and Malagasy, are represented among current FSF staff.</p>
<p>With our small staff of thirteen, each person makes a clear contribution. We work hard, but offer a humane and fun work environment.</p>
<p>The FSF is a mature but growing organization that provides great potential for advancement; existing staff get the first chance at any new job openings. If you're hired and don't like your job title, we might be able to change it. We're flexible like that.</p>
<h2>Benefits and salary</h2>
<p>The job must be worked on-site at FSF's downtown Boston offices. An on-site interview will be required with the executive director.</p>
<p>This job is a union position. The salary is fixed at $49k and is non-negotiable. Other benefits include:</p>
<ul>
<li>full family health coverage through Blue Cross/Blue Shield's HMO Blue program,</li>
<li>subsidized dental plan,</li>
<li>four weeks of paid vacation annually,</li>
<li>seventeen paid holidays annually,</li>
<li>public transit commuting cost reimbursement,</li>
<li>403(b) program through TIAA-CREF,</li>
<li>yearly cost-of-living pay increases, and</li>
<li>potential for an annual performance bonus.</li>
</ul>
<h2>Application instructions</h2>
<p>Applications must be submitted via email to <a href="mailto:hiring@fsf.org">hiring@fsf.org</a>. The email must contain the subject line, "Outreach and Communications Coordinator". A complete application should include:</p>
<ul>
<li>resume,</li>
<li>cover letter, </li>
<li>writing sample (1000 words or less),</li>
<li>links to published work online, and</li>
<li>three edits you would suggest to this job posting.</li>
</ul>
<p>All materials must be in a free format (such as plain text, PDF, or OpenDocument, and not Microsoft Word). Email submissions that do not follow these instructions will probably be overlooked. No phone calls, please.</p>
<p><b>Applications must be received by 10:00am EDT on Monday, May 20th.</b></p>
<p>The FSF is an equal opportunity employer and will not discriminate against any employee or application for employment on the basis of race, color, marital status, religion, age, sex, sexual orientation, national origin, handicap, or any other legally protected status recognized by federal, state or local law. We value diversity in our workplace.</p>
<h2>About the Free Software Foundation</h2>
<p>The Free Software Foundation, founded in 1985, is dedicated to promoting computer users' right to use, study, copy, modify, and redistribute computer programs. The FSF promotes the development and use of free (as in freedom) software -- particularly the GNU operating system and its GNU/Linux variants -- and free documentation for free software. The FSF also helps to spread awareness of the ethical and political issues of freedom in the use of software, and its Web sites, located at fsf.org and gnu.org, are an important source of information about GNU/Linux. Donations to support the FSF's work can be made at <a href="http://donate.fsf.org">http://donate.fsf.org</a>. Its headquarters are in Boston, MA, USA.</p></div>
    </content>
    <updated>2013-05-16T22:06:31Z</updated>
    <author>
      <name>johns</name>
    </author>
    <source>
      <id>http://www.fsf.org</id>
      <link href="http://www.fsf.org" rel="alternate" type="text/html"/>
      <link href="http://www.fsf.org/static/fsforg/rss/news.xml" rel="self" type="application/rdf+xml"/>
      <subtitle>Latest news from the Free Software Foundation</subtitle>
      <title>FSF News</title>
      <updated>2013-05-19T22:17:30Z</updated>
    </source>
  </entry>

  <entry>
    <id>http://www.fsf.org/blogs/directory/join-the-fsf-and-friends-in-updating-the-free-software-directory-1</id>
    <link href="http://www.fsf.org/blogs/directory/join-the-fsf-and-friends-in-updating-the-free-software-directory-1" rel="alternate" type="text/html"/>
    <title>Join the FSF and friends in updating the Free Software Directory</title>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Join the FSF and friends on Friday, May 17th, from 2pm to 5pm EDT
(19:00 to 22:00 UTC) to help improve the <a href="http://directory.fsf.org">Free Software Directory</a> by adding new entries and updating existing ones. We will be on IRC in the <a href="irc://irc.gnu.org/fsf">#fsf channel on freenode</a>.</p> 

<p>Tens of thousands of people visit <a href="http://directory.fsf.org">directory.fsf.org</a> each month to
discover free software. Each entry in the Directory contains a wealth
of useful information, from basic category and descriptions, to
providing detailed info about version control, IRC channels,
documentation, and licensing info that has been carefully checked by
FSF staff and trained volunteers.</p> 
 
<p>While the Free Software Directory has been and continues to be a great
resource to the world over the past decade, it has the potential of
being a resource of even greater value. But it needs your help!</p> 
 
<p>If you are eager to help and you can't wait or are simply unable to
make it onto IRC on Friday, our
<a href="http://directory.fsf.org/wiki/FSD:Participate"><em>participation guide</em></a> 
will provide you with all the information you need to get started on
helping the Directory today!</p></div>
    </content>
    <updated>2013-05-16T21:24:35Z</updated>
    <author>
      <name>jgay</name>
    </author>
    <source>
      <id>http://www.fsf.org</id>
      <link href="http://www.fsf.org" rel="alternate" type="text/html"/>
      <link href="http://www.fsf.org/static/fsforg/rss/blogs.xml" rel="self" type="application/rdf+xml"/>
      <subtitle>Writing by representatives of the Free Software Foundation.</subtitle>
      <title>FSF's blog</title>
      <updated>2013-05-19T22:18:17Z</updated>
    </source>
  </entry>

  <entry>
    <id>http://savannah.gnu.org/forum/forum.php?forum_id=7600</id>
    <link href="http://savannah.gnu.org/forum/forum.php?forum_id=7600" rel="alternate" type="text/html"/>
    <title>FreeIPMI 1.2.7 Released</title>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p><a href="http://ftp.gnu.org/gnu/freeipmi/freeipmi-1.2.7.tar.gz">http://ftp.gnu.org/gnu/freeipmi/freeipmi-1.2.7.tar.gz</a>
<br/>
</p>
<p>FreeIPMI 1.2.7 - 05/16/13
<br/>
-------------------------
<br/>
o Fix sensor output errors with OEM sensors.<br/>
</p></div>
    </content>
    <updated>2013-05-16T21:05:05Z</updated>
    <author>
      <name>Albert Chu</name>
    </author>
    <source>
      <id>http://savannah.gnu.org/news/atom.php?group=freeipmi</id>
      <link href="http://savannah.gnu.org/news/atom.php?group=freeipmi" rel="self" type="application/atom+xml"/>
      <title>GNU FreeIPMI - News</title>
      <updated>2013-05-16T21:12:02Z</updated>
    </source>
  </entry>

  <entry>
    <id>http://www.gnu.org/software/gnutls/news.html#2013-05-16</id>
    <link href="http://www.gnu.org/software/gnutls/news.html#2013-05-16" rel="alternate" type="text/html"/>
    <title>The addition of salsa20 and UMAC in GnuTLS</title>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">We are planning into pushing forward the standardization of
<a href="http://nmav.gnutls.org/2013/05/salsa20-and-umac-in-tls.html">Salsa20
and UMAC</a> as used in GnuTLS 3.2.0.</div>
    </content>
    <updated>2013-05-16T00:00:00Z</updated>
    <author>
      <name>Nikos Mavrogiannopoulos</name>
      <email>nmav@gnutls.org</email>
    </author>
    <source>
      <id>http://www.gnu.org/software/gnutls/news.atom</id>
      <link href="http://www.gnu.org/software/gnutls/news.atom" rel="self" type="application/atom+xml"/>
      <title>GnuTLS - News</title>
      <updated>2013-05-19T00:09:26Z</updated>
    </source>
  </entry>

  <entry>
    <id>http://www.fsf.org/events/20130529-ciudadmadero</id>
    <link href="http://www.fsf.org/events/20130529-ciudadmadero" rel="alternate" type="text/html"/>
    <title>«El movimiento del software libre»</title>
    <summary>Ciudad Madero, Mexico - Gran Salón T2 (Campus I), Instituto Tecnológico de Ciudad Madero, Av. 1o. de Mayo esq. Sor Juana Inés de la Cruz s/n, Col. Los Mangos C.P.89440, Cd. Madero, Tamaulipas,</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Ciudad Madero, Mexico - Gran Salón T2 (Campus I), Instituto Tecnológico de Ciudad Madero, Av. 1o. de Mayo esq. Sor Juana Inés de la Cruz s/n, Col. Los Mangos C.P.89440, Cd. Madero, Tamaulipas,<p>Richard Stallman hablará sobre las metas y la filosofía del
movimiento del Software Libre, y el estado y la historia del sistema
operativo GNU, el cual junto con el núcleo Linux, es actualmente
utilizado por decenas de millones de personas en todo el mundo.</p>

<p>Esa charla de Richard Stallman no será técnica y será abierta al
público; todos están invitados a asistir.</p>

<p>Favor de rellenar este formulario, para que podamos <a href="https://crm.fsf.org/civicrm/profile/create?gid=200&amp;reset=1">contactarle
acerca de eventos futuros en la región de Ciudad Madero.</a></p></div>
    </content>
    <updated>2013-05-15T23:07:17Z</updated>
    <category term="RMS Speech"/>
    <author>
      <name>jrasata</name>
    </author>
    <source>
      <id>http://www.fsf.org</id>
      <link href="http://www.fsf.org" rel="alternate" type="text/html"/>
      <link href="http://static.fsf.org/fsforg/rss/events.xml" rel="self" type="application/rdf+xml"/>
      <subtitle>Site Events</subtitle>
      <title>Events</title>
      <updated>2013-05-19T22:16:08Z</updated>
    </source>
  </entry>

  <entry>
    <id>http://www.fsf.org/events/20130701-passofundo</id>
    <link href="http://www.fsf.org/events/20130701-passofundo" rel="alternate" type="text/html"/>
    <title>"A Free Digital Society"</title>
    <summary>Passo Fundo, Brazil -  Centro de Eventos da Universidade de Passo Fundo, Campus I, Universidade de Passo Fundo, BR 285 - Km 171 - Bairro São José, Caixa Postal 611 - CEP 99001-970</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Passo Fundo, Brazil -  Centro de Eventos da Universidade de Passo Fundo, Campus I, Universidade de Passo Fundo, BR 285 - Km 171 - Bairro São José, Caixa Postal 611 - CEP 99001-970
<p>Activities directed at ``including'' more people in the use of digital
technology are predicated on the assumption that such inclusion is
invariably a good thing.  It appears so, when judged solely by
immediate practical convenience.  However, if we also judge in terms
of human rights, whether digital inclusion is good or bad depends on
what kind of digital world we are to be included in.  If we wish to
work towards digital inclusion as a goal, it behooves us to make sure
it is the good kind.</p>
 
<p>This speech by Richard Stallman will be nontechnical, admission is
free, and the public is encouraged to attend.</p>

<p>Please fill out our contact form, so that <a href="https://crm.fsf.org/civicrm/profile/create?gid=199&amp;reset=1">we
can contact you about future events in and around Passo Fundo.</a></p></div>
    </content>
    <updated>2013-05-15T22:02:54Z</updated>
    <category term="RMS Speech"/>
    <author>
      <name>jrasata</name>
    </author>
    <source>
      <id>http://www.fsf.org</id>
      <link href="http://www.fsf.org" rel="alternate" type="text/html"/>
      <link href="http://static.fsf.org/fsforg/rss/events.xml" rel="self" type="application/rdf+xml"/>
      <subtitle>Site Events</subtitle>
      <title>Events</title>
      <updated>2013-05-19T22:16:08Z</updated>
    </source>
  </entry>

  <entry>
    <id>http://savannah.gnu.org/forum/forum.php?forum_id=7599</id>
    <link href="http://savannah.gnu.org/forum/forum.php?forum_id=7599" rel="alternate" type="text/html"/>
    <title>GNU Automake 1.13.2 released</title>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>See the announcement here:
<br/>
&lt;<a href="http://lists.gnu.org/archive/html/automake/2013-05/msg00049.html">http://lists.gnu.org/archive/html/automake/2013-05/msg00049.html</a>&gt;<br/>
</p></div>
    </content>
    <updated>2013-05-15T21:05:18Z</updated>
    <author>
      <name>Stefano Lattarini</name>
    </author>
    <source>
      <id>http://savannah.gnu.org/news/atom.php?group=automake</id>
      <link href="http://savannah.gnu.org/news/atom.php?group=automake" rel="self" type="application/atom+xml"/>
      <title>Automake - News</title>
      <updated>2013-05-15T21:05:42Z</updated>
    </source>
  </entry>

  <entry xml:lang="en">
    <id>http://smalltalk.gnu.org/760 at http://smalltalk.gnu.org</id>
    <link href="http://smalltalk.gnu.org/blog/zecke/packageloader-loadpackagefromfile" rel="alternate" type="text/html"/>
    <title>PackageLoader&gt;&gt;#loadPackageFromFile:</title>
    <summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>GNU Smalltalk has the concept of packages for a long time. By default the gst-package application will read an XML file and then create a ZIP archive. This package format is called a Star archive in GNU Smalltalk.</p>

<p>When developing it is easier to just load the package from the filesystem and this is why we now have the above PackageLoader&gt;&gt;#loadPackageFromFile:.</p></div>
    </summary>
    <updated>2013-05-15T17:47:59Z</updated>
    <category scheme="http://smalltalk.gnu.org/tags/quick" term="quick"/>
    <author>
      <name>Holger Hans Peter Freyther</name>
    </author>
    <source>
      <id>http://smalltalk.gnu.org/blog</id>
      <link href="http://smalltalk.gnu.org/blog" rel="alternate" type="text/html"/>
      <link href="http://smalltalk.gnu.org/blog/feed" rel="self" type="application/rss+xml"/>
      <title>GNU Smalltalk blogs</title>
      <updated>2013-05-19T22:16:20Z</updated>
    </source>
  </entry>

  <entry>
    <id>http://www.fsf.org/events/20130710-brussels</id>
    <link href="http://www.fsf.org/events/20130710-brussels" rel="alternate" type="text/html"/>
    <title>Richard Stallman to speak in Brussels</title>
    <summary>Brusells, Belgium - Université libre de Bruxelles, Campus Solbosch, Bâtiment K, Avenue Franklin D. Roosevelt 50, B-1050</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Brusells, Belgium - Université libre de Bruxelles, Campus Solbosch, Bâtiment K, Avenue Franklin D. Roosevelt 50, B-1050<p>Richard Stallman will be speaking at the 14th Libre Software Movement.  His speech will be nontechnical, admission is free, and the public is encouraged to
attend.</p>

<p>Please fill out our contact form, so that <a href="https://crm.fsf.org/civicrm/profile/create?gid=128&amp;reset=1">we
can contact you about future events in and around Brussels.</a></p></div>
    </content>
    <updated>2013-05-15T15:40:28Z</updated>
    <category term="RMS Speech"/>
    <author>
      <name>jrasata</name>
    </author>
    <source>
      <id>http://www.fsf.org</id>
      <link href="http://www.fsf.org" rel="alternate" type="text/html"/>
      <link href="http://static.fsf.org/fsforg/rss/events.xml" rel="self" type="application/rdf+xml"/>
      <subtitle>Site Events</subtitle>
      <title>Events</title>
      <updated>2013-05-19T22:16:08Z</updated>
    </source>
  </entry>

  <entry xml:lang="en">
    <id>https://gnunet.org/2117 at https://gnunet.org</id>
    <link href="https://gnunet.org/tor2013tum" rel="alternate" type="text/html"/>
    <title xml:lang="en">Talk @ TUM: Tor and the Censorship Arms Race: Lessons Learned</title>
    <summary type="xhtml" xml:lang="en"><div xmlns="http://www.w3.org/1999/xhtml"><div class="field field-name-body field-type-text-with-summary field-label-hidden"><div class="field-items"><div class="field-item even"><p>On July 24th 2013 Roger Dingledine and Jacob Appelbaum will give a talk about <a href="https://www.torproject.org">Tor</a> and Internet Censorship.  The talk will be at the Garching campus of the TUM (U-Bahn stop: U6 Garching Forschungszentrum), in the FMI (Informatics/Mathematics) building, in room HS1 (the big lecture hall) starting at 18:00. Admission is of course free.</p>
</div></div></div></div>
    </summary>
    <updated>2013-05-15T08:39:01Z</updated>
    <author>
      <name>Bart Polot</name>
    </author>
    <source>
      <id>https://gnunet.org/frontpage</id>
      <link href="https://gnunet.org/frontpage" rel="alternate" type="text/html"/>
      <link href="https://gnunet.org/rss.xml" rel="self" type="application/rss+xml"/>
      <title xml:lang="en">GNUnet - GNU's Framework for Secure Peer-to-Peer Networking</title>
      <updated>2013-05-19T22:18:23Z</updated>
    </source>
  </entry>

  <entry xml:lang="en">
    <id>http://www.gnu.org/software/hurd/news/2012-q3-q4.html</id>
    <link href="http://www.gnu.org/software/hurd/news/2012-q3-q4.html" rel="alternate" type="text/html"/>
    <title xml:lang="en">2012-q3-q4</title>
    <summary type="xhtml" xml:lang="en"><div xmlns="http://www.w3.org/1999/xhtml"><p>Two quarters of the Hurd, Q3 and Q4 of 2012: <em>libpthread conversion</em>,
<em>installation CDs</em>, <em>hardware compatibility</em>, <em>porting</em>.
<a class="toggle" href="http://www.gnu.org/software/hurd/index.html#news-2012-q3-q4.full-news">Details.</a></p><div class="toggleable" id="news-2012-q3-q4.full-news"/><p/>

<p>In November 2012, we finished the <a href="http://lists.gnu.org/archive/html/bug-hurd/2012-11/msg00088.html">libthreads (cthreads) to libpthread (POSIX
Threads)
conversion</a>.
Converting the Hurd libraries to the <a href="http://www.gnu.org/software/hurd/./libpthread.html">pthread interfaces</a> allows
linking them together with other libraries that use this standard threading
interface themselves.  This project
<a href="http://lists.gnu.org/archive/html/bug-hurd/2002-10/msg00162.html">once</a> was
begun by Vicente Hernando Ara, and later continued by Barry deFreese, Thomas
DiModica, Thomas Schwinge, Samuel Thibault, Pino Toscano, and now brought to
completion by Richard Braun, who could not be scared by having to resolve the
last remaining tricky issues before the transition could be completed.</p>

<p>Cyril Roelandt shared a <a href="http://lists.gnu.org/archive/html/bug-hurd/2012-12/threads.html#00018">patch
series</a>
to fix double mutex unlocking problems.  He found these using a simple script
for <a href="http://coccinelle.lip6.fr/">Coccinelle</a>, which is a <a href="http://www.gnu.org/software/hurd/./open_issues/code_analysis.html">static code analysis
tool</a>.  We hope to see more such changes in the
future, and we're always interested in hearing people who have experience with
similar tools, for example to resolve other <a href="http://www.gnu.org/software/hurd/./open_issues/locking_issues.html">locking issues</a>.</p>

<p>Thomas Schwinge together with Richard Braun and Samuel Thibault <a href="http://lists.gnu.org/archive/html/bug-hurd/2012-12/msg00044.html">debugged and
fixed</a> a
deadlock related to signal delivery, resulting from a regression due to earlier
changes.</p>

<p>Also Samuel Thibault
<a href="http://lists.gnu.org/archive/html/bug-hurd/2012-12/msg00052.html">provided</a>
new <a href="http://people.debian.org/~sthibault/hurd-i386/installer/cdimage/current">installation
CDs</a>
and a new <a href="http://people.debian.org/~sthibault/hurd-i386/">QEMU image</a>.
Additionally to using pthreads, these now offer keyboard layout configuration.</p>

<p>In <a href="http://www.gnu.org/software/hurd/./glibc.html">glibc</a>,
Pino Toscano <a href="http://lists.gnu.org/archive/html/bug-hurd/2012-11/msg00046.html">implemented
syncfs</a> which
ensures that all data in the filesystem gets written to disk, as well as
support in <a href="http://www.gnu.org/software/hurd/./hurd/translator/procfs.html">procfs</a> for
<a href="http://lists.gnu.org/archive/html/bug-hurd/2012-12/msg00005.html">statfs</a>.</p>

<p>Thomas Schwinge improved the hardware compatibility of the Hurd by <a href="http://lists.gnu.org/archive/html/bug-hurd/2012-11/msg00077.html">identifying
and
backporting</a>
some changes contained in Linux 2.0.40, which prevents data corruption due to a
miscalculation of the size of medium-sized disks reporting 15 heads instead of
16.
This fix was part of an effort to get Hurd running using a <a href="http://lists.gnu.org/archive/html/bug-hurd/2012-12/msg00000.html">solid-state
disk</a>.
Samuel Thibault improved <a href="http://lists.debian.org/debian-hurd/2012/07/msg00011.html">network card
detection</a>
on busses other than 0 and 2.</p>

<p>Several people ported and fixed packages, further increasing the number of
<a href="http://www.gnu.org/software/hurd/./hurd/running/debian.html">Debian</a> packages that work on the Hurd: <em>Svante Signell</em> ported
<a href="http://lists.debian.org/debian-hurd/2012/07/msg00015.html">mlocate-0.25</a>,
<a href="http://lists.debian.org/debian-hurd/2012/07/msg00011.html">gnat-gps</a>,
<a href="http://lists.debian.org/debian-hurd/2012/08/msg00039.html">libpst</a>,
<a href="http://lists.debian.org/debian-hurd/2012/08/msg00046.html">libetpan</a>,
<a href="http://lists.debian.org/debian-hurd/2012/09/msg00004.html">spl</a>,
<a href="http://lists.debian.org/debian-hurd/2012/09/msg00007.html">dovecot</a>,
<a href="http://lists.debian.org/debian-hurd/2012/08/msg00054.html">xplc</a>,
<a href="http://lists.debian.org/debian-hurd/2012/08/msg00056.html">parrot</a>,
<a href="http://lists.debian.org/debian-hurd/2012/09/msg00008.html">x86info</a>,
<a href="http://lists.debian.org/debian-hurd/2012/09/msg00009.html">atlas</a>,
<a href="http://lists.debian.org/debian-hurd/2012/09/msg00011.html">rrdtool</a>,
<a href="http://lists.debian.org/debian-hurd/2012/09/msg00018.html">gdb</a>,
<a href="http://lists.debian.org/debian-hurd/2012/08/msg00030.html">yodl</a>, and fixed
<a href="http://lists.debian.org/debian-hurd/2012/12/msg00002.html">ntpdate</a> to work
again and
<a href="http://lists.gnu.org/archive/html/bug-hurd/2012-11/msg00062.html">improved</a>
the error handling in pflocal.  <em>Pino Toscano</em> added patches for
<a href="http://lists.gnu.org/archive/html/bug-hurd/2012-09/msg00004.html">procfs</a>,
<a href="http://lists.gnu.org/archive/html/bug-hurd/2012-10/msg00035.html">ptrace</a>,
<a href="http://lists.gnu.org/archive/html/bug-hurd/2012-10/msg00046.html">fsync on
stdout</a>,
<a href="http://lists.gnu.org/archive/html/bug-hurd/2012-11/msg00033.html">muntrace</a>,
<a href="http://lists.gnu.org/archive/html/bug-hurd/2012-11/msg00034.html">ulimit</a>,
<a href="http://lists.gnu.org/archive/html/bug-hurd/2012-11/msg00029.html">glibc</a> which
among others improve POSIX conformance, making it easier to write programs
which work on GNU/Hurd and GNU/Linux.  And he made the test pass for <a href="http://lists.gnu.org/archive/html/bug-hurd/2012-09/msg00053.html">FIFO
sockets</a> with
mknod and
<a href="http://lists.gnu.org/archive/html/bug-hurd/2012-09/msg00005.html">added</a> a
size parameter to <a href="http://www.gnu.org/software/hurd/./hurd/translator/tmpfs.html">tmpfs</a> and a <a href="http://lists.gnu.org/archive/html/bug-hurd/2012-10/msg00009.html">version suffix
option</a> for
GNU Mach's configure script.  <em>Cyril Roelandt</em> fixed a
<a href="http://lists.gnu.org/archive/html/bug-hurd/2012-12/msg00012.html">ps</a> bug, a
documentation typo <a href="http://lists.gnu.org/archive/html/bug-hurd/2012-10/msg00032.html">in
ps</a> and a
missing linker flag <a href="http://lists.gnu.org/archive/html/bug-hurd/2012-10/msg00025.html">in
procfs</a>.
<em>Matthew Leach</em>
<a href="http://lists.gnu.org/archive/html/bug-hurd/2012-11/msg00037.html">fixed</a> a
compilation error with older GCC versions due to duplicate type definition.
<em>Ole Streicher</em> fixed a bug in the Makefile of ftools-fv which was
<a href="http://lists.debian.org/debian-hurd/2012/10/msg00059.html">exposed</a> by testing
on Hurd.  <em>Samuel Thibault</em>
<a href="http://lists.debian.org/debian-hurd/2012/12/msg00005.html">removed</a> the
out-of-date floppy-warnings in the debian installer.</p>

<p>So if you want to test if your favorite packages work on the Hurd and
contribute towards making the full GNU system usable for a wider range
of people, please <a href="http://www.gnu.org/software/hurd/./contact_us.html">get in contact</a> -- and maybe already
grab the <a href="http://www.gnu.org/software/hurd/./source_repositories.html">source code</a>.</p>

<hr/>

<p>The <strong>GNU Hurd</strong> is the GNU project's replacement for the Unix kernel.  It is a
collection of servers that run on the Mach microkernel to implement file
systems, network protocols, file access control, and other features that are
implemented by the Unix kernel or similar kernels (such as Linux).  <a href="http://www.gnu.org/software/hurd/./hurd/documentation.html">More
detailed</a>.</p>

<p><strong>GNU Mach</strong> is the microkernel upon which a GNU Hurd system is based.  It
provides an Inter Process Communication (IPC) mechanism that the Hurd uses to
define interfaces for implementing in a distributed multi-server fashion the
services a traditional operating system kernel provides.  <a href="http://www.gnu.org/software/hurd/./microkernel/mach/gnumach.html">More
detailed</a>.</p>

<div class="toggleableend"/></div>
    </summary>
    <updated>2013-05-14T22:22:00Z</updated>
    <source>
      <id>http://www.gnu.org/software/hurd/index.html</id>
      <author>
        <name>GNU Hurd development blog</name>
      </author>
      <link href="http://www.gnu.org/software/hurd/index.html" rel="alternate" type="text/html"/>
      <link href="http://www.gnu.org/software/hurd/index.rss" rel="self" type="application/rss+xml"/>
      <subtitle xml:lang="en">GNU Hurd</subtitle>
      <title xml:lang="en">GNU Hurd</title>
      <updated>2013-05-15T14:15:56Z</updated>
    </source>
  </entry>

  <entry>
    <id>http://www.fsf.org/events/20130604-sanmiguel</id>
    <link href="http://www.fsf.org/events/20130604-sanmiguel" rel="alternate" type="text/html"/>
    <title>«Copyright vs. Comunidad»</title>
    <summary>San Miguel, El Salvador - Auditorio de la Universidad Gerardo Barrios, Calle Las Flores y Avenida Las Magnolias, atras de Didea, Colonia Escolán</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">San Miguel, El Salvador - Auditorio de la Universidad Gerardo Barrios, Calle Las Flores y Avenida Las Magnolias, atras de Didea, Colonia Escolán
<p>El copyright fue desarrollado en los tiempos de la imprenta, y fue
diseñado para adecuarse al sistema centralizado de copias impuesto por
la imprenta en aquella época. Pero en la actualidad, el sistema de
copyright se adapta mal a las redes informáticas, y solamente puede
ser impuesto mediante severas medidas de fuerza.</p>

<p>Las corporaciones globales que se lucran con el copyright están
presionando para imponer penalidades cada vez más injustas y para
incrementar su poder en materia de copyright, restringiendo al mismo
tiempo el acceso del público a la tecnología. Pero si lo que queremos
realmente es honrar el único propósito legítimo del copyright
--promover el progreso para beneficio del público-- entonces tendremos
que realizar cambios en la dirección contraria.</p>
 
<p>Esa charla de Richard Stallman no será técnica y será abierta al
público; todos están invitados a asistir.</p>

<p>Favor de rellenar este formulario, para que podamos <a href="https://crm.fsf.org/civicrm/profile/create?gid=196&amp;reset=1">contactarle
acerca de eventos futuros en la región de San Miguel.</a></p></div>
    </content>
    <updated>2013-05-14T14:28:29Z</updated>
    <category term="RMS Speech"/>
    <author>
      <name>jrasata</name>
    </author>
    <source>
      <id>http://www.fsf.org</id>
      <link href="http://www.fsf.org" rel="alternate" type="text/html"/>
      <link href="http://static.fsf.org/fsforg/rss/events.xml" rel="self" type="application/rdf+xml"/>
      <subtitle>Site Events</subtitle>
      <title>Events</title>
      <updated>2013-05-19T22:16:08Z</updated>
    </source>
  </entry>

  <entry>
    <id>tag:blogger.com,1999:blog-14978667.post-2947428973228400846</id>
    <link href="http://lcinexile.blogspot.com/feeds/2947428973228400846/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/>
    <link href="http://www.blogger.com/comment.g?blogID=14978667&amp;postID=2947428973228400846&amp;isPopup=true" rel="replies" title="1 Comments" type="text/html"/>
    <link href="http://www.blogger.com/feeds/14978667/posts/default/2947428973228400846" rel="edit" type="application/atom+xml"/>
    <link href="http://www.blogger.com/feeds/14978667/posts/default/2947428973228400846" rel="self" type="application/atom+xml"/>
    <link href="http://lcinexile.blogspot.com/2013/05/guile-100-7-animated-gifs.html" rel="alternate" title="Guile 100 #7: Animated GIFs" type="text/html"/>
    <title>Guile 100 #7: Animated GIFs</title>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><a href="http://lonelycactus.com/guile100/html/Problem-7.html">Challenge #7</a> in the <a href="http://lonelycactus.com/guile100/">Guile 100 Programs Project</a> is to write a function that creates an animated GIF from a datacube of 8-bit color indices and a 256 color palette.   It is the third challenge in this month's theme, which is "<a href="http://www.lonelycactus.com/guile100/html/Theme-2.html"><span style="color: #2e8a2e;">Web 1.0 -- Web 1990s style</span></a>".<br/><br/>The Guile 100 Programs Project is an attempt to collaboratively generate a set of examples of how to use the GNU Guile implementation of Scheme.<br/><br/>There is a 100 USD bounty for writing a readable solution to one of the problems.  Anyone can <a href="https://github.com/spk121/guile100">fork the repo</a> and tell me to pull it or just send me a solution by e-mail at <a href="mailto:guile100@lonelycactus.com">guile100 [at] lonelycactus.com</a><br/><br/>Three other problems remain open.<br/><ul><li>Challenge #5: <a href="http://lonelycactus.com/guile100/html/Problem-5.html">PHP-style Guile</a></li><li>Challenge #6: <a href="http://lonelycactus.com/guile100/html/Problem-6.html">CGI and MySQL</a></li></ul>This week I received solutions to <br/><ul><li>Challenge #3: <a href="http://lonelycactus.com/guile100/html/Problem-3.html">LZW Compression</a></li><li>Challenge #4: <a href="http://lonelycactus.com/guile100/html/Problem-4.html">Tar archives</a> </li></ul><div>There's one more problem left in Web 1.0.  Probably something to do with Gopher.  See you next week!<br/> </div><div> </div></div>
    </content>
    <updated>2013-05-14T12:28:01Z</updated>
    <published>2013-05-14T12:28:00Z</published>
    <author>
      <name>Mike Gran</name>
      <email>noreply@blogger.com</email>
    </author>
    <source>
      <id>tag:blogger.com,1999:blog-14978667</id>
      <category term="b2evolution"/>
      <category term="serveez-mg"/>
      <category term="guile"/>
      <category term="mysql"/>
      <category term="sizzweb"/>
      <category term="php"/>
      <author>
        <name>Mike Gran</name>
        <email>noreply@blogger.com</email>
      </author>
      <link href="http://lcinexile.blogspot.com/feeds/posts/default" rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml"/>
      <link href="http://www.blogger.com/feeds/14978667/posts/default" rel="self" type="application/atom+xml"/>
      <link href="http://lcinexile.blogspot.com/" rel="alternate" type="text/html"/>
      <link href="http://pubsubhubbub.appspot.com/" rel="hub" type="text/html"/>
      <link href="http://www.blogger.com/feeds/14978667/posts/default?start-index=26&amp;max-results=25" rel="next" type="application/atom+xml"/>
      <subtitle>A life of punk, code and apathy</subtitle>
      <title>Lonely Cactus</title>
      <updated>2013-05-19T06:20:37Z</updated>
    </source>
  </entry>

  <entry>
    <id>tag:blogger.com,1999:blog-14978667.post-5298546833728019528</id>
    <link href="http://lcinexile.blogspot.com/feeds/5298546833728019528/comments/default" rel="replies" title="Post Comments" type="application/atom+xml"/>
    <link href="http://www.blogger.com/comment.g?blogID=14978667&amp;postID=5298546833728019528&amp;isPopup=true" rel="replies" title="1 Comments" type="text/html"/>
    <link href="http://www.blogger.com/feeds/14978667/posts/default/5298546833728019528" rel="edit" type="application/atom+xml"/>
    <link href="http://www.blogger.com/feeds/14978667/posts/default/5298546833728019528" rel="self" type="application/atom+xml"/>
    <link href="http://lcinexile.blogspot.com/2013/05/lessons-from-ceefax.html" rel="alternate" title="Lessons from Ceefax" type="text/html"/>
    <title>Lessons from Ceefax</title>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><br/>Whilst meandering on the Web, I ran across a YouTube <a href="http://youtu.be/8NUesc8pXj4" target="_blank">video</a> of the BBC 2's Ceefax service.  Ceefax was the British version of Teletext, which was, in effect, hundreds of TV channels that displayed text or mosaic graphics.  Because this was in the analog TV signal and had to be backwards compatible with 30 year old televisions, the text resolution was quite poor.  24 lines by 40 columns.  Mostly it stuck to an eight color palette.  Each page had a theme: news, sports, weather, travel. Each page displayed about eighty words of text, and the message changed every 20 to 30 seconds.<br/><br/>Normally these pages had no audio, but, in the late night hours, BBC 2's main channel would mirror the main Ceefax page, and add some rather odd instrumental music accompaniment. <br/><br/>Ceefax is no more, since the analog television signal has been decommissioned in the UK.  Long live Ceefax.<br/><br/>Coincidentally, I'd been playing quite a bit with both GNU Serveez and Cairo, and I saw an opportunity to tie both together into a fun project.  So I've been writing a client/server to create a Teletext-like service.  The server is written using the Serveez server framework.  The server pushes rendered text and audio out to the client.  The client is written in GTK using Cairo to render authentic-looking bitmapped fonts that can do double-wide, double-tall, double-size, and, most importantly, *blink*!<br/><br/><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://1.bp.blogspot.com/-juOG8efKRUg/UZHTxCi9III/AAAAAAAAAGc/CZvNjr1dpdk/s1600/Screenshot+from+2013-05-13+21_56_17.png" style="margin-left: auto; margin-right: auto;"><img border="0" height="239" src="http://1.bp.blogspot.com/-juOG8efKRUg/UZHTxCi9III/AAAAAAAAAGc/CZvNjr1dpdk/s320/Screenshot+from+2013-05-13+21_56_17.png" width="320"/></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Font property test of my Ceefax-like client</td></tr></tbody></table><br/>I'm well along now.  The only remaining step before declaring it Alpha is to get it to play the Ogg stream for my dodgy instrumental music. For that part, I've been hooking the Ogg Vorbis libraries to the PulseAudio API.  I know that GStreamer is the way I'm supposed to do that sort of thing, but, I find that using the raw PulseAudio API much more amenable to the way I think.<br/><br/>As an aside, Gnome has chosen javascript as its official language.  I tried it out.  I wanted to use it, but, the GTK documentation just isn't there yet.  I ended up writing my client in C.<br/><br/><br/><table align="center" cellpadding="0" cellspacing="0" class="tr-caption-container" style="margin-left: auto; margin-right: auto; text-align: center;"><tbody><tr><td style="text-align: center;"><a href="http://2.bp.blogspot.com/-wH9gMWjzyA4/UZHT6rAepOI/AAAAAAAAAGk/HV9QQGCM-Lo/s1600/Screenshot+from+2013-05-13+22_19_50.png" style="margin-left: auto; margin-right: auto;"><img border="0" height="237" src="http://2.bp.blogspot.com/-wH9gMWjzyA4/UZHT6rAepOI/AAAAAAAAAGk/HV9QQGCM-Lo/s320/Screenshot+from+2013-05-13+22_19_50.png" width="320"/></a></td></tr><tr><td class="tr-caption" style="text-align: center;">Font test of my Ceefax-like client</td></tr></tbody></table><br/>---<br/>Reading the Teletext specifications lead me to reading all the Videotex specifications.  Videotex was a set of standards for a hardware terminal.<br/><br/>The best example of an implementation of Videotex was France's Minitel service, also recently decommissioned, apparently. <br/><br/>I'm amazed by the effort in these old standards, and the wisdom contained therein.  Keeping in mind that these standards are over 20 years old now.  It is almost hilarious how often we've reinvented the wheel since then.<br/><br/>What fascinated me most about the Videotex standards was the fundamental conceit that there is only stdout and stdin.  (Videotex was designed with a modem in mind.)  Just as old Unix or Plan 9 believed that everything, including hardware, is a file, Videotex believed that everything was stdout/stdin.  Escape sequences would let the server send to the client interspersed text, raster graphics, vector graphics, audio, color palettes, and fonts, all through stdin!  These standards pre-date HTTP and HTML by a decade or so.  They describe a terminal that is way more interesting that the Platonic ideal of a terminal presented in ECMA-48, which is a specification burdened by trying to cover both terminals and line printers.<br/><br/>But a feature complete Videotex terminal was never implemented as far as I know. Neither was a feature complete ECMA-48 terminal implemented, for that matter.</div>
    </content>
    <updated>2013-05-14T06:20:32Z</updated>
    <published>2013-05-14T06:20:00Z</published>
    <author>
      <name>Mike Gran</name>
      <email>noreply@blogger.com</email>
    </author>
    <source>
      <id>tag:blogger.com,1999:blog-14978667</id>
      <category term="b2evolution"/>
      <category term="serveez-mg"/>
      <category term="guile"/>
      <category term="mysql"/>
      <category term="sizzweb"/>
      <category term="php"/>
      <author>
        <name>Mike Gran</name>
        <email>noreply@blogger.com</email>
      </author>
      <link href="http://lcinexile.blogspot.com/feeds/posts/default" rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml"/>
      <link href="http://www.blogger.com/feeds/14978667/posts/default" rel="self" type="application/atom+xml"/>
      <link href="http://lcinexile.blogspot.com/" rel="alternate" type="text/html"/>
      <link href="http://pubsubhubbub.appspot.com/" rel="hub" type="text/html"/>
      <link href="http://www.blogger.com/feeds/14978667/posts/default?start-index=26&amp;max-results=25" rel="next" type="application/atom+xml"/>
      <subtitle>A life of punk, code and apathy</subtitle>
      <title>Lonely Cactus</title>
      <updated>2013-05-19T06:20:37Z</updated>
    </source>
  </entry>

  <entry>
    <id>http://www.fsf.org/events/20130613-torreon</id>
    <link href="http://www.fsf.org/events/20130613-torreon" rel="alternate" type="text/html"/>
    <title>Richard Stallman to speak in Torreón</title>
    <summary>Torreón, Mexico - [La hora y dirección exacta serán determinadas.]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Torreón, Mexico - [La hora y dirección exacta serán determinadas.]
<p>Esa charla de Richard Stallman no será técnica y será abierta al
público; todos están invitados a asistir.</p>

<p>Favor de rellenar este formulario, para que podamos <a href="https://crm.fsf.org/civicrm/profile/create?gid=198&amp;reset=1">contactarle
acerca de eventos futuros en la región de Torreón.</a></p></div>
    </content>
    <updated>2013-05-13T19:42:17Z</updated>
    <category term="RMS Speech"/>
    <author>
      <name>jrasata</name>
    </author>
    <source>
      <id>http://www.fsf.org</id>
      <link href="http://www.fsf.org" rel="alternate" type="text/html"/>
      <link href="http://static.fsf.org/fsforg/rss/events.xml" rel="self" type="application/rdf+xml"/>
      <subtitle>Site Events</subtitle>
      <title>Events</title>
      <updated>2013-05-19T22:16:08Z</updated>
    </source>
  </entry>

  <entry>
    <id>http://www.fsf.org/events/20130605-sanmiguel</id>
    <link href="http://www.fsf.org/events/20130605-sanmiguel" rel="alternate" type="text/html"/>
    <title>«El movimiento del software libre»</title>
    <summary>San Miguel, El Salvador -  Hotel Tropico Inn, Avenida Roosevelt Sut No. 303</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">San Miguel, El Salvador -  Hotel Tropico Inn, Avenida Roosevelt Sut No. 303<p>Richard Stallman hablará sobre las metas y la filosofía del
movimiento del Software Libre, y el estado y la historia del sistema
operativo GNU, el cual junto con el núcleo Linux, es actualmente
utilizado por decenas de millones de personas en todo el mundo.</p>

<p>Esa charla de Richard Stallman no será técnica y será abierta al
público; todos están invitados a asistir.</p>

<p>Favor de rellenar este formulario, para que podamos <a href="https://crm.fsf.org/civicrm/profile/create?gid=196&amp;reset=1">contactarle
acerca de eventos futuros en la región de San Miguel.</a></p></div>
    </content>
    <updated>2013-05-13T18:13:28Z</updated>
    <category term="RMS Speech"/>
    <author>
      <name>jrasata</name>
    </author>
    <source>
      <id>http://www.fsf.org</id>
      <link href="http://www.fsf.org" rel="alternate" type="text/html"/>
      <link href="http://static.fsf.org/fsforg/rss/events.xml" rel="self" type="application/rdf+xml"/>
      <subtitle>Site Events</subtitle>
      <title>Events</title>
      <updated>2013-05-19T22:16:08Z</updated>
    </source>
  </entry>

  <entry>
    <id>http://www.fsf.org/events/20130606-sanjuan</id>
    <link href="http://www.fsf.org/events/20130606-sanjuan" rel="alternate" type="text/html"/>
    <title>Richard Stallman to speak in San Juan</title>
    <summary>San Juan, Puerto Rico - Puerto Rico Convention Center</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">San Juan, Puerto Rico - Puerto Rico Convention Center<p>Richard Stallman's speech will be nontechnical and the public is encouraged to attend.</p>

<p>Please fill out our contact form, so that <a href="https://crm.fsf.org/civicrm/profile/create?gid=197&amp;reset=1">we
can contact you about future events in and around San Juan.</a></p></div>
    </content>
    <updated>2013-05-13T16:35:24Z</updated>
    <category term="RMS Speech"/>
    <author>
      <name>jrasata</name>
    </author>
    <source>
      <id>http://www.fsf.org</id>
      <link href="http://www.fsf.org" rel="alternate" type="text/html"/>
      <link href="http://static.fsf.org/fsforg/rss/events.xml" rel="self" type="application/rdf+xml"/>
      <subtitle>Site Events</subtitle>
      <title>Events</title>
      <updated>2013-05-15T14:16:11Z</updated>
    </source>
  </entry>

  <entry>
    <id>http://savannah.gnu.org/forum/forum.php?forum_id=7594</id>
    <link href="http://savannah.gnu.org/forum/forum.php?forum_id=7594" rel="alternate" type="text/html"/>
    <title>Release 1.0.2 out now</title>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>New features in this version:
<br/>
  *Wysiwyg Improvements
<br/>
              * Dragging now shows the object as you drag moving over
<br/>
                the score
<br/>
              * Dragging of objects attached to notes can now be done
<br/>
              * Slurs can be re-shaped
<br/>
      * Chord Symbols
<br/>
              * Place chords on a separate staff and have them
<br/>
                automatically typeset as Chord Symbols
<br/>
</p>
<p>      * Bug Fixes
<br/>
              * Octave playback bug fixed<br/>
</p></div>
    </content>
    <updated>2013-05-13T10:49:02Z</updated>
    <author>
      <name>Richard Shann</name>
    </author>
    <source>
      <id>http://savannah.gnu.org/news/atom.php?group=denemo</id>
      <link href="http://savannah.gnu.org/news/atom.php?group=denemo" rel="self" type="application/atom+xml"/>
      <title>Denemo - News</title>
      <updated>2013-05-13T10:49:22Z</updated>
    </source>
  </entry>

  <entry xml:lang="en">
    <id>http://sandklef.wordpress.com/?p=1011</id>
    <link href="http://sandklef.wordpress.com/2013/05/13/to-gnome-or-not-gnome/" rel="alternate" type="text/html"/>
    <title>To Gnome or not Gnome</title>
    <summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Hired a trailer yesterday and saw this sticker on it.                       Someone doesn’t seem to like Gnome. Compare with Gnome’s official logo.                               Will KDE start using it?<img alt="" border="0" height="1" src="http://stats.wordpress.com/b.gif?host=sandklef.wordpress.com&amp;blog=4840604&amp;post=1011&amp;subd=sandklef&amp;ref=&amp;feed=1" width="1"/></div>
    </summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>Hired a trailer yesterday and saw this sticker on it.</p>
<p><a href="http://sandklef.files.wordpress.com/2013/05/20130512_160320.jpg"><img alt="20130512_160320" class=" wp-image-1012 alignleft" height="278" src="http://sandklef.files.wordpress.com/2013/05/20130512_160320.jpg?w=371&amp;h=278" width="371"/></a></p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p>Someone doesn’t seem to like <a href="http://www.gnome.org">Gnome</a>. Compare with Gnome’s official logo.</p>
<p> </p>
<p> </p>
<p><a href="http://sandklef.files.wordpress.com/2013/05/402px-gnomelogo-svg.png"><img alt="402px-Gnomelogo.svg" class="alignright  wp-image-1013" height="342" src="http://sandklef.files.wordpress.com/2013/05/402px-gnomelogo-svg.png?w=281&amp;h=342" width="281"/></a></p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p>Will <a href="http://kde.org">KDE</a> start using it?</p>
<br/>  <a href="http://feeds.wordpress.com/1.0/gocomments/sandklef.wordpress.com/1011/" rel="nofollow"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sandklef.wordpress.com/1011/"/></a> <img alt="" border="0" height="1" src="http://stats.wordpress.com/b.gif?host=sandklef.wordpress.com&amp;blog=4840604&amp;post=1011&amp;subd=sandklef&amp;ref=&amp;feed=1" width="1"/></div>
    </content>
    <updated>2013-05-13T08:28:05Z</updated>
    <category term="Free Software"/>
    <category term="Gnome"/>
    <category term="Software"/>
    <author>
      <name>sandklef</name>
    </author>
    <source>
      <id>http://sandklef.wordpress.com</id>
      <logo>http://s2.wp.com/i/buttonw-com.png</logo>
      <link href="http://sandklef.wordpress.com/category/freesoftware/feed/" rel="self" type="application/rss+xml"/>
      <link href="http://sandklef.wordpress.com" rel="alternate" type="text/html"/>
      <link href="http://sandklef.wordpress.com/osd.xml" rel="search" title="hesa's Weblog" type="application/opensearchdescription+xml"/>
      <link href="http://sandklef.wordpress.com/?pushpress=hub" rel="hub" type="text/html"/>
      <subtitle>Don't let it bring you down</subtitle>
      <title>hesa's Weblog » Free Software</title>
      <updated>2013-05-13T14:16:10Z</updated>
    </source>
  </entry>

  <entry>
    <id>http://savannah.gnu.org/forum/forum.php?forum_id=7593</id>
    <link href="http://savannah.gnu.org/forum/forum.php?forum_id=7593" rel="alternate" type="text/html"/>
    <title>GNU Guix 0.2 released</title>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>The second alpha release of <a href="http://www.gnu.org/software/guix">GNU Guix</a> is available.  It comes with a number of new features, notably:
<br/>
</p>
<ul>
<li>The <a href="http://www.gnu.org/software/guix/manual/html_node/Invoking-guix-package.html">"guix package"</a> command supports upgrades of user profiles and full-text package searches.
</li>
<li>Binary packages are <a href="http://hydra.gnu.org:3000/jobset/gnu/master">continuously built</a> and may be transparently downloaded as "substitutes" to the result of a local build.
</li>
<li>The new <a href="http://www.gnu.org/software/guix/manual/html_node/Invoking-guix-pull.html">"guix pull"</a> command updates the user's copy of Guix and its distro from Git.
</li>
<li>New Scheme interfaces are available to facilitate package management in various ways.
</li>
</ul>
<p>The distribution has grown to more than 400 packages; noteworthy additions include Xorg and TeXLive.
<br/>
</p>
<p>See the <a href="http://lists.gnu.org/archive/html/bug-guix/2013-05/msg00034.html">original announcement</a> for more information.<br/>
</p></div>
    </content>
    <updated>2013-05-12T21:18:50Z</updated>
    <author>
      <name>Ludovic Courtès</name>
    </author>
    <source>
      <id>http://savannah.gnu.org/news/atom.php?group=guix</id>
      <link href="http://savannah.gnu.org/news/atom.php?group=guix" rel="self" type="application/atom+xml"/>
      <title>GNU Guix - News</title>
      <updated>2013-05-13T08:12:22Z</updated>
    </source>
  </entry>

  <entry>
    <id>http://www.fsf.org/events/20130513-madrid</id>
    <link href="http://www.fsf.org/events/20130513-madrid" rel="alternate" type="text/html"/>
    <title>«¡A doblar el GNU que nunca se dobla!»</title>
    <summary>Madrid, Spain - Medialab-Prado, segundo piso, Plaza de las Letras, C/ Alameda, 15 (Metro: Atocha (L1); Bus: 6, 10, 14, 19, 26, 27, 32, 34, 37 y 45)</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Madrid, Spain - Medialab-Prado, segundo piso, Plaza de las Letras, C/ Alameda, 15 (Metro: Atocha (L1); Bus: 6, 10, 14, 19, 26, 27, 32, 34, 37 y 45)
<p>Richard Matthew Stallman nos acompañará en una sesión dedicada a la
metodología de creación de obras libres y las licencias asociadas. El
creador del GNU y del movimiento del Software Libre expondrá los principios
y la metodología de desarrollo de proyectos para la comunidad sobre la base
de un caso real: la invención de un ñú de Origami que represente y pueda
ser doblado por cualquier usuario a favor de la FSF.</p>

<p>Esta charla no será técnica y será abierta al público; todos están
invitados a asistir.</p>

<p>Favor de rellenar este formulario, para que podamos <a href="https://crm.fsf.org/civicrm/profile/create?gid=69&amp;reset=1">contactarle
acerca de eventos futuros en la región madrileña.</a></p></div>
    </content>
    <updated>2013-05-12T19:02:59Z</updated>
    <category term="RMS Speech"/>
    <author>
      <name>jrasata</name>
    </author>
    <source>
      <id>http://www.fsf.org</id>
      <link href="http://www.fsf.org" rel="alternate" type="text/html"/>
      <link href="http://static.fsf.org/fsforg/rss/events.xml" rel="self" type="application/rdf+xml"/>
      <subtitle>Site Events</subtitle>
      <title>Events</title>
      <updated>2013-05-13T22:16:08Z</updated>
    </source>
  </entry>

  <entry xml:lang="en">
    <id>http://gnuremotecontrol.wordpress.com/?p=218</id>
    <link href="http://gnuremotecontrol.wordpress.com/2013/05/11/newsletter-may-2013/" rel="alternate" type="text/html"/>
    <title>Newsletter – May 2013</title>
    <summary type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">THIS MONTH….. -TRENDS -DISCUSSIONS -EXISTING CODE -SECURITY -LASTLY -TRENDS The stuff going on in the big picture now….. Energy firms must pass on smart meter savings to the consumers in the UK, concludes the Public Accounts Committee of MPs. Following the announcement of legislation to introduce Demand Response in the UK electricity industry the Committee […]<img alt="" border="0" height="1" src="http://stats.wordpress.com/b.gif?host=gnuremotecontrol.wordpress.com&amp;blog=46697247&amp;post=218&amp;subd=gnuremotecontrol&amp;ref=&amp;feed=1" width="1"/></div>
    </summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p><span style="color: #000000;"><strong>THIS MONTH…..</strong></span><br/>
<span style="color: #000000;"><strong>-TRENDS<br/>
-DISCUSSIONS<br/>
-EXISTING CODE<br/>
-SECURITY<br/>
-LASTLY</strong></span><strong/><strong/></p>
<p><span style="color: #000000;"><strong>-TRENDS</strong></span><br/>
<span style="color: #000000;">The stuff going on in the big picture now…..</span></p>
<ul>
<li><span style="color: #000000;">Energy firms must pass on smart meter <a href="http://www.bbc.co.uk/news/uk-politics-16581812" target="_blank">savings</a> to the consumers in the UK, concludes the Public Accounts Committee of MPs. Following the announcement of legislation to introduce Demand Response in the UK electricity industry the Committee of MPs cautioned, “No transparent mechanism presently exists for ensuring savings to the supplier are passed on to consumers, and the track record of energy companies to date does not inspire confidence that this will happen.”</span></li>
<li><span style="color: #000000;">Smart meters will save power for customers up to £64</span> <a href="http://www.bbc.co.uk/news/uk-wales-22205299" target="_blank">each</a><span style="color: #000000;"> across Wales on average, report says. The report was generated by British Gas and business analysts Oxford Economics.</span></li>
<li><a href="http://www.bbc.co.uk/news/technology-18407340" target="_blank">Warning</a><span style="color: #000000;"> over smart meters presents a privacy risk. Concern is focused around the usage of the data.</span></li>
<li><span style="color: #000000;">Even</span> <a href="http://www.washingtonpost.com/sf/brand-connect/wp/2013/04/22/city-water-goes-wireless/?wpisrc=nl_cuzheadshttp://" target="_blank">water</a><span style="color: #000000;"> is going wireless. The public infrastructure is growing to include many components that are now remotely monitored.</span></li>
<li><span style="color: #000000;">A new term of</span> <a href="http://online.wsj.com/article/SB10001424052748703445904576117983831293552.html?mod=WSJ_JREnergy_Right" target="_blank">negawatts</a><span style="color: #000000;"> has come forth, where big electricity consumers are paid to voluntarily reduce their power usage. This is an incentive for the adoption of Demand Response.</span></li>
<li><span style="color: #000000;"><a href="http://online.wsj.com/article/SB10000872396390443792604577572852896507494.html?mod=WSJ_JREnergy_Right" target="_blank">Recommendations</a> provided about building a Green Consumer. The article identifies energy users need financial incentives, but money alone is not enough to change customer behavior.</span></li>
<li><span style="color: #000000;"><a href="http://online.wsj.com/article/SB10001424127887323415304578368683701371280.html?mod=WSJ_JREnergy_4_2_RIGHT" target="_blank">Consideration</a></span><span style="color: #000000;"> if consumers should participate in their Energy Supplier’s Smart-Meter program.</span></li>
<li><span style="color: #000000;">A</span> <a href="http://www.pcworld.com/article/2034139/new-data-center-survey-shows-mediocre-results-for-energy-efficiency.html#tk.rss_all" target="_blank">survey</a><span style="color: #000000;"> by Digital Realty Trust shows mediocre results for data center energy efficiency. This is a strong indicator that large energy consuming is not occurring in an efficient manner.</span></li>
<li><span style="color: #000000;">Evidence that Green Buildings are taking </span><a href="http://www.cbsnews.com/8301-201_162-57580147/green-building-takes-hold-but-wasted-energy-abounds/" target="_blank">hold</a><span style="color: #000000;">, but wasted energy abounds. This is another sign that energy waste is still prevalent in many domestic, commercial, and industrial facilities.</span></li>
<li><span style="color: #000000;">A <a href="http://www.computerworld.com.au/article/458439/cloud_real_ecological_timebomb_wireless_data_centres/#tk.rss_all" target="_blank">forecast</a></span><span style="color: #000000;"> with the proliferation of online storage of user data and applications. By 2015, the energy used to run data centers will be a “drop in the ocean”, compared to the wireless networks used to access cloud services. This is clear proof Information Technology is a strong driver of increased energy usage.<br/>
</span></li>
</ul>
<p><span style="color: #000000;"><strong>-DISCUSSIONS</strong></span><br/>
<span style="color: #000000;">The stuff we are talking about now…..</span></p>
<p><span style="color: #000000;"><strong>SMART GRID TECHNOLOGY CONTRIBUTOR</strong></span><br/>
<span style="color: #000000;"> We are in discussion for how we can contribute to the larger picture of the Smart Grid. Topics of discussion include feature additions to GNU remotecontrol and interfacing with other systems, such as Automated Meter Reading. This is still a formative discussion.</span></p>
<p><span style="color: #000000;"><strong>OPEN ADR GAINING MOMENTUM WORLDWIDE</strong></span><br/>
<span style="color: #000000;">Open ADR Alliance reaches a</span> <a href="http://www.openadr.org/index.php?option=com_content&amp;view=article&amp;id=77:oadr-gaining-momentum-worldwide&amp;catid=21:press-releases&amp;Itemid=121" target="_blank">milestone</a><span style="color: #000000;"> of 100 members, through growing global interest. This milestone builds our confidence in this developing standard is the probable way Demand Response will occur in the near future. We are expanding our research to determine how we need to interface with Demand Response technologies.</span></p>
<p><span style="color: #000000;"><strong>-EXISTING CODE</strong></span><br/>
<span style="color: #000000;">The stuff you may want to consider…..</span></p>
<p><span style="color: #000000;"><strong>BUG FIXES</strong></span><br/>
<span style="color: #000000;">We have <strong>0 </strong></span><a href="https://savannah.gnu.org/bugs/?group=remotecontrol" target="_blank">bugs</a><span style="color: #000000;"> and <strong>0</strong> fixes since our last Blog posting. Please review existing patches and apply to your GNU remotecontrol installation, as appropriate.</span></p>
<p><span style="color: #000000;"><strong>-SECURITY</strong></span><br/>
<span style="color: #000000;">The stuff you <strong>REALLY</strong> want to consider…..</span></p>
<p><span style="color: #000000;"><strong>FBI ISSUES ALERT</strong></span><br/>
<span style="color: #000000;">The FBI issued an</span><span style="color: #000000;"> <a href="https://securityledger.com/fbi-issued-alert-over-july-attack-on-hvac-system/" target="_blank">alert</a></span><span style="color: #000000;"> to businesses in July 2012 after unknown attackers breached a computer used to control the heating, ventilation and air conditioning (HVAC) system of a New Jersey company, accessing a graphical user interface for the system, including a floor plan layout of the company’s office. </span><span style="color: #000000;"><a href="https://savannah.gnu.org/mail/?group=remotecontrol" target="_blank" title="Talk">Talk</a> to us if you would like further information on addressing HVAC security concerns.</span></p>
<p><span style="color: #000000;"><strong>-LASTLY</strong></span><br/>
<span style="color: #000000;">Whatever you do…..don’t get beat up over your <a href="http://en.wikipedia.org/wiki/Energy_management" target="_blank" title="Energy Management">Energy Management</a> strategy. GNU remotecontrol is here to help simplify your life, not make it more complicated. <a href="https://savannah.gnu.org/mail/?group=remotecontrol" target="_blank" title="Talk">Talk</a> to us if you are stuck or cannot figure out the best option for your GNU remotecontrol framework. The chances are the answer you need is something we have already worked through. We would be happy to help you by discussing your situation with you.</span></p>
<p><span style="color: #000000;"><strong>…..UNTIL NEXT MONTH!</strong></span></p>
<br/>  <a href="http://feeds.wordpress.com/1.0/gocomments/gnuremotecontrol.wordpress.com/218/" rel="nofollow"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gnuremotecontrol.wordpress.com/218/"/></a> <img alt="" border="0" height="1" src="http://stats.wordpress.com/b.gif?host=gnuremotecontrol.wordpress.com&amp;blog=46697247&amp;post=218&amp;subd=gnuremotecontrol&amp;ref=&amp;feed=1" width="1"/></div>
    </content>
    <updated>2013-05-11T16:12:38Z</updated>
    <category term="DISCUSSIONS"/>
    <category term="EXISTING CODE"/>
    <category term="Newsletter"/>
    <category term="SECURITY"/>
    <category term="TRENDS"/>
    <category term="Bugs"/>
    <category term="Discussions"/>
    <category term="Fixes"/>
    <category term="Negawatts"/>
    <category term="OPEN ADR"/>
    <category term="Smart Grid"/>
    <category term="Smart-Meter"/>
    <author>
      <name>gnuremotecontrol</name>
    </author>
    <source>
      <id>http://gnuremotecontrol.wordpress.com</id>
      <logo>http://0.gravatar.com/blavatar/49f26e63ac4ef4a0f6a5ce8eb7996f65?s=96&amp;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</logo>
      <link href="http://gnuremotecontrol.wordpress.com/feed/" rel="self" type="application/rss+xml"/>
      <link href="http://gnuremotecontrol.wordpress.com" rel="alternate" type="text/html"/>
      <link href="http://gnuremotecontrol.wordpress.com/osd.xml" rel="search" title="GNU remotecontrol" type="application/opensearchdescription+xml"/>
      <link href="http://gnuremotecontrol.wordpress.com/?pushpress=hub" rel="hub" type="text/html"/>
      <subtitle>HVAC Management made simple</subtitle>
      <title>GNU remotecontrol</title>
      <updated>2013-05-19T22:16:28Z</updated>
    </source>
  </entry>

  <entry>
    <id>http://www.fsf.org/events/20130605-sansalvador</id>
    <link href="http://www.fsf.org/events/20130605-sansalvador" rel="alternate" type="text/html"/>
    <title>«El movimiento del software libre»</title>
    <summary>San Salvador, El Salvador -  [Lugar exacto de la charla será determinado.]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">San Salvador, El Salvador -  [Lugar exacto de la charla será determinado.] <p>Richard Stallman hablará sobre las metas y la filosofía del
movimiento del Software Libre, y el estado y la historia del sistema
operativo GNU, el cual junto con el núcleo Linux, es actualmente
utilizado por decenas de millones de personas en todo el mundo.</p>

<p>Esa charla de Richard Stallman no será técnica y será abierta al
público; todos están invitados a asistir.</p>

<p>Favor de rellenar este formulario, para que podamos <a href="https://crm.fsf.org/civicrm/profile/create?gid=196&amp;reset=1">contactarle
acerca de eventos futuros en la región de San Salvador.</a></p></div>
    </content>
    <updated>2013-05-10T19:52:37Z</updated>
    <category term="RMS Speech"/>
    <author>
      <name>jrasata</name>
    </author>
    <source>
      <id>http://www.fsf.org</id>
      <link href="http://www.fsf.org" rel="alternate" type="text/html"/>
      <link href="http://static.fsf.org/fsforg/rss/events.xml" rel="self" type="application/rdf+xml"/>
      <subtitle>Site Events</subtitle>
      <title>Events</title>
      <updated>2013-05-13T14:16:14Z</updated>
    </source>
  </entry>

  <entry>
    <id>http://www.fsf.org/events/20130527-cancun</id>
    <link href="http://www.fsf.org/events/20130527-cancun" rel="alternate" type="text/html"/>
    <title>Richard Stallman to speak in Cancún</title>
    <summary>Cancún, Mexico - auditorio principal, Universidad Tecnológica de Cancún [Hora y lugar exacto de la charla serán determinados.]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Cancún, Mexico - auditorio principal, Universidad Tecnológica de Cancún [Hora y lugar exacto de la charla serán determinados.]<p>Favor de rellenar este formulario, para que podamos <a href="https://crm.fsf.org/civicrm/profile/create?gid=195&amp;reset=1">contactarle
acerca de eventos futuros en la región de Cancún.</a></p></div>
    </content>
    <updated>2013-05-10T16:01:38Z</updated>
    <category term="RMS Speech"/>
    <author>
      <name>jrasata</name>
    </author>
    <source>
      <id>http://www.fsf.org</id>
      <link href="http://www.fsf.org" rel="alternate" type="text/html"/>
      <link href="http://static.fsf.org/fsforg/rss/events.xml" rel="self" type="application/rdf+xml"/>
      <subtitle>Site Events</subtitle>
      <title>Events</title>
      <updated>2013-05-19T22:16:08Z</updated>
    </source>
  </entry>

  <entry>
    <id>http://www.fsf.org/events/20130528-cancun</id>
    <link href="http://www.fsf.org/events/20130528-cancun" rel="alternate" type="text/html"/>
    <title>Richard Stallman to speak in Cancún</title>
    <summary>Cancún, Mexico - auditorio principal, Universidad Tecnológica de Cancún [Hora y lugar exacto de la charla serán determinados.]</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">Cancún, Mexico - auditorio principal, Universidad Tecnológica de Cancún [Hora y lugar exacto de la charla serán determinados.] <p>Esa charla de Richard Stallman no será técnica y será abierta al
público; todos están invitados a asistir.</p>

<p>Favor de rellenar este formulario, para que podamos <a href="https://crm.fsf.org/civicrm/profile/create?gid=195&amp;reset=1">contactarle
acerca de eventos futuros en la región de Cancún.</a></p></div>
    </content>
    <updated>2013-05-10T16:00:50Z</updated>
    <category term="RMS Speech"/>
    <author>
      <name>jrasata</name>
    </author>
    <source>
      <id>http://www.fsf.org</id>
      <link href="http://www.fsf.org" rel="alternate" type="text/html"/>
      <link href="http://static.fsf.org/fsforg/rss/events.xml" rel="self" type="application/rdf+xml"/>
      <subtitle>Site Events</subtitle>
      <title>Events</title>
      <updated>2013-05-19T22:16:08Z</updated>
    </source>
  </entry>

  <entry>
    <id>http://www.gnu.org/software/gnutls/news.html#2013-05-10</id>
    <link href="http://www.gnu.org/software/gnutls/news.html#2013-05-10" rel="alternate" type="text/html"/>
    <title>GnuTLS 3.1.11 and 3.2.0</title>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml"><p>
<a href="http://article.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/6723">GnuTLS
3.1.11</a>, and <a href="http://article.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/6725">GnuTLS
3.2.0</a> were released.
</p></div>
    </content>
    <updated>2013-05-10T00:00:00Z</updated>
    <author>
      <name>Nikos Mavrogiannopoulos</name>
      <email>nmav@gnutls.org</email>
    </author>
    <source>
      <id>http://www.gnu.org/software/gnutls/news.atom</id>
      <link href="http://www.gnu.org/software/gnutls/news.atom" rel="self" type="application/atom+xml"/>
      <title>GnuTLS - News</title>
      <updated>2013-05-19T00:09:26Z</updated>
    </source>
  </entry>

  <entry>
    <id>http://www.fsf.org/news/world-wide-web-consortium-takes-next-step-with-controversial-drm-proposal-defective-by-design-condemns-decision</id>
    <link href="http://www.fsf.org/news/world-wide-web-consortium-takes-next-step-with-controversial-drm-proposal-defective-by-design-condemns-decision" rel="alternate" type="text/html"/>
    <title>World Wide Web Consortium takes next step with controversial DRM proposal, Defective by Design condemns decision</title>
    <summary>BOSTON, Massachusetts, USA -- Thursday, May 9, 2013 -- The HTML Working Group of the World Wide Web Consortium (W3C) today released a First Public Working Draft of the controversial Encrypted Media Extension (EME) specification, despite massive opposition from public interest organizations and members of the public.</summary>
    <content type="xhtml"><div xmlns="http://www.w3.org/1999/xhtml">BOSTON, Massachusetts, USA -- Thursday, May 9, 2013 -- The HTML Working Group of the World Wide Web Consortium (W3C) today released a First Public Working Draft of the controversial Encrypted Media Extension (EME) specification, despite massive opposition from public interest organizations and members of the public. <p>
W3C CEO Jeff Jaffe also released a
<a href="http://www.w3.org/QA/2013/05/perspectives_on_encrypted_medi.html?utm_source=dlvr.it&amp;utm_medium=statusnet">statement</a>
justifying the Working Group's decision. The proposal, which is
supported by the entertainment industry and giants like Netflix,
Google, and Microsoft, would endorse and facilitate use of proprietary
Digital Restrictions Management (DRM) in HTML, and would have a
dramatic impact on streaming audio and video on the Web.</p>

<p>Defective by Design (a project of the Free Software Foundation devoted
to fighting DRM) and a coalition of 26 other organizations publicly
opposed the proposal in an April <a href="http://www.defectivebydesign.org/sign-on-against-drm-in-html">letter to the
W3C</a>.
Last week, on International Day Against DRM, Defective by Design
delivered tens of thousands of signatures opposing the proposal, and
continues to collect petition signatures at
<a href="http://www.defectivebydesign.org/no-drm-in-html5">http://www.defectivebydesign.org/no-drm-in-html5</a>.</p>

<p>Free Software Foundation executive director John Sullivan made the
following statement:</p>

<p>"We and the 26,000 concerned individuals who signed Defective by
Design's petition so far are extremely disappointed in the W3C's
statement today. The situation is actually worse than we thought,
because the W3C now appears to be bizarrely insisting that Digital
Restrictions Management (DRM) is a <em>necessary</em> component of a free
Web. We were under the impression that the standardized Web was meant
to be a structure that mitigated <em>against</em> holders of particular
proprietary technologies bullying Web users and developers, or
extracting royalties from them as preconditions for participation. If
companies want to do such bullying, they can do it on their own time
and their own dime; the W3C should not help them or endorse them. In
this statement, the W3C unfortunately hitches its wagon to the
contentious and frankly irrelevant empirical claim that DRM is key to
what Microsoft during the Vista launch referred to as a 'next
generation content experience.' In adopting the doublespeak of the
Hollyweb, the W3C is betraying the interests Web users have in
experiencing the amazing universe of human culture enabled by the
Internet. Instead, they are backing the desire of Netflix, Google, and
Microsoft, to capture those users in media silos with walls enforced
by proprietary software and criminal law like the Digital Millennium
Copyright Act (and similar laws around the world). Despite the W3C's
claim to have listened, we do not feel heard. We will step up our
efforts to stop them from committing this terrible error, including
issuing a comprehensive refutation of this statement's reasoning."</p>

<h3>About the Free Software Foundation</h3>

<p>The Free Software Foundation, founded in 1985, is dedicated to
promoting computer users' right to use, study, copy, modify, and
redistribute computer programs. The FSF promotes the development and
use of free (as in freedom) software -- particularly the GNU operating
system and its GNU/Linux variants -- and free documentation for free
software. The FSF also helps to spread awareness of the ethical and
political issues of freedom in the use of software, and its Web sites,
located at fsf.org and gnu.org, are an important source of information
about GNU/Linux. Donations to support the FSF's work can be made at
<a href="http://donate.fsf.org">http://donate.fsf.org</a>. Its headquarters are in Boston, MA, USA.</p>

<h3>Media Contacts</h3>

<p>John Sullivan <br/>
Executive Director <br/>
Free Software Foundation <br/>
+1 (617) 542 5942 <br/>
campaigns@fsf.org    </p>

<p>Libby Reinish <br/>
Campaigns Manager <br/>
Free Software Foundation <br/>
+1 (617) 542 5942 <br/>
campaigns@fsf.org    </p>

<p>###</p></div>
    </content>
    <updated>2013-05-09T19:04:23Z</updated>
    <author>
      <name>libby</name>
    </author>
    <source>
      <id>http://www.fsf.org</id>
      <link href="http://www.fsf.org" rel="alternate" type="text/html"/>
      <link href="http://www.fsf.org/static/fsforg/rss/news.xml" rel="self" type="application/rdf+xml"/>
      <subtitle>Latest news from the Free Software Foundation</subtitle>
      <title>FSF News</title>
      <updated>2013-05-19T22:17:30Z</updated>
    </source>
  </entry>

  <entry xml:lang="en">
    <id>http://www.pixelbeat.org/patches/coreutils/inbox_apr_2013.html</id>
    <link href="http://www.pixelbeat.org/patches/coreutils/inbox_apr_2013.html#1368117657" rel="alternate" type="text/html"/>
    <title>coreutils inbox - Apr 2013</title>
    <summary>Latest news from the coreutils project</summary>
    <updated>2013-05-09T16:40:57Z</updated>
    <category term="coreutils"/>
    <category term="news"/>
    <category term="changes"/>
    <category term="improvements"/>
    <source>
      <id>http://www.pixelbeat.org/patches/coreutils/</id>
      <author>
        <name>Pádraig Brady</name>
        <email>P@draigBrady.com</email>
      </author>
      <link href="http://www.pixelbeat.org/patches/coreutils/" rel="alternate" type="text/html"/>
      <link href="http://www.pixelbeat.org/patches/coreutils/rss2.xml" rel="self" type="application/rss+xml"/>
      <subtitle>periodic coreutils project status</subtitle>
      <title>Coreutils project status updates</title>
      <updated>2013-05-19T22:17:17Z</updated>
    </source>
  </entry>
</feed>
