转到正文

龙舍·嬴皇志

透过我的双眼看世界!

存档

标签: RP

# 本文来自网生代(http://www.weborn.org),作者为LiGht

Google PR 是衡量一个网站质量的因素之一,如果你想在你的网站显示自己的PR值,NextCool这里为大家收集了一些漂亮的PR免费图标,供大家使用。使用方法非常简单,只需要拷贝下面网站提供的代码到你的网站即可。

1.goingup

NextCool 现正在使用的PR图标,提供了四种漂亮的PR图标,有点web2.0的风格啊。另外goingup还提供SEO工具和统计服务,有兴趣的朋友可以看看免费WEB2.0统计服务及PR图标酷站

clip_image002

地址:http://www.goingup.com/pagerank/

2.prchecker

clip_image004

地址:http://www.prchecker.info/pagerank-check-button.php

3.blogflux

clip_image005

地址:http://pr.blogflux.com/index2.php

4.Rankstat

clip_image006

地址:http://pagerank.rankstat.com/

5.pagerank.net

clip_image007

地址:http://www.pagerank.net/display-pagerank.php

6.selfseo,提供九种PR图标

clip_image009

地址:http://www.selfseo.com/pagerank_display.php

7.googlepagerankchecker,提供多大二十种PR图标

clip_image011

地址:http://www.googlepagerankchecker.com/free-pagerank-display.php

8.8rf,提供35种PR图标

clip_image013

地址:http://pr.8rf.com/free-pagerank-display.php

9.build-reciprocal-links,提供十四种PR图标

clip_image015

地址:http://www.build-reciprocal-links.com/pagerank.html

10.还有一个就是pagerankp了,以前可以上,现在需要代理才能上。

clip_image017

地址:http://www.pagerankp.com

     HTML 5 还增加了一些纯语义性的块级元素: 
aside figure  dialog
我在文章和书中一直使用前两个元素。第三个元素我不经常用,它主要用于书面文本。 
aside
aside 元素代表说明、提示、边栏、引用、附加注释等,也就是叙述主线之外的内容。例如,在 developerWorks 文章中,常常会看到用表格形式编写的边栏,见代码3 用 HTML 4 编写的 developerWorks 边栏。

   1: <table align="right" border="0" cellpadding="0" cellspacing="0" width="40%">
   2: <tbody><tr><td width="10">
   3: <img alt="" src="//www.ibm.com/i/c.gif" height="1" width="10"></td>
   4: <td>
   5: <table border="1" cellpadding="5" cellspacing="0" width="100%">
   6: <tbody><tr><td bgcolor="#eeeeee">
   7: <p><a name="xf-value"><span class="smalltitle">.xf-value</span></a></p>
   8: <p>
   9: The <code type="inline">.xf-value</code> selector used here styles the input
  10: field value but not its label. This is actually inconsistent
  11: with the current CSS3 draft. The example really should use the
  12: <code type="inline">::value</code> pseudo-class instead like so:
  13: </p>
  14: <table border="0" cellpadding="0" cellspacing="0" width="100%">
  15: <tbody><tr><td class="code-outline">
  16: <pre class="displaycode">input::value { width: 20em; }
  17: #ccnumber::value { width: 18em }
  18: #zip::value { width: 12em }
  19: #state::value { width: 3em  }</pre>
  20: </td></tr></tbody></table><br>
  21:  
  22: <p>
  23: However, Firefox doesn't yet support this syntax. 
  24: </p>
  25: </td></tr></table>

  在 HTML 5 中,可以按照更有意义的方式编写这个边栏,见代码4 用 HTML 5 编写的 developerWorks 边栏。

   1: <aside>
   2: <h3>.xf-value</h3>
   3: <p>
   4: The <code type="inline">.xf-value</code> selector used here styles the input
   5: field value but not its label. This is actually inconsistent
   6: with the current CSS3 draft. The example really should use the
   7: <code type="inline">::value</code> pseudo-class instead like so:
   8: </p>
   9:   
  10: <pre class="displaycode">input::value { width: 20em; }
  11: #ccnumber::value { width: 18em }
  12: #zip::value { width: 12em }
  13: #state::value { width: 3em  }</pre>
  14:  
  15: <p>
  16: However, Firefox doesn't yet support this syntax. 
  17: </p>
  18: </aside>

  浏览器可以决定把这个边栏放在哪里(可能需要用一点儿 CSS 代码)。 
figure

figure 元素代表一个块级图像,还可以包含说明。例如,在许多 developerWorks 文章中,可以看到代码5 用 HTML 4 编写的 developerWorks 图 这样的标记其结果见图1。

   1: <a name="fig2"><b>Figure 2. Install Mozilla XForms dialog</b></a><br />
   2: <img alt="A Web site is requesting permission to install the following item: 
   3:    Mozilla XForms 0.7 Unsigned" 
   4:   src="installdialog.jpg" border="0" height="317" hspace="5" vspace="5" width="331" />
   5: <br />

