<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Life goes on</title>
	<atom:link href="http://cychong.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://cychong.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Sun, 19 Apr 2009 05:20:28 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='cychong.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/4f6d5b68cf6c3f231a3a7a5fb0cfb315?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Life goes on</title>
		<link>http://cychong.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://cychong.wordpress.com/osd.xml" title="Life goes on" />
		<item>
		<title>slab in linux</title>
		<link>http://cychong.wordpress.com/2009/04/19/slab-in-linux/</link>
		<comments>http://cychong.wordpress.com/2009/04/19/slab-in-linux/#comments</comments>
		<pubDate>Sun, 19 Apr 2009 05:05:04 +0000</pubDate>
		<dc:creator>cychong</dc:creator>
				<category><![CDATA[study]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[slab]]></category>

		<guid isPermaLink="false">http://cychong.wordpress.com/?p=283</guid>
		<description><![CDATA[linux buffer management를 보다보니 slab이란 용어가 나옴.
예전에 용책임이 slab이란 말을 했고, 리눅스에서 메모리 확인할 때 slab info를 쓴다는 말을 들었는데 그게 뭘까 해서 찾아 봄.  
slab은 커널 내부에서 메모리 관리를 할때 사용하는 방식.
- slab는 일반적인 메모리 관리 layer
- slab은 여러개의 cache로 이루어지는데 각각의 cache는 cache되는 object type 마다 1개씩 존재함. 즉 inode용 cache, skbuffer용 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cychong.wordpress.com&blog=25687&post=283&subd=cychong&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>linux buffer management를 보다보니 slab이란 용어가 나옴.<br />
예전에 용책임이 slab이란 말을 했고, 리눅스에서 메모리 확인할 때 slab info를 쓴다는 말을 들었는데 그게 뭘까 해서 찾아 봄.  </p>
<p>slab은 커널 내부에서 메모리 관리를 할때 사용하는 방식.<br />
- slab는 일반적인 메모리 관리 layer<br />
- slab은 여러개의 cache로 이루어지는데 각각의 cache는 cache되는 object type 마다 1개씩 존재함. 즉 inode용 cache, skbuffer용 cache 등..<br />
- 하나의 cache는 1개 혹은 그 이상의 물리적으로 연속된 page로 구성됨. 대개 1개 임.<br />
  -&gt; 이렇게 때문에 memory fragmentation이 발생하지 않는다고 하는데 아마도 fragmentation의 기준을 page로 삼기 때문이 아닌가 싶음. 좀 더 확인 필요.<br />
- cache마다 full, partial, empty등의 속성이 있어 메모리 할당이 요구되는 경우 partial 혹은 empty에서 할당됨<br />
- 2.2 부터 memory fragmentation을 처리하기 위해 도입됨.<br />
  -&gt; 그 전에는 buddy system으로 구성됨. 그러나 작은 크기의 데이터할당이 많은 경우 buddy system은 internal fragmentation 문제를 가짐.<br />
- vmstat -m</p>
<p>* Internal fragmentation : 실제 필요한 것보다 많이 할당해서 낭비되는 경우. 예를 들어 buffer의 크기를 무조건 2K씩 할당하는 경우 2K보다 작은 경우는 (2k &#8211; 실제 데이터 크기) 만큼의 낭비가 발생한다.<br />
* External fragmentation : 실제 메모리 공간에서 남아 있는 공간의 합은 충분하지만 할당되지 않은 공간들이 여러 곳에 산재해 있어 하나의 버퍼로 사용될 수 없는 경우. </p>
<p>학교 다닐 때 공부했던 단어를 다시 들으니 기분이 ..</p>
<p>Buddy system</p>
<p>참고</p>
<p>http://www.inf.fu-berlin.de/lehre/SS01/OS/Lectures/Lecture14.pdf</p>
<p>Linux kernel Development<br />
http://kerneltrap.org/node/5336 budy and slab allocators.<br />
http://www.linuxworld.com.au/article/189774/slab_defragmentation?fp=4194304&amp;fpid=1 slab defragmentation</p>
<p>http://en.wikipedia.org/wiki/Slab_allocation</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cychong.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cychong.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cychong.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cychong.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cychong.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cychong.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cychong.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cychong.wordpress.com/283/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cychong.wordpress.com/283/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cychong.wordpress.com/283/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cychong.wordpress.com&blog=25687&post=283&subd=cychong&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://cychong.wordpress.com/2009/04/19/slab-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf1f2b88a2f8699e92a235e968a23dff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cychong</media:title>
		</media:content>
	</item>
		<item>
		<title>멤피스의 미투데이 &#8211; 2009년 4월 16일</title>
		<link>http://cychong.wordpress.com/2009/04/17/%eb%a9%a4%ed%94%bc%ec%8a%a4%ec%9d%98-%eb%af%b8%ed%88%ac%eb%8d%b0%ec%9d%b4-2009%eb%85%84-4%ec%9b%94-16%ec%9d%bc/</link>
		<comments>http://cychong.wordpress.com/2009/04/17/%eb%a9%a4%ed%94%bc%ec%8a%a4%ec%9d%98-%eb%af%b8%ed%88%ac%eb%8d%b0%ec%9d%b4-2009%eb%85%84-4%ec%9b%94-16%ec%9d%bc/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 19:30:43 +0000</pubDate>
		<dc:creator>cychong</dc:creator>
				<category><![CDATA[me2day]]></category>

		<guid isPermaLink="false">http://cychong.wordpress.com/2009/04/17/%eb%a9%a4%ed%94%bc%ec%8a%a4%ec%9d%98-%eb%af%b8%ed%88%ac%eb%8d%b0%ec%9d%b4-2009%eb%85%84-4%ec%9b%94-16%ec%9d%bc/</guid>
		<description><![CDATA[

외장하드 케이스 Datamore M3-SUF 일명 맥미니 하드 케이스 판매합니다. 단돈 35,000원 사용 거의 안 했습니다. 그 전에는 무소음케이스만 써서 팬달린 외장케이스 적응 안되네요(팝니다. 근데 지금은 하드 자체 소리가 더 크다는)2009-04-06 22:30:28
오늘 키보드 직거래 하기로 했는데 아뿔싸. 서로 연락처를 주고 받지 않았구나. -_- 을지로에서 고속터미널까지 오신다고 했는데 미안해라 쩝…(우째 이런 일이&#8230;)2009-04-07 20:31:47
2009년 4월은 바빠질 것같다. 이달말까지 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cychong.wordpress.com&blog=25687&post=282&subd=cychong&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div class="me2day_daily_digest">
<ul>
<li>외장하드 케이스 <a href='http://www.icoda.co.kr/i_product/pro_view.html?it_num=87693'>Datamore M3-SUF</a> 일명 맥미니 하드 케이스 판매합니다. 단돈 35,000원 사용 거의 안 했습니다. 그 전에는 무소음케이스만 써서 팬달린 외장케이스 적응 안되네요<span class="me2_tags">(팝니다. 근데 지금은 하드 자체 소리가 더 크다는)</span><span class="datetime"><a href="http://me2day.net/cychong/2009/04/06#22:30:28" rel="bookmark" title="퍼머링크" class="datetime">2009-04-06 22:30:28</a></span></li>
<li>오늘 키보드 직거래 하기로 했는데 아뿔싸. 서로 연락처를 주고 받지 않았구나. -_- 을지로에서 고속터미널까지 오신다고 했는데 미안해라 쩝…<span class="me2_tags">(우째 이런 일이&#8230;)</span><span class="datetime"><a href="http://me2day.net/cychong/2009/04/07#20:31:47" rel="bookmark" title="퍼머링크" class="datetime">2009-04-07 20:31:47</a></span></li>
<li>2009년 4월은 바빠질 것같다. 이달말까지 구현해야 하는 기능이 2가지나 있으니. 게다가 mission critical에 준한 기능이라 꼼꼼하게 잘 만들어야 한다.<span class="me2_tags">(그래도 재밌다. 난 아직 개발자니까)</span><span class="datetime"><a href="http://me2day.net/cychong/2009/04/07#21:23:42" rel="bookmark" title="퍼머링크" class="datetime">2009-04-07 21:23:42</a></span></li>
<li><a href='http://mushman.co.kr/2690993'>VoIP on WEB2.0 :: 업무에 도움될만한 트위터 툴 살펴보기</a> 트위터용 각종 툴 들. 블로그와의 연동이나 reminder 등이 흥미롭다.<span class="me2_tags">(twitter)</span><span class="datetime"><a href="http://me2day.net/cychong/2009/04/07#22:47:06" rel="bookmark" title="퍼머링크" class="datetime">2009-04-07 22:47:06</a></span></li>
<li>“Alternatives to Windows, Mac, Linux and online applications | AlternativeTo.net”:http://alternativeto.net/ 좋은데…<span class="me2_tags">(찜해놓자.)</span><span class="datetime"><a href="http://me2day.net/cychong/2009/04/16#06:21:20" rel="bookmark" title="퍼머링크" class="datetime">2009-04-16 06:21:20</a></span></li>
<li>어라 아래는 미투 bookmarklet으로 했는데도 링크가 없어져 버렸네. 이상하네<span class="me2_tags">(미투 이상한가요)</span><span class="datetime"><a href="http://me2day.net/cychong/2009/04/16#06:24:40" rel="bookmark" title="퍼머링크" class="datetime">2009-04-16 06:24:40</a></span></li>
<li>어제부로 5월 말까지 해야 할 패치 계획이 잡혔다. 4월 하나, 5월 15일 하나, 5월 말 하나. -_-<span class="me2_tags">(아마도 이게 올해 코딩의 전부가 아닐까?)</span><span class="datetime"><a href="http://me2day.net/cychong/2009/04/16#06:25:26" rel="bookmark" title="퍼머링크" class="datetime">2009-04-16 06:25:26</a></span></li>
</ul>
<p style="background:url('http://me2day.net/images/me2day_icon.gif') no-repeat right top;padding-right:25px;text-align:right;font-size:.9em;">이 글은 <a href="http://me2day.net/cychong" target="_blank">멤피스</a>님의 <a href="http://me2day.net/cychong/2009/04/06#22:30:28">2009년 4월 6일</a>에서 <a href="http://me2day.net/cychong/2009/04/16#06:25:26">2009년 4월 16일</a>까지의 미투데이 내용입니다.</p>
</div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cychong.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cychong.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cychong.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cychong.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cychong.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cychong.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cychong.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cychong.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cychong.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cychong.wordpress.com/282/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cychong.wordpress.com&blog=25687&post=282&subd=cychong&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://cychong.wordpress.com/2009/04/17/%eb%a9%a4%ed%94%bc%ec%8a%a4%ec%9d%98-%eb%af%b8%ed%88%ac%eb%8d%b0%ec%9d%b4-2009%eb%85%84-4%ec%9b%94-16%ec%9d%bc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf1f2b88a2f8699e92a235e968a23dff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cychong</media:title>
		</media:content>
	</item>
		<item>
		<title>책</title>
		<link>http://cychong.wordpress.com/2009/04/12/%ec%b1%85/</link>
		<comments>http://cychong.wordpress.com/2009/04/12/%ec%b1%85/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 12:31:32 +0000</pubDate>
		<dc:creator>cychong</dc:creator>
				<category><![CDATA[me2day]]></category>
		<category><![CDATA[book]]></category>

		<guid isPermaLink="false">http://cychong.wordpress.com/?p=276</guid>
		<description><![CDATA[* 개구리 멀리뛰기/금동헌/아주좋음
* 환희의 여섯번째 생일/강은진/아주좋음
* 우리 집의 예쁜자/김성은/보통
* 마법학교에서 생긴 일/김세실/보통
* 알아맞쳐 볼래/차미정/아주좋음
* 곰가족과 시끌벅쩍 괴물들/차보금/아주좋음
* 마술약을 먹은 보글보글 아줌마/신지윤/아주좋음
* 사라진 아빠를 찾아서/장선애/아주좋음
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cychong.wordpress.com&blog=25687&post=276&subd=cychong&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>* 개구리 멀리뛰기/금동헌/아주좋음</p>
<p>* 환희의 여섯번째 생일/강은진/아주좋음</p>
<p>* 우리 집의 예쁜자/김성은/보통</p>
<p>* 마법학교에서 생긴 일/김세실/보통</p>
<p>* 알아맞쳐 볼래/차미정/아주좋음</p>
<p>* 곰가족과 시끌벅쩍 괴물들/차보금/아주좋음</p>
<p>* 마술약을 먹은 보글보글 아줌마/신지윤/아주좋음</p>
<p>* 사라진 아빠를 찾아서/장선애/아주좋음</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cychong.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cychong.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cychong.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cychong.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cychong.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cychong.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cychong.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cychong.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cychong.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cychong.wordpress.com/276/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cychong.wordpress.com&blog=25687&post=276&subd=cychong&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://cychong.wordpress.com/2009/04/12/%ec%b1%85/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf1f2b88a2f8699e92a235e968a23dff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cychong</media:title>
		</media:content>
	</item>
		<item>
		<title>EBS 스트리밍 듣기</title>
		<link>http://cychong.wordpress.com/2009/04/12/ebs-%ec%8a%a4%ed%8a%b8%eb%a6%ac%eb%b0%8d-%eb%93%a3%ea%b8%b0/</link>
		<comments>http://cychong.wordpress.com/2009/04/12/ebs-%ec%8a%a4%ed%8a%b8%eb%a6%ac%eb%b0%8d-%eb%93%a3%ea%b8%b0/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 22:51:37 +0000</pubDate>
		<dc:creator>cychong</dc:creator>
				<category><![CDATA[lifehack]]></category>

		<guid isPermaLink="false">http://cychong.wordpress.com/?p=271</guid>
		<description><![CDATA[![완료] EBS 방송 주소를 어떻게 알 수 있을까요?](http://kldp.org/node/95974)
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cychong.wordpress.com&blog=25687&post=271&subd=cychong&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>![완료] EBS 방송 주소를 어떻게 알 수 있을까요?](http://kldp.org/node/95974)</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cychong.wordpress.com/271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cychong.wordpress.com/271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cychong.wordpress.com/271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cychong.wordpress.com/271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cychong.wordpress.com/271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cychong.wordpress.com/271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cychong.wordpress.com/271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cychong.wordpress.com/271/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cychong.wordpress.com/271/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cychong.wordpress.com/271/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cychong.wordpress.com&blog=25687&post=271&subd=cychong&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://cychong.wordpress.com/2009/04/12/ebs-%ec%8a%a4%ed%8a%b8%eb%a6%ac%eb%b0%8d-%eb%93%a3%ea%b8%b0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf1f2b88a2f8699e92a235e968a23dff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cychong</media:title>
		</media:content>
	</item>
		<item>
		<title>책</title>
		<link>http://cychong.wordpress.com/2009/04/10/%ec%84%b8%ec%83%81%ec%97%90%ec%84%9c-%ea%b0%80%ec%9e%a5-%eb%a9%8b%ec%a7%84-%eb%8f%bc%ec%a7%80-%eb%af%b8%ec%88%a0%ea%b4%80%ec%97%90%ec%84%9c-%eb%a7%8c%eb%82%9c-%ec%88%98%ed%95%99-%ea%b3%b0/</link>
		<comments>http://cychong.wordpress.com/2009/04/10/%ec%84%b8%ec%83%81%ec%97%90%ec%84%9c-%ea%b0%80%ec%9e%a5-%eb%a9%8b%ec%a7%84-%eb%8f%bc%ec%a7%80-%eb%af%b8%ec%88%a0%ea%b4%80%ec%97%90%ec%84%9c-%eb%a7%8c%eb%82%9c-%ec%88%98%ed%95%99-%ea%b3%b0/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 12:27:28 +0000</pubDate>
		<dc:creator>cychong</dc:creator>
				<category><![CDATA[me2day]]></category>
		<category><![CDATA[book]]></category>

		<guid isPermaLink="false">http://cychong.wordpress.com/2009/04/10/%ec%84%b8%ec%83%81%ec%97%90%ec%84%9c-%ea%b0%80%ec%9e%a5-%eb%a9%8b%ec%a7%84-%eb%8f%bc%ec%a7%80-%eb%af%b8%ec%88%a0%ea%b4%80%ec%97%90%ec%84%9c-%eb%a7%8c%eb%82%9c-%ec%88%98%ed%95%99-%ea%b3%b0/</guid>
		<description><![CDATA[
세상에서 가장 멋진 돼지
미술관에서 만난 수학
곰 세 마리와 금발머리
집 없는 아이
이상한 나라의 앨리스

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cychong.wordpress.com&blog=25687&post=270&subd=cychong&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><ul>
<li>세상에서 가장 멋진 돼지</li>
<li>미술관에서 만난 수학</li>
<li>곰 세 마리와 금발머리</li>
<li>집 없는 아이</li>
<li>이상한 나라의 앨리스</li>
</ul>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cychong.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cychong.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cychong.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cychong.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cychong.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cychong.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cychong.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cychong.wordpress.com/270/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cychong.wordpress.com/270/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cychong.wordpress.com/270/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cychong.wordpress.com&blog=25687&post=270&subd=cychong&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://cychong.wordpress.com/2009/04/10/%ec%84%b8%ec%83%81%ec%97%90%ec%84%9c-%ea%b0%80%ec%9e%a5-%eb%a9%8b%ec%a7%84-%eb%8f%bc%ec%a7%80-%eb%af%b8%ec%88%a0%ea%b4%80%ec%97%90%ec%84%9c-%eb%a7%8c%eb%82%9c-%ec%88%98%ed%95%99-%ea%b3%b0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf1f2b88a2f8699e92a235e968a23dff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cychong</media:title>
		</media:content>
	</item>
		<item>
		<title>책</title>
		<link>http://cychong.wordpress.com/2009/04/09/268/</link>
		<comments>http://cychong.wordpress.com/2009/04/09/268/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 11:42:51 +0000</pubDate>
		<dc:creator>cychong</dc:creator>
				<category><![CDATA[me2day]]></category>
		<category><![CDATA[book]]></category>

		<guid isPermaLink="false">http://cychong.wordpress.com/2009/04/09/268/</guid>
		<description><![CDATA[
양반을 가르친 하인
우렁이 각시
외계인은 팬티를 좋아해
새를 사랑하는 새장
망주석 재판

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cychong.wordpress.com&blog=25687&post=268&subd=cychong&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><ul>
<li>양반을 가르친 하인</li>
<li>우렁이 각시</li>
<li>외계인은 팬티를 좋아해</li>
<li>새를 사랑하는 새장</li>
<li>망주석 재판</li>
</ul>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cychong.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cychong.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cychong.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cychong.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cychong.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cychong.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cychong.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cychong.wordpress.com/268/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cychong.wordpress.com/268/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cychong.wordpress.com/268/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cychong.wordpress.com&blog=25687&post=268&subd=cychong&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://cychong.wordpress.com/2009/04/09/268/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf1f2b88a2f8699e92a235e968a23dff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cychong</media:title>
		</media:content>
	</item>
		<item>
		<title>책</title>
		<link>http://cychong.wordpress.com/2009/04/06/%eb%ac%bc%eb%a7%88%ec%8b%9c%ea%b8%b0-%eb%8c%80%ec%9e%91%ec%a0%84%eb%a7%88%eb%a7%88%eb%8b%a4-%eb%af%b8%eb%84%a4%ec%bd%94-%eb%ad%90%ea%b0%80-%eb%ac%b4%ec%84%9c%ec%9b%8c%ea%b0%95%ec%98%81%ec%84%a0/</link>
		<comments>http://cychong.wordpress.com/2009/04/06/%eb%ac%bc%eb%a7%88%ec%8b%9c%ea%b8%b0-%eb%8c%80%ec%9e%91%ec%a0%84%eb%a7%88%eb%a7%88%eb%8b%a4-%eb%af%b8%eb%84%a4%ec%bd%94-%eb%ad%90%ea%b0%80-%eb%ac%b4%ec%84%9c%ec%9b%8c%ea%b0%95%ec%98%81%ec%84%a0/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 10:40:03 +0000</pubDate>
		<dc:creator>cychong</dc:creator>
				<category><![CDATA[me2day]]></category>
		<category><![CDATA[book]]></category>

		<guid isPermaLink="false">http://cychong.wordpress.com/2009/04/06/%eb%ac%bc%eb%a7%88%ec%8b%9c%ea%b8%b0-%eb%8c%80%ec%9e%91%ec%a0%84%eb%a7%88%eb%a7%88%eb%8b%a4-%eb%af%b8%eb%84%a4%ec%bd%94-%eb%ad%90%ea%b0%80-%eb%ac%b4%ec%84%9c%ec%9b%8c%ea%b0%95%ec%98%81%ec%84%a0/</guid>
		<description><![CDATA[
물마시기 대작전/마마다 미네코
뭐가 무서워/강영선
열려라 통신/전찬희
어른이 되고 싶어요/제니 스토
토마토맨/박건수
식물은 뭘 먹고 자랄까/박혜은
누구 알이 더 많을까/김해원
사이좋은 형제와 이상한 도둑/김장성

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cychong.wordpress.com&blog=25687&post=266&subd=cychong&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><ul>
<li>물마시기 대작전/마마다 미네코</li>
<li>뭐가 무서워/강영선</li>
<li>열려라 통신/전찬희</li>
<li>어른이 되고 싶어요/제니 스토</li>
<li>토마토맨/박건수</li>
<li>식물은 뭘 먹고 자랄까/박혜은</li>
<li>누구 알이 더 많을까/김해원</li>
<li>사이좋은 형제와 이상한 도둑/김장성</li>
</ul>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cychong.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cychong.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cychong.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cychong.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cychong.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cychong.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cychong.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cychong.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cychong.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cychong.wordpress.com/266/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cychong.wordpress.com&blog=25687&post=266&subd=cychong&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://cychong.wordpress.com/2009/04/06/%eb%ac%bc%eb%a7%88%ec%8b%9c%ea%b8%b0-%eb%8c%80%ec%9e%91%ec%a0%84%eb%a7%88%eb%a7%88%eb%8b%a4-%eb%af%b8%eb%84%a4%ec%bd%94-%eb%ad%90%ea%b0%80-%eb%ac%b4%ec%84%9c%ec%9b%8c%ea%b0%95%ec%98%81%ec%84%a0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf1f2b88a2f8699e92a235e968a23dff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cychong</media:title>
		</media:content>
	</item>
		<item>
		<title>멤피스의 미투데이 &#8211; 2009년 4월 5일</title>
		<link>http://cychong.wordpress.com/2009/04/06/%eb%a9%a4%ed%94%bc%ec%8a%a4%ec%9d%98-%eb%af%b8%ed%88%ac%eb%8d%b0%ec%9d%b4-2009%eb%85%84-4%ec%9b%94-5%ec%9d%bc-2/</link>
		<comments>http://cychong.wordpress.com/2009/04/06/%eb%a9%a4%ed%94%bc%ec%8a%a4%ec%9d%98-%eb%af%b8%ed%88%ac%eb%8d%b0%ec%9d%b4-2009%eb%85%84-4%ec%9b%94-5%ec%9d%bc-2/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 19:30:18 +0000</pubDate>
		<dc:creator>cychong</dc:creator>
				<category><![CDATA[me2day]]></category>

		<guid isPermaLink="false">http://cychong.wordpress.com/2009/04/06/%eb%a9%a4%ed%94%bc%ec%8a%a4%ec%9d%98-%eb%af%b8%ed%88%ac%eb%8d%b0%ec%9d%b4-2009%eb%85%84-4%ec%9b%94-5%ec%9d%bc-2/</guid>
		<description><![CDATA[

안테나 수신기 VHF/UHF/FM (KK-3023) 안테나 수신기 VHF/UHF/FM (KK-3023) 실내용 VHF 안테나.(이거면 TV 잘 나오겠지)2009-04-05 15:04:32
우와.. 컬러 백과사전용으로 좋겠다. 사고싶다.(me2book)2009-04-05 15:22:26

WOW! 눈으로 보는 세상의 모든 것



마법천자문을 사줬더니 하도 이것만 봐서 학습만화가 걱정되긴 한데 1권을 봤으니 이것도 2권까지는 봐야겠지(me2book)2009-04-05 15:23:17

바이러스에서 살아남기 2



Lifehacker &#8211; Exercises That Protect Against Carpal Tunnel Syndrome &#8211; Ergonomics 가끔씩 손목을 풀어주자(건강 CTS)2009-04-05 15:29:14
누나가 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cychong.wordpress.com&blog=25687&post=265&subd=cychong&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div class="me2day_daily_digest">
<ul>
<li><a href='http://ozcable.com/good/sa17404.htm'>안테나 수신기 VHF/UHF/FM (KK-3023) 안테나 수신기 VHF/UHF/FM (KK-3023)</a> 실내용 VHF 안테나.<span class="me2_tags">(이거면 TV 잘 나오겠지)</span><span class="datetime"><a href="http://me2day.net/cychong/2009/04/05#15:04:32" rel="bookmark" title="퍼머링크" class="datetime">2009-04-05 15:04:32</a></span></li>
<li>우와.. 컬러 백과사전용으로 좋겠다. 사고싶다.<span class="me2_tags">(me2book)</span><span class="datetime"><a href="http://me2day.net/cychong/2009/04/05#15:22:26" rel="bookmark" title="퍼머링크" class="datetime">2009-04-05 15:22:26</a></span>
<div class="show_content_layer">
<h5>WOW! 눈으로 보는 세상의 모든 것</h5>
<div id="cont_img"><a href="http://book.naver.com/bookdb/book_detail.php?bid=5267569" target="_blank"><img src="http://bookimg.naver.com/coverimg/kyobo/images/book/large/322/l9788950915322.jpg" alt="WOW! 눈으로 보는 세상의 모든 것" /></a></div>
</div>
</li>
<li>마법천자문을 사줬더니 하도 이것만 봐서 학습만화가 걱정되긴 한데 1권을 봤으니 이것도 2권까지는 봐야겠지<span class="me2_tags">(me2book)</span><span class="datetime"><a href="http://me2day.net/cychong/2009/04/05#15:23:17" rel="bookmark" title="퍼머링크" class="datetime">2009-04-05 15:23:17</a></span>
<div class="show_content_layer">
<h5>바이러스에서 살아남기 2</h5>
<div id="cont_img"><a href="http://book.naver.com/bookdb/book_detail.php?bid=5304064" target="_blank"><img src="http://bookimg.naver.com/coverimg/yes24/momo/TopCate69/MidCate06/6854148.jpg" alt="바이러스에서 살아남기 2" /></a></div>
</div>
</li>
<li><a href='http://lifehacker.com/5195481/exercises-that-protect-against-carpal-tunnel-syndrome'>Lifehacker &#8211; Exercises That Protect Against Carpal Tunnel Syndrome &#8211; Ergonomics</a> 가끔씩 손목을 풀어주자<span class="me2_tags">(건강 CTS)</span><span class="datetime"><a href="http://me2day.net/cychong/2009/04/05#15:29:14" rel="bookmark" title="퍼머링크" class="datetime">2009-04-05 15:29:14</a></span></li>
<li>누나가 추천한 책. 기적의 계산법과는 다른 방식으로 접근한다고 하네. 서점에 가서 실물을 확인해 봐야겠다.<span class="me2_tags">(me2book)</span><span class="datetime"><a href="http://me2day.net/cychong/2009/04/05#17:53:20" rel="bookmark" title="퍼머링크" class="datetime">2009-04-05 17:53:20</a></span>
<div class="show_content_layer">
<h5>상위권 영리한 수학 1</h5>
<div id="cont_img"><a href="http://book.naver.com/bookdb/book_detail.php?bid=4609157" target="_blank"><img src="http://bookimg.naver.com/hash_coverimg/aladdin/coveretc/book/coveroff/8/9/6/2/8962430142_1.jpg" alt="상위권 영리한 수학 1" /></a></div>
</div>
</li>
</ul>
<p style="background:url('http://me2day.net/images/me2day_icon.gif') no-repeat right top;padding-right:25px;text-align:right;font-size:.9em;">이 글은 <a href="http://me2day.net/cychong" target="_blank">멤피스</a>님의 <a href="http://me2day.net/cychong/2009/04/05#15:04:32">2009년 4월 5일</a>의 미투데이 내용입니다.</p>
</div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cychong.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cychong.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cychong.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cychong.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cychong.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cychong.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cychong.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cychong.wordpress.com/265/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cychong.wordpress.com/265/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cychong.wordpress.com/265/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cychong.wordpress.com&blog=25687&post=265&subd=cychong&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://cychong.wordpress.com/2009/04/06/%eb%a9%a4%ed%94%bc%ec%8a%a4%ec%9d%98-%eb%af%b8%ed%88%ac%eb%8d%b0%ec%9d%b4-2009%eb%85%84-4%ec%9b%94-5%ec%9d%bc-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf1f2b88a2f8699e92a235e968a23dff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cychong</media:title>
		</media:content>

		<media:content url="http://bookimg.naver.com/coverimg/kyobo/images/book/large/322/l9788950915322.jpg" medium="image">
			<media:title type="html">WOW! 눈으로 보는 세상의 모든 것</media:title>
		</media:content>

		<media:content url="http://bookimg.naver.com/coverimg/yes24/momo/TopCate69/MidCate06/6854148.jpg" medium="image">
			<media:title type="html">바이러스에서 살아남기 2</media:title>
		</media:content>

		<media:content url="http://bookimg.naver.com/hash_coverimg/aladdin/coveretc/book/coveroff/8/9/6/2/8962430142_1.jpg" medium="image">
			<media:title type="html">상위권 영리한 수학 1</media:title>
		</media:content>
	</item>
		<item>
		<title>멤피스의 미투데이 &#8211; 2009년 4월 5일</title>
		<link>http://cychong.wordpress.com/2009/04/05/%eb%a9%a4%ed%94%bc%ec%8a%a4%ec%9d%98-%eb%af%b8%ed%88%ac%eb%8d%b0%ec%9d%b4-2009%eb%85%84-4%ec%9b%94-5%ec%9d%bc/</link>
		<comments>http://cychong.wordpress.com/2009/04/05/%eb%a9%a4%ed%94%bc%ec%8a%a4%ec%9d%98-%eb%af%b8%ed%88%ac%eb%8d%b0%ec%9d%b4-2009%eb%85%84-4%ec%9b%94-5%ec%9d%bc/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 05:11:43 +0000</pubDate>
		<dc:creator>cychong</dc:creator>
				<category><![CDATA[me2day]]></category>

		<guid isPermaLink="false">http://cychong.wordpress.com/2009/04/05/%eb%a9%a4%ed%94%bc%ec%8a%a4%ec%9d%98-%eb%af%b8%ed%88%ac%eb%8d%b0%ec%9d%b4-2009%eb%85%84-4%ec%9b%94-5%ec%9d%bc/</guid>
		<description><![CDATA[

BattleStar Galactica 끝났다. 하우스, 빅뱅, BSG 이렇게 삼대 미드였는데. 쩝. 이젠 나머지 2개로 버텨야 하네.(West Wing 이나 다시 볼까?)2009-03-25 01:29:05
선택도 하지 않으면서 환경을 탓하면 안된다.
행동하지 않으면서 불평 하면 바뀌는거 하나 없다.
현실 안주를 선택하면서, 환경을 탓하지 마라.
현실을 극복하고 싶다면, 남다르게 살자.(선택 불평 현실 환경 다름)2009-03-28 22:08:32
Extreme Programming For One 어제 회사에서 김창준 님 강의를 들었다. 이론적인 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cychong.wordpress.com&blog=25687&post=264&subd=cychong&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div class="me2day_daily_digest">
<ul>
<li>BattleStar Galactica 끝났다. 하우스, 빅뱅, BSG 이렇게 삼대 미드였는데. 쩝. 이젠 나머지 2개로 버텨야 하네.<span class="me2_tags">(West Wing 이나 다시 볼까?)</span><span class="datetime"><a href="http://me2day.net/cychong/2009/03/25#01:29:05" rel="bookmark" title="퍼머링크" class="datetime">2009-03-25 01:29:05</a></span></li>
<li><a href='http://sunnykwak.egloos.com/page/3'>선택도 하지 않으면서 환경을 탓하면 안된다.<br />
행동하지 않으면서 불평 하면 바뀌는거 하나 없다.</p>
<p>현실 안주를 선택하면서, 환경을 탓하지 마라.<br />
현실을 극복하고 싶다면, 남다르게 살자.</a><span class="me2_tags">(선택 불평 현실 환경 다름)</span><span class="datetime"><a href="http://me2day.net/cychong/2009/03/28#22:08:32" rel="bookmark" title="퍼머링크" class="datetime">2009-03-28 22:08:32</a></span></li>
<li><a href='http://c2.com/xp/ExtremeProgrammingForOne.html'>Extreme Programming For One</a> 어제 회사에서 <a href='http://agile.egloos.com/'>김창준</a> 님 강의를 들었다. 이론적인 내용은 책에서 많이 본 것들이지만 경험/사례 이야기가 좋았다. 특히나 Agile을 맛 본 후 퇴사한 사람이 많다는 말에 고개가 끄덕여진다.<span class="me2_tags">(waterfall agile 현실 적용은&#8230;)</span><span class="datetime"><a href="http://me2day.net/cychong/2009/04/04#05:37:18" rel="bookmark" title="퍼머링크" class="datetime">2009-04-04 05:37:18</a></span></li>
<li>정말 이런 책이 재미있을까? 실험해 보는 수밖에.<span class="me2_tags">(me2book)</span><span class="datetime"><a href="http://me2day.net/cychong/2009/04/05#10:05:22" rel="bookmark" title="퍼머링크" class="datetime">2009-04-05 10:05:22</a></span>
<div class="show_content_layer">
<h5>기적의 계산법</h5>
<div id="cont_img"><a href="http://book.naver.com/bookdb/book_detail.php?bid=4634546" target="_blank"><img src="http://bookimg.naver.com/hash_coverimg/aladdin/coveretc/book/coveroff/8/9/6/2/8962220571_1.jpg" alt="기적의 계산법" /></a></div>
</div>
</li>
<li>책 내용이 궁금한데… <a href='http://me2day.net/cychong/2009/04/05#10:05:22'>기적의 계산법</a>의 저자라고 하네.<span class="me2_tags">(me2book)</span><span class="datetime"><a href="http://me2day.net/cychong/2009/04/05#10:06:07" rel="bookmark" title="퍼머링크" class="datetime">2009-04-05 10:06:07</a></span>
<div class="show_content_layer">
<h5>공부습관 10살 전에 끝내라</h5>
<div id="cont_img"><a href="http://book.naver.com/bookdb/book_detail.php?bid=167313" target="_blank"><img src="http://bookimg.naver.com/coverimg/libro/book_img/4038/0100005020390_01.jpg" alt="공부습관 10살 전에 끝내라" /></a></div>
</div>
</li>
<li>맥에서는 쓸만한 낙관(?) 입혀주는 프로그램이 없다. 사진을 인화해놓고 나면 언제 찍은 사진인지 알 수가 없다. 뾰족한 수가 없을까?<span class="me2_tags">(애플 photoworks 부럽)</span><span class="datetime"><a href="http://me2day.net/cychong/2009/04/05#10:21:06" rel="bookmark" title="퍼머링크" class="datetime">2009-04-05 10:21:06</a></span></li>
<li><a href='http://allofsoftware.net/entry/%EC%99%B8%EC%A3%BC'>해외 업체에 외주를 줄 때는 대단히 정교한 스펙문서(SRS 등)가 필요합니다. 따라서 대다수의 업체는 외주를 줄 능력이 없다고 볼 수 있습니다</a> 300% 동감<span class="me2_tags">(외주 SRS)</span><span class="datetime"><a href="http://me2day.net/cychong/2009/04/05#14:06:55" rel="bookmark" title="퍼머링크" class="datetime">2009-04-05 14:06:55</a></span></li>
</ul>
<p style="background:url('http://me2day.net/images/me2day_icon.gif') no-repeat right top;padding-right:25px;text-align:right;font-size:.9em;">이 글은 <a href="http://me2day.net/cychong" target="_blank">멤피스</a>님의 <a href="http://me2day.net/cychong/2009/03/25#01:29:05">2009년 3월 25일</a>에서 <a href="http://me2day.net/cychong/2009/04/05#14:06:55">2009년 4월 5일</a>까지의 미투데이 내용입니다.</p>
</div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cychong.wordpress.com/264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cychong.wordpress.com/264/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cychong.wordpress.com/264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cychong.wordpress.com/264/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cychong.wordpress.com/264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cychong.wordpress.com/264/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cychong.wordpress.com/264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cychong.wordpress.com/264/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cychong.wordpress.com/264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cychong.wordpress.com/264/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cychong.wordpress.com&blog=25687&post=264&subd=cychong&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://cychong.wordpress.com/2009/04/05/%eb%a9%a4%ed%94%bc%ec%8a%a4%ec%9d%98-%eb%af%b8%ed%88%ac%eb%8d%b0%ec%9d%b4-2009%eb%85%84-4%ec%9b%94-5%ec%9d%bc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf1f2b88a2f8699e92a235e968a23dff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cychong</media:title>
		</media:content>

		<media:content url="http://bookimg.naver.com/hash_coverimg/aladdin/coveretc/book/coveroff/8/9/6/2/8962220571_1.jpg" medium="image">
			<media:title type="html">기적의 계산법</media:title>
		</media:content>

		<media:content url="http://bookimg.naver.com/coverimg/libro/book_img/4038/0100005020390_01.jpg" medium="image">
			<media:title type="html">공부습관 10살 전에 끝내라</media:title>
		</media:content>
	</item>
		<item>
		<title>Thunderbird mail moving to Mac</title>
		<link>http://cychong.wordpress.com/2009/01/15/thunderbird-mail-moving-to-mac/</link>
		<comments>http://cychong.wordpress.com/2009/01/15/thunderbird-mail-moving-to-mac/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 01:52:57 +0000</pubDate>
		<dc:creator>cychong</dc:creator>
				<category><![CDATA[lifehack]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://cychong.wordpress.com/?p=262</guid>
		<description><![CDATA[Well, I got my Mac yesterday and was, frankly, kinda put off by the instructions I found at site after site for moving from a PC with thunderbird to a mac with Apple mail.
And then, today, I found something that is just extremely simple. The link is:
http://forums.mactalk.com.au/16/40924-h &#8230; -mail.html
In short, you compact your mail folders [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cychong.wordpress.com&blog=25687&post=262&subd=cychong&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><blockquote><p>Well, I got my Mac yesterday and was, frankly, kinda put off by the instructions I found at site after site for moving from a PC with thunderbird to a mac with Apple mail.</p>
<p>And then, today, I found something that is just extremely simple. The link is:</p>
<p>http://forums.mactalk.com.au/16/40924-h &#8230; -mail.html</p>
<p>In short, you compact your mail folders on your PC with thunderbird.</p>
<p>Shutdown thunderbird.</p>
<p>Find your profile folder: xxxxxx.default</p>
<p>where xxxxxx are random letters apparently.</p>
<p>Simply copy that to a thumb drive.</p>
<p>Plug the thumb drive into the mac.</p>
<p>In mac mail, go to File/Import Mailboxes</p>
<p>Select Thunderbird then press continue to locate the profile directory on the thumb drive.</p>
<p>Apple mail will do the rest. The mail will appear as &#8220;Imported mail&#8221;</p>
<p>Goto &#8220;Mailbox&#8221; on the menu and select &#8220;Rebuild&#8221; to ensure no corruption. You have to select each mail folder to be able to rebuild it.</p>
<p>Quit Mail and restart. Everything should be there, though not marked as &#8220;read&#8221; anymore.</p>
<p>It&#8217;s amazingly easy &#8211; more trouble to type the instructions than to just do it, but check the link in case I said something wrong!</p></blockquote>
<p>via <a href="http://forums.mozillazine.org/viewtopic.php?f=28&amp;t=921355">Thunderbird mail moving to Mac • mozillaZine Forums</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/cychong.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/cychong.wordpress.com/262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/cychong.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/cychong.wordpress.com/262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/cychong.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/cychong.wordpress.com/262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/cychong.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/cychong.wordpress.com/262/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/cychong.wordpress.com/262/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/cychong.wordpress.com/262/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=cychong.wordpress.com&blog=25687&post=262&subd=cychong&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://cychong.wordpress.com/2009/01/15/thunderbird-mail-moving-to-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bf1f2b88a2f8699e92a235e968a23dff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cychong</media:title>
		</media:content>
	</item>
	</channel>
</rss>