<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.1" -->
<rss version="0.92">
<channel>
	<title>NANI</title>
	<link>http://nani.cc</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sun, 05 Sep 2010 01:44:20 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>關於 JSON 的新物件</title>
		<description><![CDATA[請參考 Wishare 的 Handler/HistoryPush.aspx.vb
]]></description>
		<link>http://nani.cc/?p=212</link>
			</item>
	<item>
		<title>Windows 2008 AD Domain 取消密碼複雜性</title>
		<description><![CDATA[Open Group Policy Management Console (Start / Run / GPMC.MSC), open the Domain, and right-click and Edit the “Default Domain Policy”. Then dig into the “Computer Configuration”, “Windows Settings”, “Security Settings”, “Account Policies”, and modify the password complexity requirements setting.
Ref: http://yhlin.tw/?p=69
]]></description>
		<link>http://nani.cc/?p=211</link>
			</item>
	<item>
		<title>SQL Server 2008 的 Join 方式 (當 View 的查詢變的很慢時)</title>
		<description><![CDATA[在 SQL Server 2008 中, 對 View 之主要 Table 的欄位欄詢時, 該欄位有建立 Index, 但似乎沒有使用到. 因為資料量很大, 所以要花很多時間, 尤某是有用到 Top 時.
Solution:
把所有和該 Table 相關的 Join 改為 Left Join 或 Right Join, 以告知 SQL Server 該 Table 所有的資料都會被選出來, 這樣 SQL 就會使用該 Table 的 Index 了.
]]></description>
		<link>http://nani.cc/?p=209</link>
			</item>
	<item>
		<title>SQL 2008 Maintenance Planes 無法執行</title>
		<description><![CDATA[當執行時出現 sqlserver error 15404 could not obtain information about windows nt group user &#8230; 的訊息
1. 修改 Maintenance Plan 的 Connection(上方有一個 Manage Connections)
2. 修改 SQL Server Agent 中的相對應的 Job (我是改成 sa)
]]></description>
		<link>http://nani.cc/?p=207</link>
			</item>
	<item>
		<title>IIS 開啟 Gzip 時, IE 下載 zip 檔會有問題</title>
		<description><![CDATA[真是一個鳥問題, 要把 .ZIP 的 MIME Type 由 application/x-zip-compressed 改為 application/octet-stream 才行
Click Start, point to Administrative Tools, and then click Internet Information Services (IIS) Manager.
Right-click the server (local computer) tree, where server (local computer) is the name of your IIS server, and then click Properties.
Click MIME Types.
Scroll down the registered MIME type list to find the .zip entry.
Click the .zip [...]]]></description>
		<link>http://nani.cc/?p=205</link>
			</item>
	<item>
		<title>在 Windows 2003 及 Windows 2008 (x64) 上面安裝 AWstats</title>
		<description><![CDATA[安裝版本 awstats-6.95 + ActivePerl-5.10.1.1007

安裝 ActivePerl 的版本 (目前要安裝 x86 的版本, 因為 x64 不支援 isapi)

Windows 2008  (x64)

 Install ActivePerl from http://www.activestate.com/activeperl/. At this time, there is a link to version 5.10 for Windows (x86) on this page. This link downloads an MSI installer to your machine which you can run.
 If you are running the 64 bit [...]]]></description>
		<link>http://nani.cc/?p=197</link>
			</item>
	<item>
		<title>&lt;img&gt;圖片標籤接不起來的問題</title>
		<description><![CDATA[<div div style=" font-size:12px; font-family:Tahoma, Geneva, sans-serif;padding:20px;margin:10px; background-color:#000; color:#FFF">原因：&#60;img&#62;標籤在&#34;原始碼&#34;的<em style="font-size:18px;">&#34;空白&#34;</em>視為像 &#38;nbsp; 的空格，產生區塊，造成圖片有間隔。為了應應各版本，盡量用CSS取代或&#60;img&#62;標籤要接在一起，前後不要有空隔/斷航，才不會遇到這種鳥問題。</div>]]></description>
		<link>http://nani.cc/?p=183</link>
			</item>
	<item>
		<title>臺灣行政區下拉式選單( jQuery base )</title>
		<description><![CDATA[使用jQuery 動態產生 臺灣行政區下拉式選單]]></description>
		<link>http://nani.cc/?p=161</link>
			</item>
	<item>
		<title>Javascript 字串的擴充 functions</title>
		<description><![CDATA[一些 Javascript 的 String 擴充功能:
Substr
myVar = substr2(myVar, x, y); //Your function
myVar = myVar.substr(x, y); //built-in function
Trim
String.prototype.trim = function(){return
(this.replace(/^[\s\xA0]+/, &#8220;&#8221;).replace(/[\s\xA0]+$/, &#8220;&#8221;))}
startsWith
String.prototype.startsWith = function(str)
{return (this.match(&#8220;^&#8221;+str)==str)}
 endsWith
String.prototype.endsWith = function(str)
{return (this.match(str+&#8221;$&#8221;)==str)} 
Examples:
var myStr = “  Earth is a beautiful planet  ”;
var myStr2 = myStr.trim();  
//==“Earth is a beautiful planet”;
if (myStr2.startsWith(“Earth”)) // returns TRUE
if (myStr2.endsWith(“planet”)) // returns TRUE
if (myStr.startsWith(“Earth”))
// returns FALSE due to the leading spaces…
if [...]]]></description>
		<link>http://nani.cc/?p=154</link>
			</item>
	<item>
		<title>Simple Image Gallery (jQuery Base)</title>
		<description><![CDATA[簡單的 Image Gallary 
<div id="gallary">]]></description>
		<link>http://nani.cc/?p=142</link>
			</item>
</channel>
</rss>