图 1. Install Mozilla XForms dialog 

   在 HTML 5 中,可以按照更有语义性的方式编写这个图,见代码6 用 HTML 5 编写的 developerWorks 图。

   1: <figure id="fig2">
   2:   <legend>Figure 2. Install Mozilla XForms dialog</legend>
   3:   <img alt="A Web site is requesting permission to install the following item: 
   4:     Mozilla XForms 0.7 Unsigned" 
   5:     src="installdialog.jpg" border="0" height="317" hspace="5" vspace="5" width="331" />
   6: </figure>

    最重要的是,浏览器(尤其是屏幕阅读器)可以明确地将图和说明联系在一起。 
figure 元素不只可以显示图片。还可以使用它给 audio、video、iframe、object 和 embed 元素加说明。 
dialog

dialog 元素表示几个人之间的对话。HTML 5 dt 元素可以表示讲话者,HTML 5 dd 元素可以表示讲话内容。所以,在老式浏览器中也可以以合理的方式显示对话。代码7 显示在 Galileo 的  “Dialogue Concerning the Two Chief World Systems” 上的一段著名对话。 
代码7. 用 HTML 5 编写的 Galilean 对话

   1: <dialog>
   2:     <dt>Simplicius </dt> 
   3:     <dd>According to the straight line AF,
   4:     and not according to the curve, such being already excluded
   5:     for such a use.</dd>
   6:  
   7:     <dt>Sagredo </dt> 
   8:     <dd>But I should take neither of them,
   9:     seeing that the straight line AF runs obliquely. I should
  10:     draw a line perpendicular to CD, for this would seem to me
  11:     to be the shortest, as well as being unique among the
  12:     infinite number of longer and unequal ones which may be
  13:     drawn from the point A to every other point of the opposite
  14:     line CD. </dd>
  15:  
  16:     <dt>Salviati </dt> 
  17:     <dd><p> Your choice and the reason you
  18:     adduce for it seem to me most excellent. So now we have it
  19:     that the first dimension is determined by a straight line;
  20:     the second (namely, breadth) by another straight line, and
  21:     not only straight, but at right angles to that which
  22:     determines the length. Thus we have defined the two
  23:     dimensions of a surface; that is, length and breadth. </p>
  24:  
  25:     <p> But suppose you had to determine a height—for
  26:     example, how high this platform is from the pavement down
  27:     below there. Seeing that from any point in the platform we
  28:     may draw infinite lines, curved or straight, and all of
  29:     different lengths, to the infinite points of the pavement
  30:     below, which of all these lines would you make use of? </p>
  31:     </dd>
  32: </dialog>

   对于这个元素的准确语法还有争议。一些人希望在 dialog 元素中嵌入非对话文本(比如剧本中的舞台说明),还有人不喜欢扩展 dt 和 dd 元素的作用。尽管在具体语法方面有争议,但是大多数人都认为以这样的语义性方式表达对话是好事情。

