<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.openwritings.net"  xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>OpenWritings.net</title>
 <link>http://www.openwritings.net</link>
 <description></description>
 <language>en</language>
<item>
 <title>MS Office</title>
 <link>http://www.openwritings.net/public/ms-office/ms-office</link>
 <description>&lt;h3&gt;MS Excel&lt;/h3&gt;
&lt;p&gt;&lt;b&gt;Remove the grid in excel:&lt;/b&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Select cells that you want to remove the grid.&lt;/li&gt;
&lt;li&gt;Change the background color to white.&lt;/li&gt;
&lt;/ol&gt;
</description>
 <comments>http://www.openwritings.net/public/ms-office/ms-office#comments</comments>
 <pubDate>Tue, 31 Jan 2012 18:24:45 +0000</pubDate>
 <dc:creator>Xuan Ngo</dc:creator>
 <guid isPermaLink="false">938 at http://www.openwritings.net</guid>
</item>
<item>
 <title>Remove duplicate lines in file</title>
 <link>http://www.openwritings.net/public/bash/remove-duplicate-lines-file</link>
 <description>&lt;p&gt;&lt;div class=&quot;geshifilter&quot;&gt;&lt;pre class=&quot;bash geshifilter-bash&quot; style=&quot;font-family:monospace;&quot;&gt;&lt;span style=&quot;color: #c20cb9; font-weight: bold;&quot;&gt;gawk&lt;/span&gt; &lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot; !x[$0]++&amp;quot;&lt;/span&gt; inputfilename.txt &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt; outputfilename.txt&lt;/pre&gt;&lt;/div&gt;&lt;/p&gt;
</description>
 <comments>http://www.openwritings.net/public/bash/remove-duplicate-lines-file#comments</comments>
 <pubDate>Sat, 17 Dec 2011 16:43:04 +0000</pubDate>
 <dc:creator>Xuan Ngo</dc:creator>
 <guid isPermaLink="false">928 at http://www.openwritings.net</guid>
</item>
<item>
 <title>Variables</title>
 <link>http://www.openwritings.net/public/perl/variables</link>
 <description>&lt;p&gt;&lt;div class=&quot;geshifilter&quot;&gt;&lt;pre class=&quot;perl geshifilter-perl&quot; style=&quot;font-family:monospace;&quot;&gt;&lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;#!/usr/local/bin/perl&lt;/span&gt;
&amp;nbsp;
&lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;# Example showing how to define different variables.&lt;/span&gt;
&lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;# ==================================================&lt;/span&gt;
&amp;nbsp;
&lt;span style=&quot;color: #b1b100;&quot;&gt;my&lt;/span&gt; &lt;span style=&quot;color: #0000ff;&quot;&gt;$someString&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;Hello World!&amp;quot;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;  &lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;# Variable holding a string.&lt;/span&gt;
&lt;span style=&quot;color: #b1b100;&quot;&gt;my&lt;/span&gt; &lt;span style=&quot;color: #0000ff;&quot;&gt;$someNumber&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #cc66cc;&quot;&gt;3.1415&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;          &lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;# Variable holding a number.&lt;/span&gt;
&lt;span style=&quot;color: #b1b100;&quot;&gt;my&lt;/span&gt; &lt;span style=&quot;color: #0000ff;&quot;&gt;@someArray&lt;/span&gt; &lt;span style=&quot;color: #339933;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;Monday&amp;quot;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;Tuesday&amp;quot;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;Wednesday&amp;quot;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;Thursday&amp;quot;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;Friday&amp;quot;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;Saturday&amp;quot;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;,&lt;/span&gt; &lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;Sunday&amp;quot;&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&amp;#41;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;
&amp;nbsp;
&lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;# Output all the variables defined.&lt;/span&gt;
&lt;span style=&quot;color: #0000ff;&quot;&gt;$someNumber&lt;/span&gt; &lt;span style=&quot;color: #339933;&quot;&gt;=&lt;/span&gt; &lt;span style=&quot;color: #0000ff;&quot;&gt;$someNumber&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;*&lt;/span&gt;&lt;span style=&quot;color: #cc66cc;&quot;&gt;2&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;
&lt;span style=&quot;color: #000066;&quot;&gt;print&lt;/span&gt; &lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;$someString&lt;span style=&quot;color: #000099; font-weight: bold;&quot;&gt;\n&lt;/span&gt;&amp;quot;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;
&lt;span style=&quot;color: #000066;&quot;&gt;print&lt;/span&gt; &lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;$someNumber&lt;span style=&quot;color: #000099; font-weight: bold;&quot;&gt;\n&lt;/span&gt;&amp;quot;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;
&lt;span style=&quot;color: #000066;&quot;&gt;print&lt;/span&gt; &lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;@someArray&lt;span style=&quot;color: #000099; font-weight: bold;&quot;&gt;\n&lt;/span&gt;&amp;quot;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/p&gt;
</description>
 <comments>http://www.openwritings.net/public/perl/variables#comments</comments>
 <pubDate>Fri, 02 Dec 2011 21:57:28 +0000</pubDate>
 <dc:creator>Xuan Ngo</dc:creator>
 <guid isPermaLink="false">926 at http://www.openwritings.net</guid>
