<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title>초보사진관</title>
		<link>http://blog.nuwana.com/</link>
		<description>초보사진사의 개념없는 사진관입니다.^^</description>
		<language>ko</language>
		<pubDate>Wed, 17 Aug 2011 08:53:07 +0900</pubDate>
		<generator>Tistory 1.1 (http://www.tistory.com/)</generator>
		<image>
		<title>초보사진관</title>
		<url><![CDATA[http://cfs3.tistory.com/upload_control/download.blog?fhandle=YmxvZzE0NjI0QGZzMy50aXN0b3J5LmNvbTovYXR0YWNoLzAvNDYuanBn]]></url>
		<link>http://blog.nuwana.com/</link>
		<description>초보사진사의 개념없는 사진관입니다.^^</description>
		</image>
		<item>
			<title>C언어로 구현한 Quick Sort</title>
			<link>http://blog.nuwana.com/131</link>
			<description>개발자가 된지 3년이 되었지만, 기초적인 부분은 오히려 학부생 시절만 못한거 같다.&lt;br/&gt;
&lt;br/&gt;
요즘 언어들이 제공하는 각종 콜랙션류에 빠져 살아서 그런지..^^;;&lt;br/&gt;
&lt;br/&gt;
이래저래 정렬 알고리즘을 구현하려고 생각하다 보니 막연한 느낌까지 들어 구글링후 내스타일에 맞는 녀석으로 수정후 흔적 남기기..&lt;br/&gt;

&lt;TEXTAREA name=&quot;code&quot; class=&quot;c&quot;&gt;
#include &lt;stdio.h&gt;

void quick(int list[], int left, int right){
  int idxL = left;
  int idxR = right;
  int pivot = list[(left+right)/2];

  while(idxL &lt;= idxR){
    while(list[idxL++] &gt; pivot){

    }
    while(list[idxR--] &lt; pivot){
    
    }
    
    if(list[idxL] &lt;= list[idxR]){
       int temp = list[idxL];
       list[idxL] = list[idxR];
       list[idxR] = temp;
    }
    
  }
  if(left&lt;idxR){
    quick(list, left, idxR);
  }
  if(idxL&lt;right){
    quick(list, idxL, right);
  }
}

void printNum(int list[], int size){
  int i=0;
  for(i=0; i&lt;size; i++){
    printf(&quot;%d &quot;,list[i]);
  }
  printf(&quot;\n&quot;);
}

int main(){
  int nums[5] = {1,4,3,2,5};
  printNum(nums, sizeof(nums)/sizeof(nums[0]));

  quick(nums, 0, 4);
  printNum(nums, sizeof(nums)/sizeof(nums[0]));

  return 0;
}

&lt;/TEXTAREA&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;</description>
			<category>ALGORITHM</category>
			<author>초보사진사</author>
			<guid>http://blog.nuwana.com/131</guid>
			<comments>http://blog.nuwana.com/131#entry131comment</comments>
			<pubDate>Sun, 14 Aug 2011 21:49:14 +0900</pubDate>
		</item>
		<item>
			<title>jsp 세션내용 출력하기.</title>
			<link>http://blog.nuwana.com/130</link>
			<description>&lt;P&gt;&lt;br /&gt;
jsp 페이지에서 session 내용을 key 값과 함께 확인하고 싶을 때 다음과 같이 사용.&lt;br /&gt;
&lt;br /&gt;구글링 해서 나왔는데 정상 동작함을 확인 했음. &lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&amp;lt;%&lt;br /&gt;
&amp;nbsp; &lt;FONT color=#e31600&gt;HttpSession &lt;/FONT&gt;loginSession = request.getSession(&lt;FONT color=#193da9&gt;true&lt;/FONT&gt;);&lt;br /&gt;
&amp;nbsp; &lt;FONT color=#e31600&gt;String &lt;/FONT&gt;key;&lt;br /&gt;
&amp;nbsp; &lt;FONT color=#e31600&gt;Object &lt;/FONT&gt;value;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; for (&lt;FONT color=#e31600&gt;Enumeration &lt;/FONT&gt;e = loginSession.getAttributeNames() ; e.hasMoreElements() ;) {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; key = (&lt;FONT color=#e31600&gt;String&lt;/FONT&gt;) e.nextElement();&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; value = loginSession.getAttribute(key);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; out.println(key+&lt;FONT color=#f3709b&gt;&quot; : &quot;&lt;/FONT&gt;+ value+&lt;FONT color=#f3709b&gt;&quot;&lt;FONT&gt;&amp;lt;br&amp;gt;&lt;/FONT&gt;&quot;&lt;/FONT&gt;);&lt;br /&gt;
&amp;nbsp; }&lt;br /&gt;
%&amp;gt; &lt;br /&gt;
&lt;/P&gt;&lt;%
  HttpSession loginSession = request.getSession(true);
  String key;
  Object value;

  for (Enumeration e = loginSession.getAttributeNames() ; e.hasMoreElements() ;) {
    key = (String) e.nextElement();
    value = loginSession.getAttribute(key);
    out.println(key+&quot; : &quot;+ value+&quot;&lt;br /&gt;
&quot;);
  }
%&gt;&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=18191606&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;</description>
			<category>TIP&amp;TECH</category>
			<author>초보사진사</author>
			<guid>http://blog.nuwana.com/130</guid>
			<comments>http://blog.nuwana.com/130#entry130comment</comments>
			<pubDate>Fri, 01 Jul 2011 16:41:37 +0900</pubDate>
		</item>
		<item>
			<title>포스트 작성 테스트</title>
			<link>http://blog.nuwana.com/128</link>
			<description>&lt;img src=&#039;http://cfile6.uf.tistory.com/image/1260C7544D5BF693327A07&#039; &gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;</description>
			<author>초보사진사</author>
			<guid>http://blog.nuwana.com/128</guid>
			<comments>http://blog.nuwana.com/128#entry128comment</comments>
			<pubDate>Thu, 17 Feb 2011 10:08:50 +0900</pubDate>
		</item>
		<item>
			<title>포스트 작성 테스트</title>
			<link>http://blog.nuwana.com/127</link>
			<description>&lt;img src=&#039;http://cfile27.uf.tistory.com/image/17373F494D5BF645155A00&#039; &gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;</description>
			<author>초보사진사</author>
			<guid>http://blog.nuwana.com/127</guid>
			<comments>http://blog.nuwana.com/127#entry127comment</comments>
			<pubDate>Thu, 17 Feb 2011 10:07:32 +0900</pubDate>
		</item>
		<item>
			<title>포스트 작성 테스트</title>
			<link>http://blog.nuwana.com/126</link>
			<description>&lt;img src=&#039;http://cfile23.uf.tistory.com/image/1707AE534D5BF5743A1363&#039; &gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;</description>
			<author>초보사진사</author>
			<guid>http://blog.nuwana.com/126</guid>
			<comments>http://blog.nuwana.com/126#entry126comment</comments>
			<pubDate>Thu, 17 Feb 2011 10:04:04 +0900</pubDate>
		</item>
		<item>
			<title>포스트 작성 테스트</title>
			<link>http://blog.nuwana.com/125</link>
			<description>&lt;img src=&#039;http://cfile22.uf.tistory.com/image/152B62494D5BF457289778&#039; &gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;</description>
			<author>초보사진사</author>
			<guid>http://blog.nuwana.com/125</guid>
			<comments>http://blog.nuwana.com/125#entry125comment</comments>
			<pubDate>Thu, 17 Feb 2011 09:59:18 +0900</pubDate>
		</item>
		<item>
			<title>맥북(Macbook) 윈도우즈 서버2008 설치하기 8단계. (Windows Server2008 x86)</title>
			<link>http://blog.nuwana.com/123</link>
			<description>대학생 시절,&lt;br /&gt;&lt;br /&gt;MS에서 DreamSpark 라는 것을 통해서 무료로 MS제품을 쓸 수 있게 해주었다.&lt;br /&gt;&lt;br /&gt;대학생의 특권이랄까.. 그덕에 윈도우즈를 (물론 서버제품) 나름 합법적으로 공짜로 쓸 수 있게 되었다.&lt;br /&gt;&lt;br /&gt;비록 서버제품군이라고 하지만 [데스크톱 경험]을 설정하면 기존 XP나 VISTA 처럼 사용 할 수가 있다.&lt;br /&gt;&lt;br /&gt;최근 Apple에 BootCamp가 버젼이 올라가며서 대부분의 드라이버는 잡히지만, 블루투스가 살짝 거슬린다.&lt;br /&gt;&lt;br /&gt;그럼 본격적으로 간략한 설명!!&lt;br /&gt;&lt;br /&gt;1. OSX를 설치한다. 그냥 최신버젼 스노우레오파드(10.6 이상)으로~&lt;br /&gt;&lt;br /&gt;2. Bootcamp 를 설정한다.&lt;br /&gt;&lt;br /&gt;3. 서버2008(여기선 x86이다 64bit 아님)을 그냥 설치한다.&lt;br /&gt;&lt;br /&gt;4. 서버2008 설치하면 Bootcamp DVD를 넣고 드라이버를 설치한다.&lt;br /&gt;&lt;br /&gt;--------------- 요기까지는 정보가 많다.일반 XP, VISTA 과정과 동일 &amp;nbsp;----------------------&lt;br /&gt;&lt;A href=&quot;http://blog.komeil.com/2008/11/installing-microsoft-bluetooth-stack-on.html&quot; target=_blank&gt;링크&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://photoblog.tistory.com/attachment/cfile6.uf@1205DB364CAD72119E4E82.cab&quot;&gt;&lt;img src=&quot;http://i1.daumcdn.net/cfs.tistory/v/110706133414/blog/image/extension/unknown.gif&quot; alt=&quot;&quot; style=&quot;vertical-align: middle;&quot; /&gt; bt-ws2k8-x86.cab&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;x86&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://photoblog.tistory.com/attachment/cfile21.uf@17111A324CAD733415BEDB.cab&quot;&gt;&lt;img src=&quot;http://i1.daumcdn.net/cfs.tistory/v/110706133414/blog/image/extension/unknown.gif&quot; alt=&quot;&quot; style=&quot;vertical-align: middle;&quot; /&gt; bt-ws2k8-x64.cab&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;x64&lt;br /&gt;&lt;/A&gt;5. 장치관리자를 통해서 노란색느낌표가 들어온 장치(Bluetooth관련)들을 첨부파일의 드라이버로 모두 설치해준다.&lt;br /&gt;&lt;br /&gt;6. 사운드는 [서비스] 에서 [Windows Audio] 항목을 자동으로 시작하게 설정한다.&lt;br /&gt;&lt;br /&gt;7. 무선랜(WIFI)는 [서버관리자]-[기능]에서 [기능추가]클릭후 [무선 LAN 서비스]를 설치해준다.&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://photoblog.tistory.com/attachment/cfile4.uf@14452F2F4C8BD38D1AA378.exe&quot;&gt;&lt;img src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/blog/image/extension/exe.gif&quot; alt=&quot;&quot; style=&quot;vertical-align: middle;&quot; /&gt; Macbook_Vista.exe&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;8. 키보드는 위의 첨부파일로 설정하여 한영키와 한자키를 세팅한다.&lt;br /&gt;&lt;br /&gt;9. 기타 웹브라우져나 로컬보안이나 DEP설정등은 맥북과 상관없는 공통사항으로 이번포스팅에선 생략&lt;br /&gt;&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=9572220&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;</description>
			<category>2008server</category>
			<category>2008서버</category>
			<category>MacBook</category>
			<category>맥북</category>
			<author>초보사진사</author>
			<guid>http://blog.nuwana.com/123</guid>
			<comments>http://blog.nuwana.com/123#entry123comment</comments>
			<pubDate>Sun, 12 Sep 2010 12:30:00 +0900</pubDate>
		</item>
		<item>
			<title>SkyDigital SKY HDTV USB Driver 2.04</title>
			<link>http://blog.nuwana.com/119</link>
			<description>USB티비 수신카드 드라이버.&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://photoblog.tistory.com/attachment/cfile23.uf@1950E10B49F33D67A42298.zip&quot;&gt;&lt;img src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/blog/image/extension/zip.gif&quot; alt=&quot;&quot; style=&quot;vertical-align: middle;&quot; /&gt; SKY HDTV USB(v2.0_P4).zip&lt;/a&gt;&lt;/div&gt;
&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;</description>
			<category>PDS</category>
			<author>초보사진사</author>
			<guid>http://blog.nuwana.com/119</guid>
			<comments>http://blog.nuwana.com/119#entry119comment</comments>
			<pubDate>Sun, 26 Apr 2009 01:42:48 +0900</pubDate>
		</item>
		<item>
			<title>탐색기 팝업메뉴를 통한 CMD 실행하기.</title>
			<link>http://blog.nuwana.com/116</link>
			<description>&lt;div class=&quot;imageblock left&quot; style=&quot;float: left; margin-right: 10px;&quot;&gt;&lt;img src=&quot;http://cfs13.tistory.com/image/18/tistory/2009/03/21/22/43/49c4eeffa497c&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;340&quot; width=&quot;340&quot;/&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://photoblog.tistory.com/attachment/cfile21.uf@130ADF0E49C4EFE9F3780B.reg&quot;&gt;&lt;img src=&quot;http://i1.daumcdn.net/cfs.tistory/v/110706133414/blog/image/extension/unknown.gif&quot; alt=&quot;&quot; style=&quot;vertical-align: middle;&quot; /&gt; Open in CMD.reg&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;Path가 지정되지 않은 경로의 파일을 실행 하는 것은 귀찮은 일이다.&lt;br /&gt;&lt;br /&gt;작업을 하다보면 실행파일에 옵션값을 넘기기 위해서 command 창을 통해서 경로를 이동해야 하는 경우가 종종 발생하는데, 탐색기를 통해서 바로 command창을 경로와 함께 실행한다면 편리 한 일이다.&lt;br /&gt;&lt;br /&gt;XP의 경우 레지스트 수정을 통해 간단하게 마우스 오른쪽 버튼을 통해서 기능을 구현할 수 있다.&lt;br /&gt;&lt;br /&gt;위의 레지스트 파일을 다운 받은수 실행하면,&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs13.tistory.com/image/10/tistory/2009/03/21/22/43/49c4ef07395eb&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;391&quot; width=&quot;521&quot;/&gt;&lt;/div&gt;팝업메뉴에 &quot;Open in CMD&quot; 라 항목이 생성되고, 클릭하게 되면,&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs13.tistory.com/image/18/tistory/2009/03/21/22/43/49c4ef06387e8&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;399&quot; width=&quot;516&quot;/&gt;&lt;/div&gt;&amp;nbsp;간단하게 command 창에서 경로를 이동 할 수 있다.&lt;br /&gt;&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=2776063&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;</description>
			<category>PDS</category>
			<category>cmd</category>
			<category>Command</category>
			<category>path</category>
			<category>XP 팁</category>
			<category>경로이동</category>
			<category>탐색기</category>
			<author>초보사진사</author>
			<guid>http://blog.nuwana.com/116</guid>
			<comments>http://blog.nuwana.com/116#entry116comment</comments>
			<pubDate>Sat, 21 Mar 2009 22:50:33 +0900</pubDate>
		</item>
		<item>
			<title>실버라이트2 DLR을 이용한 JScript 호스팅</title>
			<link>http://blog.nuwana.com/114</link>
			<description>&lt;P&gt;실버라이트2에서 사용자정의 컨트롤은 CLR로 생성한후,&lt;/P&gt;
&lt;P&gt;XAML을 통한 디쟈인은 동적으로 변경 가능하지만, 내부적인 동작은 동적으로 변경이 힘들다.&lt;/P&gt;
&lt;P&gt;DLR을 이용하여 파이썬이나 루비 혹은 JScript를 이용하여, 내부 동작도 동적으로 할당하는 예제를 만들어 보았다.&lt;/P&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;TEXTAREA name=&quot;code&quot; class=&quot;c#&quot;&gt;
using System;
using System.Collections.Generic;
using System.Scripting;
using System.Windows.Controls;
using Microsoft.JScript.Runtime;
using Microsoft.Scripting;
using Microsoft.Scripting.Hosting;
using Microsoft.JScript.Runtime.Types;

namespace DLR_Sample
{

    public partial class Page : UserControl
    {
        FunctionObject EventInterface;

        public static object[] ToArray(params object[] a)
        {
            return a;
        }

        public Page()
        {
            InitializeComponent();

            ScriptRuntime JSRuntime = JScript.CreateRuntime();
            ScriptEngine JSEngine = JSRuntime.GetEngine(&quot;js&quot;);
            ScriptScope Scope = JSEngine.CreateScope();
            //스크립트 호스팅에 필요한 객체 선언

            Scope.SetVariable(&quot;canvas&quot;, this.LayoutRoot);
            //스크립트 호스팅영역에 LayoutRoot 객체를 canvas라는 이름으로 생성

            String func = @&quot;function add(num1,num2){return num1+num2}&quot;;
            String getEvent = @&quot;function getEvent(senderObj,e){
                                    var textblock = canvas.FindName(&#039;textblock&#039;);
                                        textblock.Text += senderObj;// + &#039; &#039; +e;
                                    return true;
                                }&quot;;
            String run = @&quot;
                            var textblock = canvas.FindName(&#039;textblock&#039;);
                                textblock.Text = add(10,20);
                          &quot;;
            //스크립트 호스팅영역에서 사용할 코드 문자열 작성

            ScriptSource EventCode = JSEngine.CreateScriptSourceFromString(getEvent, SourceCodeKind.Statements);
            ScriptSource Run = JSEngine.CreateScriptSourceFromString(run, SourceCodeKind.Statements);
            ScriptSource Function = JSEngine.CreateScriptSourceFromString(func, SourceCodeKind.Statements);
            //문자열을 스크립트 소스형태로 생성

            Run.Compile();//생략가능
            Function.Execute(Scope);
            EventCode.Execute(Scope);
            Run.Execute(Scope);
            //스크립트 소스들 실행

            FunctionObject add2 = Scope.GetVariable&amp;lt;FunctionObject&amp;gt;(&quot;add&quot;);
            EventInterface = Scope.GetVariable&amp;lt;FunctionObject&amp;gt;(&quot;getEvent&quot;);
            //스크립트 호스팅영역에서 함수객체 갖구 오기

            object res = add2.Call(add2.Context, add2, ToArray(3, 4));

            //textblock.Text = res.ToString();
        }

        private void MouseLeftButtonDownE(object sender, System.Windows.Input.MouseButtonEventArgs e)
        {
            //마우스버튼 이벤트를 스크립트 호스팅 영역으로 전달해주는 인터페이스
            object res = EventInterface.Call(EventInterface.Context, EventInterface, ToArray(
                ((System.Windows.FrameworkElement)sender).Name, e.ToString()));
        }
    }
}   
&lt;/TEXTAREA&gt;&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  					&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf&quot; quality=&quot;high&quot; flashvars=&quot;nid=2669751&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;false&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot;&gt;&lt;/embed&gt;
						&lt;/div&gt;&lt;fieldset style=&quot;margin:20px 0px 20px 0px;padding:5px;&quot;&gt;&lt;legend&gt;&lt;span&gt;&lt;strong&gt;크리에이티브 커먼즈 라이선스&lt;/strong&gt;&lt;/span&gt;&lt;/legend&gt;&lt;!--Creative Commons License--&gt;&lt;div style=&quot;float: left; width: 88px; margin-top: 3px;&quot;&gt;&lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Creative Commons License&quot; style=&quot;border-width: 0&quot; src=&quot;http://i.creativecommons.org/l/by-nc-sa/2.0/kr/88x31.png&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 92px; margin-top: 3px; text-align: justify;&quot;&gt;이 저작물은 &lt;a rel=&quot;license&quot; href=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; target=&quot;_blank&quot;&gt;크리에이티브 커먼즈 코리아 저작자표시-비영리-동일조건변경허락 2.0 대한민국 라이선스&lt;/a&gt;에 따라 이용하실 수 있습니다.
			&lt;!-- Creative Commons License--&gt;
			&lt;!-- &lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
			&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-sa/2.0/kr/&quot; /&gt;
			&lt;/Work&gt;
			&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-sa/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/ShareAlike&quot;/&gt;&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;&lt;/License&gt;&lt;/rdf:RDF&gt; --&gt;&lt;/div&gt;&lt;/fieldset&gt;</description>
			<category>ALGORITHM</category>
			<category>dlr</category>
			<category>JScript</category>
			<category>silverlight</category>
			<category>실버라이트</category>
			<author>초보사진사</author>
			<guid>http://blog.nuwana.com/114</guid>
			<comments>http://blog.nuwana.com/114#entry114comment</comments>
			<pubDate>Fri, 06 Mar 2009 15:28:44 +0900</pubDate>
		</item>
	</channel>
</rss>