以下所有有用的小东西都在system32文件夹里边

  1.免费的系统教程

  安装完WindowsXP后很想马上学习并体验一下它的魅力吗?我们无需再东奔西走去找烦人的文字教材。只要选择“开始”→“漫游WindowsXP”,就会出现界面,它将引导我们游历WindowsXP的新功能。

  小提示:WindowsXP中自带的教程非常形象,是图形界面的,而且制作得相当精美,微软的权威性可想而知。如果你的“开始”菜单上没有“漫游WindowsXP”项目,则可以运行C:\Windows\System32\tourstart.exe进入。

  2.字符映射表~Charmap

  是不是觉得Word的“插入符号”功能非常方便?我们在其他Windows程序中也常常要插入一些特殊符号,而一个个地找又麻烦,这时可使用“字符映射表”程序帮忙。通过“字符映射表”可查看选定字体中有哪些字符,选中后单击“选定”和“复制”按钮,即可把选定字符复制到Windows剪贴板中,供字处理软件粘贴使用。

  小提示:用它来复制特殊字体中的特殊符号特别有用。

  3.磁盘清理大师~Cleanmgr

  尽管现在的硬盘越来越大,但它总有容量的限制。在你不经意地安装这个或那个软件的过程中,可能会因为硬盘空间已频频告急而影响了正常Windows程序的执行。不要急,请打开此程序,它会自动地释放出一部分硬盘空间,并会智能化地进行删除xx作,保证你的系统万无一失。这比从资源管理器中删除要安全多了。

  4.控制面板启动器~Control.exe

  控制面板是Windows的一个重要组成部分,许多设置都通过他完成。而双击这个文件就是最快打开系统控制面板的方法,可省去从“开始”菜单上层层点击的麻烦。你要是喜欢还可以把它给粘出来。

  5.WindowsXP的诊断医生~Drwtsn32

  Drwtsn32是一个程序错误调试器。DrWatson程序会获得并记录运行Windows的计算机上的程序错误的信息。只要检测到错误,就会创建一个文本文件(Drwtsn32.log),提供错误原因的详细说明,并给出解决问题的建议性xx作,在与Microsoft技术支持联系并请求帮助时,Drwatson将会起到很大作用。不过以前看过一个帖子说可以关掉这个东西。

  6.DVD播放器~DVDplay

  随着DVD驱动器和DVD光盘价格的下降,在普通家庭电脑上配置一个DVD播放器已不是一件奢侈的事情。而要播放DVD需要播放器的支持,WindowsXP提供了一个“免费”的DVD播放器,有了它我们可以省去一笔购买第三方DVD播放软件的费用。

  7.自解压文件制作工具~Iexpress

  你不知道吧,xp里还个自解压的东东呢。

  用过压缩软件的一定对自解压文件不陌生,自解压文件可在没有相应解压缩程序的情况下直接将压缩包文件解压缩到相应的文件夹下,极大地方便了用户。利用Iexpress可制作两种自解压文件,一种是标准自解压文件(StandardSelf-Extractor),另一种是安装程序式自解压文件(Self-ExtractorforSoftwareInstallation),这样我们在发布程序时就方便多了。另外大家要注意,尽管使用Iexpress的运行界面是英文的,但利用它生成的自解压文件却是中文的,省去了繁琐的本地化工作。

  8.重要de备份工具~Ntbackup

  数据是计算机中最为宝贵的资料,因此经常备份你的资料也应该成为一个好习惯。现在许多人都寻求第三方的备份工具,其实大可不必。使用WindowsXP中内置的备份工具就可以非常方便地将资料进行备份,而且由于你使用的是微软产品,所以根本不存在兼容性问题。

  9.IP地址侦测器~Nslookup

  在联入互联网的每台电脑都有一个IP地址,同样,每个网站也有它的IP地址,而且是唯一的。通过这个IP侦测工具ping就可以轻而易举地得到它们的真正IP地址。如你要想知道http://www.xxx.com的IP地址,…S窗口下输入pinghttp://www.xxx.com即可看到。

  10.系统文件检查器~Sfc

  使用Windows难免不会出现系统文件损坏或丢失的毛病,而如果为了几个小小的文件就去重装系统,又显得稍微麻烦了一些。通过系统文件检查器Sfc.exe,一切都会变得非常简单。还可以查看你的上网时间呢

  11.共享文件夹设置工具~Shrpubw

  同一工作组的同事在一起工作,有时必须与同事们共享文件夹,这时我们可以利用此工具轻松搞定。它的作用与右击一文件夹,选择“共享”基本上等价。

NOD32杀软被国外很权威的防病毒软件评测机构给了很高的分数。在全球共获得超过40多个奖项,包括Virus Bulletin, PC Magazine, ICSA认证, Checkmark认证等, 更加是全球唯一通过26VB100%测试的防毒软件,高据众产品之榜首!产品线很长,从DOS/Win 9x/Me/Win  NT/XP/2000/vista,到Novell Netware ServerLinuxBSD等,都有提供。可以对邮件进行实时监测,占用内存资源较少,清除病毒的速度效果都令人满意。

1、采用nod3.0.621.0核心汉化。
2、安装包分两个:一个nod32_3.0.621.0_nt32_cn.exe为手动安装版,一个nod32_3.0.621.0_auto_nt32_cn.exe为ghost xp自动安装版(自动安装参数为大写的S)。
3、重新编译了nod3.0安装包,两个版本的安装包大小都为14.6MB。
4、集成了可升级到08年6月29日可升级的正版序号,建议广大龙友按我所提供的教程申请ID,以免该ID被封。

下载地址:http://www.fs2you.com/files/332658de-b45d-11dc-84ae-00142218fc6e/               (用7z解压:http://www.7-zip.org/zh-cn/7z457chs.exe)

                 http://csharp.xdowns.com/qq/download.php?fname=./upload/nod32_3.0_nt32_cn.7z

安装流程:

b24.jpg

b1.jpg (39.83 KB)
07-12-27 17:05

b1.jpg

b2.jpg (47.93 KB)
07-12-27 17:05

b2.jpg

b3.jpg (29.02 KB)
07-12-27 17:05

b3.jpg

b4.jpg (30.57 KB)
07-12-27 17:05

b4.jpg

b5.jpg (33.98 KB)
07-12-27 17:05

b5.jpg

b6.jpg (26.05 KB)
07-12-27 17:05

b6.jpg

b7.jpg (22.16 KB)
07-12-27 17:05

b7.jpg

b8.jpg (25.92 KB)
07-12-27 17:05

b8.jpg

b10.jpg.jpg (44.33 KB)
07-12-27 17:05

b10.jpg.jpg

b10.jpg (42.28 KB)
07-12-27 17:05

b10.jpg

b23.jpg (79.48 KB)
07-12-27 17:05

b23.jpg

b11.jpg (71.74 KB)
07-12-27 17:05

b11.jpg

Switch to our mobile site