<?xml version="1.0" encoding="gb2312"?>
<rss version="2.0">
<channel>
<title><![CDATA[This had better be worth it...]]></title>
        <image>
        <title>http://hi.baidu.com</title>
        <link>http://hi.baidu.com</link>
        <url>http://img.baidu.com/img/logo-hi.gif</url>
        </image>
<description><![CDATA[]]></description>
<link>http://hi.baidu.com/seraphxby</link>
<language>zh-cn</language>
<generator>www.baidu.com</generator>
<ttl>5</ttl>


<item>
        <title><![CDATA[Perl Shell]]></title>
        <link><![CDATA[http://hi.baidu.com/seraphxby/blog/item/9474b33997db06f93b87cee9.html]]></link>
        <description><![CDATA[
		
		装完fedora 10后<br>
1.安装CPAN<br>
yum install perl-CPAN<br>
<br>
2.安装perl shell<br>
perl -MCPAN -e 'install Psh'<br>
<br>
3.安装Term::ReadLine::Gnu<br>
perl -MCPAN -e 'install Term::ReadLine::Gnu'<br>
<br>
4.编写 .pshrc<br>
$ENV{'TERM'}=&quot;xterm&quot;<br>
alias ls ls --color<br>
alias ll ls -l<br>
alias la ls -a<br>
option ps1=sub { &quot;$ENV{PWD} \\\$&quot;;}<br> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/seraphxby/blog/category/Perl">Perl</a>&nbsp;<a href="http://hi.baidu.com/seraphxby/blog/item/9474b33997db06f93b87cee9.html#comment">查看评论</a>]]></description>
        <pubDate>2009-10-04  20:21</pubDate>
        <category><![CDATA[Perl]]></category>
        <author><![CDATA[seraphxby]]></author>
		<guid>http://hi.baidu.com/seraphxby/blog/item/9474b33997db06f93b87cee9.html</guid>
</item>

<item>
        <title><![CDATA[【转】LINUX8.0下SAMBA的配置方法]]></title>
        <link><![CDATA[http://hi.baidu.com/seraphxby/blog/item/779ed0004cbbd28ee950cd9e.html]]></link>
        <description><![CDATA[
		
		LINUX8.0下SAMBA的配置方法<br>
<font color="#ff9900" class="smallfont">2004-04-23 15:18 pm</font><br>
<font><br>
来自：Linux文档<br>
现载：Www.8s8s.coM<br>
地址：无名<br>
<br>
SMB的配置<br>
<br>
从光盘中找到与SAMBA相关的文件，执行<br>
rpm –ivh samba-common-2.2.5-10<br>
rpm –ivh samba-2.2.5-10<br>
rpm –ivh samba-client-2.2.5-10<br>
然后进入/etc/samba执行vi smb.conf 命令，文件编辑如下：<br>
[global]<br>
workgroup=cbaccess<br>
netbios name=Hello<br>
server string=Hello’s Linux Server<br>
hosts allow=192.168.7. 192.168.1. 192.168.2. 127.<br>
printcap name=/etc/printcap<br>
load printers=yes<br>
printing=bsd<br>
guest account=dragon<br>
log file=/var/log/samba/%m.log<br>
max log size=50<br>
security=user<br>
encrypt passwords=yes<br>
smb passwd file=/etc/samba/smbpasswd<br>
unix password sync=yes<br>
passwd program=/usr/bin/passwd %u<br>
passwd chat=*New*password*%n  * Retype*new*password*%n <br>
passwd:all*authentication*tokens*updated*successfully*<br>
pam password change=yes<br>
obey pam restrictions=yes<br>
socket option=TCP_NODELAY SO_RECVBUF=8192 SO_SNDBUF=8192<br>
interfaces=192.168.7.148/24<br>
dns proxy=no<br>
[homes]<br>
comment=Hello’s Home Directories<br>
browseable=no<br>
writable=yes<br>
valid users=%s<br>
[printers]<br>
comment=All Printers<br>
path=/var/spool/samba<br>
browseable=no<br>
guest ok=yes<br>
writable=no<br>
printable=yes<br>
[public]<br>
comment=Public Stuff<br>
path=/<br>
browseable=yes<br>
guest ok=yes<br>
public=yes<br>
writable=yes<br>
printable=no<br>
write list=@staff<br>
[dragon]<br>
comment=Fred’s Printer<br>
valid users=dragon<br>
path=/home/dragon<br>
printer=dragon_printer<br>
public=no<br>
writable=no<br>
printable=yes<br>
配置完成后执行 chmod a+w / 使整个机器共享<br>
cd /etc/rc.d/init.d<br>
./smb restart<br>
创建一个Linux的用户，<br>
useradd dragon<br>
passwd dragon<br>
smbpasswd –a dragon<br>
成批添加<br>
cat /etc/passwd |mksmbpasswd.sh &gt;/etc/samba/smbpasswd<br>
/usr/sbin/smbd –D<br>
/usr/sbin/nmbd –D<br>
在win9x机器上修改注册表<br>
WinNT: OHKEY_LOCAL_MACHINESYSTEM CurrentcontrolsetServicesKdrParameters<br>
Win98: HKEY_LOCAL_MACHINESYSTEMCurrentcontrolsetServicesVxdvnetsup<br>
Win2000: HKEY_LOCAL_MACHINESYSTEMCurrentcontrolsetServicesLanmanWorkstationParameters<br>
在此处追加键值：键名EnablePlainTextpasswd,值类型为DWORD,值1，此目的主要是因为samba无法还原加密口令，使注册不成 功，修改后即可。点击网上邻居，添加NETBEUI协议、TCP/IP协议、Microsoft网络用户，如果使用了DNS要键入DNS的IP地址。从控 制面板中点击用户，添加一个Linux中存在的用户，保持与Linux系统中的用户和密码一致，重启计算机，以Linux用户登录即可看到Linux机 器。<br>
执行netstat –A 192.168.7.148(或主机名)<br>
在Linux机器上执行<br>
smbclient –L //server<br>
smbclient \server共享目录<br>
可访问win9x 资源，但不能 copy.<br>
创建一个目录 /mnt/smb,执行<br>
smbmount \server共享目录 /mnt/smb<br>
可访问win9x 资源，并能执行cp 命令。<br>
Smbumount /mnt/smb 挂点失败。<br>
如果想Linux启动后win9x机器就能看到，须作如下处理：<br>
配置 /etc/rc.d/init.d/smb脚本，配置文件如下：<br>
# ! /bin/sh<br>
#<br>
# chkconfig: -91 35<br>
# description:starts and stops the samba smbd and nmbd daemons<br>
# used to provide SMB network services<br>
#<br>
#pidfile:/var/run/samba/smbd.pid<br>
#pidfile:/var/run/samba/nmbd.pid<br>
#config:/etc/samba/smb.conf<br>
#source function library<br>
if [-f /etc/init.d/functions]: then<br>
./etc/init.d/functions<br>
elif [-f /etc/rc.d/init.d/functions]:then<br>
./etc/rc.d/init.d/functions<br>
else<br>
exit 0<br>
fi<br>
#Avoid using root’s TMPDIR<br>
unset TMPDIR<br>
#source networking configuration<br>
./etc/sysconfig/network<br>
if [-f /etc/sysconfig/samba]:then<br>
./etc/sysconfig/samba<br>
fi<br>
#check that networking is up<br>
[${NETWORKING}=”no”]&amp;&amp; exit 0<br>
#check that smb.conf exists<br>
[-f /etc/samba/sb.conf] || exit 0<br>
#check that we can write to it …so non-root users stop her<br>
[-w /etc/samba/smb.conf] || exit 0<br>
RETVAL=0<br>
start() {<br>
echo –n $”starting SMB services:”<br>
daemon /usr/sbin/smbd –D<br>
RETVAL=$?<br>
echo<br>
echo –n $ “starting NMB services:”<br>
daemon /usr/sbin/nmbd –D<br>
RETVAL2=$?<br>
Echo<br>
[$RETVAL –eq o –a $RETVAL 2 –eq o] &amp;&amp; touch /var/lock/subsys/smb || <br>
RETVAL=1<br>
return $RETVAL<br>
}<br>
stop(){<br>
echo –n $”shutting down SMB services:”<br>
killproc /usr/sbin/smbd<br>
RETVAL=$?<br>
echo<br>
echo –n $”shutting down NMB services:”<br>
killproc /usr/sbin/nmbd<br>
RETVAL2=$?<br>
[$RETVAL –eq 0 –a $RETVAL2 eq 0] &amp;&amp; rm –f /var/lock/subsys/smb<br>
echo “”<br>
return $RETVAL<br>
}<br>
restart(){<br>
$0 stop<br>
$0 start<br>
RETVAL=$?<br>
}<br>
reload(){<br>
echo –n $”Reloading smb.conf file:”<br>
killproc –HUP /usr/sbin/smbd<br>
RETVAL=$?<br>
Echo<br>
Return $RETVAL<br>
}<br>
rhstatus(){<br>
status /usr/sbin/smbd<br>
status /usr/sbin/nmbd<br>
RETVAL=$?<br>
}<br>
case “$1” in<br>
start）<br>
start<br>
::<br>
stop)<br>
stop<br>
::<br>
restart)<br>
restart<br>
::<br>
reload)<br>
reload<br>
::<br>
status)<br>
rhstatus<br>
::<br>
condrestart)<br>
[-f /var/lock/subsys/smb] &amp;&amp; restart || :<br>
::<br>
*)<br>
echo $ “Usage:$0{start|stop|restart|reload|status|condrestart}”<br>
exit 1<br>
esac<br>
exit $?<br>
然后在命令行下执行<br>
chmod 700 /etc/rc.d/init.d/smb<br>
chkconfig --add smb<br>
chkconfig --level 345 smb on<br>
配置 /etc/pam.d/samba 文件添加：<br>
Auth required /lib/security/pam_pwdb.so nullok shadow<br>
Account required /lib/security/pam_pwdb.so<br>
配置 /etc/logrotate.d/samba文件<br>
/var/log/samba/log.nmdb{<br>
notifempty<br>
missingok<br>
postrotate<br>
/usr/bin/killall –HUP nmbd<br>
endrotate<br>
}<br>
/var/log/samba/log.smbd{<br>
notifempty<br>
missingok<br>
postrotate<br>
/usr/bin/killall –HUP smbd<br>
endrotate<br>
}<br>
</font> <a href="http://hi.baidu.com/seraphxby/blog/item/779ed0004cbbd28ee950cd9e.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/seraphxby/blog/category/Linux">Linux</a>&nbsp;<a href="http://hi.baidu.com/seraphxby/blog/item/779ed0004cbbd28ee950cd9e.html#comment">查看评论</a>]]></description>
        <pubDate>2009-09-01  16:51</pubDate>
        <category><![CDATA[Linux]]></category>
        <author><![CDATA[seraphxby]]></author>
		<guid>http://hi.baidu.com/seraphxby/blog/item/779ed0004cbbd28ee950cd9e.html</guid>
</item>

