<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>야생동물 보호구역</title>
	<atom:link href="http://kanese.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://kanese.wordpress.com</link>
	<description></description>
	<lastBuildDate>Fri, 30 Oct 2009 06:04:09 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>ko</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='kanese.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/bd0ecaf9084344fdb829c844baf6a685?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>야생동물 보호구역</title>
		<link>http://kanese.wordpress.com</link>
	</image>
			<item>
		<title>unit test</title>
		<link>http://kanese.wordpress.com/2009/10/30/unit-test/</link>
		<comments>http://kanese.wordpress.com/2009/10/30/unit-test/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 06:04:09 +0000</pubDate>
		<dc:creator>kane</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kanese.wordpress.com/?p=127</guid>
		<description><![CDATA[나도 드디어 유닛 테스트의 세계에 발을 들여놓았다.
여기에는 테스트 같이 사치스러운 일은 존재하지 않았고 앞으로도 존재하기 힘들다. 그동안 귀찮아서 눈 감고 있었는데, 괴로워지는 건 결국 나다. 뭘로 할까하고 고민만 하다가 boost에 유닛 테스트 라이브러리가 있길래 옳타꾸나하고 붙였다. 그런데 boost는 매뉴얼이 부실해서 뭘 어쩌라는 건지 한참 헤맸다.
쓰는 방법은 간단하다. 테스트 메인을 선언하고 매크로를 이용해 테스트 케이스를 추가하면 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kanese.wordpress.com&blog=393495&post=127&subd=kanese&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:justify;">나도 드디어 유닛 테스트의 세계에 발을 들여놓았다.</p>
<p style="text-align:justify;">여기에는 테스트 같이 사치스러운 일은 존재하지 않았고 앞으로도 존재하기 힘들다. 그동안 귀찮아서 눈 감고 있었는데, 괴로워지는 건 결국 나다. 뭘로 할까하고 고민만 하다가 boost에 유닛 테스트 라이브러리가 있길래 옳타꾸나하고 붙였다. 그런데 boost는 매뉴얼이 부실해서 뭘 어쩌라는 건지 한참 헤맸다.</p>
<p style="text-align:justify;">쓰는 방법은 간단하다. 테스트 메인을 선언하고 매크로를 이용해 테스트 케이스를 추가하면 된다.</p>
<p style="text-align:justify;">테스트 프로세스를 어떻게 꾸밀까 몇가지 생각해봤는데 아래처럼 쓰는 게 좋을 것 같다. 가능한 기존 컴파일 환경을 공유하면서, 테스트 코드와 실제 실행 코드를 분리하고, 테스트에 실패하면 프로그램이 아예 컴파일 되지 않는다.</p>
<p style="text-align:justify;">1. 테스트 메인을 만든다.</p>
<p style="text-align:justify;">1-1. main.cc를 main.test.cc로 복사한다.</p>
<p style="text-align:justify;">1-2. main.test.cc에서 main 함수를 지운다.</p>
<p style="text-align:justify;">1-3. main.test.cc에 대신 다음을 추가한다.</p>
<blockquote>
<pre>#define BOOST_TEST_MAIN</pre>
<pre>#include &lt;boost/test/included/unit_test_framework.hpp&gt;</pre>
</blockquote>
<p style="text-align:justify;">2. 테스트 케이스를 만든다.</p>
<p style="text-align:justify;">2-1. 테스트할 소스가 src.cc에 있으면, src.test.cc를 만들고 아래와 같이 테스트 케이스를 작성한다.</p>
<blockquote>
<pre>#include &lt;boost/test/unit_test.hpp&gt;</pre>
<pre>BOOST_AUTO_TEST_CASE( func )</pre>
<pre>{
    BOOST_CHECK_EQUAL( ... );</pre>
<pre>}</pre>
</blockquote>
<p style="text-align:justify;">3. 테스트가 실패하면 프로그램이 컴파일되지 않도록 Makefile을 수정한다.</p>
<p style="text-align:justify;">3-1. 테스트용 프로그램이 먼저 만들어지도록 한다.</p>
<blockquote>
<pre>$(TARGET): $(TARGET).test ...</pre>
</blockquote>
<p style="text-align:justify;">3-2. main.cc를 main.test.cc로 대체하고, 테스트 케이스가 있는 파일을 추가해 컴파일한다.</p>
<p style="text-align:justify;">3-3. 테스트 프로그램을 실행한다. (테스트에 실패하면 여기서 멈추기 때문에 자연스럽게 최종 프로그램이 만들어지지 않는다.)</p>
<blockquote>
<pre>$(TARGET).test: ...</pre>
<pre>    ...</pre>
<pre>    $(TARGET).test</pre>
</blockquote>
<p style="text-align:justify;">
<p style="text-align:justify;">p.s: 유닛 테스트를 처음 적용해보는 거고, boost test 라이브러리도 처음 써보기 때문에 깔끔하지 못한 부분이 있을 겁니다. 좋은 사용법을 알려주시면 감사하겠습니다.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kanese.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kanese.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kanese.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kanese.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kanese.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kanese.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kanese.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kanese.wordpress.com/127/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kanese.wordpress.com/127/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kanese.wordpress.com/127/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kanese.wordpress.com&blog=393495&post=127&subd=kanese&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kanese.wordpress.com/2009/10/30/unit-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/818b849fd014af89b34d9766056e731f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kane</media:title>
		</media:content>
	</item>
		<item>
		<title>시급</title>
		<link>http://kanese.wordpress.com/2009/09/09/%ec%8b%9c%ea%b8%89/</link>
		<comments>http://kanese.wordpress.com/2009/09/09/%ec%8b%9c%ea%b8%89/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 08:09:34 +0000</pubDate>
		<dc:creator>kane</dc:creator>
				<category><![CDATA[직장일기]]></category>

		<guid isPermaLink="false">http://kanese.wordpress.com/2009/09/09/%ec%8b%9c%ea%b8%89/</guid>
		<description><![CDATA[농담으로 하던 소린데
진짜 시급 5,000원짜리 인생이었네. ㅋㅋ
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kanese.wordpress.com&blog=393495&post=126&subd=kanese&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>농담으로 하던 소린데</p>
<p>진짜 시급 5,000원짜리 인생이었네. ㅋㅋ</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kanese.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kanese.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kanese.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kanese.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kanese.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kanese.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kanese.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kanese.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kanese.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kanese.wordpress.com/126/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kanese.wordpress.com&blog=393495&post=126&subd=kanese&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kanese.wordpress.com/2009/09/09/%ec%8b%9c%ea%b8%89/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/818b849fd014af89b34d9766056e731f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kane</media:title>
		</media:content>
	</item>
		<item>
		<title>인적 구성</title>
		<link>http://kanese.wordpress.com/2009/09/06/%ec%9d%b8%ec%a0%81-%ea%b5%ac%ec%84%b1/</link>
		<comments>http://kanese.wordpress.com/2009/09/06/%ec%9d%b8%ec%a0%81-%ea%b5%ac%ec%84%b1/#comments</comments>
		<pubDate>Sat, 05 Sep 2009 15:23:37 +0000</pubDate>
		<dc:creator>kane</dc:creator>
				<category><![CDATA[직장일기]]></category>

		<guid isPermaLink="false">http://kanese.wordpress.com/?p=124</guid>
		<description><![CDATA[책임 2 + 선임 1 + 사원 1
책임 3 + 선임 2 + 사원 1
수석 1 + 책임 3 + 사원 1
어쩌라고?
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kanese.wordpress.com&blog=393495&post=124&subd=kanese&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>책임 2 + 선임 1 + 사원 1</p>
<p>책임 3 + 선임 2 + 사원 1</p>
<p>수석 1 + 책임 3 + 사원 1</p>
<p>어쩌라고?</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kanese.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kanese.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kanese.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kanese.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kanese.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kanese.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kanese.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kanese.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kanese.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kanese.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kanese.wordpress.com&blog=393495&post=124&subd=kanese&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kanese.wordpress.com/2009/09/06/%ec%9d%b8%ec%a0%81-%ea%b5%ac%ec%84%b1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/818b849fd014af89b34d9766056e731f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kane</media:title>
		</media:content>
	</item>
		<item>
		<title>상전벽해</title>
		<link>http://kanese.wordpress.com/2009/09/01/%ec%83%81%ec%a0%84%eb%b2%bd%ed%95%b4/</link>
		<comments>http://kanese.wordpress.com/2009/09/01/%ec%83%81%ec%a0%84%eb%b2%bd%ed%95%b4/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 22:56:44 +0000</pubDate>
		<dc:creator>kane</dc:creator>
				<category><![CDATA[직장일기]]></category>

		<guid isPermaLink="false">http://kanese.wordpress.com/?p=122</guid>
		<description><![CDATA[회사 내에서 열리는 세미나는 아무거나 간다고 말만 하고 갔다 오란다. 세상 참 많이 좋아졌다.
지난 2년간 교육에 참석한 적 없다. 무슨 교육 받아도 되겠냐고 물어보면 돌아오는 첫 마디. &#8220;업무 연관성은?&#8221;. 썩을. 이따위 업무랑 연관있는 교육이 어딨냐. 짜증이 나서 그 다음부터는 가고 싶다는 말 안하고 그 좋아하시는 일만 죽어라 했다. 그런데 아무거나 가라고? 원래 그랬던 것처럼 아무렇지 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kanese.wordpress.com&blog=393495&post=122&subd=kanese&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>회사 내에서 열리는 세미나는 아무거나 간다고 말만 하고 갔다 오란다. 세상 참 많이 좋아졌다.</p>
<p>지난 2년간 교육에 참석한 적 없다. 무슨 교육 받아도 되겠냐고 물어보면 돌아오는 첫 마디. &#8220;업무 연관성은?&#8221;. 썩을. 이따위 업무랑 연관있는 교육이 어딨냐. 짜증이 나서 그 다음부터는 가고 싶다는 말 안하고 그 좋아하시는 일만 죽어라 했다. 그런데 아무거나 가라고? 원래 그랬던 것처럼 아무렇지 않게 말하는 것도 좀 짜증난다.</p>
<p>그래도 역시 윗대가리가 쪼으니까 바꾸는 척이라도 한다. &#8220;니들 공부는 하고 있냐?&#8221;라는 연구소장님의 알흠다운 한마디에 바로 책임급이상은 의무적으로 세미나(라고 쓰고 업무 발표회라고 읽는다)를 해야 하고, 다른 사람들은 의무적으로 몇시간 이상 세미나에 참석해야 하게 되었다. 갑자기 교육 권하는 사회가 되었다.</p>
<p>형식적이고 행정적이지만 그래도 안하는 것보단 낫다. 이용할 수 있는 틈새가 생기니까. 하지만 너무 늦었다. 나에게는.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kanese.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kanese.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kanese.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kanese.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kanese.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kanese.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kanese.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kanese.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kanese.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kanese.wordpress.com/122/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kanese.wordpress.com&blog=393495&post=122&subd=kanese&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kanese.wordpress.com/2009/09/01/%ec%83%81%ec%a0%84%eb%b2%bd%ed%95%b4/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/818b849fd014af89b34d9766056e731f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kane</media:title>
		</media:content>
	</item>
		<item>
		<title>주간 보고 파일 자동으로 만들기</title>
		<link>http://kanese.wordpress.com/2009/08/07/116/</link>
		<comments>http://kanese.wordpress.com/2009/08/07/116/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 06:28:06 +0000</pubDate>
		<dc:creator>kane</dc:creator>
				<category><![CDATA[전산일기]]></category>
		<category><![CDATA[직장일기]]></category>
		<category><![CDATA[AutoIt]]></category>
		<category><![CDATA[자동화]]></category>

		<guid isPermaLink="false">http://kanese.wordpress.com/?p=116</guid>
		<description><![CDATA[이번 주 업무 보고서 파일을 자동으로 만드는 스크립트를 작성했다. 주간 보고서를 개별 파일로 관리하는데, 매주 업무 보고서를 작성할 때마다 지난 주 업무 보고서를 복사해서 앞에 붙은 사본 표시 지우고, 날짜를 맞게 고치는 일이 별거 아니지만 은근히 귀찮다. 그래서 새로운 이름으로 파일을 복사하는 AutoIt v3 스크립트를 만들었다.
#cs ----------------------------------------------------------------------------

 AutoIt Version: 3.3.0.0
 Author:         myName

 Script Function:
 Template [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kanese.wordpress.com&blog=393495&post=116&subd=kanese&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>이번 주 업무 보고서 파일을 자동으로 만드는 스크립트를 작성했다. 주간 보고서를 개별 파일로 관리하는데, 매주 업무 보고서를 작성할 때마다 지난 주 업무 보고서를 복사해서 앞에 붙은 사본 표시 지우고, 날짜를 맞게 고치는 일이 별거 아니지만 은근히 귀찮다. 그래서 새로운 이름으로 파일을 복사하는 AutoIt v3 스크립트를 만들었다.</p>
<pre style="padding-left:30px;">#cs ----------------------------------------------------------------------------

 AutoIt Version: 3.3.0.0
 Author:         myName

 Script Function:
 Template AutoIt script.

#ce ----------------------------------------------------------------------------

; Script Start - Add your code below here

Dim $dst
Dim $pattern = "(.*)서상원_(..)주차_(......)_(.)주-취합용.gul"
$path = StringRegExpReplace($CmdLine[1], $pattern, "\1")
$yweek = StringRegExpReplace($CmdLine[1], $pattern, "\2")
$ym = StringRegExpReplace($CmdLine[1], $pattern, "\3")
$mweek = StringRegExpReplace($CmdLine[1], $pattern, "\4")
$dst = $path &amp; "서상원_" &amp; $yweek + 1 &amp; "주차_" &amp; $ym &amp; "_" &amp; $mweek + 1 &amp; "주-취합용.gul"
;MsgBox(0, "test", $dst)
FileCopy($CmdLine[1], $dst)</pre>
<p>위 스크립트를 컴파일해서 파일에 연결시켜두고, 실행하면 새 파일이 생긴다.</p>
<p>하는 일은 아주 간단하다. 다른 이름으로 파일을 복사하는 것 뿐이다. 그리고 완전히 자동화된 버전도 아니다. 한 달이 끝나면 주차를 다시 처음으로 돌려줘야 하는데, 언제 달이 끝나는지 몰라서 그 때는 전처럼 수동으로 복사해야 한다.</p>
<p>반쯤은 연습삼아 만든거지만, 잡무는 최대한 자동화해야 인생이 편하다.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kanese.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kanese.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kanese.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kanese.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kanese.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kanese.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kanese.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kanese.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kanese.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kanese.wordpress.com/116/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kanese.wordpress.com&blog=393495&post=116&subd=kanese&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kanese.wordpress.com/2009/08/07/116/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/818b849fd014af89b34d9766056e731f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kane</media:title>
		</media:content>
	</item>
		<item>
		<title>N-dimensional array position</title>
		<link>http://kanese.wordpress.com/2009/08/01/n-dimensional-array-position/</link>
		<comments>http://kanese.wordpress.com/2009/08/01/n-dimensional-array-position/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 15:09:23 +0000</pubDate>
		<dc:creator>kane</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kanese.wordpress.com/?p=114</guid>
		<description><![CDATA[N-dimensional array position = (P0, n[N], delta[N][N])
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kanese.wordpress.com&blog=393495&post=114&subd=kanese&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>N-dimensional array position = (P0, n[N], delta[N][N])</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kanese.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kanese.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kanese.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kanese.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kanese.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kanese.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kanese.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kanese.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kanese.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kanese.wordpress.com/114/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kanese.wordpress.com&blog=393495&post=114&subd=kanese&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kanese.wordpress.com/2009/08/01/n-dimensional-array-position/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/818b849fd014af89b34d9766056e731f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kane</media:title>
		</media:content>
	</item>
		<item>
		<title>하지 마라</title>
		<link>http://kanese.wordpress.com/2009/05/18/%ed%95%98%ec%a7%80-%eb%a7%88%eb%9d%bc/</link>
		<comments>http://kanese.wordpress.com/2009/05/18/%ed%95%98%ec%a7%80-%eb%a7%88%eb%9d%bc/#comments</comments>
		<pubDate>Mon, 18 May 2009 14:47:19 +0000</pubDate>
		<dc:creator>kane</dc:creator>
				<category><![CDATA[직장일기]]></category>

		<guid isPermaLink="false">http://kanese.wordpress.com/?p=97</guid>
		<description><![CDATA[사회 생활을 하다보면 하기 싫은 일을 해야 할 때가 있다. 어쩌면 하고 싶은 일을 하는 시간보다 하기 싫은 일을 하는 시간이 길 수도 있다. 하기 싫은 일은 안 하면서 살 수 있을까. 집에 돈이 넘쳐흘러 손가락 까딱 안해도 먹고 살 수 있다면 그럴 수 있을지도 모르겠다. 하지만 보통은 그렇지 못 하다.
&#8220;하기 싫은 일은 도대체 언제 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kanese.wordpress.com&blog=393495&post=97&subd=kanese&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>사회 생활을 하다보면 하기 싫은 일을 해야 할 때가 있다. 어쩌면 하고 싶은 일을 하는 시간보다 하기 싫은 일을 하는 시간이 길 수도 있다. 하기 싫은 일은 안 하면서 살 수 있을까. 집에 돈이 넘쳐흘러 손가락 까딱 안해도 먹고 살 수 있다면 그럴 수 있을지도 모르겠다. 하지만 보통은 그렇지 못 하다.</p>
<p>&#8220;<a href="http://moonslake.egloos.com/4912766">하기 싫은 일은 도대체 언제 해야 할까</a>&#8220;라는 질문의 답은 뭘까. 이 질문에 답하려면 사실 질문을 약간 손봐야 한다. 저 질문에는 &#8220;하기 싫은 일 = 중요하지 않은 일&#8221;이라는 가정이 숨어있다. 즉, &#8220;중요하지 않은 일은 도대체 언제 해야 할까&#8221;로 바꿔야 하고 그에 대한 내 결론은 &#8220;할 필요없다&#8221;이다.</p>
<p>그냥 듣기 좋으라고 하는 소리 같은가? 세상물정 모르는 철없는 소리 같은가? 그럴지도 모른다. 하지만 한 번 생각해보자. 보통 회사에서 일반 직원이 화장실 청소를 해야 한다거나 경비 정산을 직접 해야 한다거나 건물 경비를 해야 한다고 생각하지 않는다. 그런 업무를 맡기기 위한 직원을 따로 뽑거나 용역을 맡긴다. 왜 그럴까. 일반 직원은 원래 그런 걸 할 줄 모르기 때문에? 그 편이 더 싸게 먹히기 때문에? 남들이 그렇게 하니까 따라서 나도 그냥? 아니다. 일반 직원에게는 그런 부수적인 업무보다 &#8220;더 가치있는, 더 돈벌이가 되는&#8221; 일을 해주길 바라기 때문이다. 업무에 있어서도 똑같은 잣대가 사용된다.</p>
<p>새벽부터 밤늦게까지, 쉼없이, 성실하고, 아주 깔끔하게 잡무를 처리해도 설렁설렁 다니며, 적당하게 중요 업무를 처리한 사람보다 인정받지 못 한다. 아무리 깔끔하게 처리해도 잡일은 잡일이고, 어설프게 했을 망정 중요한 일은 중요한 일이다. 호박에 줄 긋는다고 수박되지 않는다.</p>
<p>하고 있는, 할 수 있는 일 중에 가장 중요하고, 하고 싶은 일을 하라. 당신이 그보다 가치 있는 일을 하고 있는 동안에는 별 쓸모없는 일을 망쳤다고 해서 그대를 비난하지 못 한다. 오히려 당신이 잡동사니를 치우는데 적합하지 않다는 것을 보여줄수록 하찮은 것들은 당신으로부터 멀어질 것이다.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kanese.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kanese.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kanese.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kanese.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kanese.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kanese.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kanese.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kanese.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kanese.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kanese.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kanese.wordpress.com&blog=393495&post=97&subd=kanese&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kanese.wordpress.com/2009/05/18/%ed%95%98%ec%a7%80-%eb%a7%88%eb%9d%bc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/818b849fd014af89b34d9766056e731f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kane</media:title>
		</media:content>
	</item>
		<item>
		<title>책 값을 아끼자</title>
		<link>http://kanese.wordpress.com/2009/03/28/%ec%b1%85-%ea%b0%92%ec%9d%84-%ec%95%84%eb%81%bc%ec%9e%90/</link>
		<comments>http://kanese.wordpress.com/2009/03/28/%ec%b1%85-%ea%b0%92%ec%9d%84-%ec%95%84%eb%81%bc%ec%9e%90/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 16:11:52 +0000</pubDate>
		<dc:creator>kane</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kanese.wordpress.com/?p=91</guid>
		<description><![CDATA[요새 너무 스트레스를 받아 참다참다참다 못 참겠어서 책을 지르려는데&#8230; 비싸다! OTL 세계 책의 날 행사라는대도 5만원이 넘는다. 쿠폰을 챙겨봐도 3천원이 최대. 그동안 쌓아놓은 마일리지를 탁탁 다 털어쓴대도 아직 4만원 정도가 남는다. 으음~ 고민고민. 여기에 살을 좀 붙이면 다시 5만원대로 올라갈텐데&#8230; 하면서 그냥 이것저것 뒤적이고 있는데 이상한 것들이 눈에 띄었다. 예치금이니 정액권이니. 평소라면 무시하고 지나갔을텐데 책이 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kanese.wordpress.com&blog=393495&post=91&subd=kanese&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>요새 너무 스트레스를 받아 참다참다참다 못 참겠어서 책을 지르려는데&#8230; 비싸다! OTL 세계 책의 날 행사라는대도 5만원이 넘는다. 쿠폰을 챙겨봐도 3천원이 최대. 그동안 쌓아놓은 마일리지를 탁탁 다 털어쓴대도 아직 4만원 정도가 남는다. 으음~ 고민고민. 여기에 살을 좀 붙이면 다시 5만원대로 올라갈텐데&#8230; 하면서 그냥 이것저것 뒤적이고 있는데 이상한 것들이 눈에 띄었다. 예치금이니 정액권이니. 평소라면 무시하고 지나갔을텐데 책이 정말 사고 싶었는지, 혹시 할인 좀 되려나 싶어서 계속 뒤적였다. 그러다가 상품권 충전하기라는 버튼을 눌러봤는데&#8230;</p>
<p>도서문화상품권/도서생활권 충전을 선택하니 북앤라이프 캐시로 전환해야 다시 교보문고에서 쓸 수 있도록 전환할 수 있댄다. 북앤라이프라는 사이트는 도서상품권을 사이버 캐시로 전환한 다음에 각종 사이트에서 다시 전환해서 쓸 수 있는 서비스를 제공하는 사이트더라. 그런데 나의 날카로운 눈을 벗어나지 못 한 것이 있으니, 바로바로 &#8220;무료충전소&#8221;!!</p>
<p>공짜라면 자다가도 일어나는 내가 방앗간을 그냥 지나칠 수야 없지. 매력적인 건 북앤라이프에서 충전한 캐시를 바로 교보문고 예치금으로 전환해서 책 구매에 쓸 수 있다는 거다. 이게 왠 떡. 오늘 하루 무료충전소에서 열심히 클릭질을 해댄 결과 4,900원의 예치금을 획득했다. 앉은 자리에서 5천원을 번거다. 이거 꽤 쏠쏠한데? ㅎ</p>
<p>무료충전소를 이용할 때 주의할 것이 있는데 개인정보를 제공해야 한다는 점이다. 대부분이 회원가입이나 이벤트 참여를 통한 캐시 적립이기 때문에 온라인으로 개인정보를 제공하는 걸 꺼리는 사람은 이용하기 어렵다. 난 그다지 신경쓰지 않는 편이지만 그래도 무료충전소를 이용할 때 내가 고려하는 것은 다음과 같다.</p>
<p>DO</p>
<p>1. 무료 회원가입, 이벤트 응모 위주로 참여한다. 특히 보험사 같은 곳에서 하는 이벤트를 선호한다. 가입절차 없이 간단히 정보만 입력하고 클릭하면 되니까. 나중에 걸어오는 상품 권유 전화는 적당히 응대하고 끊으면 된다.</p>
<p>DON&#8217;T</p>
<p>1. 유료 회원가입, 유료 서비스 결제는 피한다.</p>
<p>2. 무료 서비스 체험도 피한다. 무료 서비스 체험은 대부분 체험 기간이 지나면 자동으로 유료 결제로 전환된다. 신경써서 체크하지 않는다면 모르는 사이에 돈이 세어나갈 수 있다. 혹 떼려다 혹 붙이는 경우.</p>
<p>3. 너무 허접해 보이는 사이트는 회원가입을 피한다. 사이트를 겉보기만으로 판단해서는 안되겠지만 개인정보 유출이 우려되는 허접한 사이트는 회피기동으로 적당히 피해주는 센스.</p>
<p>p.s: 이 글은 교보문고 이용을 가정하고 있다.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kanese.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kanese.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kanese.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kanese.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kanese.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kanese.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kanese.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kanese.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kanese.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kanese.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kanese.wordpress.com&blog=393495&post=91&subd=kanese&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kanese.wordpress.com/2009/03/28/%ec%b1%85-%ea%b0%92%ec%9d%84-%ec%95%84%eb%81%bc%ec%9e%90/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/818b849fd014af89b34d9766056e731f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kane</media:title>
		</media:content>
	</item>
		<item>
		<title>C++에서 형변환(type casting)</title>
		<link>http://kanese.wordpress.com/2009/03/26/c%ec%97%90%ec%84%9c-%ed%98%95%eb%b3%80%ed%99%98type-casting/</link>
		<comments>http://kanese.wordpress.com/2009/03/26/c%ec%97%90%ec%84%9c-%ed%98%95%eb%b3%80%ed%99%98type-casting/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 12:17:47 +0000</pubDate>
		<dc:creator>kane</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kanese.wordpress.com/?p=77</guid>
		<description><![CDATA[C++에는 *_cast 형태의 여러 형변환 함수가 있다. 가능한 형변환이 없는 코드를 짜는 게 좋다고 하지만 불가피한 경우들이 있다. 형변환 함수가 많다보니 언제 어떤 형변환 함수를 써야하는지 혼동스러울 수 있다. 각 형변환에 대해 간단히 정리해보자.
C++에는 네 개의 형변환 함수가 있다. static_cast, dynamic_cast, reinterpret_cast, const_cast가 그것이다. 이 중 static_cast와 dynamic_cast를 가장 많이 사용하고, const_cast를 어느 정도, reinterpret_cast는 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kanese.wordpress.com&blog=393495&post=77&subd=kanese&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>C++에는 *_cast 형태의 여러 형변환 함수가 있다. 가능한 형변환이 없는 코드를 짜는 게 좋다고 하지만 불가피한 경우들이 있다. 형변환 함수가 많다보니 언제 어떤 형변환 함수를 써야하는지 혼동스러울 수 있다. 각 형변환에 대해 간단히 정리해보자.</p>
<p>C++에는 네 개의 형변환 함수가 있다. static_cast, dynamic_cast, reinterpret_cast, const_cast가 그것이다. 이 중 static_cast와 dynamic_cast를 가장 많이 사용하고, const_cast를 어느 정도, reinterpret_cast는 거의 쓰지 않는다.</p>
<p>클래스 포인터를 형변환할 때 기본적으로 dynamic_cast를 사용하고 dynamic_cast를 쓸 수 없는 경우에 static_cast를 사용한다. dynamic_cast는 실행 시간에 객체의 타입 정보를 참조하여 형변환하기 때문에 다형성(polymorphic)을 가지지 않은 객체는 변환할 수 없다. 가상 멤버를 가진 클래스에는 dynamic_cast를, 가상 멤버가 없는 클래스에는 static_cast를 사용하자. 가상 멤버를 가지고 있는 경우에도 static_cast를 사용할 수 있지만 안전하지 않으므로 안쓰는 게 좋다. 그리고 dynamic_cast는 형변환에 실패하면 0을 리턴하기 때문에 실행 중에 체크할 수 있다.</p>
<p>const 객체의 const 특성을 없애고 싶을 때는 const_cast를 사용한다. 하지만 객체를 최초로 생성할 때 const 특성을 부여한 경우에는 const_cast의 동작을 보장할 수 없다. 쓰지 말아라.</p>
<p>reinterpret_cast는 전혀 관계 없는 형간의 변환에 쓰인다. 예를 들어 char* p = reinterpret_cast&lt;char*&gt;(0xEF000000)과 같은 식으로 임의의 값을 주소로 바꿀 때 쓴다. 이는 임베디드 프로그래밍에서 하드웨어 주소를 변수에 맵핑해서 다루는 방식이다. 일반 응용 프로그램에서는 거의 쓸 일이 없을 것이다.</p>
<p>참고 문헌</p>
<p>Stroustrup, The C++ Programming Language, special edition, Addison Wesley, 2000</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kanese.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kanese.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kanese.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kanese.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kanese.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kanese.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kanese.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kanese.wordpress.com/77/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kanese.wordpress.com/77/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kanese.wordpress.com/77/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kanese.wordpress.com&blog=393495&post=77&subd=kanese&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kanese.wordpress.com/2009/03/26/c%ec%97%90%ec%84%9c-%ed%98%95%eb%b3%80%ed%99%98type-casting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/818b849fd014af89b34d9766056e731f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kane</media:title>
		</media:content>
	</item>
		<item>
		<title>iPod shuffle로 podcast 듣기</title>
		<link>http://kanese.wordpress.com/2009/01/22/ipod-shuffle%eb%a1%9c-podcast-%eb%93%a3%ea%b8%b0/</link>
		<comments>http://kanese.wordpress.com/2009/01/22/ipod-shuffle%eb%a1%9c-podcast-%eb%93%a3%ea%b8%b0/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 16:05:20 +0000</pubDate>
		<dc:creator>kane</dc:creator>
				<category><![CDATA[한량일기]]></category>

		<guid isPermaLink="false">http://kanese.wordpress.com/?p=73</guid>
		<description><![CDATA[누나가 누군가에게 얻어 쓰던 iPod shuffle을 다시 얻었다. 회사 출퇴근하면서 BBC Learning English의 podcast를 들으며 영어 공부를 해야겠다고 생각했다. 이어폰을 사서 꽂았는데 소리가 안난다. 이어폰이 고장난 건가 생각했지만 그건 아닌 것 같고. 내가 조작법을 모르는 건가 생각도 해봤다. 녹색 불이 잠깐 들어왔다 곧 주황 불로 바뀌길래 충전이 덜 됐나보다 하고 생각했다.
집에 와서 충전을 하고 다시 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kanese.wordpress.com&blog=393495&post=73&subd=kanese&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p style="text-align:justify;">누나가 누군가에게 얻어 쓰던 iPod shuffle을 다시 얻었다. 회사 출퇴근하면서 BBC Learning English의 podcast를 들으며 영어 공부를 해야겠다고 생각했다. 이어폰을 사서 꽂았는데 소리가 안난다. 이어폰이 고장난 건가 생각했지만 그건 아닌 것 같고. 내가 조작법을 모르는 건가 생각도 해봤다. 녹색 불이 잠깐 들어왔다 곧 주황 불로 바뀌길래 충전이 덜 됐나보다 하고 생각했다.</p>
<p style="text-align:justify;">집에 와서 충전을 하고 다시 이어폰을 꽂았는데 마찬가지다. 이것저것 해보다가 샘플로 음악을 하나 올렸는데 그건 들린다. iPod나 이어폰의 문제는 아니었다. 음질이 낮아서 그런가 싶어 음질이 높은 걸로도 해보고, 포맷이 문젠가 싶어 AAC로 변환도 해보고, 가지가지 다 했는데도 안된다. podcast만 안된다. 사람 미치겠다. 이거 들을려고 이어폰도 샀는데.</p>
<p style="text-align:justify;">구글로 검색을 해봐도 답이 없다. 무슨 reset하는 법, 재설정 하는 법, 업그레이드 하는 법 다 따라해보고 설정 화면에 옵션이란 옵션은 다 바꿔봤는데도 안된다. 슬슬 지쳐간다. 한 시간은 이걸 붙들고 있었던 것 같다.</p>
<p style="text-align:justify;">이제 거의 포기하고 노래나 들을까 하다 우연히 해결했다. 음악을 몇 개 올렸는데 이것도 제대로 안나오네. 이게 무슨 일이지? 요리조리 보다 옆에 달린 조그만 버튼을 옆으로 옮겼더니&#8230; 잘 나온다. orz iTunes에서 살펴보니 podcast는 기본으로 임의 재생시 건너뛰도록 설정되어 있었다. 이 기본 설정을 바꾸는 방법은 없는 것 같고 각 podcast 별로 설정을 바꿀 수는 있는데, 귀찮아서 그리고 나중에 업데이트 되는 podcast에는 적용이 안됟까봐 그냥 순차 재생 모드로 놓고 쓸 예정이다.</p>
<p style="text-align:justify;">결론은 podcast는 shuffle 모드로 들으면 안된다는 거.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kanese.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kanese.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kanese.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kanese.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kanese.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kanese.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kanese.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kanese.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kanese.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kanese.wordpress.com/73/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kanese.wordpress.com&blog=393495&post=73&subd=kanese&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://kanese.wordpress.com/2009/01/22/ipod-shuffle%eb%a1%9c-podcast-%eb%93%a3%ea%b8%b0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/818b849fd014af89b34d9766056e731f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kane</media:title>
		</media:content>
	</item>
	</channel>
</rss>