<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:wfw="http://wellformedweb.org/CommentAPI/">
  <id>http://bshadow.pixnet.net/blog</id>
  <title><![CDATA[發卡布洛:: 痞客邦 PIXNET ::]]></title>
  <author>
    <name>bshadow</name>
    <email>bshadow@not-valid.com</email>
  </author>
  <updated>2009-11-13T14:33:52+08:00</updated>
  <published>2009-11-13T14:33:52+08:00</published>
  <link rel="self" href="http://bshadow.pixnet.net/blog" hreflang="zh"/>
  <subtitle><![CDATA[所有的東西都放在這裡了 <input type="button" value="loading ad state..." id="adv_select"> <b>[<a href="http://bshadow.pixnet.net/blog/post/23182357" target="_self">?</a>]</b></center>]]></subtitle>
  <rights>Copyright 2003-2009 bshadow,Pixnet Digital Media Coporation. All rights reserved.</rights>
  <generator>PIXNET Media Digital Coporation</generator>
  <entry xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <id>http://bshadow.pixnet.net/blog/post/25365324</id>
    <title><![CDATA[jQuery｜blogger側邊欄開關效果]]></title>
    <updated>2009-11-13T14:33:52+08:00</updated>
    <link rel="alternate" href="http://bshadow.pixnet.net/blog/post/25365324"/>
    <summary><![CDATA[使用前先引入jquery

&lt;script src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js" 
type="text/javascript"&gt;&lt;/script&gt;

然後這是一個簡單的判斷式

&lt;script type="text/javascript"&gt;
$(function(){
$("h2").css("cursor","pointer").click(function(){
if($(this).next().css("display")=="none")
$(this).next().fadeIn("fast")
else
$(this).next().fadeOut("normal")
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; });
});
&lt;/script&gt;
]]></summary>
    <content type="html"><![CDATA[使用前先引入jquery
<pre class="brush:jscript">
&lt;script src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js" 
type="text/javascript"&gt;&lt;/script&gt;</pre>
<br />
然後這是一個簡單的判斷式
<pre class="brush:jscript">
&lt;script type="text/javascript"&gt;
$(function(){
$("h2").css("cursor","pointer").click(function(){
if($(this).next().css("display")=="none")
$(this).next().fadeIn("fast")
else
$(this).next().fadeOut("normal")
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; });
});
&lt;/script&gt;
</pre><br />  <div class="more"><a href="http://bshadow.pixnet.net/blog/post/25365324">(Read More...)</a></div>]]></content>
    <category term="※jQuery"/>
    <wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bshadow.pixnet.net/blog/post/25365324#comments</wfw:comment>
  </entry>
  <entry xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <id>http://bshadow.pixnet.net/blog/post/24843684</id>
    <title><![CDATA[jQuery｜在痞客邦版主回覆區使用表情圖示]]></title>
    <updated>2009-08-11T05:52:11+08:00</updated>
    <link rel="alternate" href="http://bshadow.pixnet.net/blog/post/24843684"/>
    <summary><![CDATA[痞客邦把部落格板主回覆區塊的 html 鎖起來了，也就是當我們在張貼&lt;、&gt;這類符號時，他會將這兩個字元轉換為&amp;lt;、&amp;gt;，但是我們可以透過一個簡單的replace語法，再把這兩個符號給轉換回來。不過為了貼圖方便，我們不必那麼死板板的單純只做轉換，可以仿造cbox的貼圖方式，設計一個貼圖語法為：[img:圖片網址]。將以下語法張貼在頁尾描述即可：
&lt;script type="text/javascript"&gt;
jQuery("li.reply-text,#latest-comment li").each(function(i){
var $this = jQuery(this);
$this.html($this.html()
.replace("[img:","&lt;img src='")
.replace("]","'&gt;")
)
});
&lt;/script&gt;在使用的時候，只要貼上 [img:圖片網址] 就可以顯示圖片了。&nbsp;不過我想站長們通常都是把圖片放在同一個資料夾下，因此我們又可以將程式改寫，把空間寫進程式中（請注意程式第 5 行的差異）。]]></summary>
    <content type="html"><![CDATA[<p class="first">痞客邦把部落格板主回覆區塊的 html 鎖起來了，也就是當我們在張貼&lt;、&gt;這類符號時，他會將這兩個字元轉換為&amp;lt;、&amp;gt;，但是我們可以透過一個簡單的replace語法，再把這兩個符號給轉換回來。不過為了貼圖方便，我們不必那麼死板板的單純只做轉換，可以仿造cbox的貼圖方式，設計一個貼圖語法為：<strong>[img:圖片網址]</strong>。</p><p><span style="color: #0000ff;"><strong>將以下語法張貼在頁尾描述即可：</strong></span></p><pre class="brush:jscript">
&lt;script type="text/javascript"&gt;
jQuery("li.reply-text,#latest-comment li").each(function(i){
var $this = jQuery(this);
$this.html($this.html()
.replace("[img:","&lt;img src='")
.replace("]","'&gt;")
)
});
&lt;/script&gt;</pre><p>在使用的時候，只要貼上 <strong>[img:圖片網址]</strong> 就可以顯示圖片了。</p><p>&nbsp;</p><p>不過我想站長們通常都是把圖片放在同一個資料夾下，因此我們又可以將程式改寫，把空間寫進程式中<span style="color: #ff0000;">（請注意程式第 5 行的差異）</span>。</p>  <div class="more"><a href="http://bshadow.pixnet.net/blog/post/24843684">(Read More...)</a></div>]]></content>
    <category term="※jQuery"/>
    <wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bshadow.pixnet.net/blog/post/24843684#comments</wfw:comment>
  </entry>
  <entry xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <id>http://bshadow.pixnet.net/blog/post/24723661</id>
    <title><![CDATA[教學｜在痞客邦內使用Lightbox JS 2.0圖片播放器]]></title>
    <updated>2009-07-27T07:07:14+08:00</updated>
    <link rel="alternate" href="http://bshadow.pixnet.net/blog/post/24723661"/>
    <summary><![CDATA[有網友提到要如何在痞客邦使用這個效果，我想我就針對痞客邦的安裝方法講解一下好了，功力強的網友可以直接參考OECSPACE的這篇教學，真的不懂的話再來服用我這篇吧！首先請下載： 下載完之後解壓縮，打開 lightbox 後會有三個資料夾，請打開 js 下的 lightbox.js，找到第49與50行。]]></summary>
    <content type="html"><![CDATA[<p class="first">有網友提到要如何在痞客邦使用這個效果，我想我就針對痞客邦的安裝方法講解一下好了，功力強的網友可以直接參考OECSPACE的<a href="http://www.hsiu28.net/html/jss.php?id=11" target="_blank">這篇教學</a>，真的不懂的話再來服用我這篇吧！</p><p><b>首先請下載：</b></p><p><a href="http://fekasource.googlepages.com/lightbox2.04.zip" target="_blank"><img style="border: 0;" title="lightbox.png" src="http://pic.pimg.tw/bshadow/4a6ccd4c60959.png" border="0" alt="lightbox.png" /></a> </p><p>下載完之後解壓縮，打開 lightbox 後會有三個資料夾，請打開 js 下的 lightbox.js，找到第49與50行。</p><p><img title="lightbox1.png" src="http://pic.pimg.tw/bshadow/4a6cce7aeb54d.png" border="0" alt="lightbox1.png" /></p>  <div class="more"><a href="http://bshadow.pixnet.net/blog/post/24723661">(Read More...)</a></div>]]></content>
    <category term="※電腦教學"/>
    <wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bshadow.pixnet.net/blog/post/24723661#comments</wfw:comment>
  </entry>
  <entry xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <id>http://bshadow.pixnet.net/blog/post/24719419</id>
    <title><![CDATA[網頁｜發票對獎程式98年5、6月]]></title>
    <updated>2009-07-25T11:13:40+08:00</updated>
    <link rel="alternate" href="http://bshadow.pixnet.net/blog/post/24719419"/>
    <summary><![CDATA[最新一期的發票號碼出來囉，請至以下網頁對獎： http://feka.hostrator.com/receipt/r9856/]]></summary>
    <content type="html"><![CDATA[<p>最新一期的發票號碼出來囉，請至以下網頁對獎：</p> <p><a title="http://feka.hostrator.com/receipt/r9856/" href="http://feka.hostrator.com/receipt/r9856/" target="_blank">http://feka.hostrator.com/receipt/r9856/</a></p><br />  <div class="more"><a href="http://bshadow.pixnet.net/blog/post/24719419">(Read More...)</a></div>]]></content>
    <category term="※程式作品"/>
    <wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bshadow.pixnet.net/blog/post/24719419#comments</wfw:comment>
  </entry>
  <entry xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <id>http://bshadow.pixnet.net/blog/post/24695479</id>
    <title><![CDATA[技巧｜PTT黑暗兵法之～關注某個ID貼的文章]]></title>
    <updated>2009-07-23T03:53:42+08:00</updated>
    <link rel="alternate" href="http://bshadow.pixnet.net/blog/post/24695479"/>
    <summary><![CDATA[我不知道這算不算技巧，也不知道這個功能能夠在什麼場合派上用場，不過它還算蠻好用的就是了。 如果你想知道某個ID都在PTT上PO什麼文章的話，可以直接到ALLPOST版按小a查詢作者，但要注意的是，ALLPOST版上的文章只會保留五天，過五天之後就會自動清除了。 &nbsp; ALLPOST版在什麼地方呢？ 市民廣場&nbsp;&nbsp;&nbsp;&nbsp; 報告站長 Ptt咬我]]></summary>
    <content type="html"><![CDATA[<p class="first">我不知道這算不算技巧，也不知道這個功能能夠在什麼場合派上用場，不過它還算蠻好用的就是了。</p> <p>如果你想知道某個ID都在PTT上PO什麼文章的話，可以直接<strong><font color="#0000ff"><u>到ALLPOST版按小a查詢作者</font></u></strong>，但要注意的是，ALLPOST版上的文章只會保留<strong><font color="#0000ff">五天</font></strong>，過五天之後就會自動清除了。</p> <p>&nbsp;</p> <p><font color="#008000" size="5"><strong>ALLPOST版在什麼地方呢？</strong></font></p> <p>市民廣場&nbsp;&nbsp;&nbsp;&nbsp; 報告站長 Ptt咬我<br />  <div class="more"><a href="http://bshadow.pixnet.net/blog/post/24695479">(Read More...)</a></div>]]></content>
    <category term="※網際網路"/>
    <wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bshadow.pixnet.net/blog/post/24695479#comments</wfw:comment>
  </entry>
  <entry xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <id>http://bshadow.pixnet.net/blog/post/24653703</id>
    <title><![CDATA[技巧｜關閉電腦裡的A磁碟]]></title>
    <updated>2009-07-17T18:22:33+08:00</updated>
    <link rel="alternate" href="http://bshadow.pixnet.net/blog/post/24653703"/>
    <summary><![CDATA[隨著USB隨身碟的容量愈來愈大，現在應該很少有人在使用軟碟機了吧？但不管你的電腦中有沒有裝軟碟機，打開我的電腦時還是會看到一台軟碟機在那邊。掛了一台虛設的軟碟機除了礙眼之外，當你不小心點到他時，電腦都會稍微秀斗累格一下，非常麻煩。我們可以透過裝置管理員將軟碟機功能給關掉，方法如下：STEP #1點擊　開始／執行STEP #2]]></summary>
    <content type="html"><![CDATA[<p class="first">隨著USB隨身碟的容量愈來愈大，現在應該很少有人在使用軟碟機了吧？但不管你的電腦中有沒有裝軟碟機，打開我的電腦時還是會看到一台軟碟機在那邊。掛了一台虛設的軟碟機除了礙眼之外，當你不小心點到他時，電腦都會稍微秀斗累格一下，非常麻煩。我們可以透過裝置管理員將軟碟機功能給關掉，方法如下：</p><p><span style="color: #0000ff;"><span style="font-size: 16pt;"><strong>STEP #1</strong></span></span></p><p>點擊　開始／執行</p><p><img title="start.png" src="http://pic.pimg.tw/bshadow/4a60540d7bda7.png" border="0" alt="start.png" /></p><p><span style="color: #0000ff;"><span style="font-size: 16pt;"><strong>STEP #2</strong></span></span></p>  <div class="more"><a href="http://bshadow.pixnet.net/blog/post/24653703">(Read More...)</a></div>]]></content>
    <category term="※電腦教學"/>
    <wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bshadow.pixnet.net/blog/post/24653703#comments</wfw:comment>
  </entry>
  <entry xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <id>http://bshadow.pixnet.net/blog/post/24645357</id>
    <title><![CDATA[JavaScript｜在痞客邦裡使用syntaxhighlighter2.0]]></title>
    <updated>2009-07-16T17:51:22+08:00</updated>
    <link rel="alternate" href="http://bshadow.pixnet.net/blog/post/24645357"/>
    <summary><![CDATA[之前一直以為syntaxhighlighter2.0要付費才能下載使用，今天才在海芋大大的噗浪看到原來syntaxhighlighter2.0可以免費下載，使用blogger的網友可以參考海芋大大的這篇教學使用：在 Blogger 中插入美觀的程式碼 ~ 使用syntaxhighlighter 2.0 實戰而痞客邦的安裝方法基本上也是大同小異的，請參考海芋大大的教學，把整個程式碼載下來，放在自己的主機中，然後再到blog中加入程式碼，由於我不太喜歡在&lt;body&gt;內把Style引入，所以直接將Style在CSS中做引入，請在CSS最上方加入（其中yourhost為你的主機網址）：@import url("yourhost/styles/shCore.css");
@import url("yourhost/styles/shThemeDefault.css");
接著，在痞客邦的側邊欄位或是公告欄位中，加入以下程式碼，就完成囉！
（當然如果你不需要用到這麼多的話，不用把全部的語言都引入，引入太多檔案是會耗讀取時間的。）&lt;script type="text/javascript" src="yourhost/scripts/shCore.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushBash.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushCpp.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushCSharp.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushCss.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushDelphi.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushDiff.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushGroovy.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushJava.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushJScript.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushPhp.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushPlain.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushPython.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushRuby.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushScala.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushSql.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushVb.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushXml.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript"&gt;
SyntaxHighlighter.config.clipboardSwf = 'yourhost/scripts/clipboard.swf';
SyntaxHighlighter.all();
&lt;/script&gt;最後，就可使用以下語法在痞客邦中使用語法高亮效果囉（brush:語言類別）]]></summary>
    <content type="html"><![CDATA[<p class="first">之前一直以為syntaxhighlighter2.0要付費才能下載使用，今天才在海芋大大的噗浪看到原來syntaxhighlighter2.0可以免費下載，使用blogger的網友可以參考海芋大大的這篇教學使用：<br /><strong><a href="http://www.inote.tw/2009/02/blogger.html" target="_blank">在 Blogger 中插入美觀的程式碼 ~ 使用syntaxhighlighter 2.0 實戰</a></strong></p><p>而痞客邦的安裝方法基本上也是大同小異的，請參考海芋大大的教學，把整個程式碼載下來，放在自己的主機中，然後再到blog中加入程式碼，由於我不太喜歡在&lt;body&gt;內把Style引入，所以直接將Style在CSS中做引入，請在CSS最上方加入（其中yourhost為你的主機網址）：</p><pre class="brush: css;">@import url("yourhost/styles/shCore.css");
@import url("yourhost/styles/shThemeDefault.css");</pre>
接著，在痞客邦的側邊欄位或是公告欄位中，加入以下程式碼，就完成囉！<br />
<strong><span style="color: green;">（當然如果你不需要用到這麼多的話，不用把全部的語言都引入，引入太多檔案是會耗讀取時間的。）</span></strong><pre class="brush: html;">&lt;script type="text/javascript" src="yourhost/scripts/shCore.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushBash.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushCpp.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushCSharp.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushCss.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushDelphi.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushDiff.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushGroovy.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushJava.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushJScript.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushPhp.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushPlain.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushPython.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushRuby.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushScala.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushSql.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushVb.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="yourhost/scripts/shBrushXml.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript"&gt;
SyntaxHighlighter.config.clipboardSwf = 'yourhost/scripts/clipboard.swf';
SyntaxHighlighter.all();
&lt;/script&gt;</pre><p>最後，就可使用以下語法在痞客邦中使用語法高亮效果囉<span style="color: #ff0000;"><strong>（brush:語言類別）</strong></span></p>  <div class="more"><a href="http://bshadow.pixnet.net/blog/post/24645357">(Read More...)</a></div>]]></content>
    <category term="※JavaScript"/>
    <wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bshadow.pixnet.net/blog/post/24645357#comments</wfw:comment>
  </entry>
  <entry xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <id>http://bshadow.pixnet.net/blog/post/24563397</id>
    <title><![CDATA[技巧｜如何抓取Flickr上的版權圖片]]></title>
    <updated>2009-07-08T06:05:35+08:00</updated>
    <link rel="alternate" href="http://bshadow.pixnet.net/blog/post/24563397"/>
    <summary><![CDATA[Flickr上的版權圖片如果使用平常的抓圖方法抓是抓不下來的，會變成儲存到一個spaceball.gif的圖片（如圖所示）。   &nbsp; 但我們只要透過拿掉網頁的CSS樣式，就可以抓到它的原始圖檔了。  ]]></summary>
    <content type="html"><![CDATA[<p class="first">Flickr上的版權圖片如果使用平常的抓圖方法抓是抓不下來的，會變成儲存到一個spaceball.gif的圖片（如圖所示）。</p> <p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="" border="0" alt="" src="http://pic.pimg.tw/bshadow/4a53c69e99d66.png" width="460" height="390"> </p> <p>&nbsp;</p> <p>但我們只要透過拿掉網頁的CSS樣式，就可以抓到它的原始圖檔了。</p> <p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="" border="0" alt="" src="http://pic.pimg.tw/bshadow/4a53c6a85a7dd.png" width="423" height="568"> </p>  <div class="more"><a href="http://bshadow.pixnet.net/blog/post/24563397">(Read More...)</a></div>]]></content>
    <category term="※電腦教學"/>
    <wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bshadow.pixnet.net/blog/post/24563397#comments</wfw:comment>
  </entry>
  <entry xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <id>http://bshadow.pixnet.net/blog/post/24118082</id>
    <title><![CDATA[網頁｜發票對獎程式 - 98年3月、4月]]></title>
    <updated>2009-05-25T15:56:28+08:00</updated>
    <link rel="alternate" href="http://bshadow.pixnet.net/blog/post/24118082"/>
    <summary><![CDATA[又到了單月的25號囉 趕緊來對對看自已的發票有沒有中獎吧！ http://feka.comoj.com/receipt/r9834/index.php]]></summary>
    <content type="html"><![CDATA[<p class="first">又到了單月的25號囉</p> <p>趕緊來對對看自已的發票有沒有中獎吧！</p> <p><a href="http://feka.comoj.com/receipt/r9834/index.php">http://feka.comoj.com/receipt/r9834/index.php</a></p><br />  <div class="more"><a href="http://bshadow.pixnet.net/blog/post/24118082">(Read More...)</a></div>]]></content>
    <category term="※程式作品"/>
    <wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bshadow.pixnet.net/blog/post/24118082#comments</wfw:comment>
  </entry>
  <entry xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <id>http://bshadow.pixnet.net/blog/post/23527616</id>
    <title><![CDATA[教學文件｜Discuz6.0用戶手冊繁體中文版]]></title>
    <updated>2009-03-30T07:33:55+08:00</updated>
    <link rel="alternate" href="http://bshadow.pixnet.net/blog/post/23527616"/>
    <summary><![CDATA[因為站長學校有個通識中心的老師要學Discuz6.0，但官方網站上的教學文件是簡體中文版的他看不懂，所以我就幫他轉成繁體版的了，只是圖片裡的簡體我就沒辦法修改了，有需要的網友也可下載使用唷。教學文件的版權屬於康盛創想公司。下載點：http://webhd.xuite.net/_oops/jimsuan/bnh]]></summary>
    <content type="html"><![CDATA[<p class="first">因為站長學校有個通識中心的老師要學Discuz6.0，但官方網站上的教學文件是簡體中文版的他看不懂，所以我就幫他轉成繁體版的了，只是圖片裡的簡體我就沒辦法修改了，有需要的網友也可下載使用唷。教學文件的版權屬於<a href="http://www.comsenz.com/products/discuz" target="_blank">康盛創想公司</a>。</p><p><strong>下載點：</strong><a href="http://webhd.xuite.net/_oops/jimsuan/bnh" target="_blank">http://webhd.xuite.net/_oops/jimsuan/bnh</a></p><br />  <div class="more"><a href="http://bshadow.pixnet.net/blog/post/23527616">(Read More...)</a></div>]]></content>
    <category term="※軟體應用"/>
    <wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bshadow.pixnet.net/blog/post/23527616#comments</wfw:comment>
  </entry>
  <entry xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <id>http://bshadow.pixnet.net/blog/post/23520942</id>
    <title><![CDATA[PhotoImpact｜如何批次縮小圖片長寬]]></title>
    <updated>2009-03-29T14:33:55+08:00</updated>
    <link rel="alternate" href="http://bshadow.pixnet.net/blog/post/23520942"/>
    <summary><![CDATA[前幾天站長去參加了校內的PhotoImpact TA研習，發現講師在批次修改相片長寬時，是將全部的圖片載入後再用批次變更影像大小的功能來做的。使用這個方法有一個問題，那就是如果你電腦的記憶體不夠大，可能開個二十張圖片，PhotoImpact就當掉了；因為現在的數位相機愈來愈高檔了，一張照片的長寬起碼都是3000pixel起跳的，如果一次讀入那麼多張圖片，年代較久遠的電腦都跑不動。由於連講師都是用這個做法了，我想有必要分享一下我的做法。
PhotoImpact的批次縮圖還有另一個方法可以做到，就是使用快速指令的功能，雖然說這個方法也要將圖片一張一張載入縮小，但與上述方法不同的是，它不會一次將一堆大相素的照片打開，而是開一張就縮一張，縮完後會自動把改好的照片關閉並儲存到其它資料夾，我覺得使用這樣子的方法比較快，也比較不會吃硬體資源，介紹給大家囉：
&nbsp;
Step #1首先先用PhotoImpact隨便打開一張數位照片]]></summary>
    <content type="html"><![CDATA[<p class="first">前幾天站長去參加了校內的PhotoImpact TA研習，發現講師在批次修改相片長寬時，是將全部的圖片載入後再用批次變更影像大小的功能來做的。使用這個方法有一個問題，那就是如果你電腦的記憶體不夠大，可能開個二十張圖片，PhotoImpact就當掉了；因為現在的數位相機愈來愈高檔了，一張照片的長寬起碼都是3000pixel起跳的，如果一次讀入那麼多張圖片，年代較久遠的電腦都跑不動。由於連講師都是用這個做法了，我想有必要分享一下我的做法。</p>
<p>PhotoImpact的批次縮圖還有另一個方法可以做到，就是使用快速指令的功能，雖然說這個方法也要將圖片一張一張載入縮小，但與上述方法不同的是，它不會一次將一堆大相素的照片打開，而是開一張就縮一張，縮完後會自動把改好的照片關閉並儲存到其它資料夾，我覺得使用這樣子的方法比較快，也比較不會吃硬體資源，介紹給大家囉：</p>
<p>&nbsp;</p>
<p><span style="color: #0000ff;"><span style="font-size: 18pt;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Step #1</strong></span></span></span><br />首先先用PhotoImpact隨便打開一張數位照片</p>  <div class="more"><a href="http://bshadow.pixnet.net/blog/post/23520942">(Read More...)</a></div>]]></content>
    <category term="※軟體應用"/>
    <wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bshadow.pixnet.net/blog/post/23520942#comments</wfw:comment>
  </entry>
  <entry xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <id>http://bshadow.pixnet.net/blog/post/23520650</id>
    <title><![CDATA[中文化｜FadeToBlack v2.3.3]]></title>
    <updated>2009-03-29T14:24:43+08:00</updated>
    <link rel="alternate" href="http://bshadow.pixnet.net/blog/post/23520650"/>
    <summary><![CDATA[
FadeToBlack是一套非常棒的影片／圖片編輯工具，它有非常多的濾鏡提供使用者套用，雖說它的濾鏡效果比起會聲會影這類的軟體陽春許多，但由於程式很小，執行起來較不耗系統資源，一般來說大家都是使用它來將影片轉正（詳細教學可以看撇步王）。
比較可惜的是它並不是免費的，只提供21天的試用版，而且目前還沒有中文語系檔，所以我就順手翻譯了一下。由於裡面有一些比較艱深難懂的專有名詞我不會翻，目前大概只翻了八成左右，但相信已經夠用了，因為剩下的都只是一些錯誤訊息的英文罷了。
中文化語系
解壓縮檔案後，將cht資料夾放到languages下就可以了。]]></summary>
    <content type="html"><![CDATA[<p><img title="f2b.png" src="http://pic.pimg.tw/bshadow/49cf14409c7cd.png" border="0" alt="f2b.png" width="405" height="285" /></p>
<p class="first">FadeToBlack是一套非常棒的影片／圖片編輯工具，它有非常多的濾鏡提供使用者套用，雖說它的濾鏡效果比起會聲會影這類的軟體陽春許多，但由於程式很小，執行起來較不耗系統資源，一般來說大家都是使用它來將影片轉正（詳細教學可以看<a href="http://www.peboking.com/modules/booklists/viewcat.php?cid=81" target="_blank">撇步王</a>）。</p>
<p>比較可惜的是它並不是免費的，只提供21天的試用版，而且目前還沒有中文語系檔，所以我就順手翻譯了一下。由於裡面有一些比較艱深難懂的專有名詞我不會翻，目前大概只翻了八成左右，但相信已經夠用了，因為剩下的都只是一些錯誤訊息的英文罷了。</p>
<p><a href="http://webhd.xuite.net/_oops/jimsuan/ljp" target="_blank">中文化語系</a></p>
<p>解壓縮檔案後，將cht資料夾放到languages下就可以了。</p>  <div class="more"><a href="http://bshadow.pixnet.net/blog/post/23520650">(Read More...)</a></div>]]></content>
    <category term="※中文化"/>
    <wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bshadow.pixnet.net/blog/post/23520650#comments</wfw:comment>
  </entry>
  <entry xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <id>http://bshadow.pixnet.net/blog/post/23506854</id>
    <title><![CDATA[發票對獎程式 - 98年1月、2月]]></title>
    <updated>2009-03-27T07:26:30+08:00</updated>
    <link rel="alternate" href="http://bshadow.pixnet.net/blog/post/23506854"/>
    <summary><![CDATA[因為忘了25號發票號碼開了，所以拖到現在才更新，Sorry～ 發票對獎程式 - 98年1月、2月　＞＞　請點此進入]]></summary>
    <content type="html"><![CDATA[<p class="first">因為忘了25號發票號碼開了，所以拖到現在才更新，Sorry～</p> <p>發票對獎程式 - 98年1月、2月　＞＞　<a href="http://go2.tw/r9812" target="_blank">請點此進入</a></p><br />  <div class="more"><a href="http://bshadow.pixnet.net/blog/post/23506854">(Read More...)</a></div>]]></content>
    <category term="※程式作品"/>
    <wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bshadow.pixnet.net/blog/post/23506854#comments</wfw:comment>
  </entry>
  <entry xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <id>http://bshadow.pixnet.net/blog/post/23498961</id>
    <title><![CDATA[軟體｜用 Thunderbird 接收 RSS Feed]]></title>
    <updated>2009-03-26T03:20:37+08:00</updated>
    <link rel="alternate" href="http://bshadow.pixnet.net/blog/post/23498961"/>
    <summary><![CDATA[原本站長都是使用Google Reader來接受網友們的RSS Feed，但使用線上RSS Reader一直以來都有一個問題，那就是如果你忘了登出無名帳號，那你在用Google Reader時，你的瀏覽紀錄就會被所有在無名上的朋友紀錄下來。 還蠻讓人困擾的，一方面是有時候你並不是那麼關心那個不熟的朋友，純粹只是懶了點，才會用Google Reader來自動抓取每個人的網誌更新，但你卻很有可能因此被這個不熟的朋友誤以為你怎麼那麼變態，每天都在關心他的網誌打了什麼。另一方面則是，可能對方是你非常要好的朋友，但人總是會有惰性的嘛…。不見得好友的每一篇網誌都會看，但當你的好友在觀看瀏覽紀錄時發現你每天都來，很自然地就誤以為每一篇都有看了。結果不是在聊天的時候，他什麼事都不跟你說，要不然就是聊到某一件事他也不說清楚，因為他以為你都知道。又或是，他可能講某件事講到一半就問你：「咦～你昨天不是有看我的網誌，你應該知道啊！」 這個時候場面就很尷尬了。 &nbsp; 不過其實這也不是什麼大問題，要解決這個問題主要有三個方法： ]]></summary>
    <content type="html"><![CDATA[<p class="first">原本站長都是使用Google Reader來接受網友們的RSS Feed，但使用線上RSS Reader一直以來都有一個問題，那就是<strong>如果你忘了登出無名帳號，那你在用Google Reader時，你的瀏覽紀錄就會被所有在無名上的朋友紀錄下來。</strong></p> <p>還蠻讓人困擾的，一方面是有時候你並不是那麼關心那個不熟的朋友，純粹只是懶了點，才會用Google Reader來自動抓取每個人的網誌更新，但你卻很有可能因此被這個不熟的朋友誤以為你怎麼那麼變態，每天都在關心他的網誌打了什麼。另一方面則是，可能對方是你非常要好的朋友，但人總是會有惰性的嘛…。不見得好友的每一篇網誌都會看，但當你的好友在觀看瀏覽紀錄時發現你每天都來，很自然地就誤以為每一篇都有看了。結果不是在聊天的時候，他什麼事都不跟你說，要不然就是聊到某一件事他也不說清楚，因為<strong>他以為</strong>你都知道。又或是，他可能講某件事講到一半就問你：「咦～你昨天不是有看我的網誌，你應該知道啊！」</p> <p>這個時候場面就很尷尬了。</p> <p>&nbsp;</p> <p>不過其實這也不是什麼大問題，要解決這個問題主要有三個方法： </p>  <div class="more"><a href="http://bshadow.pixnet.net/blog/post/23498961">(Read More...)</a></div>]]></content>
    <category term="※軟體應用"/>
    <wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bshadow.pixnet.net/blog/post/23498961#comments</wfw:comment>
  </entry>
  <entry xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <id>http://bshadow.pixnet.net/blog/post/23462131</id>
    <title><![CDATA[軟體｜使用Exifer批次刪除Exif資料]]></title>
    <updated>2009-03-21T11:47:17+08:00</updated>
    <link rel="alternate" href="http://bshadow.pixnet.net/blog/post/23462131"/>
    <summary><![CDATA[喜歡拍照，但又不想曝漏自己的拍照技巧嗎？想把相片的Exif資訊刪除，又不想一張一張慢慢改嗎？那你一定要試試Exifer這個軟體，它可以修改相片的Exif資訊，還可以批次刪除Exif資訊。 &nbsp; &nbsp; 1. 打開軟體，選擇要更改的相簿資料夾。]]></summary>
    <content type="html"><![CDATA[<p class="first">喜歡拍照，但又不想曝漏自己的拍照技巧嗎？想把相片的Exif資訊刪除，又不想一張一張慢慢改嗎？那你一定要試試Exifer這個軟體，它可以修改相片的Exif資訊，還可以批次刪除Exif資訊。</p> <p class="first">&nbsp;</p> <p><strong><font size="6"></font></strong>&nbsp;</p> <p><strong><font size="6">1.</font></strong></p> <p>打開軟體，選擇要更改的相簿資料夾。</p>  <div class="more"><a href="http://bshadow.pixnet.net/blog/post/23462131">(Read More...)</a></div>]]></content>
    <category term="※軟體應用"/>
    <wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bshadow.pixnet.net/blog/post/23462131#comments</wfw:comment>
  </entry>
  <entry xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <id>http://bshadow.pixnet.net/blog/post/23455921</id>
    <title><![CDATA[軟體｜IE8來了！微軟推出新版瀏覽器]]></title>
    <updated>2009-03-20T20:47:54+08:00</updated>
    <link rel="alternate" href="http://bshadow.pixnet.net/blog/post/23455921"/>
    <summary><![CDATA[微軟在19日晚間正式發表了IE8瀏覽器，強調功能更強大、保密功能更加完善，詳細新聞可以看這裡。 IE8可以在微軟的官方網站下載。 IE8在安裝的過程中會幫你偵測電腦中是否有惡意軟體： IE8在讀取網頁上感覺比IE7快了很多，並支援了原本不支援的:before跟:after寫法。  ]]></summary>
    <content type="html"><![CDATA[<p class="first">微軟在19日晚間正式發表了IE8瀏覽器，強調功能更強大、保密功能更加完善，詳細新聞可以看<a href="http://mag.udn.com/mag/digital/storypage.jsp?f_MAIN_ID=322&amp;f_SUB_ID=2949&amp;f_ART_ID=185271" target="_blank">這裡</a>。</p> <p>IE8可以在微軟的<a href="http://www.microsoft.com/taiwan/windows/internet-explorer/default.aspx" target="_blank">官方網站</a>下載。</p> <p><strong>IE8在安裝的過程中會幫你偵測電腦中是否有惡意軟體：</strong><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="" border="0" alt="" src="http://pic.pimg.tw/bshadow/49c390756fef0.png" width="625" height="438"></p> <p>IE8在讀取網頁上感覺比IE7快了很多，並支援了原本不支援的:before跟:after寫法。</p> <p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="" border="0" alt="" src="http://pic.pimg.tw/bshadow/49c3950246a21.png" width="521" height="205"> </p>  <div class="more"><a href="http://bshadow.pixnet.net/blog/post/23455921">(Read More...)</a></div>]]></content>
    <category term="※網際網路"/>
    <wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bshadow.pixnet.net/blog/post/23455921#comments</wfw:comment>
  </entry>
  <entry xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <id>http://bshadow.pixnet.net/blog/post/23432790</id>
    <title><![CDATA[影片｜我要打十個！]]></title>
    <updated>2009-03-17T23:55:00+08:00</updated>
    <link rel="alternate" href="http://bshadow.pixnet.net/blog/post/23432790"/>
    <summary><![CDATA[我要打十個正夯，果然被改成KUSO版惡搞了：]]></summary>
    <content type="html"><![CDATA[<p><strong>我要打十個正夯</strong>，果然被改成KUSO版惡搞了：</p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/WoRiLqHKL9E&amp;hl=zh_TW&amp;fs=1&amp;color1=0x234900&amp;color2=0x4e9e00"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/WoRiLqHKL9E&amp;hl=zh_TW&amp;fs=1&amp;color1=0x234900&amp;color2=0x4e9e00" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object><br />  <div class="more"><a href="http://bshadow.pixnet.net/blog/post/23432790">(Read More...)</a></div>]]></content>
    <category term="※好笑的"/>
    <wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bshadow.pixnet.net/blog/post/23432790#comments</wfw:comment>
  </entry>
  <entry xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <id>http://bshadow.pixnet.net/blog/post/23432341</id>
    <title><![CDATA[網路｜YouTube的logo變成綠色的了]]></title>
    <updated>2009-03-17T23:19:45+08:00</updated>
    <link rel="alternate" href="http://bshadow.pixnet.net/blog/post/23432341"/>
    <summary><![CDATA[  今天（3/17）有上YouTube的人或許都發現了，YouTube悄悄地把logo換成了綠色。官方沒有任何說明，查了wiki百科後得知大概是因為聖派屈克節吧？聖派屈克節是愛爾蘭人紀念愛爾蘭守護神聖派屈克的節日，至今已有1500多年歷史。 從1962年開始，每年芝加哥河都會被食色素染成綠色，作為慶祝聖派屈克節的一項主要內容，每年都有數十萬芝加哥市民和遊客聚在河兩岸觀看「染綠」河水的活動。根據wiki上的資料所示，我想YouTube把logo改成綠色的由來，應該就是要學芝加哥河吧。 ]]></summary>
    <content type="html"><![CDATA[<p><img title="" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; margin-left: 0px; margin-right: 0px; border-right-width: 0px" height="104" alt="" src="http://pic.pimg.tw/bshadow/49bfbf89a80dd.png" width="244" border="0"> </p> <p class="first">今天（3/17）有上YouTube的人或許都發現了，YouTube悄悄地把logo換成了綠色。官方沒有任何說明，查了wiki百科後得知大概是因為<a href="http://zh.wikipedia.org/w/index.php?title=%E5%9C%A3%E5%B8%95%E7%89%B9%E9%87%8C%E5%85%8B%E8%8A%82&amp;variant=zh-tw" target="_blank">聖派屈克節</a>吧？聖派屈克節是愛爾蘭人紀念愛爾蘭守護神聖派屈克的節日，至今已有1500多年歷史。</p> <p>從1962年開始，每年芝加哥河都會被食色素染成綠色，作為慶祝聖派屈克節的一項主要內容，每年都有數十萬芝加哥市民和遊客聚在河兩岸觀看「染綠」河水的活動。根據wiki上的資料所示，我想YouTube把logo改成綠色的由來，應該就是要學芝加哥河吧。</p> <p><img title="" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="559" alt="" src="http://pic.pimg.tw/bshadow/49bfbf908cd76.png" width="326" border="0"></p><br />  <div class="more"><a href="http://bshadow.pixnet.net/blog/post/23432341">(Read More...)</a></div>]]></content>
    <category term="※網際網路"/>
    <wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bshadow.pixnet.net/blog/post/23432341#comments</wfw:comment>
  </entry>
  <entry xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <id>http://bshadow.pixnet.net/blog/post/23426019</id>
    <title><![CDATA[網頁｜HTML轉PDF]]></title>
    <updated>2009-03-17T04:24:08+08:00</updated>
    <link rel="alternate" href="http://bshadow.pixnet.net/blog/post/23426019"/>
    <summary><![CDATA[ 這是一個簡單的轉換網頁，透過它，你可以很快地將網頁轉換為PDF文件下載保存。你無需在電腦上安裝其它的轉換程序，它是免費的，也不用註冊！更棒的是，它還支援轉換中文。  網址：http://html-pdf-converter.com/cn/]]></summary>
    <content type="html"><![CDATA[<p><img title="logo" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="100" alt="logo" src="http://pic.pimg.tw/bshadow/49beb567982e0.png" width="306" border="0"></p> <p class="first">這是一個簡單的轉換網頁，透過它，你可以很快地將網頁轉換為PDF文件下載保存。你無需在電腦上安裝其它的轉換程序，它是免費的，也不用註冊！更棒的是，它還支援轉換中文。 </p> <p><strong>網址：</strong><a title="http://html-pdf-converter.com/cn/" href="http://html-pdf-converter.com/cn/">http://html-pdf-converter.com/cn/</a></p><br />  <div class="more"><a href="http://bshadow.pixnet.net/blog/post/23426019">(Read More...)</a></div>]]></content>
    <category term="※網際網路"/>
    <wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bshadow.pixnet.net/blog/post/23426019#comments</wfw:comment>
  </entry>
  <entry xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <id>http://bshadow.pixnet.net/blog/post/23425480</id>
    <title><![CDATA[推薦｜Trojan Remover惡意程式掃描工具]]></title>
    <updated>2009-03-17T01:13:48+08:00</updated>
    <link rel="alternate" href="http://bshadow.pixnet.net/blog/post/23425480"/>
    <summary><![CDATA[Trojan Remover是一個惡意程式掃描工具，這個專門偵測木馬和自動修復系統文件的工具軟體能夠有效地偵測出大部份的Trojan Horses, Internet Worms, Adware/Spyware。當你使用防毒軟體無法抓出惡意程式時，可以試試這個移除工具。它可以在Windows 98/ME/2000/XP/Vista下執行，並且支援64位元的Windows系統。  &nbsp; ↑圖片為Trojan Remover所有掃描的項目，比較特別的是它會掃描正在執行的程序（Running Processes）要是你懷疑有奇怪的程式在執行，可以用Trojan Remover掃掃看。 Trojan Remover能夠自動修復系統檔案與註冊表，節省使用者查詢更改這些設定的方法。Trojan Remover還會偵測被惡意修改過後的系統檔案。並且在開機時掃描所有在系統啟動時加載的廣告軟件，間諜軟件，木馬程式，網路蠕蟲和其他惡意軟件。  &nbsp; Version 6.7.6 的新功能 Added new heuristic detection routine to check for multiply-loading DLL files.]]></summary>
    <content type="html"><![CDATA[<p class="first">Trojan Remover是一個惡意程式掃描工具，這個專門偵測木馬和自動修復系統文件的工具軟體能夠有效地偵測出大部份的Trojan Horses, Internet Worms, Adware/Spyware。當你使用防毒軟體無法抓出惡意程式時，可以試試這個移除工具。它可以在Windows 98/ME/2000/XP/Vista下執行，並且支援64位元的Windows系統。  <p>&nbsp;<img title="" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="471" alt="" src="http://pic.pimg.tw/bshadow/49be88cc510fb.png" width="564" border="0"> <br /><strong><font color="#0000ff">↑圖片為Trojan Remover所有掃描的項目，比較特別的是它會掃描正在執行的程序（Running Processes）要是你懷疑有奇怪的程式在執行，可以用Trojan Remover掃掃看。</font></strong></p> <p>Trojan Remover能夠自動修復系統檔案與註冊表，節省使用者查詢更改這些設定的方法。Trojan Remover還會偵測被惡意修改過後的系統檔案。並且在開機時掃描所有在系統啟動時加載的廣告軟件，間諜軟件，木馬程式，網路蠕蟲和其他惡意軟件。  <p><strong></strong>&nbsp;</p> <p><strong>Version 6.7.6 的新功能</strong></p> <p>Added new heuristic detection routine to check for multiply-loading DLL files.<br />  <div class="more"><a href="http://bshadow.pixnet.net/blog/post/23425480">(Read More...)</a></div>]]></content>
    <category term="※電腦相關"/>
    <wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://bshadow.pixnet.net/blog/post/23425480#comments</wfw:comment>
  </entry>
</feed>