</item>
<item>
 <title>Installation and setup of Perl</title>
 <link>http://www.openwritings.net/public/abap/installation-and-setup-perl</link>
 <description>&lt;ol&gt;
&lt;li&gt;Download Windows version of Perl at &lt;a href=&quot;http://www.activestate.com/activeperl/downloads&quot;&gt;ActiveState&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Install it.&lt;/li&gt;
&lt;li&gt;Save the following code in a file and name it tutorial.perl .&lt;br /&gt;
    &lt;div class=&quot;geshifilter&quot;&gt;&lt;pre class=&quot;perl geshifilter-perl&quot; style=&quot;font-family:monospace;&quot;&gt;&lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;#!/usr/local/bin/perl&lt;/span&gt;
&lt;span style=&quot;color: #000066;&quot;&gt;print&lt;/span&gt; &lt;span style=&quot;color: #ff0000;&quot;&gt;&#039;Hello world.&#039;&lt;/span&gt;&lt;span style=&quot;color: #339933;&quot;&gt;;&lt;/span&gt;		&lt;span style=&quot;color: #666666; font-style: italic;&quot;&gt;# Print a message    &lt;/span&gt;
&amp;nbsp;&lt;/pre&gt;&lt;/div&gt;
  &lt;/li&gt;
&lt;li&gt;Open the &lt;b&gt;Command Prompt&lt;/b&gt;.&lt;/li&gt;
&lt;li&gt;Execute the following command:&lt;br /&gt;
    &lt;div class=&quot;geshifilter&quot;&gt;&lt;pre class=&quot;text geshifilter-text&quot; style=&quot;font-family:monospace;&quot;&gt;perl tutorial.perl
&amp;nbsp;&lt;/pre&gt;&lt;/div&gt;
  &lt;/li&gt;
&lt;li&gt;It should display &lt;b&gt;Hello world.&lt;/b&gt;.&lt;/li&gt;
&lt;/ol&gt;
</description>
 <comments>http://www.openwritings.net/public/abap/installation-and-setup-perl#comments</comments>
 <pubDate>Tue, 29 Nov 2011 17:55:26 +0000</pubDate>
 <dc:creator>Xuan Ngo</dc:creator>
 <guid isPermaLink="false">923 at http://www.openwritings.net</guid>
</item>
<item>
 <title>Perl</title>
 <link>http://www.openwritings.net/public/perl/perl</link>
 <description></description>
 <comments>http://www.openwritings.net/public/perl/perl#comments</comments>
 <pubDate>Tue, 29 Nov 2011 17:51:38 +0000</pubDate>
 <dc:creator>Xuan Ngo</dc:creator>
 <guid isPermaLink="false">922 at http://www.openwritings.net</guid>
</item>
<item>
 <title>Padding zeros</title>
 <link>http://www.openwritings.net/public/dos/padding-zeros</link>
 <description>&lt;p&gt;&lt;div class=&quot;geshifilter&quot;&gt;&lt;pre class=&quot;dos geshifilter-dos&quot; style=&quot;font-family:monospace;&quot;&gt;&lt;span style=&quot;color: #33cc33;&quot;&gt;@&lt;/span&gt;&lt;span style=&quot;color: #b1b100; font-weight: bold;&quot;&gt;ECHO&lt;/span&gt; OFF
