I once wrote a small snippet of python to decode/recode those things:<br><br>T.<br><br>## <br><br>#!/usr/bin/env python<br><br>from string import join<br>from struct import unpack<br>import sys<br><br>for line in sys.stdin:<br>
  try:<br>    print join( map( lambda x: chr(~x), unpack( (len(line)-1)*&#39;b&#39;, line[:-1] ) ), &quot;&quot; )<br>  except:<br>    pass<br><br>##<br><br>#!/usr/bin/env python<br><br>from string import join<br>from struct import pack<br>
import sys<br><br>for line in sys.stdin:<br>  try:<br>     print join( map( lambda x: pack( &#39;b&#39;, ~ord(x) ), list( line[-1] == &quot;\n&quot; and line[:-1] or line ) ), &quot;&quot; )<br>  except:<br>    pass<br><br>
<div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, Dec 17, 2012 at 11:08 AM, Anton Feenstra <span dir="ltr">&lt;<a href="mailto:k.a.feenstra@vu.nl" target="_blank">k.a.feenstra@vu.nl</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">On 17/12/12 10:58, Mark Abraham wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
<br>
    Disabling the feature with an environment variable is fine (and<br>
    documented!) but I think, at the very least, we should clean up the<br>
    database, since the onus is on us, the developers, to produce a<br>
    user-friendly product.  I&#39;m a big fan of witty quips, though :)<br>
      Maybe the database should simply focus on humorous quotes from the<br>
    developers and other influential people?  Just a thought.<br>
<br>
    &quot;If I had a dime for every time I posted a link to the wiki...&quot; (J.<br>
    Lemkul)  ;)<br>
<br>
<br>
&quot;... you&#39;d be not as rich as me&quot; (M. Abraham) :-P<br>
<br>
Mark<br>
<br>
/cue web scrapers<br>
</blockquote>
<br></div></div>
&quot;If I&#39;d had a euro for every memory leak fixed in gromacs...&quot; (K.A. Feenstra)<div class="im HOEnZb"><br>
<br>
<br>
-- <br>
Groetjes,<br>
<br>
Anton<br>
 _____________ ______________________________<u></u>_________________________<br>
|             |                                                       |<br>
|  _   _  ___,| K. Anton Feenstra                                     |<br>
| / \ / \&#39;| | | IBIVU/Bioinformatics - Vrije Universiteit Amsterdam   |<br>
|(   |   )| | | De Boelelaan 1081 - 1081 HV Amsterdam - Netherlands   |<br>
| \_/ \_/ | | | Tel <a href="tel:%2B31%2020%2059%2087783" value="+31205987783" target="_blank">+31 20 59 87783</a> - Fax <a href="tel:%2B31%2020%2059%2087653" value="+31205987653" target="_blank">+31 20 59 87653</a> - Room P136 |<br>

|             | <a href="mailto:Feenstra@few.vu.nl" target="_blank">Feenstra@few.vu.nl</a> - <a href="http://www.few.vu.nl/~feenstra/" target="_blank">www.few.vu.nl/~feenstra/</a>         |<br>
|             | &quot;You Could Be a Shadow&quot; (The Breeders)                |<br>
|_____________|_______________<u></u>______________________________<u></u>__________|<br></div><div class="HOEnZb"><div class="h5">
-- <br>
gmx-developers mailing list<br>
<a href="mailto:gmx-developers@gromacs.org" target="_blank">gmx-developers@gromacs.org</a><br>
<a href="http://lists.gromacs.org/mailman/listinfo/gmx-developers" target="_blank">http://lists.gromacs.org/<u></u>mailman/listinfo/gmx-<u></u>developers</a><br>
Please don&#39;t post (un)subscribe requests to the list. Use the www interface or send it to <a href="mailto:gmx-developers-request@gromacs.org" target="_blank">gmx-developers-request@<u></u>gromacs.org</a>.<br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>Tsjerk A. Wassenaar, Ph.D.<br><br>post-doctoral researcher<br>Biocomputing Group<br>Department of Biological Sciences<br>2500 University Drive NW<br>Calgary, AB T2N 1N4<br>
Canada<br><br>
</div>