数据采集是一门艺术

[不指定 2008/09/14 13:41 | by mlzy ]
数据采集不但是一门科学,也是一门艺术。如何艺术的、合理合法的将一些公开的资源分门别类的收集到自己建立的数据中心中,这是非常艺术的事情。

我现在有幸能够有半只脚踏到了这门艺术殿堂门口的台阶上。

我相信自己有一天能走进去,只是现在我的带宽还不够,无法满足我测试的需要。

用dedecms的感受之一

[不指定 2008/09/13 18:32 | by mlzy ]
dedecms开源确实很方便,源代码不爽的地方自己修改。
但是官方默认的功能确实有很多不是很方便的地方,比如我就遇到一个:
dedecms后台的栏目默认的是点击“顶级频道”后,其下面的一级、二级、三级。。栏目全都展开,如果一个频道上有超过100个栏目,那么就会造成后台响应很慢,甚至停止响应的问题。

如果能够改成每个级别前面有个“+”符号,点击此符号后,才打开下一级栏目的话,就方便多了。
Tags: , ,
Tags: , ,

PHP版的Google Sitemap 生成器

[不指定 2008/09/09 08:43 | by mlzy ]
这个是dedecms论坛上的朋友写的,我拿来用了,呵呵~


<?php
########################################
#
# PHP版的Google Sitemap 生成器 ver 0.1
# 注意:必须对当前目录有写的权限
#
########################################

#网站根域名
$WebRoot = "http://www.***.com/";//这里改成你的网址
#XML文件名称
$XMLFile = "sitemaps.xml";
#要建虑的目录[区分大小写],注意:前面加号是因为0在PHP中表示假,这样取子串位置时就不会返回假
#以本程序所在的目录为当前目录,即扫描的根目录,所以目录前面不用加上"/"
$FilterDir = "+|sysAdmin|down|";
#要索引的文件扩展名[小写]
$IndexFileExt = "+|htm|html|";
#XML头部
$XMLText = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<urlset xmlns=\"http://www.google.com/schemas/sitemap/0.84\">\n";
#XML尾部
$XMLEndText = "</urlset>";

echo "开始构建文件XML索引...";
DealFP(".");
$XMLText .= $XMLEndText;
makeFile($XMLFile,$XMLText);
echo "ok!<br><br>";
$url = $WebRoot.$XMLFile;
echo "<a href=".$url.">打开</a>:".$url;

#公用函数库:

#新建文件
function makeFile($fileName, $text){
  $fp = fopen($fileName, "w+");
  fwrite($fp, $text);
  fclose($fp);
}

/**
* 将指定内容添加到XML中
* $f 含相对路径的文件名称
* $dt 日期时间型
*/
function addToXML($f, $dt){
  $s = "<url><loc>".$GLOBALS["WebRoot"].$f."</loc><lastmod>".$dt."</lastmod></url>\n";
  
  $GLOBALS["XMLText"] .= $s;
}

/**
* 遍历指定的目录以及子目录,将符合条件的文件加入XML
* $p 指定的目录
*/
function DealFP($p){
  $FilterDir = $GLOBALS["FilterDir"];
  $IndexFileExt = $GLOBALS["IndexFileExt"];
  
  $handle=opendir($p);
  if ($p==".") $path = "";
  else $path = $p."/";
  while ($file = readdir($handle))
  {
    $d = filetype($path.$file);
    if ((($d=='file')||($d=='dir'))&&($file!='.')&&($file!='..'))
    {
        $pf = $path.$file;
        //echo "[".$d."]".$pf."<br>";
        if ($d=='dir')
        {
          if (!(strpos($FilterDir, "|".$pf."|")))
          {
            DealFP($pf);
          }
        }else{
          $ext = "|".strtolower(substr($file, strrpos($file, ".")+1))."|";
          
          if (strpos($IndexFileExt, $ext))
          {
            $d = filemtime($pf);
            $dt = date("Y-m-d",$d)."T".date("H:i:s",$d)."+00:00";
            addToXML($pf, $dt);
          }
        }
    }
  }
  closedir($handle);
}
?>


随便起给名字**.PHP就可以了,放在根目录下,在后台的随便页面做个链接更新Google Sitemaps,以后就点这个链接,就OK了

html代码大全

[不指定 2008/09/07 20:46 | by mlzy ]

dedecms系统伪静态