&amp;nbsp;
&lt;span style=&quot;color: #b1b100; font-weight: bold;&quot;&gt;SET&lt;/span&gt; &lt;span style=&quot;color: #448844;&quot;&gt;i&lt;/span&gt;=&lt;span style=&quot;color: #cc66cc;&quot;&gt;1&lt;/span&gt;
&lt;span style=&quot;color: #00b100; font-weight: bold;&quot;&gt;FOR&lt;/span&gt; /L &lt;span style=&quot;color: #33cc33;&quot;&gt;%%&lt;/span&gt;&lt;span style=&quot;color: #448888;&quot;&gt;V&lt;/span&gt; &lt;span style=&quot;color: #00b100; font-weight: bold;&quot;&gt;IN&lt;/span&gt; &lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#40;&lt;/span&gt;&lt;span style=&quot;color: #cc66cc;&quot;&gt;1&lt;/span&gt;,&lt;span style=&quot;color: #cc66cc;&quot;&gt;1&lt;/span&gt;,&lt;span style=&quot;color: #cc66cc;&quot;&gt;1003&lt;/span&gt;&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#41;&lt;/span&gt; &lt;span style=&quot;color: #00b100; font-weight: bold;&quot;&gt;DO&lt;/span&gt; &lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#40;&lt;/span&gt;
&lt;span style=&quot;color: #00b100; font-weight: bold;&quot;&gt;CALL&lt;/span&gt; :&lt;span style=&quot;color: #b100b1; font-weight: bold;&quot;&gt;Increment&lt;/span&gt;
&lt;span style=&quot;color: #66cc66;&quot;&gt;&amp;#41;&lt;/span&gt;
&amp;nbsp;
&lt;span style=&quot;color: #b1b100; font-weight: bold;&quot;&gt;ECHO&lt;/span&gt; &amp;quot;Done showing zero padding.&amp;quot;
&amp;nbsp;
&lt;span style=&quot;color: #00b100; font-weight: bold;&quot;&gt;GOTO&lt;/span&gt; &lt;span style=&quot;color: #b100b1; font-weight: bold;&quot;&gt;:EOF&lt;/span&gt;
&amp;nbsp;
:&lt;span style=&quot;color: #b100b1; font-weight: bold;&quot;&gt;Increment&lt;/span&gt;
&lt;span style=&quot;color: #808080; font-style: italic;&quot;&gt;  REM Padding zeros&lt;/span&gt;
  &lt;span style=&quot;color: #b1b100; font-weight: bold;&quot;&gt;SET&lt;/span&gt; &lt;span style=&quot;color: #448844;&quot;&gt;filename&lt;/span&gt;=&lt;span style=&quot;color: #33cc33;&quot;&gt;%&lt;/span&gt;&lt;span style=&quot;color: #448888;&quot;&gt;i&lt;/span&gt;&lt;span style=&quot;color: #33cc33;&quot;&gt;%&lt;/span&gt;
  &lt;span style=&quot;color: #00b100; font-weight: bold;&quot;&gt;if&lt;/span&gt; &lt;span style=&quot;color: #33cc33;&quot;&gt;%&lt;/span&gt;&lt;span style=&quot;color: #448888;&quot;&gt;i&lt;/span&gt;&lt;span style=&quot;color: #33cc33;&quot;&gt;%&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;lss&lt;/span&gt; &lt;span style=&quot;color: #cc66cc;&quot;&gt;1000&lt;/span&gt; &lt;span style=&quot;color: #b1b100; font-weight: bold;&quot;&gt;set&lt;/span&gt; &lt;span style=&quot;color: #448844;&quot;&gt;filename&lt;/span&gt;=&lt;span style=&quot;color: #cc66cc;&quot;&gt;0&lt;/span&gt;&lt;span style=&quot;color: #33cc33;&quot;&gt;%&lt;/span&gt;&lt;span style=&quot;color: #448888;&quot;&gt;i&lt;/span&gt;&lt;span style=&quot;color: #33cc33;&quot;&gt;%&lt;/span&gt;
  &lt;span style=&quot;color: #00b100; font-weight: bold;&quot;&gt;if&lt;/span&gt; &lt;span style=&quot;color: #33cc33;&quot;&gt;%&lt;/span&gt;&lt;span style=&quot;color: #448888;&quot;&gt;i&lt;/span&gt;&lt;span style=&quot;color: #33cc33;&quot;&gt;%&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;lss&lt;/span&gt; &lt;span style=&quot;color: #cc66cc;&quot;&gt;100&lt;/span&gt; &lt;span style=&quot;color: #b1b100; font-weight: bold;&quot;&gt;set&lt;/span&gt; &lt;span style=&quot;color: #448844;&quot;&gt;filename&lt;/span&gt;=00&lt;span style=&quot;color: #33cc33;&quot;&gt;%&lt;/span&gt;&lt;span style=&quot;color: #448888;&quot;&gt;i&lt;/span&gt;&lt;span style=&quot;color: #33cc33;&quot;&gt;%&lt;/span&gt;
  &lt;span style=&quot;color: #00b100; font-weight: bold;&quot;&gt;if&lt;/span&gt; &lt;span style=&quot;color: #33cc33;&quot;&gt;%&lt;/span&gt;&lt;span style=&quot;color: #448888;&quot;&gt;i&lt;/span&gt;&lt;span style=&quot;color: #33cc33;&quot;&gt;%&lt;/span&gt; &lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;lss&lt;/span&gt; &lt;span style=&quot;color: #cc66cc;&quot;&gt;10&lt;/span&gt; &lt;span style=&quot;color: #b1b100; font-weight: bold;&quot;&gt;set&lt;/span&gt; &lt;span style=&quot;color: #448844;&quot;&gt;filename&lt;/span&gt;=000&lt;span style=&quot;color: #33cc33;&quot;&gt;%&lt;/span&gt;&lt;span style=&quot;color: #448888;&quot;&gt;i&lt;/span&gt;&lt;span style=&quot;color: #33cc33;&quot;&gt;%&lt;/span&gt;
