<?php xml version="1.0" encoding="UTF-8"?> 
<rss version="2.0">
<channel>
<title><![CDATA[付华-刻骨铭心]]></title>
<link>http://blog.andyfoo.com:81/</link>
<description><![CDATA[&gt;&gt;爱在刻骨铭心时，咫尺天涯真心人...]]></description>
<language>utf-8</language>
<copyright><![CDATA[CopyRight 2006 F2Blog.com All Rights Reserved.]]></copyright>
<webMaster><![CDATA[andyfoo@163.com]]></webMaster>
<generator>F2blog 1.2 build 03.01</generator> 
<image>
	<title>付华-刻骨铭心</title> 
	<url>http://blog.andyfoo.com:81/attachments/</url> 
	<link>http://blog.andyfoo.com:81/</link> 
	<description>付华-刻骨铭心</description> 
</image>
<item>
	<link>http://blog.andyfoo.com:81/index.php?load=read&amp;id=97</link>
	<title><![CDATA[删除所有.svn目录]]></title>
	<author>Andyfoo</author>
	<category><![CDATA[计算机维护]]></category>
	<pubDate>2008-11-12 11:52</pubDate>
	<guid>http://blog.andyfoo.com:81/index.php?load=read&amp;id=97</guid>	
	<description><![CDATA[<div style="font-family: Arial;"><p>当使用了svn版本控制系统后每个<strong style="color: black; background-color: rgb(153, 255, 153);">目录</strong>下都会有一个.svn<strong style="color: black; background-color: rgb(153, 255, 153);">目录</strong>存在，开发完当交付产品或者上传到服务器时一般要把这些<strong style="color: black; background-color: rgb(153, 255, 153);">目录</strong>删除，这里总结了一下在linux和win下的办法。</p><p><strong>一、在linux下</strong></p><p>删除这些<strong style="color: black; background-color: rgb(153, 255, 153);">目录</strong>是很简单的，命令如下    find . -type d -name &quot;.svn&quot;|xargs rm -rf</p><p>或者</p><p>find&nbsp;.&nbsp;-type&nbsp;d&nbsp;-iname&nbsp;&quot;.svn&quot;&nbsp;-exec&nbsp;rm&nbsp;-rf&nbsp;{}&nbsp;&quot;;&nbsp;&nbsp;</p><p>全部搞定。(http://tech.techweb.com.cn/redirect.php?fid=26&amp;tid=205673&amp;goto=nextnewset)</p><p>&nbsp;</p><p><strong>二、在windows下用以下法子：</strong></p><div>1、在项目平级的<strong style="color: black; background-color: rgb(153, 255, 153);">目录</strong>，执行dos命令：   xcopy project_dir project_dir_1 /s /i</div><p>&nbsp;</p><div>2、或者在项目根<strong style="color: black; background-color: rgb(153, 255, 153);">目录</strong>执行以下dos命令   for /r . %%a i</div></div>]]></description>
</item>
<item>
	<link>http://blog.andyfoo.com:81/index.php?load=read&amp;id=96</link>
	<title><![CDATA[chm索引不见,也不能搜索]]></title>
	<author>Andyfoo</author>
	<category><![CDATA[计算机维护]]></category>
	<pubDate>2008-10-10 12:35</pubDate>
	<guid>http://blog.andyfoo.com:81/index.php?load=read&amp;id=96</guid>	
	<description><![CDATA[应该是 hhctrl.ocx 等文件出现了问题 <br /> 可以尝试 <br /> <div class="hl-surround"><ol class="hl-main ln-show" title="Double click to hide line number." ondblclick = "linenumber(this)"><li class="hl-firstline"><span style="color: Blue;">regsvr32</span><span style="color: Gray;">&nbsp;</span><span style="color: Blue;">hhctrl</span><span style="color: Gray;">.</span><span style="color: Blue;">ocx</span></li>
<li><span style="color: Blue;">regsvr32</span><span style="color: Gray;">&nbsp;</span><span style="color: Blue;">itss</span><span style="color: Gray;">.</span><span style="color: Blue;">dll</span></li>
<li><span style="color: Blue;">regsvr32</span><span style="color: Gray;">&nbsp;</span><span style="color: Blue;">itircl</span><span style="color: Gray;">.</span><span style="color: Blue;">dll</span><span style="color: Gray;"> </span><span style="color: #ffa500;">//这个很重要，是关于全文搜索的。</span></li>
</ol></div>]]></description>
</item>
<item>
	<link>http://blog.andyfoo.com:81/index.php?load=read&amp;id=95</link>
	<title><![CDATA[mysql忘记密码怎么办？]]></title>
	<author>Andyfoo</author>
	<category><![CDATA[计算机维护]]></category>
	<pubDate>2008-09-23 10:39</pubDate>
	<guid>http://blog.andyfoo.com:81/index.php?load=read&amp;id=95</guid>	
	<description><![CDATA[Windows:<br />1.用系统管理员登陆系统。<br />2.停止MySQL的服务。<br />3.进入命令窗口，然后进入MySQL的安装目录，比如我的安装目录是c:mysql,进入C:mysqlbin<br />4.跳过权限检查启动MySQL，<br />c:mysqlbin&gt;mysqld-nt --skip-grant-tables<br />5.重新打开一个窗口，进入c:mysqlbin目录，设置root的新密码<br />c:mysqlbin&gt;mysqladmin -u root flush-privileges password &quot;newpassword&quot;<br />c:mysqlbin&gt;mysqladmin -u root -p shutdown<br />将newpassword替换为你要用的root的密码，第二个命令会提示你输入新密码，重复第一个命令输入的密码。<br />6.停止MySQL Server，用正常模式启动Mysql<br />7．你可以用新的密码链接到Mysql了。<br /><br />Unix&amp;Linux：<br />1.用root或者运行mysqld的用户登录系统；<br />2．利用kill命令结束掉mysqld的进程；<br />3．使用--skip-grant-tables参数]]></description>
</item>
<item>
	<link>http://blog.andyfoo.com:81/index.php?load=read&amp;id=94</link>
	<title><![CDATA[判断网页DocType类型]]></title>
	<author>Andyfoo</author>
	<category><![CDATA[Javascript]]></category>
	<pubDate>2008-09-04 18:12</pubDate>
	<guid>http://blog.andyfoo.com:81/index.php?load=read&amp;id=94</guid>	
	<description><![CDATA[&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot;<br />&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;<br />&lt;html&gt;<br />&lt;head&gt;<br />&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=gbk&quot;&gt;<br />&lt;/head&gt;<br />&lt;body&gt;<br />&lt;script&gt;<br />function detectDoctype(){<br />&nbsp;&nbsp;&nbsp; try{<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; var re=/s+(X?HTML)s+([d.]+)s*([^/]+)*//gi;<br />&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; var res=false;<br />&nbsp;&nbsp;&nbsp; &nbsp;]]></description>
</item>
<item>
	<link>http://blog.andyfoo.com:81/index.php?load=read&amp;id=93</link>
	<title><![CDATA[格式化数字的多个]]></title>
	<author>Andyfoo</author>
	<category><![CDATA[Javascript]]></category>
	<pubDate>2008-09-03 17:13</pubDate>
	<guid>http://blog.andyfoo.com:81/index.php?load=read&amp;id=93</guid>	
	<description><![CDATA[<span style="font-weight: bold;">//格式化数字</span><br style="font-weight: bold;" /><span style="font-weight: bold;">function format_number(num, dot, dec_point){</span><br style="font-weight: bold;" /><span style="font-weight: bold;">&nbsp;&nbsp;&nbsp; try{</span><br style="font-weight: bold;" /><span style="font-weight: bold;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; num = parseFloat(num);</span><br style="font-weight: bold;" /><span style="font-weight: bold;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if(typeof(dot) == &#39;undefined&#39;)var dot=2;</span><br style="font-weight: bold;" /><span style="font-weight: bold;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if(typeof(dec_point) == &#39;undefined&#39;)var dec_point=&#39;&#39;;</span><br style="font-weight: bold;" /><span style="font-weight: bold;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; num = num.toFixed(dot);</span><br style="font-weight: bold;" /><span style="font-weight: bold;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if(dec_point.length&gt;0){</span><br style="font-weight: bold;" /><span style="font-weight: bold;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbs</span>]]></description>
</item>
<item>
	<link>http://blog.andyfoo.com:81/index.php?load=read&amp;id=92</link>
	<title><![CDATA[使用 PHP 和 Oracle 实施分页结果集]]></title>
	<author>Andyfoo</author>
	<category><![CDATA[计算机维护]]></category>
	<pubDate>2008-08-25 12:46</pubDate>
	<guid>http://blog.andyfoo.com:81/index.php?load=read&amp;id=92</guid>	
	<description><![CDATA[http://www.oracle.com/technology/global/cn/pub/articles/oracle_php_cookbook/fuecks_paged.html<br /><p><span class="topstoryhead">使用 PHP 和 Oracle 实施分页结果集</span><br /><span class="italicbodycopy">作者：Harry Fuecks</span></p><p><span class="boldbodycopy">学习如何实施分页结果集并高效显示大型结果集。<!--more--></span></p><table width="33%" cellspacing="0" cellpadding="1" border="0" bgcolor="#cccccc"><tbody><tr><td><table width="100%" cellspacing="0" cellpadding="5" border="0" bgcolor="#ffffff"><tbody><tr><td><span class="boldbodycopy">本文相关下载：</span><br /><span class="boldbodycopy"><img width="5" height="5" border="0" align="bottom" src="http://oracleimg.com/admin/images/ocom/bullet_5x5.gif" alt="" /></span><a class="bodylink" href="http://www.oracle.com/technology/global/cn/software/products/database/oracle10g/index.html">Oracle 数据库 10<em>g</em></a><br /><span class="boldbodycopy"><img width="5" height="5" border="0" align="bottom" src="http://oracleimg.com/admin/images/ocom/bullet_5x5.gif" alt="" /></span><a class="bodylink" href="http://www.oracle.com/technology/global/cn/tech/php/zendcore/index.html">Zend Core for Oracle</a><br /><span class="boldbodycopy"><img width="5" height="5" border="0" align="bottom" src="http://oracleimg.com/admin/images/ocom/bullet_5x5.gif" alt="" /></span><a class="bodylink" href="http://httpd.apache.org/download.cgi">Apache HTTP Server 1.3 和更高版本</a></td></tr></tbody></table></td></tr></tbody></table><p><span class="legalese">2005 年 11 月发表</span></p>
分页结果集是用于高效显示查询结果集的常用技术。最著名的例子或许就是 Google 搜索结果页面底部的&ldquo;结果页码&rdquo;。
<p> 在本方法文档中，您将学习如何使用 PHP 和 Oracle 实施分页结果集，以及用于显示大型数据集的高效技术。 </p><p class="parahead1"> 分页结果集的必要性 </p><p> 基于 Web 的应用程序不像桌面 GUI 那样，当用户执行向上滚动或向下滚动操作时可以使结果游标在会话中保持打开状态，它们受到 HTTP 协议的无状态请求/响应生命周期的限制，也就是说，请求完成后，会话随即终止。此外，如果一次在 HTML 表中发</p>]]></description>
</item>
<item>
	<link>http://blog.andyfoo.com:81/index.php?load=read&amp;id=91</link>
	<title><![CDATA[如何使用oracle的date型数据]]></title>
	<author>Andyfoo</author>
	<category><![CDATA[计算机维护]]></category>
	<pubDate>2008-08-25 12:45</pubDate>
	<guid>http://blog.andyfoo.com:81/index.php?load=read&amp;id=91</guid>	
	<description><![CDATA[SQL&gt; &nbsp; select &nbsp; to_char(sysdate,&#39;yyyy-mm-dd &nbsp; hh24:mi:ss &nbsp; am&#39;) &nbsp; from &nbsp; dual; &nbsp; <br /> &nbsp;  &nbsp; <br /> &nbsp; TO_CHAR(SYSDATE,&#39;YYYY-MM &nbsp; <br /> &nbsp; ------------------------ &nbsp; <br /> &nbsp; 2002-08-31 &nbsp; 10:34:07 &nbsp; 上午&nbsp; <br /><br /><br />存的时候可以用to_date(&lsquo;2002-10-20 &nbsp; 15：30：00&rsquo;，&lsquo;yyyy-mm-dd &nbsp; hh24:mi:ss&rsquo;) &nbsp; <br /> &nbsp; 取得时候可以to_char(sysdate，&lsquo;yyyy-mm-dd &nbsp; hh24:mi:ss&rsquo;)]]></description>
</item>
<item>
	<link>http://blog.andyfoo.com:81/index.php?load=read&amp;id=90</link>
	<title><![CDATA[Oracle 数据库date与Unix时间戳转换]]></title>
	<author>Andyfoo</author>
	<category><![CDATA[计算机维护]]></category>
	<pubDate>2008-08-25 12:44</pubDate>
	<guid>http://blog.andyfoo.com:81/index.php?load=read&amp;id=90</guid>	
	<description><![CDATA[http://www.oracle.com/technology/global/cn/pub/articles/oracle_php_cookbook/fuecks_dates.html<br />Unix时间戳记是从&#39;1970-01-01 00:00:00&#39;GMT开始的秒数，表现为整数型。
<p>  Oracle中的时间是Date型，以下函数提供了两种时间转换的Oracle函数 <font color="#ffffff">bitscn.com</font></p><p> （1）从Unix时间戳记转换为Oracle时间</p><p>  create or replace function unix_to_oracle(in_number NUMBER) return date is <font color="#ffffff">网管论坛bbitsCN_com</font></p><p>  begin</p><p>&nbsp;&nbsp;  return(TO_DATE(&#39;19700101&#39;,&#39;yyyymmdd&#39;) + in_number/86400 +TO_NUMBER(SUBSTR(TZ_OFFSET(sessiontimezone),1,3))/24); <font color="#ffffff">中国网管论坛bbsbitsCN.com</font></p><p>  end unix_to_</p>]]></description>
</item>
<item>
	<link>http://blog.andyfoo.com:81/index.php?load=read&amp;id=89</link>
	<title><![CDATA[反编译经过ZEND后php代码-(95%有效)]]></title>
	<author>Andyfoo</author>
	<category><![CDATA[PHP记录]]></category>
	<pubDate>2008-07-25 17:13</pubDate>
	<guid>http://blog.andyfoo.com:81/index.php?load=read&amp;id=89</guid>	
	<description><![CDATA[<br /><p><strong>反编译经过ZEND后php代码-(95%有效)</strong></p><p>http://derickrethans.nl/vld.php<br /> http://www.qinvent.com/cyrj/deZender<br /> 两个不同网站的解决方案,其中一个网站是基于Linux的解密方法.<br /> 另外一个是国人自己做的论坛方式在线解密.价格昂贵.可以在线<br /> 试用一个帖子.</p><p>破解ZEND加密PHP的源程序代码在这里了<br /> 那个什么青风发明工作室基本用的是这个东西</p><p>http://www.derickrethans.nl/vld.php</p><p>下载在这里</p><p>http://pecl.php.net/package/vld/0.8.0</p><p>==================<br /> 大致介绍在这里<br /> ==================<br /> Vulcan Logic Disassembler</p><p>The Vulcan Logic Disassembler hooks into the Zend Engine and dumps all the opcodes (execution units) of a script. It was written as as a beginning o</p>]]></description>
</item>
<item>
	<link>http://blog.andyfoo.com:81/index.php?load=read&amp;id=88</link>
	<title><![CDATA[[转]jQuery对比Prototype]]></title>
	<author>Andyfoo</author>
	<category><![CDATA[Javascript]]></category>
	<pubDate>2008-07-18 12:42</pubDate>
	<guid>http://blog.andyfoo.com:81/index.php?load=read&amp;id=88</guid>	
	<description><![CDATA[<p><font size="2">前几天有同事给我们培训了一下JQuery，总结下来只记得了3点：<br /><br /> 1，Chain的控制链机制。每次子调用都会返回对象本身，省去再度实例化对象的过程。<br /> 2，获得元素的方法和Prototype不同，针对所有的对象采用相同的$调用。<br /> 3，操作CSS的时候，可以采用和CSS相同的语法。<br /><br /> 由于项目中没有具体使用，备份下来以后使用。<br /></font></p><hr width="100%" size="2" /><p><font size="2"><br /> &nbsp;&nbsp;&nbsp; 看到<strong>Jim Neath</strong>在<strong><a href="http://jimneath.org/2008/06/18/using-jquery-with-ruby-on-rails/">Using jQuery with Ruby on Rails</a></strong>中对比了 Prototype和jQuery。<br /> 有些不错的东西，节选备份一下：<br /> &nbsp;&nbsp;&nbsp; <br /></font></p><font size="2">&nbsp;&nbsp;&nbsp; 一些 </font><strong><font size="2">Prototype / jQuery </font></strong><font size="2">的例子：<br /> &nbsp;&nbsp;&nbsp; 在新页面打开所有rel=&quot;external&quot;标识的链接:<br /><br /><strong>Prototype</strong><br /><br /><div class="codeText"><div class="codeHead"><font>JavaScript代码</font></div><ol start="1" class="dp-c"><font><li class="alt"><span><span>document.observe(</span><span class="string">&#39;dom:loaded&#39;</span><span>,&nbsp;</span><span class="keyword">function</span><span>()&nbsp;{&nbsp;&nbsp;</span></span></li><li class=""><span>&nbsp;&nbsp;&nbsp; $$</span></li></font></ol></div></font>]]></description>
</item>
</channel>
</rss>