<item>
        <title><![CDATA[【转】调试Perl CGI程序]]></title>
        <link><![CDATA[http://hi.baidu.com/seraphxby/blog/item/a8f2d519d60e764c42a9ad18.html]]></link>
        <description><![CDATA[
		
		<span class="javascript">http://ut.actcn.net:81/perl/ut/topic_show.cgi?id=4678&amp;bpg=1&amp;age=0<br>
译者注：本文译自PerlMonth— www.perlmonth.com，作者很幽默，但是有些语言我也翻译不出精髓，如果你读得不通或者觉得翻译的与你所理解的有所不同，可以查看原文—— http://www.perlmonth.com/columns/begin/begin.html?issue=11&amp;print=1 <br>
<br>
这个月我们来一起学习如何调试PerlCGI脚本。这里所有的技巧和方法都是简单明了的；大多数方法你可能在你编程的第一课里就已经学到了，我说的是你要 经过正式的Perl编程培训。然而，这也可能正是你面临的问题：如果你是一位自学的Perl程序员的话，你可能并没有接受过正规的调试CGI程序方面的教 育。 <br>
那么我们先从这里开始吧。  <br>
假如你刚写了一个庞大的Perl程序，一个1000的CGI的经典脚本，来得到订单，处理信用卡，统计存货并且计算卫星的轨道J。你把它上传到服务器上，打开你的浏览器调阅程序。你发现出现了下面的东东：  <br>
<br>
500 Internal Server Error  <br>
The server encountered an internal error or misconfiguration and was unable to complete your request.  <br>
Please contact the server administrator, webmaster@foo.com and inform them of the time the error occurred, and anything you might have done that may have caused the error. <br>
More information about this error may be available in the server error log.  <br>
唔，这是什么玩意儿？  <br>
<br>
这有一个对CGI程序员来说非常好的资料—— The Idiot’s Guide to Solving Perl CGI Problems，解决Perl CGI问题的傻瓜指南 <a tooltip="linkalert-tip" href="ftp://ftp.epix.net/pub/" target="_blank" class="ilink">ftp://ftp.epix.net/pub/languages/perl/doc/FAQs/cgi/idiots-guide.html</a>  <br>
不要因为题目而感到不快，其实我们都是傻瓜——在某些时候。先让我们试试他们的建议，看看是什么出错了。  <br>
第一步：检查脚本是否是可执行的。  <br>
<br>
·确定你上传到了一个合适的目录。很多的服务器限定CGI程序只能在你的home或public_html目录下的特定子目录下执行——像是cgi- bin或是cgi-local。有时要放在统一的CGI目录下，例如：/usr/local/apache/cgi-bin <br>
·检查脚本的文件扩展名是否与服务器设置的相符。一些服务器需要Perl CGI脚本以.cgi为扩展名；一些要以.pl为扩展名；其它的服务器没有这样的要求。  <br>
·如果是放在Unix主机上，要检查脚本是“可执行”的。脚本的文件权限必须设置为允许执行。在telnet登录时你可以这样完成：  <br>
$ chmod 0755 myscript.cgi  <br>
或者可以使用FTP软件来改变你上传的脚本的可执行权限。  <br>
·检查服务器上已经安装了运行脚本所需的所有东西。  <br>
最后还有另外一些的工作。当我使用一些新的服务器的时候我首先要上传两个测试文件（作为一个自由作家，我每周都会遇到一两个新服务器，有时候我甚至是在那个服务器上尝试运行Perl CGI的第一个人）。一般最简单的测试文件是这样写的：  <br>
#! /usr/bin/perl –w  <br>
use diagnostics;  <br>
print ‘Content-type: text/html  <br>
Hello,world.’;  <br>
这个脚本会让你知道Perl CGI已经运行，服务器也设置好了可以正确处理Perl CGI。  <br>
<br>
如果你想要进一步的测试，那么我还是建议你试试perldiver（http://www.scriptsolutions.com/programs /free/perldiver/）。这是一个非常有用的脚本，你把它上载到服务器上运行，会得到一个详细又容易理解的服务器报告——Perl解释器的位 置，安装了什么模块等大量信息。（你应该在检查你的服务器之后立即把这个脚本删除，它提供的很多信息会给不道德的使用者进行攻击提供可乘之机。） <br>
<br>
那么，通过这些步骤你还没有找到错误所在？下一步就是要检查你的脚本是否被干净的编译了。你应该完成重要的一步——在你所有的脚本以这样的方式开始；  <br>
<br>
#!/usr/bin/perl –w  <br>
user diagnostics;  <br>
第一行是给操作系统的一个标准信号：通知Perl解释器要把该文件的其余部分作为源码解释。但是附加的“-w”开关，打开编译时和运行时的警告。第二行会 打开“pragma”（一个编译选项），所有的错误信息和警告信息都会详细地显示，包括令人痛苦的所有大量的细节解释。这些细节信息有时也可以通过命令行 的调试来得到——那时你的输出多得让屏幕不断地上滚，你会被上百行的错误诊断信息烦恼的痛苦不堪。但是在CGI的世界里我们就提供这些东西，不管你爱不爱 看。 <br>
<br>
你也可能想把第三行加入到你的代码中：  <br>
use strict;  <br>
我对把这条推荐给所有人表示犹豫，因为我并不为这条标准所左右。（我想说的是你应该去尝试，直到你知道了一种观点的想要做的是什么，然后再按你自己的想法 来决定。）通常来说，“use strict”编译选项使Perl更像其他的需要预先声明变量的语言。（当然这个选项不只做这些用途） <br>
<br>
现在你把这几行加入到你的脚本中，并按命令行方式运行你的代码：  <br>
$ perl –c myscript.cgi  <br>
也许现在你可以看到一些语法错误或是其他的问题。（我在这里经常遇到的是缺少一个可选的包，如：Mail::Mailer）。你可以得到更多的出错信息，这比在浏览器中蹦出的可怕的500错误提示要好多了。  <br>
<br>
但是如果你没有权限，或根本不能在命令行方式下运行Perl解释器该怎么办呢？（这种可能性微乎其微，Perl在大多数操作系统中是可用的，尽管版本之间 的差别可能会是很微小的也可能是很巨大的。但是也许你是在Windows系统中进行开发工作，却又不想把Perl安装到微软的系统上，或者你想在一台借来 的计算机上快速调试一段脚本，你又不想为了几分钟的工作就安装一大堆Perl系统）。 <br>
其实我们只需要一个FTP客户端和一个浏览器就能完成所有的调试工作。首先我们要对你的脚本作一些改变：  <br>
use CGI qw(:standard);  <br>
user CGI::Carp qw(fatalsToBrowser);  <br>
BEGIN{  <br>
Print CGI::header();  <br>
Open (STDERR, ‘&gt;myscript.log’);  <br>
}  <br>
上面的这几行，或者是其他的与其相似的东东，被放在我写的所有的CGI脚本中。第一行里引用的是标准CGI.pm包。的确，这是一个大包，大的有点像在港 口外航行的航空母舰。但是它节省了你很多的时间，所以即使大一点也是值得的。除非你的Web服务器是运行在486机器上的，否则不要太在意载入这个包所多 花的几微秒时间。如果你的脚本所在的网站的点击率像Yahoo!那样的大网站一样多，你也仍然可以使用CGI.pm包或其它的模块，但是你也必须学习如何 使用mod_perl（这已经超出了本文所讨论的范围。不过，使用CGI.pm对你来说是一个非常好的选择，相信我，因为我是一个专家） <br>
第二行引用的是另一个包叫做“CGI::Carp”，这是一个错误处理包它代替并扩展了我们经常看到的出错信息。之所以要把它从CGI一族中提取出来是因 为我们想更精细的格式出错信息，而且还想通过内部程序fatalsToBrowser提供一个错误捕获机制。当发生严重错误的时候这个 fatalsToBrowser子程序会获得脚本的控制权，并在浏览器上显示这个错误的具体内容（代替了500错误）。 <br>
第三行定义了一个BEGIN块。根据Perl的语法,你可以在程序中的任何部位插入代码块（包含文件或是模块）。当程序被解析的时候，这些块只被执行一次 （所以它们是“编译阶段代码”）。向我所演示的一样，这些代码会通过STDERR把进一步的输出重定向到一个log文件中去。这在CGI环境中是比较方便 的，因为大多数的错误不是被抑制了，就是被写到一个集中的站点错误日志中，这个日志会非常大并且可能不易被你阅读。 <br>
这里还有一样东西被特意放到了BEGIN块中来挽救你的不幸。那就是“print CGI::header”语句。在输出任何错误之前，强制返回给浏览器一个合适的HTTP头，通常的header的形式是这样的：  <br>
Content-type: text/html  <br>
<br>
（包括那个空行）。如果你的脚本已经有了一个头，那么你会在你的文档开始处看到多出了一个以文本显示的“header”。不用管它，当你结束调试的时候，你可以从BEGIN块中删除掉print语句，继续使用你原来的头。  <br>
当然，如果你的脚本使用了Content-type以外的header（比如说：cookie或是重定向），那么你的header会被BEGIN块中的header忽略。当我们证明所有的bug都被清除之后，就可以移除BEGIN块中的header。  <br>
现在，脚本中添加了这些行之后，你就可以很好地捕获并处理错误，并防止“500”之类的错误提示了。 </span> <a href="http://hi.baidu.com/seraphxby/blog/item/a8f2d519d60e764c42a9ad18.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/seraphxby/blog/category/Perl">Perl</a>&nbsp;<a href="http://hi.baidu.com/seraphxby/blog/item/a8f2d519d60e764c42a9ad18.html#comment">查看评论</a>]]></description>
        <pubDate>2009-08-19  12:37</pubDate>
        <category><![CDATA[Perl]]></category>
        <author><![CDATA[seraphxby]]></author>
		<guid>http://hi.baidu.com/seraphxby/blog/item/a8f2d519d60e764c42a9ad18.html</guid>
</item>

<item>
        <title><![CDATA[【转】How to get the Office Assistant (Office 2003) to work in Windows Vista]]></title>
        <link><![CDATA[http://hi.baidu.com/seraphxby/blog/item/3fb19bfa4d0f43d7b58f3174.html]]></link>
        <description><![CDATA[
		
		<div >
<div class="CommonTitle">http://uksbsguy.com/blogs/doverton/archive/2007/07/23/how-to-get-the-office-assistant-office-2003-to-work-in-windows-vista-i-e-remove-the-quot-not-enough-memory-quot-error-messages.aspx<br>
<br>
<br>
How to get the Office Assistant (Office 2003) to work in Windows Vista, i.e. remove the &quot;Not enough memory&quot; error messages      </div>
</div>
<strong>new download location for x64 systems]</strong><br>
<p>I have been asked this question several times and finally dug into the system to make it work.</p>
<h3>The solution</h3>
<p>The Office Assistant relies on some &quot;agent&quot; technologies.&#160; To fix this we need to install the agent technologies and then copy a DLL across.&#160; Since I was playing around it is possible that there is an extra step or two that is not actually needed, but since this is a small process and simple to do I don't think it will do any harm.&#160; What is more,&#160;I was not about to rebuild a system, load Vista and Office 2003 just to see if I could remove a 10 second step :-)</p>
<ol>
    <li><span style="text-decoration: line-through;">Download the MSAgent technology from </span><a title="http://www.microsoft.com/msagent" href="http://www.microsoft.com/msagent"><span style="text-decoration: line-through;" tooltip="linkalert-tip">http://www.microsoft.com/msagent</span></a><span style="text-decoration: line-through;">&#160;- select the CORE files, so for me that was this item - </span><a title="Download the Microsoft Agent core components (395 KB exe)" href="http://activex.microsoft.com/activex/controls/agent2/MSagent.exe"><span style="text-decoration: line-through;" tooltip="linkalert-tip">Download the Microsoft Agent core components (395 KB exe)</span></a>&#160;Download the MSAgent2.exe file from <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=E11BF712-7862-45BA-826D-44AE3A11836F&amp;displaylang=en" tooltip="linkalert-tip">http://www.microsoft.com/downloads/details.aspx?FamilyID=E11BF712-7862-45BA-826D-44AE3A11836F&amp;displaylang=en</a></li>
    <li>Run the download, accepting the UAC prompt (the security prompt)</li>
    <li><a href="http://uksbsguy.com/blogs/doverton/WindowsLiveWriter/HowtogettheOfficeAssistantOffice2003towo_43CB/image.png"><img width="240" height="195" border="0" style="border: 0px none ;" alt="image" src="http://uksbsguy.com/blogs/doverton/WindowsLiveWriter/HowtogettheOfficeAssistantOffice2003towo_43CB/image_thumb.png" tooltip="linkalert-tip"></a> - select the option &quot;This program installed correctly&quot;</li>
    <li>Open an elevated command prompt - have a look at <a href="http://uksbsguy.com/blogs/doverton/archive/2007/03/12/how-to-start-an-administrative-or-elevated-command-prompt-and-tell-if-you-got-it-right-in-vista.aspx" tooltip="linkalert-tip">How to start an administrative (or elevated) command prompt and tell if you got it right (in Vista)</a>&#160;if you are unsure how to do this</li>
    <li>type the following commands into the prompt (each line will probably start with &quot;c:\windows\system32&gt;&quot; - don't worry about this <strong>(if you are using a x64 system replace system32 with system)</strong>
    <ol>
        <table width="556" cellspacing="0" cellpadding="1" border="2">
            <tbody>
                <tr>
                    <td width="552" valign="top">
                    <p><strong>copy c:\windows\msagent\agentdpv.dll c:\windows\system32<br>
                    regsvr32 <strong>c:\windows\msagent\agentdpv.dll </strong></strong></p>
                    </td>
                </tr>
            </tbody>
        </table>
    </ol>
    </li>
    <li>That is it.&#160; If the last item failed then check you have a elevated command prompt</li>
</ol>
<h3>How I diagnosed the problem and fixed it - only read if you want to know more - technical stuff!!</h3>
<p>This is a simple example of using the great tools provided by Microsoft.&#160; The stages I took</p>
<ol>
    <li>Download Process Monitor from <a title="http://www.microsoft.com/technet/sysinternals/ProcessesAndThreads/processmonitor.mspx" href="http://www.microsoft.com/technet/sysinternals/ProcessesAndThreads/processmonitor.mspx" tooltip="linkalert-tip">http://www.microsoft.com/technet/sysinternals/ProcessesAndThreads/processmonitor.mspx</a></li>
    <li><a href="http://uksbsguy.com/blogs/doverton/WindowsLiveWriter/HowtogettheOfficeAssistantOffice2003towo_43CB/image_1.png"><img width="240" height="180" border="0" style="border: 0px none ;" alt="image" src="http://uksbsguy.com/blogs/doverton/WindowsLiveWriter/HowtogettheOfficeAssistantOffice2003towo_43CB/image_thumb_1.png" tooltip="linkalert-tip"></a>&#160; Run Process Monitor and for every application on the list (except winword.exe), right click on it and select Exclude by Process Name</li>
    <li>Clear the history by pressing Ctrl+X</li>
    <li>Now do the &quot;thing&quot; that is causing the problem, so in my case, opening the gallery for the office assistant</li>
    <li>To stop the logging going on forever, stop the logging once you have reproduced the problem (Ctrl+E)</li>
    <li>Now&#160;go down the list and look for things that failed - if you see a number of retries, or in this case, an attempt to open a particular file in every directory on the path then you know you have your suspect</li>
    <li>Open an elevated command prompt and type the following:
    <ol>
        <li>CD C:\</li>
        <li>DIR /S /A &lt;filename&gt; - so DIR /S /A&#160;agentdpv.dll</li>
    </ol>
    </li>
    <li>You will see several hits, but ignore the ones in places like c:\windows\system32\winsxs or other strange locations - c:\windows\msagent seemed like a good option to me.</li>
    <li>We now need to register the file:
    <ol>
        <li>regsvr32 &lt;filename&gt; - so regsvr32 c:\windows\msagent\agentdpv.dll</li>
    </ol>
    </li>
    <li>Finally either add c:\windows\msagent to the path or you can try the trick I did of copying it to c:\windows\system32</li>
</ol> <a href="http://hi.baidu.com/seraphxby/blog/item/3fb19bfa4d0f43d7b58f3174.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/seraphxby/blog/category/Office">Office</a>&nbsp;<a href="http://hi.baidu.com/seraphxby/blog/item/3fb19bfa4d0f43d7b58f3174.html#comment">查看评论</a>]]></description>
        <pubDate>2009-08-13  14:26</pubDate>
        <category><![CDATA[Office]]></category>
        <author><![CDATA[seraphxby]]></author>
		<guid>http://hi.baidu.com/seraphxby/blog/item/3fb19bfa4d0f43d7b58f3174.html</guid>
</item>

<item>
        <title><![CDATA[删除 C++代码中注释的办法]]></title>
        <link><![CDATA[http://hi.baidu.com/seraphxby/blog/item/06a82dfbfbb05e6c024f5669.html]]></link>
        <description><![CDATA[
		
		g++ -E urfile 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/seraphxby/blog/category/Linux">Linux</a>&nbsp;<a href="http://hi.baidu.com/seraphxby/blog/item/06a82dfbfbb05e6c024f5669.html#comment">查看评论</a>]]></description>
        <pubDate>2009-06-08  21:49</pubDate>
        <category><![CDATA[Linux]]></category>
        <author><![CDATA[seraphxby]]></author>
		<guid>http://hi.baidu.com/seraphxby/blog/item/06a82dfbfbb05e6c024f5669.html</guid>
</item>

<item>
        <title><![CDATA[Argument list too long - Linux Workaround]]></title>
        <link><![CDATA[http://hi.baidu.com/seraphxby/blog/item/9474b339dcc9c9fb3b87ce1e.html]]></link>
        <description><![CDATA[
		
		find . -maxdepth 0 -name '*' -exec urcommand {} \;<br>
<br>
eg: find . -maxdepth 0 -name '*.log' -exec rm {} \; 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/seraphxby/blog/category/Linux">Linux</a>&nbsp;<a href="http://hi.baidu.com/seraphxby/blog/item/9474b339dcc9c9fb3b87ce1e.html#comment">查看评论</a>]]></description>
        <pubDate>2009-06-08  12:21</pubDate>
        <category><![CDATA[Linux]]></category>
        <author><![CDATA[seraphxby]]></author>
		<guid>http://hi.baidu.com/seraphxby/blog/item/9474b339dcc9c9fb3b87ce1e.html</guid>
</item>

<item>
        <title><![CDATA[【转】清除Windows Vista通知区域的旧图标]]></title>
        <link><![CDATA[http://hi.baidu.com/seraphxby/blog/item/50b8d809316f182c6b60fbd9.html]]></link>
        <description><![CDATA[
		
		<div class="title2"> </div>
<div class="subtit">发布于:<a href="http://www.mscto.com/">软件开发网</a>  来源:互联网  作者:佚名  时间:1970-01-01  点击:

38</div>
<center>

</center><br>
<div class="con">
<p>　　大家都知道<strong>Windows</strong>系统能在通知区域自动隐藏不活动的图标，这是个非常实用的功能。但是，日积月累之下，通知区域的图标越来越多，有的是很久之前的图标，甚至该软件已经卸载，于是我们想办法怎么把他清理掉。</p>
<p>　　图标的增多带来了臃肿，现在教大家一个简单的方法来清理通知区域的图标。需要注意的是，按照此方法操作会清除你对图标进行的任何设置。</p>
<p>　　在工具栏点击鼠标右键，选择&ldquo;属性&rdquo;，再选择&ldquo;通知区域&rdquo;选项卡，勾选&ldquo;隐藏不活动的图标&rdquo;，点击&ldquo;自定义&rdquo;。</p>
<p align="center"> <span class="Szj817">http://www.mscto.com</span></p>
<p>　　看到名单上的这些图标，一些软件已经早已被我卸载，可图标却残存了下来。 <span class="Szj817">http://www.mscto.com</span></p>
<p>　　按&ldquo;Win R&rdquo;组合键，输入&ldquo;regedit&rdquo;打开注册表编辑器，然后打开如下键值：</p>
<p>　　HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify</p>
<p>　　你可以看到两个文件：IconStreams和PastIconsStream，将它们删除。 <span class="Szj817">http://www.mscto.com</span></p>
<p align="center"> </p>
<p>　　然后调出任务管理器将进程&ldquo;explorer.exe&rdquo;终止，再在任务管理器中点击&ldquo;文件&mdash;&mdash;新建任务&rdquo;，输入&ldquo;explorer&rdquo;，回车，以此重新启动该系统进程。现在再来查看一下通知区域的图标，哈哈，过期的图标已经被成功清理了，界面就变得非常清爽了。</p>
<p align="center"><font color="#ffffff">开发网</font></p>
</div> <a href="http://hi.baidu.com/seraphxby/blog/item/50b8d809316f182c6b60fbd9.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/seraphxby/blog/category/Windows">Windows</a>&nbsp;<a href="http://hi.baidu.com/seraphxby/blog/item/50b8d809316f182c6b60fbd9.html#comment">查看评论</a>]]></description>
        <pubDate>2009-06-06  11:18</pubDate>
        <category><![CDATA[Windows]]></category>
        <author><![CDATA[seraphxby]]></author>
		<guid>http://hi.baidu.com/seraphxby/blog/item/50b8d809316f182c6b60fbd9.html</guid>
</item>

<item>
        <title><![CDATA[Scramble Text !!!!]]></title>
        <link><![CDATA[http://hi.baidu.com/seraphxby/blog/item/55a4f78f321597f2503d92ce.html]]></link>
        <description><![CDATA[
		
		看到一篇新闻里有提到FF的一个插件,网页里的单词的第2..(n-1)为随机调换位置.这种scremble text的方式却不会影响我们阅读.尝试下载那个插件,发现时旧版本的FF用的.根据作者的reference页,重新制作了一个基于Javascript的Scramble开关<br>
<br>
测试页代码:<br>
&lt;body&gt;<br>
jumbled text<br>
&lt;a href=&quot;<font color="#ff0000">javascript:function%20scramble_text(s){if%20(s.nodeType==3){s.nodeValue=s.nodeValue.replace(/\b([a-z])([a-z]+)([a-z])\b/gi,function(t,a,b,c){b=b.split(/\B/);for(var%20i=b.length,j,k;i;j=parseInt(Math.random()*i),k=b[--i],b[i]=b[j],b[j]=k){}%20return%20a+b.join('')+c;})}else{for(var%20l=0;l&lt;s.childNodes.length;++l){scramble_text(s.childNodes[l]);}}};scramble_text(document.body)</font>&quot;&gt;scramble_text&lt;/a&gt;<br>
&lt;/body&gt;<br>
<br>
在FF里只要新建一个书签,地址填Javascript的内容就可以了<br>
很有意思<br>
<br>
Reference:<br>
1. http://4umi.com/web/javascript/scramble.php<br>
2. http://www.in2words.org/projects/raedtihs/<br> <a href="http://hi.baidu.com/seraphxby/blog/item/55a4f78f321597f2503d92ce.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/seraphxby/blog/category/Misc">Misc</a>&nbsp;<a href="http://hi.baidu.com/seraphxby/blog/item/55a4f78f321597f2503d92ce.html#comment">查看评论</a>]]></description>
        <pubDate>2009-05-06  13:38</pubDate>
        <category><![CDATA[Misc]]></category>
        <author><![CDATA[seraphxby]]></author>
		<guid>http://hi.baidu.com/seraphxby/blog/item/55a4f78f321597f2503d92ce.html</guid>
</item>

<item>
        <title><![CDATA[How do I ask the user for a password?]]></title>
        <link><![CDATA[http://hi.baidu.com/seraphxby/blog/item/105c2516f052d24221a4e945.html]]></link>
        <description><![CDATA[
		
		How do I ask the user for a password?<br>
<br>
(This question has nothing to do with the web. See a different FAQ for that.)<br>
<br>
There's an example of this in crypt). First, you put the terminal into &quot;no echo&quot; mode, then just read the password normally. You may do this with an old-style ioctl() function, POSIX terminal control (see POSIX or its documentation the Camel Book), or a call to the stty program, with varying degrees of portability.<br>
<br>
You can also do this for most systems using the Term::ReadKey module from CPAN, which is easier to use and in theory more portable.<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  #!/usr/bin/perl<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  use Term::ReadKey;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  ReadMode('noecho');<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  $password = ReadLine(0);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  ReadMode('normal');<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  print $password;<br>
<br>
&lt;img id="kosa-target-image" style="position: absolute; visibility: hidden; z-index: 2147483647; left: 245px; top: -14px;" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAUCAYAAACJfM0wAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAK8AAACvABQqw0mAAAAB90RVh0U29mdHdhcmUATWFjcm9tZWRpYSBGaXJld29ya3MgOLVo0ngAAAAWdEVYdENyZWF0aW9uIFRpbWUAMDQvMDQvMDhrK9wWAAACMElEQVQ4ja3SP2gTcRQH8O8vvUtIGmkqTY3SaMVFz6KDW2ywg4s4dGgXp3SyVLIIthCKQxCCuoZaXaSO/ilKd4sSdXRL0EWtIRYaSkXsJTH33utwSZM01xo0D353v+N+97l33/upQCAwFgwGfehiFYtFUxsYGPCmUqmv3YQTicSwBgCapnXTBQBoSinout5VVCnVDr/44B/OZH0xs6KMThCfR3LRs+aTycjvbwfCmawvduZkn7EwN4TBfheY90fXN6uYuffdyGQRu3apkmyDmzM2K8pYmBvC6kcLK+/KMEsWLCIQMSyLULUIFhH0HsGNycNYnDuO6PRno9lQSsFVh+tDQSEY6MHymzJKFQILgxkgYhALmBnMDLNsIf1sA8cG3VDYYzhFAWWfRBjCAiIbIxYQE1ga17+2GSICKLQYznCtiATEDK6BIrU5MUhgd0+NH+AIt+5jshdqgkpVwEwNkBgs9lyE4XY3nnLMWNf13QEAG1uE2JVe9PUC5JCvCMPrVpifOor1YnW34/pw7NjvVbmZ+3ljcTaMq5EjbRFJ07Gw8QfTd9fg96rc3o7bMh4f9SytvDenLl7/ZADAl5cjWF7dwmy60PaSeiPjo56lv2Ycnzi0Fp9AEgAu39x8+urtT9x5/GP74a2++LlTuumo76kDd4W9ALj9qIDIiOfBhdO+jtB9O279TFcuet77fD7Wn+sU7ajj1+kTSccb/wv/aymloEKh0Fg4HPZ2E87n86Udvs4FoWqwSHUAAAAASUVORK5CYII=" alt="" /&gt; <a href="http://hi.baidu.com/seraphxby/blog/item/105c2516f052d24221a4e945.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/seraphxby/blog/category/Perl">Perl</a>&nbsp;<a href="http://hi.baidu.com/seraphxby/blog/item/105c2516f052d24221a4e945.html#comment">查看评论</a>]]></description>
        <pubDate>2009-05-05  10:44</pubDate>
        <category><![CDATA[Perl]]></category>
        <author><![CDATA[seraphxby]]></author>
		<guid>http://hi.baidu.com/seraphxby/blog/item/105c2516f052d24221a4e945.html</guid>
</item>

<item>
        <title><![CDATA[在Java中使用Upcasting和Downcasting]]></title>
        <link><![CDATA[http://hi.baidu.com/seraphxby/blog/item/c077910323dedee409fa9366.html]]></link>
        <description><![CDATA[
		
		<pre>package newPackage2;<br>class Fruit<br>{<br>  public String location = &quot;Beijing&quot;;<br>  public Fruit()<br>  {<br>     System.out.println(&quot;This is the base class' constructor &quot; );<br>  }<br>  public void getLocation()<br>  {<br>     System.out.println(&quot;Fruit getLocation:&quot; + location);<br>  }<br>}<br>class Apple extends Fruit<br>{<br>  public String location = &quot;Shandong&quot;;<br>  public Apple()<br>  {<br>  System.out.println(&quot;This is the derived class' constructor &quot; );<br>  }<br>  public void getLocation()    //override<br>  {<br>  System.out.println(&quot;Apple getLocation:&quot; + location);<br>  }  <br>}<br>public class Test2<br>{<br>public static void main(final String[] args)<br>{<br>final Fruit fruit = new Apple();   // upcasting,safe<br>    fruit.getLocation();<br>    System.out.println(&quot;fruit.location = &quot; + fruit.location);<br>    System.out.println(&quot;((Apple)(fruit)).location = &quot; + ((Apple)(fruit)).location);    //downcasting<br>    System.out.println(fruit instanceof Fruit);          //true<br>    System.out.println(fruit instanceof Apple);        //true<br>}<br>}<br>/*<br>输出结果：<br><br>This is the base class' constructor <br>This is the derived class' constructor <br>Apple getLocation:Shandong<br>fruit.location = Beijing<br>((Apple)(fruit)).location = Shandong<br>true<br>true<br>  <br>fruit.getLocation();语句会导致类Fruit中的getLocation方法的执行还是Apple中的getLocation方法的执行呢？<br>从输出结果来看：<br>Apple location:Shandong<br>是子类Apple中的getLocation方法的执行。这其中，在生成new Apple()时，<br>getLocaiton方法做了重写（overwrite or override），即使upcasting到其父类对象，其方法仍然保留。<br>而对于属性location,upcasting成父类对象时，若用fruit.locaiton这样的方式访问，会访问到父类对象的属性。<br>所以其输出为：Beijing<br>而(Apple)(fruit)).location则对fruit又做了一次casting:downcasting，访问到的会是子类对象的属性，<br>故其输出为:Shandong<br>Object fruit is an instance of class Fruit:true<br>Object fruit is an instance of class Apple:true<br>表明，尽管做了upcasting,其实并没有改变对象作为一个类实例的事实，影响比较大的是在于可能做了方法的重写。<br>而如果子类Fruit中有一个方法getWeight(), fruit.getWeight就会出错，<br>原因在于子类独有的方法和属性，当进行upcasting后，不能为upcasting后的对象所用。<br>而如果又downcasting后，则重新可以使用。<br>还有一点需要注意的是，upcasting总是安全的，而downcasting却不是，<br>downcast可能会在编译时通过，而在运行的时候报java.lang.ClassCastException异常。<br>这其实也好理解：一个苹果肯定是一个水果，一个水果却不一定是一个苹果。<br>*/</pre> <a href="http://hi.baidu.com/seraphxby/blog/item/c077910323dedee409fa9366.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/seraphxby/blog/category/Misc">Misc</a>&nbsp;<a href="http://hi.baidu.com/seraphxby/blog/item/c077910323dedee409fa9366.html#comment">查看评论</a>]]></description>
        <pubDate>2009-04-21  23:17</pubDate>
        <category><![CDATA[Misc]]></category>
        <author><![CDATA[seraphxby]]></author>
		<guid>http://hi.baidu.com/seraphxby/blog/item/c077910323dedee409fa9366.html</guid>
</item>

<item>
        <title><![CDATA[【转】sendmail 带 附件的脚本]]></title>
        <link><![CDATA[http://hi.baidu.com/seraphxby/blog/item/eeaf0806cfce5a7303088168.html]]></link>
        <description><![CDATA[
		
		file_1=$1<br>
<br>
<br>
SUBJ=&quot;Send mail from Unix with file attachments&quot;<br>
TO=root<br>
CC=root<br>
(<br>
cat &lt;&lt; EOF<br>
To : ${TO}<br>
Subject : ${SUBJ}<br>
Cc : ${CC}<br>
EOF<br>
<br>
cat &lt;&lt; EOF<br>
HOPE THIS WORKS<br>
This sample E-mail message demonstrates how one can attach<br>
files when sending messages with the Unix sendmail utility.<br>
EOF<br>
<br>
uuencode ${file_1} ${file_1##*/}<br>
# uuencode ${file_2} ${file_2##*/}<br>
# uuencode ${file_3} ${file_3##*/}<br>
<br>
) | sendmail -v ${TO} ${CC} <a href="http://hi.baidu.com/seraphxby/blog/item/eeaf0806cfce5a7303088168.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/seraphxby/blog/category/Linux">Linux</a>&nbsp;<a href="http://hi.baidu.com/seraphxby/blog/item/eeaf0806cfce5a7303088168.html#comment">查看评论</a>]]></description>
        <pubDate>2009-04-02  19:44</pubDate>
        <category><![CDATA[Linux]]></category>
        <author><![CDATA[seraphxby]]></author>
		<guid>http://hi.baidu.com/seraphxby/blog/item/eeaf0806cfce5a7303088168.html</guid>
</item>

<item>
        <title><![CDATA[ASCII]]></title>
        <link><![CDATA[http://hi.baidu.com/seraphxby/blog/item/54a4158d175e721ab31bbabe.html]]></link>
        <description><![CDATA[
		
		<font face="宋体"><span class="lineno">001</span> <span class="_">ASCII Table (7-bit)</span><br>
<span class="lineno">002</span> <span class="_">(ASCII = American Standard Code for Information Interchange)</span><br>
<span class="lineno">003</span><br>
<span class="lineno">004</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   Decimal&nbsp;&nbsp;   Octal&nbsp;&nbsp;   Hex&nbsp;&nbsp;&nbsp;   Binary&nbsp;&nbsp;&nbsp;&nbsp;   Value</span><br>
<span class="lineno special">005</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   -------&nbsp;&nbsp;   -----&nbsp;&nbsp;   ---&nbsp;&nbsp;&nbsp;   ------&nbsp;&nbsp;&nbsp;&nbsp;   -----</span><br>
<span class="lineno">006</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   000&nbsp;&nbsp;&nbsp;   000&nbsp;&nbsp;   00000000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   NUL&nbsp;&nbsp;&nbsp;   (Null char.)</span><br>
<span class="lineno">007</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   001&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   001&nbsp;&nbsp;&nbsp;   001&nbsp;&nbsp;   00000001&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   SOH&nbsp;&nbsp;&nbsp;   (Start of Header)</span><br>
<span class="lineno">008</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   002&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   002&nbsp;&nbsp;&nbsp;   002&nbsp;&nbsp;   00000010&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   STX&nbsp;&nbsp;&nbsp;   (Start of Text)</span><br>
<span class="lineno">009</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   003&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   003&nbsp;&nbsp;&nbsp;   003&nbsp;&nbsp;   00000011&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   ETX&nbsp;&nbsp;&nbsp;   (End of Text)</span><br>
<span class="lineno special">010</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   004&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   004&nbsp;&nbsp;&nbsp;   004&nbsp;&nbsp;   00000100&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   EOT&nbsp;&nbsp;&nbsp;   (End of Transmission)</span><br>
<span class="lineno">011</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   005&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   005&nbsp;&nbsp;&nbsp;   005&nbsp;&nbsp;   00000101&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   ENQ&nbsp;&nbsp;&nbsp;   (Enquiry)</span><br>
<span class="lineno">012</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   006&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   006&nbsp;&nbsp;&nbsp;   006&nbsp;&nbsp;   00000110&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   ACK&nbsp;&nbsp;&nbsp;   (Acknowledgment)</span><br>
<span class="lineno">013</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   007&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   007&nbsp;&nbsp;&nbsp;   007&nbsp;&nbsp;   00000111&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   BEL&nbsp;&nbsp;&nbsp;   (Bell)</span><br>
<span class="lineno">014</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   008&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   010&nbsp;&nbsp;&nbsp;   008&nbsp;&nbsp;   00001000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   BS&nbsp;&nbsp;&nbsp;   (Backspace)</span><br>
<span class="lineno special">015</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   009&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   011&nbsp;&nbsp;&nbsp;   009&nbsp;&nbsp;   00001001&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   HT&nbsp;&nbsp;&nbsp;   (Horizontal Tab)</span><br>
<span class="lineno">016</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   010&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   012&nbsp;&nbsp;&nbsp;   00A&nbsp;&nbsp;   00001010&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   LF&nbsp;&nbsp;&nbsp;   (Line Feed)</span><br>
<span class="lineno">017</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   011&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   013&nbsp;&nbsp;&nbsp;   00B&nbsp;&nbsp;   00001011&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   VT&nbsp;&nbsp;&nbsp;   (Vertical Tab)</span><br>
<span class="lineno">018</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   012&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   014&nbsp;&nbsp;&nbsp;   00C&nbsp;&nbsp;   00001100&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   FF&nbsp;&nbsp;&nbsp;   (Form Feed)</span><br>
<span class="lineno">019</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   013&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   015&nbsp;&nbsp;&nbsp;   00D&nbsp;&nbsp;   00001101&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   CR&nbsp;&nbsp;&nbsp;   (Carriage Return)</span><br>
<span class="lineno special">020</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   014&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   016&nbsp;&nbsp;&nbsp;   00E&nbsp;&nbsp;   00001110&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   SO&nbsp;&nbsp;&nbsp;   (Shift Out)</span><br>
<span class="lineno">021</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   015&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   017&nbsp;&nbsp;&nbsp;   00F&nbsp;&nbsp;   00001111&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   SI&nbsp;&nbsp;&nbsp;   (Shift In)</span><br>
<span class="lineno">022</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   016&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   020&nbsp;&nbsp;&nbsp;   010&nbsp;&nbsp;   00010000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   DLE&nbsp;&nbsp;&nbsp;   (Data Link Escape)</span><br>
<span class="lineno">023</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   017&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   021&nbsp;&nbsp;&nbsp;   011&nbsp;&nbsp;   00010001&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   DC1 (XON) (Device Control 1)</span><br>
<span class="lineno">024</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   018&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   022&nbsp;&nbsp;&nbsp;   012&nbsp;&nbsp;   00010010&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   DC2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   (Device Control 2)</span><br>
<span class="lineno special">025</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   019&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   023&nbsp;&nbsp;&nbsp;   013&nbsp;&nbsp;   00010011&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   DC3 (XOFF)(Device Control 3)</span><br>
<span class="lineno">026</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   020&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   024&nbsp;&nbsp;&nbsp;   014&nbsp;&nbsp;   00010100&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   DC4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   (Device Control 4)</span><br>
<span class="lineno">027</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   021&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   025&nbsp;&nbsp;&nbsp;   015&nbsp;&nbsp;   00010101&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   NAK&nbsp;&nbsp;&nbsp;   (Negative Acknowledgement)</span><br>
<span class="lineno">028</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   022&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   026&nbsp;&nbsp;&nbsp;   016&nbsp;&nbsp;   00010110&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   SYN&nbsp;&nbsp;&nbsp;   (Synchronous Idle)</span><br>
<span class="lineno">029</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   023&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   027&nbsp;&nbsp;&nbsp;   017&nbsp;&nbsp;   00010111&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   ETB&nbsp;&nbsp;&nbsp;   (End of Trans. Block)</span><br>
<span class="lineno special">030</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   024&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   030&nbsp;&nbsp;&nbsp;   018&nbsp;&nbsp;   00011000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   CAN&nbsp;&nbsp;&nbsp;   (Cancel)</span><br>
<span class="lineno">031</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   025&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   031&nbsp;&nbsp;&nbsp;   019&nbsp;&nbsp;   00011001&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   EM&nbsp;&nbsp;&nbsp;   (End of Medium)</span><br>
<span class="lineno">032</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   026&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   032&nbsp;&nbsp;&nbsp;   01A&nbsp;&nbsp;   00011010&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   SUB&nbsp;&nbsp;&nbsp;   (Substitute)</span><br>
<span class="lineno">033</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   027&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   033&nbsp;&nbsp;&nbsp;   01B&nbsp;&nbsp;   00011011&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   ESC&nbsp;&nbsp;&nbsp;   (Escape)</span><br>
<span class="lineno">034</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   028&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   034&nbsp;&nbsp;&nbsp;   01C&nbsp;&nbsp;   00011100&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   FS&nbsp;&nbsp;&nbsp;   (File Separator)</span><br>
<span class="lineno special">035</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   029&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   035&nbsp;&nbsp;&nbsp;   01D&nbsp;&nbsp;   00011101&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   GS&nbsp;&nbsp;&nbsp;   (Group Separator)</span><br>
<span class="lineno">036</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   030&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   036&nbsp;&nbsp;&nbsp;   01E&nbsp;&nbsp;   00011110&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   RS&nbsp;&nbsp;&nbsp;   (Request to Send)(Record Separator)</span><br>
<span class="lineno">037</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   031&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   037&nbsp;&nbsp;&nbsp;   01F&nbsp;&nbsp;   00011111&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   US&nbsp;&nbsp;&nbsp;   (Unit Separator)</span><br>
<span class="lineno">038</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   032&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   040&nbsp;&nbsp;&nbsp;   020&nbsp;&nbsp;   00100000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   SP&nbsp;&nbsp;&nbsp;   (Space)</span><br>
<span class="lineno">039</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   033&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   041&nbsp;&nbsp;&nbsp;   021&nbsp;&nbsp;   00100001&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   !&nbsp;&nbsp;&nbsp;   (exclamation mark)</span><br>
<span class="lineno special">040</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   034&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   042&nbsp;&nbsp;&nbsp;   022&nbsp;&nbsp;   00100010&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   &quot;&nbsp;&nbsp;&nbsp;   (double quote)</span><br>
<span class="lineno">041</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   035&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   043&nbsp;&nbsp;&nbsp;   023&nbsp;&nbsp;   00100011&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   #&nbsp;&nbsp;&nbsp;   (number sign)</span><br>
<span class="lineno">042</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   036&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   044&nbsp;&nbsp;&nbsp;   024&nbsp;&nbsp;   00100100&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   $&nbsp;&nbsp;&nbsp;   (dollar sign)</span><br>
<span class="lineno">043</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   037&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   045&nbsp;&nbsp;&nbsp;   025&nbsp;&nbsp;   00100101&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   %&nbsp;&nbsp;&nbsp;   (percent)</span><br>
<span class="lineno">044</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   038&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   046&nbsp;&nbsp;&nbsp;   026&nbsp;&nbsp;   00100110&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   &amp;&nbsp;&nbsp;&nbsp;   (ampersand)</span><br>
<span class="lineno special">045</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   039&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   047&nbsp;&nbsp;&nbsp;   027&nbsp;&nbsp;   00100111&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   '&nbsp;&nbsp;&nbsp;   (single quote)</span><br>
<span class="lineno">046</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   040&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   050&nbsp;&nbsp;&nbsp;   028&nbsp;&nbsp;   00101000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   (&nbsp;&nbsp;&nbsp;   (left/opening parenthesis)</span><br>
<span class="lineno">047</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   041&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   051&nbsp;&nbsp;&nbsp;   029&nbsp;&nbsp;   00101001&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   )&nbsp;&nbsp;&nbsp;   (right/closing parenthesis)</span><br>
<span class="lineno">048</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   042&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   052&nbsp;&nbsp;&nbsp;   02A&nbsp;&nbsp;   00101010&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   *&nbsp;&nbsp;&nbsp;   (asterisk)</span><br>
<span class="lineno">049</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   043&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   053&nbsp;&nbsp;&nbsp;   02B&nbsp;&nbsp;   00101011&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   +&nbsp;&nbsp;&nbsp;   (plus)</span><br>
<span class="lineno special">050</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   044&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   054&nbsp;&nbsp;&nbsp;   02C&nbsp;&nbsp;   00101100&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   ,&nbsp;&nbsp;&nbsp;   (comma)</span><br>
<span class="lineno">051</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   045&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   055&nbsp;&nbsp;&nbsp;   02D&nbsp;&nbsp;   00101101&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   -&nbsp;&nbsp;&nbsp;   (minus or dash)</span><br>
<span class="lineno">052</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   046&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   056&nbsp;&nbsp;&nbsp;   02E&nbsp;&nbsp;   00101110&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   .&nbsp;&nbsp;&nbsp;   (dot)</span><br>
<span class="lineno">053</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   047&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   057&nbsp;&nbsp;&nbsp;   02F&nbsp;&nbsp;   00101111&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   /&nbsp;&nbsp;&nbsp;   (forward slash)</span><br>
<span class="lineno">054</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   048&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   060&nbsp;&nbsp;&nbsp;   030&nbsp;&nbsp;   00110000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   0</span><br>
<span class="lineno special">055</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   049&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   061&nbsp;&nbsp;&nbsp;   031&nbsp;&nbsp;   00110001&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   1</span><br>
<span class="lineno">056</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   050&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   062&nbsp;&nbsp;&nbsp;   032&nbsp;&nbsp;   00110010&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   2</span><br>
<span class="lineno">057</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   051&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   063&nbsp;&nbsp;&nbsp;   033&nbsp;&nbsp;   00110011&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   3</span><br>
<span class="lineno">058</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   052&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   064&nbsp;&nbsp;&nbsp;   034&nbsp;&nbsp;   00110100&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   4</span><br>
<span class="lineno">059</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   053&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   065&nbsp;&nbsp;&nbsp;   035&nbsp;&nbsp;   00110101&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   5</span><br>
<span class="lineno special">060</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   054&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   066&nbsp;&nbsp;&nbsp;   036&nbsp;&nbsp;   00110110&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   6</span><br>
<span class="lineno">061</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   055&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   067&nbsp;&nbsp;&nbsp;   037&nbsp;&nbsp;   00110111&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   7</span><br>
<span class="lineno">062</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   056&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   070&nbsp;&nbsp;&nbsp;   038&nbsp;&nbsp;   00111000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   8</span><br>
<span class="lineno">063</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   057&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   071&nbsp;&nbsp;&nbsp;   039&nbsp;&nbsp;   00111001&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   9</span><br>
<span class="lineno">064</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   058&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   072&nbsp;&nbsp;&nbsp;   03A&nbsp;&nbsp;   00111010&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   :&nbsp;&nbsp;&nbsp;   (colon)</span><br>
<span class="lineno special">065</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   059&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   073&nbsp;&nbsp;&nbsp;   03B&nbsp;&nbsp;   00111011&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   ;&nbsp;&nbsp;&nbsp;   (semi-colon)</span><br>
<span class="lineno">066</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   060&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   074&nbsp;&nbsp;&nbsp;   03C&nbsp;&nbsp;   00111100&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   &lt;&nbsp;&nbsp;&nbsp;   (less than)</span><br>
<span class="lineno">067</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   061&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   075&nbsp;&nbsp;&nbsp;   03D&nbsp;&nbsp;   00111101&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   =&nbsp;&nbsp;&nbsp;   (equal sign)</span><br>
<span class="lineno">068</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   062&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   076&nbsp;&nbsp;&nbsp;   03E&nbsp;&nbsp;   00111110&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   &gt;&nbsp;&nbsp;&nbsp;   (greater than)</span><br>
<span class="lineno">069</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   063&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   077&nbsp;&nbsp;&nbsp;   03F&nbsp;&nbsp;   00111111&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   ?&nbsp;&nbsp;&nbsp;   (question mark)</span><br>
<span class="lineno special">070</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   064&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   100&nbsp;&nbsp;&nbsp;   040&nbsp;&nbsp;   01000000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   @&nbsp;&nbsp;&nbsp;   (AT symbol)</span><br>
<span class="lineno">071</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   065&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   101&nbsp;&nbsp;&nbsp;   041&nbsp;&nbsp;   01000001&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   A</span><br>
<span class="lineno">072</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   066&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   102&nbsp;&nbsp;&nbsp;   042&nbsp;&nbsp;   01000010&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   B</span><br>
<span class="lineno">073</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   067&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   103&nbsp;&nbsp;&nbsp;   043&nbsp;&nbsp;   01000011&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   C</span><br>
<span class="lineno">074</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   068&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   104&nbsp;&nbsp;&nbsp;   044&nbsp;&nbsp;   01000100&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   D</span><br>
<span class="lineno special">075</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   069&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   105&nbsp;&nbsp;&nbsp;   045&nbsp;&nbsp;   01000101&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   E</span><br>
<span class="lineno">076</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   070&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   106&nbsp;&nbsp;&nbsp;   046&nbsp;&nbsp;   01000110&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   F</span><br>
<span class="lineno">077</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   071&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   107&nbsp;&nbsp;&nbsp;   047&nbsp;&nbsp;   01000111&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   G</span><br>
<span class="lineno">078</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   072&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   110&nbsp;&nbsp;&nbsp;   048&nbsp;&nbsp;   01001000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   H</span><br>
<span class="lineno">079</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   073&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   111&nbsp;&nbsp;&nbsp;   049&nbsp;&nbsp;   01001001&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   I</span><br>
<span class="lineno special">080</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   074&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   112&nbsp;&nbsp;&nbsp;   04A&nbsp;&nbsp;   01001010&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   J</span><br>
<span class="lineno">081</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   075&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   113&nbsp;&nbsp;&nbsp;   04B&nbsp;&nbsp;   01001011&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   K</span><br>
<span class="lineno">082</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   076&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   114&nbsp;&nbsp;&nbsp;   04C&nbsp;&nbsp;   01001100&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   L</span><br>
<span class="lineno">083</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   077&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   115&nbsp;&nbsp;&nbsp;   04D&nbsp;&nbsp;   01001101&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   M</span><br>
<span class="lineno">084</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   078&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   116&nbsp;&nbsp;&nbsp;   04E&nbsp;&nbsp;   01001110&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   N</span><br>
<span class="lineno special">085</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   079&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   117&nbsp;&nbsp;&nbsp;   04F&nbsp;&nbsp;   01001111&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   O</span><br>
<span class="lineno">086</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   080&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   120&nbsp;&nbsp;&nbsp;   050&nbsp;&nbsp;   01010000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   P</span><br>
<span class="lineno">087</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   081&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   121&nbsp;&nbsp;&nbsp;   051&nbsp;&nbsp;   01010001&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   Q</span><br>
<span class="lineno">088</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   082&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   122&nbsp;&nbsp;&nbsp;   052&nbsp;&nbsp;   01010010&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   R</span><br>
<span class="lineno">089</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   083&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   123&nbsp;&nbsp;&nbsp;   053&nbsp;&nbsp;   01010011&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   S</span><br>
<span class="lineno special">090</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   084&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   124&nbsp;&nbsp;&nbsp;   054&nbsp;&nbsp;   01010100&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   T</span><br>
<span class="lineno">091</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   085&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   125&nbsp;&nbsp;&nbsp;   055&nbsp;&nbsp;   01010101&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   U</span><br>
<span class="lineno">092</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   086&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   126&nbsp;&nbsp;&nbsp;   056&nbsp;&nbsp;   01010110&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   V</span><br>
<span class="lineno">093</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   087&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   127&nbsp;&nbsp;&nbsp;   057&nbsp;&nbsp;   01010111&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   W</span><br>
<span class="lineno">094</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   088&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   130&nbsp;&nbsp;&nbsp;   058&nbsp;&nbsp;   01011000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   X</span><br>
<span class="lineno special">095</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   089&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   131&nbsp;&nbsp;&nbsp;   059&nbsp;&nbsp;   01011001&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   Y</span><br>
<span class="lineno">096</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   090&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   132&nbsp;&nbsp;&nbsp;   05A&nbsp;&nbsp;   01011010&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   Z</span><br>
<span class="lineno">097</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   091&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   133&nbsp;&nbsp;&nbsp;   05B&nbsp;&nbsp;   01011011&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   [&nbsp;&nbsp;&nbsp;   (left/opening bracket)</span><br>
<span class="lineno">098</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   092&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   134&nbsp;&nbsp;&nbsp;   05C&nbsp;&nbsp;   01011100&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   \&nbsp;&nbsp;&nbsp;   (back slash)</span><br>
<span class="lineno">099</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   093&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   135&nbsp;&nbsp;&nbsp;   05D&nbsp;&nbsp;   01011101&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   ]&nbsp;&nbsp;&nbsp;   (right/closing bracket)</span><br>
<span class="lineno special">100</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   094&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   136&nbsp;&nbsp;&nbsp;   05E&nbsp;&nbsp;   01011110&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   ^&nbsp;&nbsp;&nbsp;   (caret/circumflex)</span><br>
<span class="lineno">101</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   095&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   137&nbsp;&nbsp;&nbsp;   05F&nbsp;&nbsp;   01011111&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   _&nbsp;&nbsp;&nbsp;   (underscore)</span><br>
<span class="lineno">102</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   096&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   140&nbsp;&nbsp;&nbsp;   060&nbsp;&nbsp;   01100000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   `</span><br>
<span class="lineno">103</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   097&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   141&nbsp;&nbsp;&nbsp;   061&nbsp;&nbsp;   01100001&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   a</span><br>
<span class="lineno">104</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   098&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   142&nbsp;&nbsp;&nbsp;   062&nbsp;&nbsp;   01100010&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   b</span><br>
<span class="lineno special">105</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   099&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   143&nbsp;&nbsp;&nbsp;   063&nbsp;&nbsp;   01100011&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   c</span><br>
<span class="lineno">106</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   100&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   144&nbsp;&nbsp;&nbsp;   064&nbsp;&nbsp;   01100100&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   d</span><br>
<span class="lineno">107</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   101&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   145&nbsp;&nbsp;&nbsp;   065&nbsp;&nbsp;   01100101&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   e</span><br>
<span class="lineno">108</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   102&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   146&nbsp;&nbsp;&nbsp;   066&nbsp;&nbsp;   01100110&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   f</span><br>
<span class="lineno">109</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   103&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   147&nbsp;&nbsp;&nbsp;   067&nbsp;&nbsp;   01100111&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   g</span><br>
<span class="lineno special">110</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   104&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   150&nbsp;&nbsp;&nbsp;   068&nbsp;&nbsp;   01101000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   h</span><br>
<span class="lineno">111</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   105&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   151&nbsp;&nbsp;&nbsp;   069&nbsp;&nbsp;   01101001&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   i</span><br>
<span class="lineno">112</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   106&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   152&nbsp;&nbsp;&nbsp;   06A&nbsp;&nbsp;   01101010&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   j</span><br>
<span class="lineno">113</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   107&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   153&nbsp;&nbsp;&nbsp;   06B&nbsp;&nbsp;   01101011&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   k</span><br>
<span class="lineno">114</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   108&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   154&nbsp;&nbsp;&nbsp;   06C&nbsp;&nbsp;   01101100&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   l</span><br>
<span class="lineno special">115</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   109&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   155&nbsp;&nbsp;&nbsp;   06D&nbsp;&nbsp;   01101101&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   m</span><br>
<span class="lineno">116</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   110&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   156&nbsp;&nbsp;&nbsp;   06E&nbsp;&nbsp;   01101110&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   n</span><br>
<span class="lineno">117</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   111&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   157&nbsp;&nbsp;&nbsp;   06F&nbsp;&nbsp;   01101111&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   o</span><br>
<span class="lineno">118</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   112&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   160&nbsp;&nbsp;&nbsp;   070&nbsp;&nbsp;   01110000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   p</span><br>
<span class="lineno">119</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   113&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   161&nbsp;&nbsp;&nbsp;   071&nbsp;&nbsp;   01110001&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   q</span><br>
<span class="lineno special">120</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   114&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   162&nbsp;&nbsp;&nbsp;   072&nbsp;&nbsp;   01110010&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   r</span><br>
<span class="lineno">121</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   115&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   163&nbsp;&nbsp;&nbsp;   073&nbsp;&nbsp;   01110011&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   s</span><br>
<span class="lineno">122</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   116&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   164&nbsp;&nbsp;&nbsp;   074&nbsp;&nbsp;   01110100&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   t</span><br>
<span class="lineno">123</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   117&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   165&nbsp;&nbsp;&nbsp;   075&nbsp;&nbsp;   01110101&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   u</span><br>
<span class="lineno">124</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   118&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   166&nbsp;&nbsp;&nbsp;   076&nbsp;&nbsp;   01110110&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   v</span><br>
<span class="lineno special">125</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   119&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   167&nbsp;&nbsp;&nbsp;   077&nbsp;&nbsp;   01110111&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   w</span><br>
<span class="lineno">126</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   120&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   170&nbsp;&nbsp;&nbsp;   078&nbsp;&nbsp;   01111000&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   x</span><br>
<span class="lineno">127</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   121&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   171&nbsp;&nbsp;&nbsp;   079&nbsp;&nbsp;   01111001&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   y</span><br>
<span class="lineno">128</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   122&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   172&nbsp;&nbsp;&nbsp;   07A&nbsp;&nbsp;   01111010&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   z</span><br>
<span class="lineno">129</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   123&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   173&nbsp;&nbsp;&nbsp;   07B&nbsp;&nbsp;   01111011&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   {&nbsp;&nbsp;&nbsp;   (left/opening brace)</span><br>
<span class="lineno special">130</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   124&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   174&nbsp;&nbsp;&nbsp;   07C&nbsp;&nbsp;   01111100&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   |&nbsp;&nbsp;&nbsp;   (vertical bar)</span><br>
<span class="lineno">131</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   125&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   175&nbsp;&nbsp;&nbsp;   07D&nbsp;&nbsp;   01111101&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   }&nbsp;&nbsp;&nbsp;   (right/closing brace)</span><br>
<span class="lineno">132</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   126&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   176&nbsp;&nbsp;&nbsp;   07E&nbsp;&nbsp;   01111110&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   ~&nbsp;&nbsp;&nbsp;   (tilde)</span><br>
<span class="lineno">133</span> <span class="_">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   127&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   177&nbsp;&nbsp;&nbsp;   07F&nbsp;&nbsp;   01111111&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   DEL&nbsp;&nbsp;&nbsp;   (delete)</span><br>
<span class="lineno">134</span><br>
<span class="lineno special">135</span> <span class="_">------------------------------------------------------------------</span><br>
<span class="lineno">136</span><br>
<span class="lineno">137</span> <span class="_">&nbsp;&nbsp;&nbsp;   0&nbsp;&nbsp;   1&nbsp;&nbsp;   2&nbsp;&nbsp;   3&nbsp;&nbsp;   4&nbsp;&nbsp;   5&nbsp;&nbsp;   6&nbsp;&nbsp;   7&nbsp;&nbsp;   8&nbsp;&nbsp;   9&nbsp;&nbsp;   A&nbsp;&nbsp;   B&nbsp;&nbsp;   C&nbsp;&nbsp;   D&nbsp;&nbsp;   E&nbsp;&nbsp;   F</span><br>
<span class="lineno">138</span> <span class="_">0  NUL SOH STX ETX EOT ENQ ACK BEL BS  HT  LF  VT  FF  CR  SO  SI</span><br>
<span class="lineno">139</span> <span class="_">1  DLE DC1 DC2 DC3 DC4 NAK SYN ETB CAN EM  SUB ESC FS  GS  RS  US</span><br>
<span class="lineno special">140</span> <span class="_">2&nbsp;&nbsp;   SP  !&nbsp;&nbsp;   &quot;&nbsp;&nbsp;   #&nbsp;&nbsp;   $&nbsp;&nbsp;   %&nbsp;&nbsp;   &amp;&nbsp;&nbsp;   '&nbsp;&nbsp;   (&nbsp;&nbsp;   )&nbsp;&nbsp;   *&nbsp;&nbsp;   +&nbsp;&nbsp;   ,&nbsp;&nbsp;   -&nbsp;&nbsp;   .&nbsp;&nbsp;   /</span><br>
<span class="lineno">141</span> <span class="_">3&nbsp;&nbsp;   0&nbsp;&nbsp;   1&nbsp;&nbsp;   2&nbsp;&nbsp;   3&nbsp;&nbsp;   4&nbsp;&nbsp;   5&nbsp;&nbsp;   6&nbsp;&nbsp;   7&nbsp;&nbsp;   8&nbsp;&nbsp;   9&nbsp;&nbsp;   :&nbsp;&nbsp;   ;&nbsp;&nbsp;   &lt;&nbsp;&nbsp;   =&nbsp;&nbsp;   &gt;&nbsp;&nbsp;   ?</span><br>
<span class="lineno">142</span> <span class="_">4&nbsp;&nbsp;   @&nbsp;&nbsp;   A&nbsp;&nbsp;   B&nbsp;&nbsp;   C&nbsp;&nbsp;   D&nbsp;&nbsp;   E&nbsp;&nbsp;   F&nbsp;&nbsp;   G&nbsp;&nbsp;   H&nbsp;&nbsp;   I&nbsp;&nbsp;   J&nbsp;&nbsp;   K&nbsp;&nbsp;   L&nbsp;&nbsp;   M&nbsp;&nbsp;   N&nbsp;&nbsp;   O</span><br>
<span class="lineno">143</span> <span class="_">5&nbsp;&nbsp;   P&nbsp;&nbsp;   Q&nbsp;&nbsp;   R&nbsp;&nbsp;   S&nbsp;&nbsp;   T&nbsp;&nbsp;   U&nbsp;&nbsp;   V&nbsp;&nbsp;   W&nbsp;&nbsp;   X&nbsp;&nbsp;   Y&nbsp;&nbsp;   Z&nbsp;&nbsp;   [&nbsp;&nbsp;   \&nbsp;&nbsp;   ]&nbsp;&nbsp;   ^&nbsp;&nbsp;   _</span><br>
<span class="lineno">144</span> <span class="_">6&nbsp;&nbsp;   `&nbsp;&nbsp;   a&nbsp;&nbsp;   b&nbsp;&nbsp;   c&nbsp;&nbsp;   d&nbsp;&nbsp;   e&nbsp;&nbsp;   f&nbsp;&nbsp;   g&nbsp;&nbsp;   h&nbsp;&nbsp;   i&nbsp;&nbsp;   j&nbsp;&nbsp;   k&nbsp;&nbsp;   l&nbsp;&nbsp;   m&nbsp;&nbsp;   n&nbsp;&nbsp;   o</span><br>
<span class="lineno special">145</span> <span class="_">7&nbsp;&nbsp;   p&nbsp;&nbsp;   q&nbsp;&nbsp;   r&nbsp;&nbsp;   s&nbsp;&nbsp;   t&nbsp;&nbsp;   u&nbsp;&nbsp;   v&nbsp;&nbsp;   w&nbsp;&nbsp;   x&nbsp;&nbsp;   y&nbsp;&nbsp;   z&nbsp;&nbsp;   {&nbsp;&nbsp;   |&nbsp;&nbsp;   }&nbsp;&nbsp;   ~ DEL</span><br>
<span class="lineno">146</span><br>
<span class="lineno">147</span> <span class="_">------------------------------------------------------------------</span></font> <a href="http://hi.baidu.com/seraphxby/blog/item/54a4158d175e721ab31bbabe.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/seraphxby/blog/category/Misc">Misc</a>&nbsp;<a href="http://hi.baidu.com/seraphxby/blog/item/54a4158d175e721ab31bbabe.html#comment">查看评论</a>]]></description>
        <pubDate>2009-03-31  14:23</pubDate>
        <category><![CDATA[Misc]]></category>
        <author><![CDATA[seraphxby]]></author>
		<guid>http://hi.baidu.com/seraphxby/blog/item/54a4158d175e721ab31bbabe.html</guid>
</item>

<item>
        <title><![CDATA[【转】美国高中毕业生必须知道的100个单词]]></title>
        <link><![CDATA[http://hi.baidu.com/seraphxby/blog/item/c79f6ad7aa82a6d5a044df35.html]]></link>
        <description><![CDATA[
		
		<div class="Section0">
<p class="p0" style="margin-bottom: 8.7pt; margin-top: 8.7pt;"><span><a href="http://apt-blog.co.cc/archives/134.html"><span style="color: rgb(0, 0, 255); font-weight: bold; text-decoration: underline; font-size: 15.5pt;"><br>
</span></a></span></p>
<p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;"><font face="宋体">分类： </font></span><span><a href="http://apt-blog.co.cc/archives/category/life_like"><span style="color: rgb(0, 0, 255); text-decoration: underline; font-size: 10.5pt;">Life Like</span></a></span><span style="font-size: 10.5pt;"> <font face="宋体">发布于： 2009.03.19 星期四</font></span></p>
<p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span><a href="http://www.houghtonmifflinbooks.com/catalog/titledetail.cfm?titleNumber=H50100"><span style="color: rgb(0, 0, 255); text-decoration: underline; font-size: 10.5pt;">100 Words Every High School Graduate Should Know</span></a></span></p>
<p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;"><font face="宋体">美国Heritage的编辑们精心编辑了100个单词。他们认为，这100个单词对于高中毕业生来说，虽然无法做到完全翔实地反映语言水平，但仍然是一个很好的评判标准。</font></span></p>
<p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">&ldquo;<font face="宋体">我们选择的单词，如果你知道如何正确运用，那么你将在语言方面没有问题&rdquo; - 主编Steven Kleinedler（</font></span><span><a href="http://www.awflasher.com/blog/archives/905"><span style="color: rgb(0, 0, 255); text-decoration: underline; font-size: 10.5pt;">awflasher</span></a></span><span style="font-size: 10.5pt;"><font face="宋体">）</font></span></p>
<p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;"><br>
</span></p>
<p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;"><font face="宋体">以下是100个单词：</font></span><span style="font-size: 10.5pt;"><br>
</span></p>
<table style="border-collapse: collapse; padding: 5pt;">
    <tbody>
        <tr>
            <td width="234" valign="top" style="width: 175.8pt; padding: 5pt;">
            <p class="p0" style="margin-bottom: 0pt; margin-top: 0pt;"><span style="font-size: 10.5pt;">abjure </span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">abrogate</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">abstemious</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">acumen</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">antebellum</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">auspicious</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">belie</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">bellicose</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">bowdlerize</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">chicanery</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">chromosome</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">churlish</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">circumlocution</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">circumnavigate</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">deciduous</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">deleterious</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">diffident</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">enervate</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">enfranchise</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">epiphany</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">equinox</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">euro</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">evanescent</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">expurgate</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">facetious</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">fatuous</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">feckless</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">fiduciary</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">filibuster</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">gamete</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">gauche</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">gerrymander</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">hegemony</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">hemoglobin</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">homogeneous</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">hubris</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">hypotenuse</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">impeach</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">incognito</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">incontrovertible</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">inculcate</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">infrastructure</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">interpolate</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">irony</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">jejune</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">kinetic</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">kowtow</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">laissez faire</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">lexicon</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">loquacious</span></p>
            <p class="p0" style="margin-bottom: 0pt; margin-top: 0pt; vertical-align: top;"> </p>
            </td>
            <td width="342" valign="top" style="width: 256.6pt; padding: 5pt;">
            <p class="p0" style="margin-bottom: 0pt; margin-top: 0pt;"><span style="font-size: 10.5pt;">lugubrious </span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">metamorphosis</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">mitosis</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">moiety</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">nanotechnology</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">nihilism</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">nomenclature</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">nonsectarian</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">notarize</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">obsequious</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">oligarchy</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">omnipotent</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">orthography</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">oxidize</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">parabola</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">paradigm</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">parameter</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">pecuniary</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">photosynthesis</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">plagiarize</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">plasma</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">polymer</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">precipitous</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">quasar</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">quotidian</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">recapitulate</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">reciprocal</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">reparation</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">respiration</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">sanguine</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">soliloquy</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">subjugate</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">suffragist</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">supercilious</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">tautology</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">taxonomy</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">tectonic</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">tempestuous</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">thermodynamics</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">totalitarian</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">unctuous</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">usurp</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">vacuous</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">vehement</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">vortex</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">winnow</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">wrought</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">xenophobe</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">yeoman</span></p>
            <p class="p0" style="margin-bottom: 5pt; margin-top: 5pt;"><span style="font-size: 10.5pt;">ziggurat</span></p>
            <p class="p0" style="margin-bottom: 0pt; margin-top: 0pt; vertical-align: top;"> </p>
            </td>
        </tr>
    </tbody>
</table>
<p class="p0" style="margin-bottom: 0pt; margin-top: 0pt;"><span style="font-size: 10.5pt;"><br>
</span></p>
</div> <a href="http://hi.baidu.com/seraphxby/blog/item/c79f6ad7aa82a6d5a044df35.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/seraphxby/blog/category/Misc">Misc</a>&nbsp;<a href="http://hi.baidu.com/seraphxby/blog/item/c79f6ad7aa82a6d5a044df35.html#comment">查看评论</a>]]></description>
        <pubDate>2009-03-20  21:48</pubDate>
        <category><![CDATA[Misc]]></category>
        <author><![CDATA[seraphxby]]></author>
		<guid>http://hi.baidu.com/seraphxby/blog/item/c79f6ad7aa82a6d5a044df35.html</guid>
</item>

<item>
        <title><![CDATA[【转】Vista离开模式 通宵下载节能大法]]></title>
        <link><![CDATA[http://hi.baidu.com/seraphxby/blog/item/0521af17f0b94801c83d6d53.html]]></link>
        <description><![CDATA[
		
		作者：不详&nbsp;&nbsp;  来源：vista123&nbsp;&nbsp;  加入时间：2008-05-29<br>
 <br>
Windows的&ldquo;离开&rdquo;模式类似于待机（或休眠），它可以关闭大部分设备的电源以达到节电的目的，并且在需要的时候能快速返回到工作状态。但是离开模式更要比待机&ldquo;技高一筹&rdquo;，在&ldquo;离开&rdquo;状态下，影音处理、BT下载、文件复制等操作依然在进行，真是省电、工作两不误。<br>
<br>
在XP下设置离开模式，需要额外安装一个补丁程序才行。而在Vista下早已内嵌了这一功能，我们要做的就是激活它。<br>
<br>
单击&ldquo;开始&rdquo;，在开始搜索框中输入&ldquo;regedit&rdquo;（不含引号），按回车键执行，然后在打开的注册表编辑器中，展开 HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Power，在它下面新建名为&ldquo;AwayModeEnabled &rdquo;（DWORD 32位）的项，并将它的值设置为1就可以了。重启使其生效，以后点击Vista&ldquo;开始&rdquo;菜单中的&ldquo;睡眠&rdquo;，即可进入离开模式了。<br>
<br>
注意：离开模式需要硬件设备支持高级电源管理，把经过此时间关闭硬盘改为从不（即0），无线适配器改为高性能（这个可能是网卡这个不能给关了），电源设置里把关闭显示器后进入睡眠改为＂从不＂，因为这个睡眠并不是离开，不然通宵BT时，硬盘电源关了，岂不白下载．经测试，进入离开模式后，迅雷还在下载，QQ没有掉线。<br>
<br>
<br>
<br>
  <a href="http://hi.baidu.com/seraphxby/blog/item/0521af17f0b94801c83d6d53.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/seraphxby/blog/category/Windows">Windows</a>&nbsp;<a href="http://hi.baidu.com/seraphxby/blog/item/0521af17f0b94801c83d6d53.html#comment">查看评论</a>]]></description>
        <pubDate>2009-03-20  00:07</pubDate>
        <category><![CDATA[Windows]]></category>
        <author><![CDATA[seraphxby]]></author>
		<guid>http://hi.baidu.com/seraphxby/blog/item/0521af17f0b94801c83d6d53.html</guid>
</item>

<item>
        <title><![CDATA[【转】Linux系统攻略 关于vi替换命令的使用说明]]></title>
        <link><![CDATA[http://hi.baidu.com/seraphxby/blog/item/7b5eb12a5cb93325d52af1f4.html]]></link>
        <description><![CDATA[
		
		<div >Linux系统攻略 关于vi替换命令的使用说明</div>
<div >http://school.21tx.com 2008年01月03日 <font>赛迪网 sixth</font></div>
<p align="center" style="padding-top: 20px; padding-bottom: 10px;">


</p>
<p style="text-indent: 2em;">vi/vim 中可以使用 :s 命令来替换字符串。以前只会使用一种格式来全文替换，今天发现该命令有很多种写法（vi 真是强大啊，还有很多需要学习），记录几种在此，方便以后查询。</p>
<p style="text-indent: 2em;"> </p>
<p style="text-indent: 2em;">:s/vivian/sky/ 替换当前行第一个 vivian 为 sky</p>
<p style="text-indent: 2em;">:s/vivian/sky/g 替换当前行所有 vivian 为 sky</p>
<p style="text-indent: 2em;"> </p>
<p style="text-indent: 2em;">:n,$s/vivian/sky/ 替换第 n 行开始到最后一行中每一行的第一个 vivian 为 sky</p>
<p style="text-indent: 2em;">:n,$s/vivian/sky/g 替换第 n 行开始到最后一行中每一行所有 vivian 为 sky</p>
<p style="text-indent: 2em;">n 为数字，若 n 为 .，表示从当前行开始到最后一行</p>
<p style="text-indent: 2em;"> </p>
<p style="text-indent: 2em;">:%s/vivian/sky/（等同于 :g/vivian/s//sky/） 替换每一行的第一个 vivian 为 sky</p>
<p style="text-indent: 2em;">:%s/vivian/sky/g（等同于 :g/vivian/s//sky/g） 替换每一行中所有 vivian 为 sky</p>
<p style="text-indent: 2em;"> </p>
<p style="text-indent: 2em;">可以使用 # 作为分隔符，此时中间出现的 / 不会作为分隔符</p>
<p style="text-indent: 2em;">:s#vivian/#sky/# 替换当前行第一个 vivian/ 为 sky/</p>
<p style="text-indent: 2em;"> </p>
<p style="text-indent: 2em;">:%s+/oradata/apras/+/user01/apras1+ （使用+ 来 替换 / ）： /oradata/apras/替换成/user01/apras1/</p>
<p style="text-indent: 2em;"> </p>
<p style="text-indent: 2em;">1.:s/vivian/sky/ 替换当前行第一个 vivian 为 sky</p>
<p style="text-indent: 2em;">:s/vivian/sky/g 替换当前行所有 vivian 为 sky</p>
<p style="text-indent: 2em;"> </p>
<p style="text-indent: 2em;">2. :n,$s/vivian/sky/ 替换第 n 行开始到最后一行中每一行的第一个 vivian 为 sky</p>
<p style="text-indent: 2em;">:n,$s/vivian/sky/g 替换第 n 行开始到最后一行中每一行所有 vivian 为 sky</p>
<p style="text-indent: 2em;">(n 为数字，若 n 为 .，表示从当前行开始到最后一行)</p>
<p style="text-indent: 2em;"> </p>
<p style="text-indent: 2em;">3. :%s/vivian/sky/（等同于 :g/vivian/s//sky/） 替换每一行的第一个 vivian 为 sky</p>
<p style="text-indent: 2em;">:%s/vivian/sky/g（等同于 :g/vivian/s//sky/g） 替换每一行中所有 vivian 为 sky</p>
<p style="text-indent: 2em;"> </p>
<p style="text-indent: 2em;">4. 可以使用 # 作为分隔符，此时中间出现的 / 不会作为分隔符</p>
<p style="text-indent: 2em;">:s#vivian/#sky/# 替换当前行第一个 vivian/ 为 sky/</p>
<p style="text-indent: 2em;"> </p>
<p style="text-indent: 2em;">5. 删除文本中的^M</p>
<p style="text-indent: 2em;">问题描述：对于换行,window下用回车换行(0A0D)来表示，<a target="_blank" href="http://school.21tx.com/os/linux/">Linux</a>下是回车(0A)来表示。这样，将window上的文件拷到<a target="_blank" href="http://school.21tx.com/os/unix/">Unix</a>上用时，总会有个^M.请写个用在unix下的过滤<a target="_blank" href="http://school.21tx.com/os/windows/">Windows</a>文件的换行符(0D)的shell或c程序。</p>
<p style="text-indent: 2em;">· 使用命令：cat filename1 | tr -d &ldquo;^V^M&rdquo; &gt; newfile；</p>
<p style="text-indent: 2em;">· 使用命令：sed -e &ldquo;s/^V^M//&rdquo; filename &gt; outputfilename。需要注意的是在1、2两种方法中，^V和^M指的是Ctrl+V和Ctrl+M。你必须要手工进行输入，而不是粘贴。</p>
<p style="text-indent: 2em;">· 在vi中处理：首先使用vi打开文件，然后按ESC键，接着输入命令：%s/^V^M//。</p>
<p style="text-indent: 2em;">· :%s/^M$//g</p>
<p style="text-indent: 2em;">如果上述方法无用，则正确的解决办法是：</p>
<p style="text-indent: 2em;">· tr -d &quot;\r&quot; &lt; src &gt;dest</p>
<p style="text-indent: 2em;">· tr -d &quot;\015&quot; dest</p>
<p style="text-indent: 2em;">· strings A&gt;B</p>
<p style="text-indent: 2em;"> </p>
<p style="text-indent: 2em;">6. 其它</p>
<p style="text-indent: 2em;">利用 :s 命令可以实现字符串的替换。具体的用法包括：</p>
<p style="text-indent: 2em;">:s/str1/str2/ 用字符串 str2 替换行中首次出现的字符串 str1</p>
<p style="text-indent: 2em;">:s/str1/str2/g 用字符串 str2 替换行中所有出现的字符串 str1</p>
<p style="text-indent: 2em;">:.,$ s/str1/str2/g 用字符串 str2 替换正文当前行到末尾所有出现的字符串 str1</p>
<p style="text-indent: 2em;">:1,$ s/str1/str2/g 用字符串 str2 替换正文中所有出现的字符串 str1</p>
<p style="text-indent: 2em;">:g/str1/s//str2/g 功能同上</p>
<p style="text-indent: 2em;">从上述替换命令可以看到：g 放在命令末尾，表示对搜索字符串的每次出现进行替换；不加 g，表示只对搜索</p>
<p style="text-indent: 2em;">字符串的首次出现进行替换；g 放在命令开头，表示对正文中所有包含搜索字符串的行进行替换操作。</p> <a href="http://hi.baidu.com/seraphxby/blog/item/7b5eb12a5cb93325d52af1f4.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/seraphxby/blog/category/Vi">Vi</a>&nbsp;<a href="http://hi.baidu.com/seraphxby/blog/item/7b5eb12a5cb93325d52af1f4.html#comment">查看评论</a>]]></description>
        <pubDate>2009-03-09  13:39</pubDate>
        <category><![CDATA[Vi]]></category>
        <author><![CDATA[seraphxby]]></author>
		<guid>http://hi.baidu.com/seraphxby/blog/item/7b5eb12a5cb93325d52af1f4.html</guid>
</item>


</channel>
</rss>