&amp;nbsp;
  &lt;span style=&quot;color: #b1b100; font-weight: bold;&quot;&gt;ECHO&lt;/span&gt; &lt;span style=&quot;color: #33cc33;&quot;&gt;%&lt;/span&gt;&lt;span style=&quot;color: #448888;&quot;&gt;filename&lt;/span&gt;&lt;span style=&quot;color: #33cc33;&quot;&gt;%&lt;/span&gt;.txt
&amp;nbsp;
  &lt;span style=&quot;color: #b1b100; font-weight: bold;&quot;&gt;SET&lt;/span&gt; /a &lt;span style=&quot;color: #448844;&quot;&gt;i+&lt;/span&gt;=&lt;span style=&quot;color: #cc66cc;&quot;&gt;1&lt;/span&gt;
  &lt;span style=&quot;color: #00b100; font-weight: bold;&quot;&gt;GOTO&lt;/span&gt; &lt;span style=&quot;color: #b100b1; font-weight: bold;&quot;&gt;:EOF&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;geshifilter&quot;&gt;&lt;pre class=&quot;text geshifilter-text&quot; style=&quot;font-family:monospace;&quot;&gt;Output will look like:
....
0889.txt
0890.txt
0891.txt
0892.txt
0893.txt
0894.txt
0895.txt
....&lt;/pre&gt;&lt;/div&gt;&lt;/p&gt;
</description>
 <comments>http://www.openwritings.net/public/dos/padding-zeros#comments</comments>
 <pubDate>Wed, 16 Nov 2011 05:42:38 +0000</pubDate>
 <dc:creator>Xuan Ngo</dc:creator>
 <guid isPermaLink="false">915 at http://www.openwritings.net</guid>
</item>
<item>
 <title>WinMerge useful setting</title>
 <link>http://www.openwritings.net/public/varia/winmerge-useful-setting</link>
 <description>&lt;p&gt;I don&#039;t know why, by default, WinMerge is set to show the difference on word level. It should be on Character level. Every time that I install it, I have to change this setting.&lt;br /&gt;
The setting is located at &lt;b&gt;Edit-&amp;gt;Options-&amp;gt;Editor-&amp;gt;Line Difference Coloring&lt;/b&gt;. Check &lt;b&gt;Character level&lt;/b&gt;.&lt;/p&gt;
</description>
 <comments>http://www.openwritings.net/public/varia/winmerge-useful-setting#comments</comments>
 <pubDate>Mon, 31 Oct 2011 23:06:50 +0000</pubDate>
 <dc:creator>Xuan Ngo</dc:creator>
 <guid isPermaLink="false">910 at http://www.openwritings.net</guid>
</item>
<item>
 <title>Fast way to delete a lot of files and folders</title>
 <link>http://www.openwritings.net/public/dos/fast-way-delete-lot-files-and-folders</link>
 <description>&lt;p&gt;&lt;div class=&quot;geshifilter&quot;&gt;&lt;pre class=&quot;dos geshifilter-dos&quot; style=&quot;font-family:monospace;&quot;&gt;&lt;span style=&quot;color: #b1b100; font-weight: bold;&quot;&gt;del&lt;/span&gt; /f/s/q foldername &amp;gt; &lt;span style=&quot;color: #0000ff; font-weight: bold;&quot;&gt;nul&lt;/span&gt;
&lt;span style=&quot;color: #b1b100; font-weight: bold;&quot;&gt;rmdir&lt;/span&gt; /s/q foldername&lt;/pre&gt;&lt;/div&gt;&lt;br /&gt;
The first line is to delete files and output to nul to avoid the overhead of writing to screen for every singe deleted file.&lt;br /&gt;
The second line is to delete the remaining directory structure.&lt;/p&gt;
</description>
 <comments>http://www.openwritings.net/public/dos/fast-way-delete-lot-files-and-folders#comments</comments>
 <pubDate>Sun, 18 Sep 2011 17:59:06 +0000</pubDate>
 <dc:creator>Xuan Ngo</dc:creator>
 <guid isPermaLink="false">903 at http://www.openwritings.net</guid>