[不指定 2008/09/05 09:55 | by mlzy ]
1、将include复制到网站中的include目录。(这个我并未找到相关文件,而且这篇文章似乎也被原作者删除了)
2、修改数据库将所有文档设置为“仅动态”,可以进入数据库管理中,执行下面命令: update dede_archives set ismake=2 并将ismake的默认值设置为 2即伪静态。将所有栏目设置为“使用动态页”,可以进入数据库管理中,执行下面命令: update dede_arctype set isdefault=-1 并将isdefault的默认值设置为 -1即动态。
3、加入服务器重写规则,在根目录新建一个.htaccess

    php_value session.use_trans_sid 0

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^(.*) $1 [L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/([0-9]+).html$ plus/view.php?aid=$2 [L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/([0-9]+)_([0-9]+).html$ plus/view.php?aid=$2&pageno=$3 [L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/list_([0-9]+)_([0-9]+).html$ plus/list.php?typeid=$2&PageNo=$3 [L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/list_([0-9]+).html$ plus/list.php?typeid=$2 [L]
4、调整完毕后到DEDE后台管理程序中,更新一下首页,完成。

DedeCms的SEO技巧之URL篇

[不指定 2008/09/04 22:00 | by mlzy ]
帮别人写了一些测试用的SEO的站点,用的工具是DEDECMS3.1,当时找想关的CMS程序就花了很多心思,开始用的是国外的几个,都不顺手,在别人的博客看到了有人推荐DEDECMS,下了一个用用,经过小小的努力,当然也是因为有压力(我这个人没点压力什么都做不好),掌握了一些SEO优化技巧,大家一起分享一下吧!

所谓SEO技巧,这里要说的不是<MATE>标签之类的,是URL,不知道大家是否留意过这个。 DEDECMS,提供了几种生成URL的方法,把它叫做“文章命名规则”,有这几种:{Y}、{M}、{D},{timestamp},{aid},{pinyin}, {py},{typedir},{cc}这几种,大家常用哪些呢?在DEDECMS的论坛上,看见有人寻问用{pinyin}的方法,如何去掉文章的 ID,一直没有人回复,也不知道那位兄弟解决了没,但是这里有更好的方法命名后的地址如:http: //www.xxx.com/xxx/dkofkvom.html,类似这种随机数的样子,并且去掉了\"-""_"之类的字符,想知道吗,打开DW,与我一起动手改吧!<br/><br/>首先打开,include\inc_channel_unit_functions.php,在56行左右,$articleRule = str_replace("{py}",GetPinyin($title,1)."_".$aid,$articleRule);改成$ articleRule = str_replace("{py}",GetPinyin($title,1),$articleRule);也就是去掉."_".$aid.<br/><br/>然后在include\inc\inc_fun_funAdmin.php中,把第一个函数function SpGetPinyin($str,$ishead=0,$isclose=1)下面的FOR循环修改为如下:<br/><br/><div class="code"><br/>  for($i=0;$i<24;$i++){<br/>    if(ord($str[$i])>0x80)<br/>    {<br/>        $c = $str[$i].$str[$i+1];<br/>        $i++;<br/>        if(isset($pinyins[$c])){<br/>          if($ishead==0) $restr .= $pinyins[$c];<br/>          else $restr .= $pinyins[$c][0];<br/>        }else $restr .= "";<br/>    }else if( eregi("[a-z]",$str[$i]) ){   $restr .= $str[$i]; }<br/>    else{ $restr .= ""; }<br/>  }<br/><br/></div><br/><br/>这两部都做完之后,把“文章命名规则”写为{typedir}/{py}.html,测试一下你的文章URL吧!是不是很SEO。 </div> <div class="tags" style="display: block"> Tags: <a href="tags/%25E8%25BD%25AC%25E8%25BD%25BD/" title="Tags: 转载" rel="tag">转载</a> , <a href="tags/%25E7%25BD%2591%25E7%25BB%259C/" title="Tags: 网络" rel="tag">网络</a> , <a href="tags/%25E6%258A%2580%25E6%259C%25AF/" title="Tags: 技术" rel="tag">技术</a> , <a href="tags/dedecms/" title="Tags: dedecms" rel="tag">dedecms</a> </div> <div class="textbox-bottom"> <a href="category/it-tech/" title="查看分类: 技术">技术</a> | <a href="post/807/#reply" title="发表您的评论">评论(0)</a> | <a href='javascript: void(0);' title="查看引用地址" onclick='showhidediv("tb807");'>引用(0)</a> | <a href="post/807/">阅读(344)</a> </div> <div id="tb807" style="display: none;" class="textbox-tburl"><strong>引用功能被关闭了。</strong></div> </div><div class="textbox"> <div class="textbox-title"> <h4> <span id="starid805"><img src="images/others/unstarred.gif" alt="" title="未加星标" border="0"/></span> <a href="post/805/">dede生成静态页和动态页转换</a> </h4> <div class="textbox-label"> [<img src="images/weather/blank.gif" alt="不指定" title="不指定"/> 2008/09/04 16:16 | by <a href="user/32/" target="_blank">mlzy</a> ] </div> </div> <div class="textbox-content"> 这是我自己原创改的,因为我发现网上流传的是错误的,代码改动错误,文件位置错误。<br/><br/>1.如何修改默认发布为动态页;[有人成功了,我似乎无效]<br/>这个其实很简单,会改html就可以了!把dede/templates文件夹打开,用编辑器打开article_add.html,找到<br/><div class="code"><br/><td width=”90″>发布选项:</td><br/>           <td> <input name=”ishtml” type=”radio” class=”np” value=”1″ checked="checked"><br/>             生成HTML  <br/>             <input name=”ishtml” type=”radio” class=”np” value=”0″><br/>             仅动态浏览</td><br/></div><br/>修改为:          <br/><div class="code"><br/><td width=”90″>发布选项:</td><br/>           <td> <input name=”ishtml” type=”radio” class=”np” value=”1″><br/>             生成HTML  <br/>             <input name=”ishtml” type=”radio” class=”np” value=”0″ checked="checked"><br/>             仅动态浏览</td></div><br/>刷新一下发布文章页面看看可以了不!用DW可以很直观的修改。<br/><br/>2.如何批量修改动态发布为静态生成,或者反过来修改。<br/>用phpmyadmin打开dede_dede_archives 这个表<br/>ismake这个字段就是我们要修改的对象。<br/>运行sql语句:<br/><br/>UPDATE  dede_archives SET  ismake = ‘-1′  修改所有文档为动态浏览<br/><br/>UPDATE  dede_archives SET  ismake = ‘1′   修改所有文档为静态发布<br/>这样就可以了 </div> <div class="tags" style="display: block"> Tags: <a href="tags/%25E6%258A%2580%25E6%259C%25AF/" title="Tags: 技术" rel="tag">技术</a> , <a href="tags/%25E7%25BD%2591%25E7%25BB%259C/" title="Tags: 网络" rel="tag">网络</a> , <a href="tags/dedecms/" title="Tags: dedecms" rel="tag">dedecms</a> </div> <div class="textbox-bottom"> <a href="category/it-tech/" title="查看分类: 技术">技术</a> | <a href="post/805/#reply" title="发表您的评论">评论(0)</a> | <a href='javascript: void(0);' title="查看引用地址" onclick='showhidediv("tb805");'>引用(0)</a> | <a href="post/805/">阅读(277)</a> </div> <div id="tb805" style="display: none;" class="textbox-tburl"><strong>引用功能被关闭了。</strong></div> </div><div class="textbox"> <div class="textbox-title"> <h4> <span id="starid803"><img src="images/others/unstarred.gif" alt="" title="未加星标" border="0"/></span> <a href="post/803/">开源网络爬虫程序(spider)一览 </a> </h4> <div class="textbox-label"> [<img src="images/weather/blank.gif" alt="不指定" title="不指定"/> 2008/09/04 12:20 | by <a href="user/32/" target="_blank">mlzy</a> ] </div> </div> <div class="textbox-content">  spider是搜索引擎的必须模块.spider数据的结果直接影响到搜索引擎的评价指标.第一个spider程序由MIT的Matthew K Gray操刀该程序的目的是为了统计互联网中主机的数目。WebLech URL Spider.PySolitaire (Python Solita<br/><br/>spider是搜索引擎的必须模块.spider数据的结果直接影响到搜索引擎的评价指标.<br/><br/>第一个spider程序由MIT的Matthew K Gray操刀该程序的目的是为了统计互联网中主机的数目<br/><br/>Spier定义(关于Spider的定义,有广义和狭义两种).<br/><br/>狭义:利用标准的http协议根据超链和web文档检索的方法遍历万维网信息空间的软件程序.<br/>广义:所有能利用http协议检索web文档的软件都称之为spider.<br/>其中Protocol Gives Sites Way To Keep Out The ′Bots Jeremy Carl, Web Week, Volume 1, Issue 7, November 1995 是和spider息息相关的协议,大家有兴趣参考robotstxt.org.<br/><div style="margin-top: 10px;"> <img src="template/Simple Blue/images/readmore.gif" alt=""/> <a href="post/803/#entrymore" title="点击阅读全文">阅读全文</a> </div> </div> <div class="tags" style="display: block"> Tags: <a href="tags/%25E8%25BD%25AC%25E8%25BD%25BD/" title="Tags: 转载" rel="tag">转载</a> , <a href="tags/%25E6%258A%2580%25E6%259C%25AF/" title="Tags: 技术" rel="tag">技术</a> , <a href="tags/%25E7%25BD%2591%25E7%25BB%259C/" title="Tags: 网络" rel="tag">网络</a> , <a href="tags/%25E4%25BA%2592%25E8%2581%2594%25E7%25BD%2591/" title="Tags: 互联网" rel="tag">互联网</a> , <a href="tags/%25E6%2590%259C%25E7%25B4%25A2%25E5%25BC%2595%25E6%2593%258E/" title="Tags: 搜索引擎" rel="tag">搜索引擎</a> , <a href="tags/%25E7%2588%25AC%25E8%2599%25AB/" title="Tags: 爬虫" rel="tag">爬虫</a> </div> <div class="textbox-bottom"> <a href="category/it-tech/" title="查看分类: 技术">技术</a> | <a href="post/803/#reply" title="发表您的评论">评论(0)</a> | <a href='javascript: void(0);' title="查看引用地址" onclick='showhidediv("tb803");'>引用(0)</a> | <a href="post/803/">阅读(240)</a> </div> <div id="tb803" style="display: none;" class="textbox-tburl"><strong>引用功能被关闭了。</strong></div> </div><div class="textbox"> <div class="textbox-title"> <h4> <span id="starid798"><img src="images/others/unstarred.gif" alt="" title="未加星标" border="0"/></span> <a href="post/798/">给dedecms V4/5 增加自定义文件名功能</a> </h4> <div class="textbox-label"> [<img src="images/weather/blank.gif" alt="不指定" title="不指定"/> 2008/08/31 14:30 | by <a href="user/32/" target="_blank">mlzy</a> ] </div> </div> <div class="textbox-content"> 为了更好地实现SEO功能,为了广大的DEDE爱好者不再大伤脑筋,这两天抽了点时间把此功能弄出来跟大家分享。<br/><br/>以下修改能实现DEDE自定义网页文件名的功能,例如:<br/><br/>zi-ding-yi.html/zidingyi.html/defined-pagename.html/自定义某某某.html 等 (注意:Unix类系统不支持中文url。)<br/><br/>(反正你填什么就是什么,除了短横杠连词符号 -,最好别乱填其它特殊符号特别是单、双引号、空格等,以免出错)。<br/><br/>如果你不填自定义文件名,则默认为文章的aid,如:<br/><br/>138.html/65.html 等。<br/><br/>以下皆以文章模型为例作修改。强烈建议初学者在对文件进行修改前备份之。<br/><br/>以下为针对 DEDE V5 的修改:<br/><div style="margin-top: 10px;"> <img src="template/Simple Blue/images/readmore.gif" alt=""/> <a href="post/798/#entrymore" title="点击阅读全文">阅读全文</a> </div> </div> <div class="tags" style="display: block"> Tags: <a href="tags/%25E7%25BD%2591%25E7%25BB%259C/" title="Tags: 网络" rel="tag">网络</a> , <a href="tags/%25E8%25BD%25AC%25E8%25BD%25BD/" title="Tags: 转载" rel="tag">转载</a> , <a href="tags/%25E6%258A%2580%25E6%259C%25AF/" title="Tags: 技术" rel="tag">技术</a> , <a href="tags/dedecms/" title="Tags: dedecms" rel="tag">dedecms</a> </div> <div class="textbox-bottom"> <a href="category/it-tech/" title="查看分类: 技术">技术</a> | <a href="post/798/#reply" title="发表您的评论">评论(0)</a> | <a href='javascript: void(0);' title="查看引用地址" onclick='showhidediv("tb798");'>引用(0)</a> | <a href="post/798/">阅读(293)</a> </div> <div id="tb798" style="display: none;" class="textbox-tburl"><strong>引用功能被关闭了。</strong></div> </div> <div class="article-bottom" style="display: block"> <div class="pages"> <span class="pagebar-mainbody"> 分页: 3/8 <a href="category/it-tech/1/1/"><img src="images/arrows/doubleleft.gif" alt="第一页" title="第一页" border="0"/></a> <a href="category/it-tech/1/2/"><img src="images/arrows/singleleft.gif" alt="上页" title="上页" border="0"/></a> <span class="pagebar-selections"> <a href="category/it-tech/1/1/">1</a> <a href="category/it-tech/1/2/">2</a> <span class="pagelink-current">3</span> <a href="category/it-tech/1/4/">4</a> <a href="category/it-tech/1/5/">5</a> <a href="category/it-tech/1/6/">6</a> <a href="category/it-tech/1/7/">7</a> <a href="category/it-tech/1/8/">8</a> </span> <a href="category/it-tech/1/4/"><img src="images/arrows/singleright.gif" alt="下页" title="下页" border="0"/></a> <a href="category/it-tech/1/8/"><img src="images/arrows/doubleright.gif" alt="最后页" title="最后页" border="0"/></a> </span> [ 显示模式: <a href="category/it-tech/1/1/" title="切换到摘要模式">摘要</a> | <a href="category/it-tech/2/1/" title="切换到列表模式">列表</a> ] </div> </div> </div> </div> <div id="sidebar" class="sidebar"> <div id="innerSidebar"> <div class="panel"> <h5 onclick='showhidediv("sidebar_2008 Olympic");'>天气预报</h5> <div class="panel-content" id="sidebar_2008 Olympic" style="display: block"> <iframe src="http://www.265.com/weather.htm" width="168" height="50" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" name="265"></iframe> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_announcement");'>与我联系</h5> <div class="panel-content" id="sidebar_announcement" style="display: block"> <br /> <img src="http://www.mlzy.net/attachment/mlzy@live.png" > </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_search");'>搜索</h5> <div class="panel-content" id="sidebar_search" style="display: block"> <form method="post" action="visit.php"> <input name="job" type="hidden" value="search"/> <input name="keyword" class="search-field" type="text"/> <select name="searchmethod"><option value="1">日志标题</option><option value="2">日志全文</option><option value="3">评论引用</option><option value="4">所有留言</option><option value="5">Tags</option></select> <input value="搜索" class="button" type="submit"/> </form> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_entries");'>最新日志</h5> <div class="panel-content" id="sidebar_entries" style="display: block"> <ul><li class='rowcouple'><a href="post/938/" title="东方神起某些粉丝的卖国辱国行径以及建议广电总局封杀“东方神起”">东方神起某些粉丝的卖国辱...</a></li><li class='rowodd'><a href="post/937/" title="韩国“东方神起”侮辱并殴打中国孕妇事件起因经过">韩国“东方神起”侮辱并殴...</a></li><li class='rowcouple'><a href="post/936/" title="周伯通创始人黄志光讲内容聚合">周伯通创始人黄志光讲内容...</a></li><li class='rowodd'><a href="post/935/" title="自从广告发布者改版后,我很少上了">自从广告发布者改版后,我...</a></li><li class='rowcouple'><a href="generate_ico_pictures/" title="免费制作ICO图片的网站">免费制作ICO图片的网站</a></li><li class='rowodd'><a href="post/933/" title="解决Vista下IE不能启动迅雷的问题">解决Vista下IE不能...</a></li><li class='rowcouple'><a href="post/932/" title="Firefox浏览器市场份额达到20%">Firefox浏览器市场...</a></li><li class='rowodd'><a href="file_zilla--ftp_server/" title="绿色的FTP服务器端软件——FileZilla Server ">绿色的FTP服务器端软件...</a></li></ul> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_replies");'>最新评论</h5> <div class="panel-content" id="sidebar_replies" style="display: block"> <ul><li class='rowcouple'><a href="post/938/#blogcomment5027" title="[georgexsh] - 东方神起某些粉丝的卖过辱国行径以及建议广电总局封杀“东方神起”">反对 dfsq反对封杀n...</a></li><li class='rowodd'><a href="post/932/#blogcomment5026" title="[cake] - Firefox浏览器市场份额达到20%">我用世界之窗不错 可惜就...</a></li><li class='rowcouple'><a href="post/915/#blogcomment5023" title="[lee] - 善待博客,善待世界">我有部分是为了自恋~</a></li><li class='rowodd'><a href="post/915/#blogcomment5022" title="[cake] - 善待博客,善待世界">没错!太浮躁了!太肤浅了...</a></li><li class='rowcouple'><a href="post/385/#blogcomment5021" title="[ghf] - 三角函数公式大全">zanzanzanpig...</a></li></ul> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_now3hotview");'>季度点击排行</h5> <div class="panel-content" id="sidebar_now3hotview" style="display: block"> <ul><li>[709]<a href="read.php?901" title="又一大型bttorrent网站被关闭:国际版权保护运动方兴未艾">又一大型bttor...</a></li><li>[669]<a href="read.php?904" title="搜狗——更懂色情">搜狗——更懂色情</a></li><li>[400]<a href="read.php?914" title="教你如何没有痛苦的抛弃掉你过去的邮箱">教你如何没有痛苦的...</a></li><li>[382]<a href="read.php?852" title="论语 英文版(confucius)">论语 英文版(co...</a></li><li>[365]<a href="read.php?889" title="也许博客网并未倒闭,只是国外无法浏览了">也许博客网并未倒闭...</a></li><li>[356]<a href="read.php?847" title="我辈仍是读书人">我辈仍是读书人</a></li><li>[354]<a href="read.php?870" title="Netiquette Guidelines (网络礼节指南)">Netiquett...</a></li><li>[331]<a href="read.php?841" title="一篇英文的励志短文:青春(youth)">一篇英文的励志短文...</a></li></ul> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_allhotview");'>综合点击排行</h5> <div class="panel-content" id="sidebar_allhotview" style="display: block"> <ul><li>[21254]<a href="post/40/">正确的念书方法以...</a></li><li>[16318]<a href="post/125/">汇率走势曲线图(...</a></li><li>[12407]<a href="post/127/">课堂里学不到的英...</a></li><li>[8980]<a href="post/65/">成功格言176条—...</a></li><li>[8664]<a href="post/385/">三角函数公式大全</a></li><li>[7829]<a href="post/213/">前几天过生日的照片</a></li><li>[7392]<a href="post/156/">Macquarie...</a></li><li>[6600]<a href="post/241/">红烧肉的N种做法</a></li></ul> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_RandArticle");'>随机日志</h5> <div class="panel-content" id="sidebar_RandArticle" style="display: block"> <ul><li class="rowcouple"><a href="read.php?690" title="建站优化的几点建议">建站优化的几点建议</a></li><li class="rowodd"><a href="read.php?834" title="布什:美国正处于严重的金融危机">布什:美国正处于严重的金...</a></li><li class="rowcouple"><a href="read.php?72" title="去悉尼前在中国的最后一晚">去悉尼前在中国的最后一晚</a></li><li class="rowodd"><a href="read.php?710" title="SEO关键词获取步骤和优先度分级">SEO关键词获取步骤和优...</a></li><li class="rowcouple"><a href="read.php?297" title="加快百度收录网站和网页的速度">加快百度收录网站和网页的...</a></li><li class="rowodd"><a href="read.php?699" title="优化只是辅助 不是主流">优化只是辅助 不是主流</a></li><li class="rowcouple"><a href="read.php?738" title="谈谈网站优化那点破事">谈谈网站优化那点破事</a></li><li class="rowodd"><a href="read.php?112" title="悉尼歌剧院">悉尼歌剧院</a></li></ul> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_dreamhost ad");'>推荐资源</h5> <div class="panel-content" id="sidebar_dreamhost ad" style="display: block"> <a href="http://www.dreamhost.com/r.cgi?269382"> <img border="0" src="http://www.mlzy.net/attachment/200811/1227707689_67199ff4.gif" alt="Dreamhost——便宜好用的美国优质服务器空间"></a> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_add to feed");'>订阅博客</h5> <div class="panel-content" id="sidebar_add to feed" style="display: block"> <a href="http://www.mlzy.net/component/subscribe/" target="_blank">什么是订阅?如何订阅?</a><br> <!-- Feedsky FEED发布代码开始 --> <!-- FEED自动发现标记开始 --> <link title="RSS 2.0" type="application/rss+xml" href="http://feed.feedsky.com/mlzy" rel="alternate" /> <!-- FEED自动发现标记结束 --> <a href="http://feed.feedsky.com/mlzy" target="_blank"><img border="0" src="http://img.feedsky.com/images/icon_sub_c1s16.gif" alt="feedsky" vspace="2" style="margin-bottom:3px" ></a><br /> <a href="http://www.zhuaxia.com/add_channel.php?url=http://feed.feedsky.com/mlzy" target="_blank"><img border="0" src="http://img.feedsky.com/images/icon_subshot02_zhuaxia.gif" alt="抓虾" vspace="2" style="margin-bottom:3px" ></a><br /> <a href="http://fusion.google.com/add?feedurl=http://feed.feedsky.com/mlzy" target="_blank"><img border="0" src="http://img.feedsky.com/images/icon_subshot02_google.gif" alt="google reader" vspace="2" style="margin-bottom:3px" ></a><br /> <a href="http://www.xianguo.com/subscribe.php?url=http://feed.feedsky.com/mlzy" target="_blank"><img border="0" src="http://img.feedsky.com/images/icon_subshot02_xianguo.jpg" alt="鲜果" vspace="2" style="margin-bottom:3px" ></a><br /> <a href="http://inezha.com/add?url=http://feed.feedsky.com/mlzy" target="_blank"><img border="0" src="http://img.feedsky.com/images/icon_subshot02_nazha.gif" alt="哪吒" vspace="2" style="margin-bottom:3px" ></a><br /> <!-- Feedsky FEED发布代码结束 --> <!-- Feedsky FEED发布代码开始 --> <!-- FEED自动发现标记开始 --> <link title="RSS 2.0" type="application/rss+xml" href="http://feed.feedsky.com/mlzy" rel="alternate" /> <!-- FEED自动发现标记结束 --> <a href="http://wap.feedsky.com/mlzy"><img border="0" src="http://img.feedsky.com/images/icon_sub_mobile_c1s1.gif" alt="http://wap.feedsky.com/mlzy" vspace="2" ></a> <!-- Feedsky FEED发布代码结束 --> <br /> <!-- Feedsky FEED 订阅统计发布代码开始 --> <a href="http://feed.feedsky.com/mlzy" title="牧龙在野" target="_blank"><img src="http://www.feedsky.com/feed/mlzy/sc/orange.gif" style="border:0" alt="" /></a> <!-- Feedsky FEED 订阅统计发布代码结束 --> <script language="javascript" type="text/javascript" src="http://www.feedsky.com/msub_ajax_sub_js.html?burl=mlzy&t=1&c=orange"></script> </div> </div><div id='panelCategory' class="panel"> <h5 style="cursor: pointer" onclick='showhidediv("sideblock_category");'>分类</h5> <div class="panel-content" id="sideblock_category" style="display: block"> <ul><li><a href="category/Internet/" title="关于网络,关于IT">网络</a> [122] <a href="feed.php?go=category_0"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/economics/" title="经济视角">经济</a> [43] <a href="feed.php?go=category_1"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/life/" title="一个具有争议的人,有一个具有争议的生活。很多人可以在这里看到我过去一些荒唐事,也有很多人可以挖出来非常多的八卦信息。不过这就是我的生活,我开始的时候,是想隐瞒,后来想想,无所谓了,毕竟自己是个大活人,想欺骗一个人或者一些人,需要不停的创造出来新的谎言去弥补。所以我选择面对~无论如何,我就是这么一个人,荒唐~ 荒唐的人有着荒唐的思想和荒唐的故事。">生活</a> [164] <a href="feed.php?go=category_2"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/photos/" title="色影无忌">照片</a> [26] <a href="feed.php?go=category_3"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/culture/" title="有关文化的一些东西">文化</a> [22] <a href="feed.php?go=category_4"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/success/" title="什么是成功?">成功</a> [20] <a href="feed.php?go=category_5"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/self-discipline/" title="如何自律?">自律</a> [7] <a href="feed.php?go=category_6"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/time/" title="合理安排自己的时间">时间</a> [10] <a href="feed.php?go=category_7"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/read/" title="读书以修身">读书</a> [33] <a href="feed.php?go=category_8"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/study/" title="学习的方法">学习</a> [43] <a href="feed.php?go=category_9"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/relationship/" title="人际关系的处理">人际</a> [6] <a href="feed.php?go=category_10"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/management/" title="作为一个领导者,如何做好管理工作?">管理</a> [6] <a href="feed.php?go=category_11"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/investment/" title="如何投资">投资</a> [12] <a href="feed.php?go=category_12"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/cookbook/" title="努力做好菜">菜谱</a> [12] <a href="feed.php?go=category_13"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/music/" title="喜欢的歌曲和音乐">音乐</a> [13] <a href="feed.php?go=category_14"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/it-tech/" title="转载和原创的技术性文章,主要是关于代码以及修改的。"><strong>技术</strong></a> [79] <a href="feed.php?go=category_15"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/myarticles/" title="大部分都是原创,如果没有注明是“转载”,肯定是原创啦">文字</a> [23] <a href="feed.php?go=category_16"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/seo/" title="搜索引擎优化">SEO</a> [249] <a href="feed.php?go=category_17"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/history/" title="记录真实的历史;或者被人称为真实的历史">历史</a> [5] <a href="feed.php?go=category_18"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/fun/" title="搞笑,囧......">恶搞</a> [17] <a href="feed.php?go=category_19"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/nicearticles/" title="转载文章">美文</a> [0] <a href="feed.php?go=category_20"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li><li><a href="category/opensourcecodes/" title="源代码和软件下载。只提供开源软件。">源码</a> [6] <a href="feed.php?go=category_21"><img src="template/Simple Blue/images/rss.png" border="0" alt="RSS" title="追踪这个分类的RSS" /></a></li></ul> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_misc");'>其他</h5> <div class="panel-content" id="sidebar_misc" style="display: block"> <a href='login.php'>登入</a><br/><a href='login.php?job=register'>注册</a><br/><a href='login.php?job=applylink'>申请链接</a><br/>RSS: <a href='feed.php'>日志</a> | <a href='feed.php?go=comment'>评论</a><br/>编码:UTF-8<br/><a href="http://validator.w3.org/check?uri=referer" target="_blank">XHTML 1.0</a> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_archive");'>归档</h5> <div class="panel-content" id="sidebar_archive" style="display: block"> <ul><li><a href="archiver/12/2008/" rel="noindex,nofollow">2008/12</a></li> <li><a href="archiver/11/2008/" rel="noindex,nofollow">2008/11</a></li> <li><a href="archiver/10/2008/" rel="noindex,nofollow">2008/10</a></li> <li><a href="archiver/9/2008/" rel="noindex,nofollow">2008/09</a></li> <li><a href="archiver/8/2008/" rel="noindex,nofollow">2008/08</a></li></ul> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_statistics");'>统计</h5> <div class="panel-content" id="sidebar_statistics" style="display: block"> 访问次数 1329250<br/>今日访问 244<br/>日志数量 918<br/><a href="view.php?go=comment">评论数量 720</a><br/><a href="view.php?go=userlist">注册用户 443</a><br/>在线人数 31<br/> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_calendar");'>日历</h5> <div class="panel-content" id="sidebar_calendar" style="display: block"> <table id="calendar" cellspacing="1" width="100%"> <tbody><tr><td colspan="7" class="calendar-top"> <a href="archiver/12/2007/" rel="noindex,nofollow"><</a> <a href="archive.php" rel="noindex,nofollow"><span class="calendar-year">2008</span></a> <a href="archiver/12/2009/" rel="noindex,nofollow">></a>    <a href="archiver/11/2008/" rel="noindex,nofollow"><</a> <a href="archiver/12/2008/" rel="noindex,nofollow"><span class="calendar-month">12</span></a> <a href="archiver/1/2009/" rel="noindex,nofollow">></a><br/>戊子年(鼠) </td></tr> <tr class="calendar-weekdays"> <td class="calendar-weekday-cell">日</td> <td class="calendar-weekday-cell">一</td> <td class="calendar-weekday-cell">二</td> <td class="calendar-weekday-cell">三</td> <td class="calendar-weekday-cell">四</td> <td class="calendar-weekday-cell">五</td> <td class="calendar-weekday-cell">六</td> </tr> <tr class="calendar-weekdays"><td class="calendar-sunday"><span title=''></span></td><td id="cal1" class="calendar-day"><span title='初四'><a href="date/2008/12/1/" rel="noindex,nofollow">1</a></span></td><td id="cal2" class="calendar-today"><span title='初五'>2</span></td><td id="cal3" class="calendar-day"><span title='初六'>3</span></td><td id="cal4" class="calendar-day"><span title='初七'>4</span></td><td id="cal5" class="calendar-day"><span title='初八'>5</span></td><td id="cal6" class="calendar-saturday"><span title='初九'>6</span></td></tr><tr class="calendar-weekdays"><td id="cal7" class="calendar-sunday"><span title='初十'>7</span></td><td id="cal8" class="calendar-day"><span title='十一'>8</span></td><td id="cal9" class="calendar-day"><span title='十二'>9</span></td><td id="cal10" class="calendar-day"><span title='十三'>10</span></td><td id="cal11" class="calendar-day"><span title='十四'>11</span></td><td id="cal12" class="calendar-day"><span title='十五'>12</span></td><td id="cal13" class="calendar-saturday"><span title='十六'>13</span></td></tr><tr class="calendar-weekdays"><td id="cal14" class="calendar-sunday"><span title='十七'>14</span></td><td id="cal15" class="calendar-day"><span title='十八'>15</span></td><td id="cal16" class="calendar-day"><span title='十九'>16</span></td><td id="cal17" class="calendar-day"><span title='二十'>17</span></td><td id="cal18" class="calendar-day"><span title='廿一'>18</span></td><td id="cal19" class="calendar-day"><span title='廿二'>19</span></td><td id="cal20" class="calendar-saturday"><span title='廿三'>20</span></td></tr><tr class="calendar-weekdays"><td id="cal21" class="calendar-sunday"><span title='廿四'>21</span></td><td id="cal22" class="calendar-day"><span title='廿五'>22</span></td><td id="cal23" class="calendar-day"><span title='廿六'>23</span></td><td id="cal24" class="calendar-day"><span title='廿七'>24</span></td><td id="cal25" class="calendar-day"><span title='廿八'>25</span></td><td id="cal26" class="calendar-day"><span title='廿九'>26</span></td><td id="cal27" class="calendar-saturday"><span title='十二'>27</span></td></tr><tr class="calendar-weekdays"><td id="cal28" class="calendar-sunday"><span title='初二'>28</span></td><td id="cal29" class="calendar-day"><span title='初三'>29</span></td><td id="cal30" class="calendar-day"><span title='初四'>30</span></td><td id="cal31" class="calendar-day"><span title='初五'>31</span></td><td class="calendar-day"><span title=''></span></td><td class="calendar-day"><span title=''></span></td><td class="calendar-saturday"><span title=''></span></td></tr> </tbody></table> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_Rank");'>全球排名</h5> <div class="panel-content" id="sidebar_Rank" style="display: block"> <center><SCRIPT type='text/javascript' language='JavaScript' src='http://xslt.alexa.com/site_stats/js/s/a?url=www.mlzy.net'></SCRIPT></center> </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_License");'>版权声明</h5> <div class="panel-content" id="sidebar_License" style="display: block"> <a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/2.5/cn/"><img alt="Creative Commons License" style="border-width:0" src="http://creativecommons.org/images/public/somerights20.png"/></a><br/> <a xmlns:cc="http://creativecommons.org/ns#" href="http://www.mlzy.net" property="cc:attributionName" rel="cc:attributionURL">牧龙在野!</a> 作品采用 <a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/2.5/cn/">Creative Commons 署名-非商业性使用-禁止演绎 2.5 中国大陆 License</a>. </div> </div><div class="panel"> <h5 onclick='showhidediv("sidebar_tongji");'>流量统计</h5> <div class="panel-content" id="sidebar_tongji" style="display: block"> <script language="javascript" type="text/javascript" src="http://quote.51.la/?id=1738150&mb=4"></script> </div> </div> </div> </div> </div> <div id="footer"> <div id="innerFooter"> Powered by <a href="http://www.bo-blog.com" target="_blank">Bo-Blog 2.1.0</a><span id="footer-security"><a href="http://www.cnbct.org" target="_blank" title="Code detection by Bug.Center.Team"><img src="images/others/detect.gif" alt="Code detection by Bug.Center.Team" border="0" /></a></span><span id="nav_http_3A_2F_2Fwww.miibeian.gov.cn"><a href="http://www.miibeian.gov.cn" target="_blank"><span id="navitem_http_3A_2F_2Fwww.miibeian.gov.cn"><br/>京ICP备06001274号</span></a></span><center><script type='text/javascript' src='http://track2.mybloglog.com/js/jsserv.php?mblID=2006101504374329'></script></center><script src="http://www.google-analytics.com/urchin.js" type="text/javascript"> </script> <script type="text/javascript"> _uacct = "UA-622943-2"; urchinTracker(); </script><center><script language="javascript" type="text/javascript" src="http://js.users.51.la/1738150.js"></script> <noscript><a href="http://www.51.la/?1738150" target="_blank"><img alt="我要啦免费统计" src="http://img.users.51.la/1738150.asp" style="border:none" /></a></noscript> </center> <br> <script type="text/JavaScript"> alimama_domain_auth="103918_10769323"; </script> <div id="processtime"> </div> </div> </div> </div> </div> <script type="text/javascript"> loadSidebar(); </script> <script type='text/javascript'> //<![CDATA[ if (document.getElementById('processtime')) document.getElementById('processtime').innerHTML="<span class='runtimedisplay'>Run in 120 ms, 7 Queries, Gzip enabled.</span>"; //]]> </script></body> </html>