<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" 
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>南海藝廊 Nanhai Gallery-新好南海／NNN</title>
<link>http://blog.roodo.com/nanhai/archives/cat_245057.html</link>
<description>



var isIE  = (navigator.appVersion.indexOf(&quot;MSIE&quot;) != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf(&quot;win&quot;) != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf(&quot;Opera&quot;) != -1) ? true : false;

function ControlVersion()
{
	var version;
	var axo;
	var e;

	// NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn&#039;t in the registry

	try {
		// version will be set for 7.X or greater players
		axo = new ActiveXObject(&quot;ShockwaveFlash.ShockwaveFlash.7&quot;);
		version = axo.GetVariable(&quot;$version&quot;);
	} catch (e) {
	}

	if (!version)
	{
		try {
			// version will be set for 6.X players only
			axo = new ActiveXObject(&quot;ShockwaveFlash.ShockwaveFlash.6&quot;);
			
			// installed player is some revision of 6.0
			// GetVariable(&quot;$version&quot;) crashes for versions 6.0.22 through 6.0.29,
			// so we have to be careful. 
			
			// default to the first public version
			version = &quot;WIN 6,0,21,0&quot;;

			// throws if AllowScripAccess does not exist (introduced in 6.0r47)		
			axo.AllowScriptAccess = &quot;always&quot;;

			// safe to call for 6.0r47 or greater
			version = axo.GetVariable(&quot;$version&quot;);

		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 4.X or 5.X player
			axo = new ActiveXObject(&quot;ShockwaveFlash.ShockwaveFlash.3&quot;);
			version = axo.GetVariable(&quot;$version&quot;);
		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 3.X player
			axo = new ActiveXObject(&quot;ShockwaveFlash.ShockwaveFlash.3&quot;);
			version = &quot;WIN 3,0,18,0&quot;;
		} catch (e) {
		}
	}

	if (!version)
	{
		try {
			// version will be set for 2.X player
			axo = new ActiveXObject(&quot;ShockwaveFlash.ShockwaveFlash&quot;);
			version = &quot;WIN 2,0,0,11&quot;;
		} catch (e) {
			version = -1;
		}
	}
	
	return version;
}

// JavaScript helper required to detect Flash Player PlugIn version information
function GetSwfVer(){
	// NS/Opera version &gt;= 3 check for Flash plugin in plugin array
	var flashVer = -1;
	
	if (navigator.plugins != null &amp;&amp; navigator.plugins.length &gt; 0) {
		if (navigator.plugins[&quot;Shockwave Flash 2.0&quot;] || navigator.plugins[&quot;Shockwave Flash&quot;]) {
			var swVer2 = navigator.plugins[&quot;Shockwave Flash 2.0&quot;] ? &quot; 2.0&quot; : &quot;&quot;;
			var flashDescription = navigator.plugins[&quot;Shockwave Flash&quot; + swVer2].description;
			var descArray = flashDescription.split(&quot; &quot;);
			var tempArrayMajor = descArray[2].split(&quot;.&quot;);			
			var versionMajor = tempArrayMajor[0];
			var versionMinor = tempArrayMajor[1];
			var versionRevision = descArray[3];
			if (versionRevision == &quot;&quot;) {
				versionRevision = descArray[4];
			}
			if (versionRevision[0] == &quot;d&quot;) {
				versionRevision = versionRevision.substring(1);
			} else if (versionRevision[0] == &quot;r&quot;) {
				versionRevision = versionRevision.substring(1);
				if (versionRevision.indexOf(&quot;d&quot;) &gt; 0) {
					versionRevision = versionRevision.substring(0, versionRevision.indexOf(&quot;d&quot;));
				}
			}
			var flashVer = versionMajor + &quot;.&quot; + versionMinor + &quot;.&quot; + versionRevision;
		}
	}
	// MSN/WebTV 2.6 supports Flash 4
	else if (navigator.userAgent.toLowerCase().indexOf(&quot;webtv/2.6&quot;) != -1) flashVer = 4;
	// WebTV 2.5 supports Flash 3
	else if (navigator.userAgent.toLowerCase().indexOf(&quot;webtv/2.5&quot;) != -1) flashVer = 3;
	// older WebTV supports Flash 2
	else if (navigator.userAgent.toLowerCase().indexOf(&quot;webtv&quot;) != -1) flashVer = 2;
	else if ( isIE &amp;&amp; isWin &amp;&amp; !isOpera ) {
		flashVer = ControlVersion();
	}	
	return flashVer;
}

// When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
{
	versionStr = GetSwfVer();
	if (versionStr == -1 ) {
		return false;
	} else if (versionStr != 0) {
		if(isIE &amp;&amp; isWin &amp;&amp; !isOpera) {
			// Given &quot;WIN 2,0,0,11&quot;
			tempArray         = versionStr.split(&quot; &quot;); 	// [&quot;WIN&quot;, &quot;2,0,0,11&quot;]
			tempString        = tempArray[1];			// &quot;2,0,0,11&quot;
			versionArray      = tempString.split(&quot;,&quot;);	// [&#039;2&#039;, &#039;0&#039;, &#039;0&#039;, &#039;11&#039;]
		} else {
			versionArray      = versionStr.split(&quot;.&quot;);
		}
		var versionMajor      = versionArray[0];
		var versionMinor      = versionArray[1];
		var versionRevision   = versionArray[2];

        	// is the major.revision &gt;= requested major.revision AND the minor version &gt;= requested minor
		if (versionMajor &gt; parseFloat(reqMajorVer)) {
			return true;
		} else if (versionMajor == parseFloat(reqMajorVer)) {
			if (versionMinor &gt; parseFloat(reqMinorVer))
				return true;
			else if (versionMinor == parseFloat(reqMinorVer)) {
				if (versionRevision &gt;= parseFloat(reqRevision))
					return true;
			}
		}
		return false;
	}
}