</item>
<item>
 <title>Docbook predefined special characters</title>
 <link>http://www.openwritings.net/public/docbook/docbook-predefined-special-characters</link>
 <description>&lt;table&gt;
&lt;tr&gt;
&lt;th&gt;Character&lt;/th&gt;
&lt;th&gt;Named entity&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;#x2122;&lt;/td&gt;
&lt;td&gt;&amp;amp;trade; &lt;/td&gt;
&lt;td&gt;Trade mark&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;#xA9;&lt;/td&gt;
&lt;td&gt;&amp;amp;copy;  &lt;/td&gt;
&lt;td&gt;Copyright&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;#xAE;&lt;/td&gt;
&lt;td&gt;&amp;amp;reg;   &lt;/td&gt;
&lt;td&gt;Registered&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;#xB1;&lt;/td&gt;
&lt;td&gt;&amp;amp;plusmn;&lt;/td&gt;
&lt;td&gt;Plus or minus&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;#x2713;&lt;/td&gt;
&lt;td&gt;&amp;amp;check; &lt;/td&gt;
&lt;td&gt;Check mark&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;#x2717;&lt;/td&gt;
&lt;td&gt;&amp;amp;cross; &lt;/td&gt;
&lt;td&gt;Ballot X&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&amp;#x2191;&lt;/td&gt;
&lt;td&gt;&amp;amp;uarr;  &lt;/td&gt;
&lt;td&gt;Up arrow&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;p&gt;&lt;a href=&quot;http://www.openwritings.net/public/docbook/docbook-predefined-special-characters&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.openwritings.net/public/docbook/docbook-predefined-special-characters#comments</comments>
 <pubDate>Mon, 12 Sep 2011 23:30:49 +0000</pubDate>
 <dc:creator>Xuan Ngo</dc:creator>
 <guid isPermaLink="false">902 at http://www.openwritings.net</guid>
</item>
<item>
 <title>Using Entities to define a shared string</title>
 <link>http://www.openwritings.net/public/docbook/using-entities-define-shared-string</link>
 <description>&lt;p&gt;&lt;div class=&quot;geshifilter&quot;&gt;&lt;pre class=&quot;xml geshifilter-xml&quot; style=&quot;font-family:monospace;&quot;&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;?xml&lt;/span&gt; &lt;span style=&quot;color: #000066;&quot;&gt;version&lt;/span&gt;=&lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;1.0&amp;quot;&lt;/span&gt; &lt;span style=&quot;color: #000066;&quot;&gt;encoding&lt;/span&gt;=&lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;UTF-8&amp;quot;&lt;/span&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;color: #00bbdd;&quot;&gt;&amp;lt;!DOCTYPE book [&lt;/span&gt;
&lt;span style=&quot;color: #00bbdd;&quot;&gt;  &amp;lt;!ENTITY product-name &amp;quot;Docbook&amp;quot;&amp;gt;&lt;/span&gt;
  &lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;&lt;/span&gt;!ENTITY product-version &lt;span style=&quot;color: #ff0000;&quot;&gt;&amp;quot;4.5&amp;quot;&lt;/span&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;
]&amp;gt;
&lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;book&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
  &lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;chapter&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
    &lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;title&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;Tutorial: Using Entities to define a shared string&lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;/title&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
    &lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;para&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;The latest version of &lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;application&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: #ddbb00;&quot;&gt;&amp;amp;product-name;&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;/application&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt; is &lt;span style=&quot;color: #ddbb00;&quot;&gt;&amp;amp;product-version;&lt;/span&gt;.&lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;/para&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
    &lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;para&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;application&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: #ddbb00;&quot;&gt;&amp;amp;product-name;&lt;/span&gt;&lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;/application&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt; is best used to write documentation.&lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;/para&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
  &lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;/chapter&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;color: #009900;&quot;&gt;&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;lt;/book&lt;span style=&quot;color: #000000; font-weight: bold;&quot;&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/p&gt;
</description>
 <comments>http://www.openwritings.net/public/docbook/using-entities-define-shared-string#comments</comments>
 <pubDate>Mon, 12 Sep 2011 20:57:19 +0000</pubDate>
 <dc:creator>Xuan Ngo</dc:creator>
 <guid isPermaLink="false">901 at http://www.openwritings.net</guid>
</item>
</channel>
</rss>