function AC_AddExtension(src, ext)
{
  if (src.indexOf(&#039;?&#039;) != -1)
    return src.replace(/\?/, ext+&#039;?&#039;); 
  else
    return src + ext;
}

function AC_Generateobj(objAttrs, params, embedAttrs) 
{ 
  var str = &#039;&#039;;
  if (isIE &amp;&amp; isWin &amp;&amp; !isOpera)
  {
    str += &#039;&#039;;
    for (var i in params)
    {
      str += &#039; &#039;;
    }
    str += &#039;&#039;;
  }
  else
  {
    str += &#039; &#039;;
  }

  document.write(str);
}

function AC_FL_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, &quot;.swf&quot;, &quot;movie&quot;, &quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot;
     , &quot;application/x-shockwave-flash&quot;
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_SW_RunContent(){
  var ret = 
    AC_GetArgs
    (  arguments, &quot;.dcr&quot;, &quot;src&quot;, &quot;clsid:166B1BCA-3F9C-11CF-8075-444553540000&quot;
     , null
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
  var ret = new Object();
  ret.embedAttrs = new Object();
  ret.params = new Object();
  ret.objAttrs = new Object();
  for (var i=0; i &lt; args.length; i=i+2){
    var currArg = args[i].toLowerCase();    

    switch (currArg){	
      case &quot;classid&quot;:
        break;
      case &quot;pluginspage&quot;:
        ret.embedAttrs[args[i]] = args[i+1];
        break;
      case &quot;src&quot;:
      case &quot;movie&quot;:	
        args[i+1] = AC_AddExtension(args[i+1], ext);
        ret.embedAttrs[&quot;src&quot;] = args[i+1];
        ret.params[srcParamName] = args[i+1];
        break;
      case &quot;onafterupdate&quot;:
      case &quot;onbeforeupdate&quot;:
      case &quot;onblur&quot;:
      case &quot;oncellchange&quot;:
      case &quot;onclick&quot;:
      case &quot;ondblClick&quot;:
      case &quot;ondrag&quot;:
      case &quot;ondragend&quot;:
      case &quot;ondragenter&quot;:
      case &quot;ondragleave&quot;:
      case &quot;ondragover&quot;:
      case &quot;ondrop&quot;:
      case &quot;onfinish&quot;:
      case &quot;onfocus&quot;:
      case &quot;onhelp&quot;:
      case &quot;onmousedown&quot;:
      case &quot;onmouseup&quot;:
      case &quot;onmouseover&quot;:
      case &quot;onmousemove&quot;:
      case &quot;onmouseout&quot;:
      case &quot;onkeypress&quot;:
      case &quot;onkeydown&quot;:
      case &quot;onkeyup&quot;:
      case &quot;onload&quot;:
      case &quot;onlosecapture&quot;:
      case &quot;onpropertychange&quot;:
      case &quot;onreadystatechange&quot;:
      case &quot;onrowsdelete&quot;:
      case &quot;onrowenter&quot;:
      case &quot;onrowexit&quot;:
      case &quot;onrowsinserted&quot;:
      case &quot;onstart&quot;:
      case &quot;onscroll&quot;:
      case &quot;onbeforeeditfocus&quot;:
      case &quot;onactivate&quot;:
      case &quot;onbeforedeactivate&quot;:
      case &quot;ondeactivate&quot;:
      case &quot;type&quot;:
      case &quot;codebase&quot;:
      case &quot;id&quot;:
        ret.objAttrs[args[i]] = args[i+1];
        break;
      case &quot;width&quot;:
      case &quot;height&quot;:
      case &quot;align&quot;:
      case &quot;vspace&quot;: 
      case &quot;hspace&quot;:
      case &quot;class&quot;:
      case &quot;title&quot;:
      case &quot;accesskey&quot;:
      case &quot;name&quot;:
      case &quot;tabindex&quot;:
        ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
        break;
      default:
        ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
    }
  }
  ret.objAttrs[&quot;classid&quot;] = classid;
  if (mimeType) ret.embedAttrs[&quot;type&quot;] = mimeType;
  return ret;
}
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&amp;&amp;i0&amp;&amp;parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&amp;&amp;d.all) x=d.all[n]; for (i=0;!x&amp;&amp;i</description>
<language>zh-tw</language>
<generator>Roodo Blog System</generator>
<copyright>All Rights Reserved</copyright>
<atom:link href="http://blog.roodo.com/nanhai/archives/cat_245057.xml" rel="self" type="application/rss+xml" />
<item>
	<title>（南海藝廊）簡介</title>
	<description><![CDATA[
			南海藝廊 (Nanhai Gallery) 的前身是國立臺北教育大學校長宿舍，為一棟擁有舒適庭院的兩層樓建築，位於台北市牯嶺街街尾，緊鄰總統官邸，交通便捷、鬧中取靜。藝廊週邊人文薈萃，包括牯嶺街小劇場(行為藝術與戲劇表演)、楊英風美術館、工藝所臺北展示中心、太平洋文教藝術基金會、文化總會、國立歷史博物館、台灣藝術教育館、郵政博物館、植物園、中正紀念堂、兩廳院等空間串連成網。
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="2">南海藝廊 (Nanhai Gallery) 的前身是國立臺北教育大學校長宿舍，為一棟擁有舒適庭院的兩層樓建築，位於台北市牯嶺街街尾，緊鄰總統官邸，交通便捷、鬧中取靜。藝廊週邊人文薈萃，包括牯嶺街小劇場(行為藝術與戲劇表演)、楊英風美術館、工藝所臺北展示中心、太平洋文教藝術基金會、文化總會、國立歷史博物館、台灣藝術教育館、郵政博物館、植物園、中正紀念堂、兩廳院等空間串連成網。</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8965525.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8965525.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8965525.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Sat, 03 Jan 2009 03:03:03 +0800</pubDate>
</item>
<item>
	<title>《連橫合縱．同流膜》簡介</title>
	<description><![CDATA[
			南海同流膜，邀您來攪和！南海藝廊從九十六年四月起至今每月策劃《南海同流膜》系列活動，以小型精緻展演為主軸，持續推廣不同領域優秀的藝文團體。在藝廊團隊用心經營之下迴響熱烈，不但有數場小型的國際交流演出，參與的學生團體背景，更已超過三十餘藝術相關系所，有別於台北藝文空間，為一另類的「藝術教育實驗場」。
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><font size="2">南海同流膜，邀您來攪和！<br /></font><font size="2">南海藝廊從九十六年四月起至今每月策劃《南海同流膜》系列活動，以小型精緻展演為主軸，持續推廣不同領域優秀的藝文團體。在藝廊團隊用心經營之下迴響熱烈，不但有數場小型的國際交流演出，參與的學生團體背景，更已超過三十餘藝術相關系所，有別於台北藝文空間，為一另類的「藝術教育實驗場」。</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8965587.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8965587.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8965587.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Fri, 02 Jan 2009 02:02:02 +0800</pubDate>
</item>
<item>
	<title>地圖與圖像</title>
	<description><![CDATA[
			南海地圖與圖像歡迎下載使用
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="2"><div class="pict"><a href="http://blog.roodo.com/nanhai/d1bfd166.jpg" target="_blank"><img class="pict" src="http://blog.roodo.com/nanhai/d1bfd166_s.jpg" border="0" alt="logo-方形.jpg" hspace="5" width="160" height="184" align="left" /></a></div><p><br /><br /><br />南海地圖與圖像<br />歡迎下載使用</p></font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/5471357.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/5471357.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/5471357.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Wed, 12 Nov 2008 11:11:11 +0800</pubDate>
</item>
<item>
	<title>親朋好友</title>
	<description><![CDATA[
			親朋好友
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="6">親朋好友</font>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/8562253.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/8562253.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/8562253.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Tue, 11 Nov 2008 20:03:19 +0800</pubDate>
</item>
<item>
	<title>【連橫合縱◎同流膜】徵求志工</title>
	<description><![CDATA[
			Let's Nanhai!展演志工兩枚，贈送入場卷一大張！請洽：0921955269 盈方，或e-mail至vaec@tea.ntue.edu.tw&gt; 報名表格下載
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><font size="7"><font style="background-color: #ffffff" color="#333333">Let's Nanhai!<br /></font></font><font size="2"><font style="background-color: #ffffff"><font color="#000000"><font size="5"><br />展演志工兩枚，贈送入場卷一大張！</font><br />請洽：0921955269 盈方，或e-mail至</font></font></font><a href="mailto:vaec@tea.ntue.edu.tw"><font size="2" style="background-color: #ffffff" color="#000000">vaec@tea.ntue.edu.tw</font></a><br /><br /><font size="2">&gt; <a href="http://blog.roodo.com/nanhai/7b4e4bd7.doc" target="_blank" title="連橫合縱同流膜志工報名表格">報名表格下載</a></font></p>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3721383.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3721383.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Wed, 27 Feb 2008 18:03:46 +0800</pubDate>
</item>
<item>
	<title>展覽徵件2008年3月至7月</title>
	<description><![CDATA[
			
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><font size="4"><img src="http://blog.roodo.com/nanhai/35650f7a.jpg" border="0" alt="Exhibitions Request" width="290" height="100" /><img style="width: 780px; height: 12px" src="http://blog.roodo.com/nanhai/6e6d027b.gif" alt="" width="780" height="12" /></font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/3698807.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3698807.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3698807.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Mon, 25 Feb 2008 23:01:40 +0800</pubDate>
</item>
<item>
	<title>我們在找新主人～（感謝大家～小貓們都找到主人了！）</title>
	<description><![CDATA[
			meow~你想要跟我們玩嗎？跟樓上工作人員詢問一下，我們就可以出來跟你玩喔！如果你喜歡我，請你帶我回家！
		]]>
	</description>
	<content:encoded><![CDATA[
			<div class="pict"><a href="http://blog.roodo.com/nanhai/1b90894a.jpg" target="_blank"><img style="width: 160px; height: 120px" class="pict" src="http://blog.roodo.com/nanhai/1b90894a_s.jpg" border="0" alt="cat-1" title="cat-1" hspace="10" width="160" height="120" align="left" /></a><font size="7"><em><font color="#ff99cc">meow~<br /></font></em><font size="2"><br />你想要跟我們玩嗎？<br />跟樓上工作人員詢問一下，我們就可以出來跟你玩喔！<br />如果你喜歡我，請你帶我回家！</font><br /></font></div>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/3843211.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3843211.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3843211.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Tue, 03 Jul 2007 00:00:00 +0800</pubDate>
</item>
<item>
	<title>連橫合縱同流膜策展人Meta接受Taipei Times專訪新聞稿</title>
	<description><![CDATA[
			Mix it up in the membrane（Meta的名字被打錯了，應該是洪雅純，不過錯的比較好聽。）&nbsp;
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><font size="6"><a href="http://www.taipeitimes.com/News/feat/archives/2007/07/20/2003370531" title="Mixing Membrane">Mix it up in the membrane</a></font><font size="2"><br /><br />（Meta的名字被打錯了，應該是洪雅純，不過錯的比較好聽。）<br /><table border="0" width="760"><tbody><tr><td>&nbsp;</td></tr></tbody></table></font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/3847775.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3847775.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3847775.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Tue, 03 Jul 2007 00:00:00 +0800</pubDate>
</item>
<item>
	<title>南海在那裡？</title>
	<description><![CDATA[
			&nbsp;
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="left">&nbsp;</p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/3813907.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3813907.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3813907.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Sun, 01 Jul 2007 00:00:00 +0800</pubDate>
</item>
<item>
	<title>小果蠅&#039;s talk第二發也是最後一發</title>
	<description><![CDATA[
			&nbsp;按下繼續閱讀吧各位，有關大家的(或者大家的荷包)(好驚悚的一句話XD)
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center">&nbsp;</p><p align="center"><font size="2" color="#999999">按下繼續閱讀吧各位，有關大家的<font color="#333333">(或者大家的荷包)</font><font color="#999999">(</font>好驚悚的一句話XD)</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/3378127.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3378127.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3378127.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Thu, 31 May 2007 15:52:13 +0800</pubDate>
</item>
<item>
	<title>小果蠅&#039;s talk</title>
	<description><![CDATA[
			關於樂團的後續報導：之所以只有老八先和Johnny&amp;Eeyore，是因為之後我便開始忙牯嶺街書香市集了。真的是很對不起阿orz 所有的活動後續報導會在六月初活動結束後放上，感謝大家的支持︿︿關於金頭獎：設攤組在設攤辦法裡漏寫了很重要的一項重要事情：金頭獎之花襯衫票選人氣獎，必須帶上衣一件以及一個衣架，這是要用來黏貼人氣獎貼紙的喔!所以入選的攤位都帶一件襯衫或者T-shirt喔：）&nbsp;大概就是如此了，如果有任何不清楚或者是小果蠅遺漏的事，請告訴小果蠅喔～
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><font color="#333333">關於樂團的後續報導：</font><font size="2"><font color="#999999">之所以只有老八先和<font face="細明體">Johnny&amp;Eeyore，是因為之後我便開始忙牯嶺街書香市集了。真的是很對不起阿orz 所有的活動後續報導會在六月初活動結束後放上，感謝大家的支持︿︿</font></font></font></p><p><font face="細明體" color="#333333"><font color="#333333">關於金頭獎：</font><font size="2" color="#999999">設攤組在設攤辦法裡漏寫了很重要的一項重要事情：</font><font size="2" color="#999999">金頭獎之花襯衫票選人氣獎，必須帶上衣一件以及一個衣架，這是要用來黏貼人氣獎貼紙的喔!</font></font><font face="細明體" color="#333333"><font size="2" color="#999999">所以入選的攤位都帶一件襯衫或者T-shirt喔：）</font></font></p><p>&nbsp;</p><p><font face="細明體" size="2" color="#999999">大概就是如此了，如果有任何不清楚或者是小果蠅遺漏的事，請告訴小果蠅喔～</font></p>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3338143.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3338143.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Thu, 24 May 2007 15:22:48 +0800</pubDate>
</item>
<item>
	<title>【徵求】活動志工及網管</title>
	<description><![CDATA[
			活動表演徵志工，南海藝廊需要你 ! ! !
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center"><font color="#333333" size="4"><strong>活動表演徵志工，南海藝廊需要你 ! ! !</strong></font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2975291.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2975291.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2975291.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Mon, 09 Apr 2007 10:57:59 +0800</pubDate>
</item>
<item>
	<title>我是南海小果蠅</title>
	<description><![CDATA[
			HI～大家好 ^ ^我是新的網站管理人小凡，大家也有幫我取了小果蠅這個綽號‧‧‧所以叫我小凡或小果蠅都可以我的工作除了網頁基本的管理之外，像是市集活動、電子報製作、新的交換連結板、新的交流版製作，以及宣傳都是我的工作在交換連結和交流版成立之前，可以用回覆最新文章的方式，跟我說你想交流的資訊或連結!請大家多多指教 ^ ^容我來個ps.是說這篇好正式...我沒那麼serious的各位 ^ ^
		]]>
	</description>
	<content:encoded><![CDATA[
			<p>HI～大家好 ^ ^我是新的網站管理人小凡，大家也有幫我取了小果蠅這個綽號‧‧‧所以叫我小凡或小果蠅都可以</p><p>我的工作除了網頁基本的管理之外，像是市集活動、電子報製作、新的交換連結板、新的交流版製作，以及宣傳都是我的工作</p><p>在交換連結和交流版成立之前，可以用回覆最新文章的方式，跟我說你想交流的資訊或連結!</p><p>請大家多多指教 ^ ^</p><p /><p>容我來個ps.是說這篇好正式...我沒那麼serious的各位 ^ ^</p>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2771773.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2771773.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Mon, 26 Feb 2007 09:03:07 +0800</pubDate>
</item>
<item>
	<title>新年假期 閉館公告</title>
	<description><![CDATA[
			～南海藝廊過新年～ 閉館至二月二十八日 ～～祝   大家新年快樂
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center"><font style="BACKGROUND-COLOR: #f9f9f9">～南海藝廊過新年～ </font></p><p align="center"><font style="BACKGROUND-COLOR: #f9f9f9">閉館至二月二十八日 </font></p><p align="center"><font style="BACKGROUND-COLOR: #f9f9f9">～～</font></p><p align="center"><font style="BACKGROUND-COLOR: #f9f9f9">祝   大家新年快樂</font></p><p><font style="BACKGROUND-COLOR: #f9f9f9"></font></p><p><font style="BACKGROUND-COLOR: #f9f9f9"></font></p><p><font style="BACKGROUND-COLOR: #f9f9f9"></font></p>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2737385.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2737385.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Fri, 16 Feb 2007 18:26:21 +0800</pubDate>
</item>
<item>
	<title>NG留言板</title>
	<description><![CDATA[
			一天，南海PJ看著八月份南海海報說：喔！原來南海藝廊的縮寫是NG啊！小丁若有其事地彈著鋼琴，小美擦著指甲，小貓們剛吃完宵夜，那是接近凌晨的時候&hellip;
		]]>
	</description>
	<content:encoded><![CDATA[
			<font size="2">一天，南海PJ看著八月份南海海報說：喔！原來南海藝廊的縮寫是NG啊！<br />小丁若有其事地彈著鋼琴，小美擦著指甲，小貓們剛吃完宵夜，那是接近凌晨的時候&hellip;</font>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/3812111.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/3812111.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Sun, 07 Jan 2007 00:00:00 +0800</pubDate>
</item>
<item>
	<title>留言版</title>
	<description><![CDATA[
			由於寫出一個留言版已經超越小果蠅腦袋能夠負荷的量，所以決定用一篇文章當作留言版就用回覆文章的方式留下妳 /&nbsp;你想說的話喔!
		]]>
	</description>
	<content:encoded><![CDATA[
			<p>由於寫出一個留言版已經超越小果蠅腦袋能夠負荷的量，所以決定用一篇文章當作留言版</p><p>就用回覆文章的方式留下妳 /&nbsp;你想說的話喔!</p>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2942123.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2942123.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Thu, 04 Jan 2007 00:00:00 +0800</pubDate>
</item>
<item>
	<title>【告別】再見了，柚子。</title>
	<description><![CDATA[
			這是我最後一次更換BANNER。圖文：南海小果農
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><a title="Photo Sharing" href="http://www.flickr.com/photos/nanhai/254161886/"><img height="75" alt="莊軒與阿乖與南海院子的落葉" src="http://static.flickr.com/116/254161886_19c64a93c7_s.jpg" width="75" align="left" /></a><font size="2">這是我最後一次更換BANNER。</font></p><p align="right"><font size="2">圖文：南海小果農</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2203366.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2203366.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2203366.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Thu, 28 Sep 2006 00:01:05 +0800</pubDate>
</item>
<item>
	<title>【資訊】Google版南海藝廊地圖</title>
	<description><![CDATA[
			    以Google衛星視圖製作的南海藝廊地圖，希望各位不要再迷途了，小羔羊們。圖文：南海小果農
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><a title="Photo Sharing" href="http://www.flickr.com/photos/nanhai/250622650/"><img height="75" alt="南海藝廊地圖map1" src="http://static.flickr.com/105/250622650_ffcb2c8b0e_s.jpg" width="75" align="left" /></a>   <font size="2"> 以Google衛星視圖製作的南海藝廊地圖，希望各位不要再迷途了，小羔羊們。</font></p><p align="right"><font size="2">圖文：南海小果農</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2187227.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2187227.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2187227.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Sun, 24 Sep 2006 02:11:34 +0800</pubDate>
</item>
<item>
	<title>【BLOG】交換連結Exchange3</title>
	<description><![CDATA[
			歡迎大家跟新好南海交換連結!（第三集）
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center"><font size="2">歡迎大家跟新好南海交換連結!（第三集）</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2155334.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2155334.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2155334.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Sat, 16 Sep 2006 18:43:19 +0800</pubDate>
</item>
<item>
	<title>【誠徵】急需！新好南海的接班人</title>
	<description><![CDATA[
			誠 徵 管理新好南海的版主文：南海小果農
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center"><font size="2"><strong><font size="4">誠 徵</font> 管理新好南海的版主</strong></font></p><p align="right"><font size="2">文：南海小果農</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2144020.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2144020.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2144020.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Thu, 14 Sep 2006 01:13:50 +0800</pubDate>
</item>
<item>
	<title>【BLOG】2006.8.30今日BANNER</title>
	<description><![CDATA[
			不太愛撒嬌的CL。圖文：南海小果農【B後街南海】南海藝廊藏著什麼？ Backstreet Nanhai 
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><a title="Photo Sharing" href="http://www.flickr.com/photos/nanhai/229282190/"><img height="75" alt="0830新好南海BANNER" src="http://static.flickr.com/90/229282190_6e0e0e8e2d_s.jpg" width="75" align="left" /></a><font size="2">不太愛撒嬌的CL。</font></p><p align="right"><font size="1">圖文：南海小果農</font></p><br clear="all" /><br clear="all" /><blockquote><font size="2"><font color="#cccccc">【<a href="http://blog.roodo.com/nanhai/archives/cat_245057.html"><font color="#cccccc">B後街南海</font></a>】南海藝廊藏著什麼？ Backstreet Nanhai</font> </font></blockquote>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2086020.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2086020.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Thu, 31 Aug 2006 00:34:16 +0800</pubDate>
</item>
<item>
	<title>【BLOG】2006.8.28今日BANNER</title>
	<description><![CDATA[
			院子裡的土壤—有機層O1。圖文：南海小果農【B後街南海】南海藝廊藏著什麼？ Backstreet Nanhai 
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><a title="Photo Sharing" href="http://www.flickr.com/photos/nanhai/226193764/"><img height="75" alt="0828新好南海BANNER" src="http://static.flickr.com/74/226193764_e7d028079a_s.jpg" width="75" align="left" /></a><font size="2">院子裡的土壤—有機層O1。</font></p><p align="right"><font size="1">圖文：南海小果農</font></p><br clear="all" /><blockquote><font size="2"><font color="#cccccc">【<a href="http://blog.roodo.com/nanhai/archives/cat_245057.html"><font color="#cccccc">B後街南海</font></a>】南海藝廊藏著什麼？ Backstreet Nanhai</font> </font></blockquote>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2073259.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2073259.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Mon, 28 Aug 2006 01:02:02 +0800</pubDate>
</item>
<item>
	<title>☆文章分類2006.8.23變動</title>
	<description><![CDATA[
			新好南海部落格文章分類The Meaning of the Classfication
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center"><font size="2">新好南海部落格文章分類The Meaning of the Classfication</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2054860.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2054860.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2054860.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Wed, 23 Aug 2006 15:18:20 +0800</pubDate>
</item>
<item>
	<title>☆2006.8.6今日BANNER</title>
	<description><![CDATA[
			    CL的孩子還小的時候。圖文：南海小果農
		]]>
	</description>
	<content:encoded><![CDATA[
			<a title="Photo Sharing" href="http://www.flickr.com/photos/nanhai/207837904/"><img height="75" alt="CL的小孩小時候" src="http://static.flickr.com/70/207837904_fb504a2154_s.jpg" width="75" align="left" /></a><p><font size="2"><font size="4">    CL</font>的孩子還小的時候。</font></p><p align="right"><font size="2">圖文：南海小果農</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/1980467.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/1980467.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/1980467.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Sun, 06 Aug 2006 16:33:12 +0800</pubDate>
</item>
<item>
	<title>☆變形蟲與創意發動機</title>
	<description><![CDATA[
			☆此文刊載於聯合文學2006年八月號變形蟲與創意發動機 －－南海藝廊文： 林德俊
		]]>
	</description>
	<content:encoded><![CDATA[
			<a title="Photo Sharing" href="http://www.flickr.com/photos/nanhai/205499577/"><img height="75" alt="1-「表‧面‧容‧積——城市建築的假說事件」趙欣怡個展（趙欣怡提供）" src="http://static.flickr.com/92/205499577_172d830871_s.jpg" width="75" align="left" /></a><font size="2"><font size="4"><p align="right"><font size="2">☆此文刊載於<strong>聯合文學2006年八月號</strong></font></p></font></font><p align="left"><font size="2"><font size="+0"><strong><font size="4">變形蟲與創意發動機 </font></strong></font>－－南海藝廊</font></p><p><font size="2">文： 林德俊</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/1968088.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/1968088.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/1968088.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Thu, 03 Aug 2006 14:24:18 +0800</pubDate>
</item>
<item>
	<title>☆三個新生命</title>
	<description><![CDATA[
			  小養女年初還這麼小，如今卻當媽媽了，真是吾家有女初長成啊。最愛跟我撒嬌的小花失蹤後，唯一會對我撒嬌的貓只剩下小養女，而她現在為了保護她的孩子變 好 兇，好感傷喔。 
		]]>
	</description>
	<content:encoded><![CDATA[
			<a title="Photo Sharing" href="http://www.flickr.com/photos/nanhai/194048300/"><img height="75" alt="當媽媽的小養女" src="http://static.flickr.com/62/194048300_755bb12b23_s.jpg" width="75" align="left" /></a><font size="4">  小</font><font size="2">養女年初還這麼小，如今卻當媽媽了，真是吾家有女初長成啊。最愛跟我撒嬌的小花失蹤後，唯一會對我撒嬌的貓只剩下小養女，而她現在為了保護她的孩子變 好 兇，好感傷喔。</font> 
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/1911958.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/1911958.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/1911958.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Thu, 20 Jul 2006 23:43:24 +0800</pubDate>
</item>
<item>
	<title>☆2006.7.18+20今日BANNER</title>
	<description><![CDATA[
			  八月五日下午三點，將由聲音團體i/O SoundLab.再度登台演出。 
		]]>
	</description>
	<content:encoded><![CDATA[
			<img height="75" alt="[click+]" src="http://static.flickr.com/47/192641502_9afd95162b_s.jpg" width="75" align="left" /><font size="4">  八</font><font size="2">月五日下午三點，將由聲音團體<font face="Arial">i/O SoundLab.再度登台演出。</font></font> 
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/1902902.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/1902902.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/1902902.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Tue, 18 Jul 2006 23:32:04 +0800</pubDate>
</item>
<item>
	<title>㊣2006.7.15今日的BANNER</title>
	<description><![CDATA[
			  黃昏，南海的木板地與土壤、樹蔭，我好安靜的站在那個瞬間。 圖文：南海小果農
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><img height="75" alt="黃昏，南海的木板地與土壤、樹蔭，我好安靜的站在那個瞬間。" src="http://static.flickr.com/73/189537388_96a70d21fe_s.jpg" width="75" align="left" />  <font size="2"><font size="4">黃</font>昏，南海的木板地與土壤、樹蔭，我好安靜的站在那個瞬間。</font></p><p><font size="2"> </font></p><p align="right"><font size="2">圖文：南海小果農</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/1888847.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/1888847.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/1888847.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Sat, 15 Jul 2006 02:19:34 +0800</pubDate>
</item>
<item>
	<title>♪南海藝廊EMAIL變更</title>
	<description><![CDATA[
			圖文\南海小果農因國立台北師範學院改制為國立台北教育大學，縮寫變更為NTUE，南海藝廊EMAIL改為vaec@tea.ntue.edu.tw煩請變更您的通訊錄，以免無法送信。謝謝！
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center"><img height="240" alt="20051126晚上茶" src="http://static.flickr.com/41/78948217_1d13985ca7_m.jpg" width="240" /></p><p><font size="1"></font></p><p><font size="1">圖文\南海小果農</font></p><p><font size="2">因國立台北師範學院改制為國立台北教育大學，縮寫變更為NTUE，</font><font size="2">南海藝廊EMAIL改為</font></p><p align="center"><a href="mailto:vaec@tea.ntue.edu.tw"><font face="arial,helvetica,sans-serif">vaec@tea.<font color="#cc3300">ntue</font>.edu.tw</font></a></p><p><font size="2">煩請變更您的通訊錄，以免無法送信。謝謝！</font></p>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/930522.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/930522.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Thu, 29 Dec 2005 23:54:15 +0800</pubDate>
</item>
<item>
	<title>♪黃金世代在瑞芳</title>
	<description><![CDATA[
			敬邀您共賞  ---  黃金世代  ---國立台北教育大學  藝術與藝術教育學系95級畢業展2005/12/24-2006/01/08瑞芳鎮立第一公有市場3樓http://stu91.ntue.edu.tw/~art/
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center"><img height="240" alt="黃金世代網宣" src="http://static.flickr.com/37/75598056_b36f5ecb09_m.jpg" width="101" /></p><p align="center"><font style="BACKGROUND-COLOR: #ffcc33" size="2">敬邀您共賞  ---  黃金世代  ---</font></p><p align="center"><font size="2">國立台北教育大學  藝術與藝術教育學系95級畢業展<br />2005/12/24-2006/01/08<br />瑞芳鎮立第一公有市場3樓<br /></font><a href="http://stu91.ntue.edu.tw/~art/"><font size="2">http://stu91.ntue.edu.tw/~art/</font></a></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/890799.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/890799.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/890799.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Wed, 21 Dec 2005 00:02:13 +0800</pubDate>
</item>
<item>
	<title>♪徵文中Sending Articles</title>
	<description><![CDATA[
			【後街南海】徵求與創意市集有關，或想在此格發表的文章，請將圖片、文字、筆名及聯絡方式E-MAIL至 nanhai@yam.com 被刊登者將獲得秘密禮物喔。【南海噴嚏王】各種創意活動訊息，歡迎來信刊登 nanhai@yam.com （如遇稿擠將不另行通知）=Sending Articles=We solicit readers' contributions to this column.【Backstreet NANHAI】Send articles about &quot;art market&quot;. Please E-mail your name, picture, articles, and personal information to: nanhai@yam.comYou will get a secret present if we publish your article.【NANHAI Sneeze King】Welcome to share any interesting or fashion news in this column. E-mail to: nanhai@yam.com(We'll not notify you taht we cannot insert your mail timely.)
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><font size="2">【後街南海】徵求與創意市集有關，或想在此格發表的文章，請將圖片、文字、筆名及聯絡方式E-MAIL至 </font><a href="mailto:nanhai@yam.com"><font size="2">nanhai@yam.com</font></a><font size="2"> 被刊登者將獲得秘密禮物喔。</font></p><p><font size="2">【南海噴嚏王】各種創意活動訊息，歡迎來信刊登 </font><a href="mailto:nanhai@yam.com"><font size="2">nanhai@yam.com</font></a><font size="2"> （如遇稿擠將不另行通知）</font></p><p align="center"><font face="arial,helvetica,sans-serif" size="2"><strong>=Sending Articles=</strong><br />We solicit readers' contributions to this column.</font></p><p><font face="arial,helvetica,sans-serif" size="2">【Backstreet NANHAI】Send articles about &quot;art market&quot;. Please E-mail your name, picture, articles, and personal information to: </font><a href="mailto:nanhai@yam.com"><font face="arial,helvetica,sans-serif" size="2">nanhai@yam.com</font></a><br /><font face="arial,helvetica,sans-serif" size="2">You will get a secret present if we publish your article.</font></p><p><font face="arial,helvetica,sans-serif" size="2">【NANHAI Sneeze King】Welcome to share any interesting or fashion news in this column. E-mail to: </font><a href="mailto:nanhai@yam.com"><font face="arial,helvetica,sans-serif" size="2">nanhai@yam.com</font></a><br /><font face="arial,helvetica,sans-serif" size="2">(We'll not notify you taht we cannot insert your mail timely.)</font></p>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/861176.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/861176.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Wed, 14 Dec 2005 01:22:37 +0800</pubDate>
</item>
<item>
	<title>♪基地宣言Blog Declaration</title>
	<description><![CDATA[
			為了有別於官方網站的嚴肅，內容會偏向生活化與趣味化，讓大家了解到不一樣的南海藝廊。如果想看純藝術的討論及訊息，歡迎前往我們的官方網站http://r6.ntptc.edu.tw/This blog is different from Nanhai gallery official website.Here is more interesting, and the contents of articles tend to our life.If you would like to read articles about art only, welcome to our official website:http://r6.ntptc.edu.tw/
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><font size="2">為了有別於官方網站的嚴肅，<br />內容會偏向生活化與趣味化，<br />讓大家了解到不一樣的南海藝廊。<br />如果想看純藝術的討論及訊息，<br />歡迎前往我們的官方網站<br /></font><a href="http://r6.ntptc.edu.tw/"><font face="arial,helvetica,sans-serif" size="2">http://r6.ntptc.edu.tw/</font></a></p><p><font face="arial,helvetica,sans-serif" size="2">This blog is different from Nanhai gallery official website.Here is more interesting, and the contents of articles tend to our life.<br />If you would like to read articles about art only, welcome to our official website:<br /></font><a href="http://r6.ntptc.edu.tw/"><font face="arial,helvetica,sans-serif" size="2">http://r6.ntptc.edu.tw/</font></a></p>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/861069.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/861069.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Wed, 14 Dec 2005 00:46:46 +0800</pubDate>
</item>
<item>
	<title>♪新好南海公告Blog Announcement</title>
	<description><![CDATA[
			2005:♪徵文中Sending Articles♪歡迎交換連結Welcome to Exchange Links♪基地宣言Blog Declaration♪南海相簿(NanHai Photo Album)♪文章分類大解析(The Meaning of the Classfication)
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><font face="arial,helvetica,sans-serif" size="2"><strong>2005:</strong></font></p><p><font size="2">♪<a href="http://blog.roodo.com/nanhai/archives/861176.html">徵文中<font face="arial,helvetica,sans-serif">Sending Articles</font></a></font></p><p><font size="2">♪<a href="http://blog.roodo.com/nanhai/archives/861106.html">歡迎交換連結<font face="arial,helvetica,sans-serif">Welcome to Exchange Links</font></a></font></p><p><font size="2">♪<a href="http://blog.roodo.com/nanhai/archives/861069.html">基地宣言<font face="arial,helvetica,sans-serif">Blog Declaration</font></a></font></p><p><font size="2">♪<a href="http://blog.roodo.com/nanhai/archives/571192.html">南海相簿<font face="arial,helvetica,sans-serif">(NanHai Photo Album)</font></a></font></p><p><font size="2">♪<a href="http://blog.roodo.com/nanhai/archives/569394.html">文章分類大解析<font face="arial,helvetica,sans-serif">(The Meaning of the Classfication)</font></a></font></p>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/848313.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/848313.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Fri, 09 Dec 2005 01:05:25 +0800</pubDate>
</item>
<item>
	<title>♪今天生日的人請借我兩個願望</title>
	<description><![CDATA[
			【現場攻略】創意市集的工作人員在此與你超現場的交流。文+圖\小果農生日的時候，通常大家都會因為前兩個願望要說出來，就隨便說些場面話，例如世界和平，大家身體健康幸福快樂之類的......。 今年就不用許這麼沒建設性的願望，可以實際點囉，第一個就許
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><font color="#cccccc"><font size="2"><strong>【現場攻略】</strong>創意市集的工作人員在此與你超現場的交流。</font></font></p><p align="center"><img height="500" alt="二樓以上的天空" src="http://static.flickr.com/30/66617327_299c43a0ef.jpg" width="284" /></p><p><font size="1">文+圖\小果農</font></p><p><font size="2">生日的時候，通常大家都會因為前兩個願望要說出來，就隨便說些場面話，例如世界和平，大家身體健康幸福快樂之類的......。 今年就不用許這麼沒建設性的願望，可以實際點囉，第一個就許</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/777819.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/777819.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/777819.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Fri, 25 Nov 2005 02:40:50 +0800</pubDate>
</item>
<item>
	<title>♪道歉啟事</title>
	<description><![CDATA[
			【現場攻略】創意市集的工作人員在此與你超現場的交流。文\南海小果農  首先，非常抱歉，由於我事先並不知道樂多日誌會在十六、十七日停機暫停服務，導致未能如之前所宣布在十六號公佈詳案。而我在十六號寄出的公告信又有錯誤，造成大家的不便與困擾，真是對不起，因為發生了一些突發狀況，導致我們做了一些變更，但不會影響到貴攤位。目前最正確的消息是在新好南海部落格上的文章與圖片，請大家以這裡的公告為準，因為我隨時都會更新。
		]]>
	</description>
	<content:encoded><![CDATA[
			<p><font size="2"><font color="#cccccc"><strong>【現場攻略】</strong>創意市集的工作人員在此與你超現場的交流。</font></font></p><p><font size="1">文\南海小果農</font></p><p><font size="2">  首先，非常抱歉，由於我事先並不知道樂多日誌會在十六、十七日停機暫停服務，導致未能如之前所宣布在十六號公佈詳案。而我在十六號寄出的公告信又有錯誤，造成大家的不便與困擾，真是對不起，因為發生了一些突發狀況，導致我們做了一些變更，但不會影響到貴攤位。目前最正確的消息是在新好南海部落格上的文章與圖片，請大家以這裡的公告為準，因為我隨時都會更新。</font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/740075.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/740075.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/740075.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Fri, 18 Nov 2005 00:55:39 +0800</pubDate>
</item>
<item>
	<title>●布丁殼子(Pudding Casing)</title>
	<description><![CDATA[
			【南海噴嚏王】各種創意活動訊息，歡迎來信刊登 nanhai@yam.com （如遇稿擠將不另行通知）文+圖片影片製作/南海小果農攝影/黃海鳴2005兩廳院廣場藝術節展出時間：2005/10/22 ~ 2005/11/6展出地點：中正紀念堂兩廳院藝文廣場作品名稱：布丁殼子工作團隊：國立台北教育大學 南海藝廊-布丁補手（SUZANNE、莊軒、皮皮、雪碧芬達、小紅豆）作品簡介：從前從前，有一個流浪口味的布丁，他每流浪到一個地方，就會被人東咬一塊，西咬一塊，人們以為他失去很多，其實他得到了不一樣的東西。他的殼子少了一塊並不代表用原來的碎片就能完全補好，布丁總是說我將我的一些分給你，你將你的一些分給我，不論你的是什麼，我融入了你的一部份，成為全新的我。     我們善於接受，如同大海接納河流；我們善於付出，如同雨水灌溉土地。在往來交流中，我們不再是孤單的，身上累積著每個人的片段，我們不拼也不貼，而是接續與傳承，在每一段旅途，來來往往的人，不經意地縫上他們的生活，一塊接一塊，才得以完成現在的我們。
		]]>
	</description>
	<content:encoded><![CDATA[
			<blockquote><p><font size="2"><font color="#cccccc"><strong>【南海噴嚏王】</strong>各種創意活動訊息，歡迎來信刊登 <a href="mailto:nanhai@yam.com"><font color="#cccccc" size="2">nanhai@yam.com</font></a><font color="#cccccc" size="2"> （如遇稿擠將不另行通知）</font></font></font></p><p><font size="1"></font><a href="http://blog.roodo.com/nanhai/archives/603660.html"><img height="300" alt="布丁殼子Pudding Casing" src="http://static.flickr.com/30/56641914_4287872352_o.jpg" width="400" /></a></p><p><font size="1">文+圖片影片製作/南海小果農</font></p><p><font size="1">攝影/黃海鳴</font></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"><span style="FONT-SIZE: 14pt; FONT-FAMILY: 新細明體; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><font size="1"></font></span></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"><span style="FONT-SIZE: 14pt; FONT-FAMILY: 新細明體; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><font color="#cccccc" size="2"></font></span></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"><b style="mso-bidi-font-weight: normal"><span style="FONT-SIZE: 14pt; FONT-FAMILY: 新細明體; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><font size="2"></font></span></b></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"><span style="FONT-SIZE: 14pt; FONT-FAMILY: 新細明體; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><font size="2"></font></span></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"><b style="mso-bidi-font-weight: normal"><span style="FONT-SIZE: 14pt; FONT-FAMILY: 新細明體; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><font size="2"></font></span></b></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"><b style="mso-bidi-font-weight: normal"><span style="FONT-SIZE: 14pt; FONT-FAMILY: 新細明體; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><font color="#003366" size="2">2005兩廳院廣場藝術節</font></span></b></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"><span style="FONT-SIZE: 14pt; FONT-FAMILY: 新細明體; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><font color="#003366" size="2">展出時間：2005/10/22 ~ 2005/11/6</font></span></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"><span style="FONT-SIZE: 14pt; FONT-FAMILY: 新細明體; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><font size="3"><span style="FONT-SIZE: 14pt; FONT-FAMILY: 新細明體; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><font color="#003366" size="2">展出地點：中正紀念堂兩廳院藝文廣場</font></span></font></span></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"><b style="mso-bidi-font-weight: normal"><span style="FONT-SIZE: 14pt; FONT-FAMILY: 新細明體; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><font size="2"></font></span></b></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"><b style="mso-bidi-font-weight: normal"><span style="FONT-SIZE: 14pt; FONT-FAMILY: 新細明體; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'"><font size="2">作品名稱：布丁殼子</font></span></b><b style="mso-bidi-font-weight: normal"><span lang="EN-US" style="FONT-SIZE: 14pt"></span></b></p><p><font size="2"></font></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"><span style="FONT-FAMILY: 新細明體; mso-ascii-font-family: "><font size="2"><strong>工作團隊：</strong></font></span></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"><font size="2"><span style="FONT-FAMILY: 新細明體; mso-ascii-font-family: ">國立台北教育大學</span><span lang="EN-US"> </span></font></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"><font size="2"><span style="FONT-FAMILY: 新細明體; mso-ascii-font-family: ">南海藝廊</span><span lang="EN-US">-</span><span style="FONT-FAMILY: 新細明體; mso-ascii-font-family: ">布丁補手（</span><span lang="EN-US">SUZANNE</span><span style="FONT-FAMILY: 新細明體; mso-ascii-font-family: ">、莊軒、皮皮、雪碧芬達、小紅豆）</span></font><span lang="EN-US"></span></p><p><font size="2"></font></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"><span style="FONT-FAMILY: 新細明體; mso-ascii-font-family: "><font size="2"><strong>作品簡介：</strong></font></span><span lang="EN-US"></span></p><p><font size="2"></font></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt; TEXT-INDENT: 24pt; mso-char-indent-count: 2.0"><font color="#003399"><font size="2"><span style="FONT-FAMILY: 新細明體; mso-ascii-font-family: ">從前從前，有一個流浪口味的布丁，他每流浪到一個地方，就會被人東咬一塊，西咬一塊，人們以為他失去很多，其實他得到了不一樣的東西。他的殼子少了一塊並不代表用原來的碎片就能完全補好，布丁總是說我將我的一些分給你，你將你的一些分給我，不論你的是什麼，我融入了你的一部份，成為全新的我。</span> </font><span lang="EN-US"></span></font></p><p><font color="#003399" size="2"></font></p><p class="MsoNormal" style="MARGIN: 0cm 0cm 0pt"><font size="2"><font color="#003399"><span lang="EN-US"><span style="mso-spacerun: yes">    </span></span><span style="FONT-FAMILY: 新細明體; mso-ascii-font-family: ">我們善於接受，如同大海接納河流；我們善於付出，如同雨水灌溉土地。在往來交流中，我們不再是孤單的，身上累積著每個人的片段，我們不拼也不貼，而是接續與傳承，在每一段旅途，來來往往的人，不經意地縫上他們的生活，一塊接一塊，才得以完成現在的我們。</span></font></font></p></blockquote>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/603660.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/603660.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/603660.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Sun, 30 Oct 2005 12:40:51 +0800</pubDate>
</item>
<item>
	<title>南海相簿(NanHai Photo Album)</title>
	<description><![CDATA[
			南海相簿歡迎來圖 http://www.flickr.com/photos/nanhai/
		]]>
	</description>
	<content:encoded><![CDATA[
			<blockquote><p align="center"><font size="2">南海相簿歡迎來圖</font> <a href="http://www.flickr.com/photos/nanhai/"><font face="arial,helvetica,sans-serif" size="1">http://www.flickr.com/photos/nanhai/</font></a><a href="http://www.flickr.com/photos/84667915@N00/"></a></p></blockquote>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/571192.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/571192.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/571192.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Sat, 08 Oct 2005 15:13:57 +0800</pubDate>
</item>
<item>
	<title>南海簡介(Introduction)</title>
	<description><![CDATA[
			【基地攻略】在南海的日子，我們總有一點小心情，或小心得，就讓南海工作人員在這裡偷偷告訴你。文\南海小果農圖\南海小果農&nbsp;&nbsp;&nbsp; 南海藝廊在重慶南路二段19巷3號，剛好在南海路後街，藝廊原本是國立台北教育大學閒置很久的校長宿舍，現今是跨領域的當代藝術展演場地；二樓有咖啡、音樂、閱覽及座談等超現場服務，因南海音似男孩，熟人稱二樓「小男孩閣樓」，閣樓與girl同音(不男不女卻又男又女)。但自從養了阿乖以後又有肥貓閣樓之名，雖然我們常常懷疑肥貓不是阿乖而是......
		]]>
	</description>
	<content:encoded><![CDATA[
			<blockquote><div class="pict" align="left"></div><div class="pict" align="left"></div><div class="pict" align="left"></div><div class="pict" align="left"><font face="細明體" size="2" style="background-color: #ffffff" color="#cccccc"><strong>【基地攻略】</strong>在南海的日子，我們總有一點小心情，或小心得，就讓南海工作人員在這裡偷偷告訴你。</font></div><div class="pict"><font size="2"><font color="#000033"><font face="細明體"><img class="pict" src="http://static.flickr.com/28/58443080_8e6bd3ae69_o.jpg" border="0" alt="肥貓不好當" hspace="5" width="150" height="113" align="absMiddle" /></font></font></font></div><div class="pict"></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><font size="2"><font color="#000033"><font face="細明體"></font></font></font><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"><font face="細明體"></font></font></font></div><div class="pict"><font size="2"><font color="#000033"><font face="細明體"></font></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"><font face="細明體"></font></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict"><font size="2"><font color="#000033"></font></font></div><div class="pict" align="left"><font size="2"><font color="#000033"><font face="細明體"><p><font size="1">文\南海小果農</font></p><p><font size="1">圖\南海小果農</font></p></font></font></font></div><div class="pict" align="left"><font size="2"><font color="#000033"></font></font></div><div class="pict" align="left"><font size="2"><font color="#000033"><font face="細明體">&nbsp;&nbsp;&nbsp; 南海藝廊在重慶南路二段19巷3號，剛好在南海路後街，<span style="text-indent: 0px; line-height: 24px">藝廊原本是國立台北教育大學閒置</span><span style="text-indent: 0px; line-height: 24px">很久的校長宿舍，現今是跨領域的</span><span style="text-indent: 0px; line-height: 24px">當代藝術展演場地；二樓有咖啡、音樂、閱覽及座</span><span style="text-indent: 0px; line-height: 24px">談等超現場服務，因南海音似男孩，熟人稱二樓「小男孩閣樓」，閣樓與</span><span style="text-indent: 0px; line-height: 24px">girl同音(不男不女卻又男又女)。但自從養了阿乖以後又有肥貓閣樓之名，雖然我們常常懷疑肥貓不是阿乖而是......<br /><img style="width: 780px; height: 12px" src="http://blog.roodo.com/nanhai/6e6d027b.gif" alt="" width="780" height="12" /></span></font></font></font></div></blockquote>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/564539.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/564539.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/564539.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Thu, 06 Oct 2005 19:09:29 +0800</pubDate>
</item>
<item>
	<title>南海喵喵叫BBS-01</title>
	<description><![CDATA[
			文\南海小果農歡迎在此留言討論，不要懷疑，這裡就是留言版喵&lt;(OwO)&gt;Welcome to leave message here.Don't doubt.This is a guest book.
		]]>
	</description>
	<content:encoded><![CDATA[
			<blockquote><p align="center"><font face="細明體"><font color="#000000" size="1">文\南海小果農</font></font><font face="細明體"></font></p><p align="center"><font face="細明體" size="2">歡迎在此留言討論，</font><font face="細明體" size="2">不要懷疑，</font><font face="細明體" size="2">這裡就是留言版喵&lt;(OwO)&gt;</font></p><p align="center"><font face="細明體" size="2">Welcome to leave message here.</font></p><p align="center"><font face="細明體" size="2">Don't doubt.</font><font face="細明體" size="2">This is a guest book.</font></p><p /></blockquote>
		
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/560375.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/560375.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Wed, 05 Oct 2005 20:00:18 +0800</pubDate>
</item>
<item>
	<title>【徵求】活動志工以及網管夥伴</title>
	<description><![CDATA[
			徵人啟事，南海藝廊需要你 ! ! !
		]]>
	</description>
	<content:encoded><![CDATA[
			<p align="center"><font size="4" color="#333333"><strong>徵人啟事，南海藝廊需要你 ! ! !<br /><img style="width: 780px; height: 12px" src="http://blog.roodo.com/nanhai/6e6d027b.gif" alt="" width="780" height="12" /></strong></font></p>
		<a class="acontinues" href="http://blog.roodo.com/nanhai/archives/2975245.html">(繼續閱讀...)</a>
		]]>
	</content:encoded>
	<link>http://blog.roodo.com/nanhai/archives/2975245.html</link>
	<guid>http://blog.roodo.com/nanhai/archives/2975245.html</guid>
	<category>新好南海／NNN</category>
	<pubDate>Wed, 30 Nov -001 00:00:00 +0800</pubDate>
</item>
</channel>
</rss>