<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title>The Cloude</title>
		<link>http://kory.pe.kr/</link>
		<description>하늘이 그리워.. 바람이 그리워.. 따스함이 그리워..

때로는 하늘을 향해 소리 지르고 싶다.</description>
		<language>ko</language>
		<pubDate>Wed, 17 Aug 2011 12:40:05 +0900</pubDate>
		<generator>Tistory 1.1 (http://www.tistory.com/)</generator>
		<image>
		<title>The Cloude</title>
		<url><![CDATA[http://cfs10.tistory.com/upload_control/download.blog?fhandle=YmxvZzE5OTgzQGZzMTAudGlzdG9yeS5jb206L2F0dGFjaC8wLzE4MDAwMDAwMDAwMC5wbmc%3D]]></url>
		<link>http://kory.pe.kr/</link>
		<description>하늘이 그리워.. 바람이 그리워.. 따스함이 그리워..

때로는 하늘을 향해 소리 지르고 싶다.</description>
		</image>
		<item>
			<title>Gradation bitmap (RGB888) 생성 matlab code</title>
			<link>http://kory.pe.kr/83</link>
			<description>RGB 색별로 64단계 gradation bitmap(RGB888)을 생성하는 matlab code..&lt;br /&gt;
&lt;br /&gt;
너무 간단하지만 다시 만들려면 귀찮을듯 하여서.....&lt;br /&gt;
&lt;br /&gt;
%% Matlab code&lt;br /&gt;
clear all;&lt;br /&gt;
close all;&lt;br /&gt;
clc;&lt;br /&gt;
&lt;br /&gt;
x = 800;&lt;br /&gt;
y = 480;&lt;br /&gt;
step = 64;&lt;br /&gt;
row = 8;&lt;br /&gt;
&lt;br /&gt;
dis_x = x/step*row;&lt;br /&gt;
dis_y = y/row;&lt;br /&gt;
&lt;br /&gt;
color_value = zeros(1,step);&lt;br /&gt;
color_value(1) = floor(255/step);&lt;br /&gt;
for k = 2:1:step&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; color_value(k) = color_value(k-1) + round(255/step);&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
%255/step&lt;br /&gt;
%color_value(k)&lt;br /&gt;
&lt;br /&gt;
color = zeros(row, step/row);&lt;br /&gt;
for j = 1:row&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; for k = 1:(step/row)&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(mod(j,2) == 1)&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; color(j, k) = color_value(k+((step/row)*(j-1)));&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; color(j, k) = color_value(((step/row)*j)-k+1);&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
if(color_value(step) &amp;gt; 255)&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; color_value(step) = 255;&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
bitmap = zeros(y, x);&lt;br /&gt;
for x_cnt = 1:x&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; for y_cnt = 1:y&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bitmap(y_cnt,x_cnt) = color( floor((y_cnt-1)/dis_y)+1, floor((x_cnt-1)/dis_x)+1 );&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
bmp = uint8(zeros(y, x, 3));&lt;br /&gt;
bmp(:, :, 1) = bitmap;&lt;br /&gt;
imwrite(bmp(:,:,:), &#039;Red_bitmap.bmp&#039;, &#039;bmp&#039;);&lt;br /&gt;
bmp(:, :, 1) = bmp(:, :, 2);&lt;br /&gt;
bmp(:, :, 2) = bitmap;&lt;br /&gt;
imwrite(bmp(:,:,:), &#039;Green_bitmap.bmp&#039;, &#039;bmp&#039;);&lt;br /&gt;
bmp(:, :, 2) = bmp(:, :, 3);&lt;br /&gt;
bmp(:, :, 3) = bitmap;&lt;br /&gt;
imwrite(bmp(:,:,:), &#039;Blue_bitmap.bmp&#039;, &#039;bmp&#039;);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
%% Bitmap&lt;br /&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile7.uf.tistory.com/original/140262374DEE3110042764&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile7.uf.tistory.com/image/140262374DEE3110042764&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;Red_bitmap.bmp&quot; height=&quot;240&quot; width=&quot;400&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile30.uf.tistory.com/original/160262374DEE3111056092&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile30.uf.tistory.com/image/160262374DEE3111056092&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;Green_bitmap.bmp&quot; height=&quot;240&quot; width=&quot;400&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile6.uf.tistory.com/original/190262374DEE31130609AB&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile6.uf.tistory.com/image/190262374DEE31130609AB&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;Blue_bitmap.bmp&quot; height=&quot;240&quot; width=&quot;400&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;/p&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-83-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-83-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-83-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&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-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&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;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin ttShareEntryWithSNS tt-sns-icon-alignment-right tt-sns-icon-size-small&quot;&gt;
	&lt;button class=&quot;ttShareEntryWithYozm&quot; id=&quot;ttServiceYozm_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;yozm&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;요즘에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithTwitter&quot; id=&quot;ttServiceTwitter_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;twitter&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;트위터에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithFacebook&quot; id=&quot;ttServiceFacebook_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;facebook&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;페이스북에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithMe2day&quot; id=&quot;ttServiceMe2day_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;me2day&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;미투데이에 보내기&lt;/span&gt;&lt;/button&gt;
&lt;/div&gt;
</description>
			<category>업무 이야기</category>
			<category>Bitmap</category>
			<category>Gradation</category>
			<category>MATLAB</category>
			<category>RGB</category>
			<category>매트랩</category>
			<category>비트맵</category>
			<author>Kory</author>
			<guid>http://kory.pe.kr/83</guid>
			<comments>http://kory.pe.kr/83#entry83comment</comments>
			<pubDate>Thu, 13 Jan 2011 17:29:00 +0900</pubDate>
		</item>
		<item>
			<title>RGB &lt;=&gt; YCbCr</title>
			<link>http://kory.pe.kr/82</link>
			<description>Common하게 사용하는 parameter 값을 기준으로 서로 변환&lt;br /&gt;
&lt;br /&gt;
%%&lt;br /&gt;
Y = (0.301)*R + (0.586)*G + (0.113)*B&lt;br /&gt;
Cb = -(0.172)*R - (87/256)*G + (0.512)*B + 128&lt;br /&gt;
Cr = (0.512)*R - (0.430)*G - (0.082)*B + 128&lt;br /&gt;
&lt;br /&gt;
%%&lt;br /&gt;
R = Y + 1.371*(Cr - 128)&lt;br /&gt;
G = Y - 0.698*(Cr - 128) - 0.336*(Cb - 128)&lt;br /&gt;
B = Y + 1.732*(Cb-128)&lt;br /&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-82-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-82-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-82-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&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-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&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;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin ttShareEntryWithSNS tt-sns-icon-alignment-right tt-sns-icon-size-small&quot;&gt;
	&lt;button class=&quot;ttShareEntryWithYozm&quot; id=&quot;ttServiceYozm_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;yozm&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;요즘에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithTwitter&quot; id=&quot;ttServiceTwitter_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;twitter&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;트위터에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithFacebook&quot; id=&quot;ttServiceFacebook_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;facebook&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;페이스북에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithMe2day&quot; id=&quot;ttServiceMe2day_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;me2day&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;미투데이에 보내기&lt;/span&gt;&lt;/button&gt;
&lt;/div&gt;
</description>
			<category>업무 이야기</category>
			<category>converter</category>
			<category>RGB</category>
			<category>YCbCr</category>
			<category>변환</category>
			<author>Kory</author>
			<guid>http://kory.pe.kr/82</guid>
			<comments>http://kory.pe.kr/82#entry82comment</comments>
			<pubDate>Mon, 30 Aug 2010 22:40:00 +0900</pubDate>
		</item>
		<item>
			<title>새로운 둥지</title>
			<link>http://kory.pe.kr/81</link>
			<description>&lt;br /&gt;
새로운 곳에서 둥지를 틀다...&lt;br /&gt;
&lt;br /&gt;
이제 좀 더 다양한 경험을 해볼 수 있을 것이라는 기대감에 설레인다는..&lt;br /&gt;
&lt;br /&gt;
잘할 수 있다는 자신감과 함께..&lt;br /&gt;
&lt;br /&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile22.uf.tistory.com/original/1451BE4C4DEE22BB01D5D0&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile22.uf.tistory.com/image/1451BE4C4DEE22BB01D5D0&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile22.uf@1451BE4C4DEE22BB01D5D0.JPG&quot; height=&quot;300&quot; width=&quot;400&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;/p&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-81-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-81-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-81-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&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-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&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;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin ttShareEntryWithSNS tt-sns-icon-alignment-right tt-sns-icon-size-small&quot;&gt;
	&lt;button class=&quot;ttShareEntryWithYozm&quot; id=&quot;ttServiceYozm_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;yozm&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;요즘에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithTwitter&quot; id=&quot;ttServiceTwitter_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;twitter&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;트위터에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithFacebook&quot; id=&quot;ttServiceFacebook_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;facebook&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;페이스북에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithMe2day&quot; id=&quot;ttServiceMe2day_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;me2day&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;미투데이에 보내기&lt;/span&gt;&lt;/button&gt;
&lt;/div&gt;
</description>
			<category>일상 이야기</category>
			<author>Kory</author>
			<guid>http://kory.pe.kr/81</guid>
			<comments>http://kory.pe.kr/81#entry81comment</comments>
			<pubDate>Sat, 26 Jun 2010 15:54:00 +0900</pubDate>
		</item>
		<item>
			<title>Dropbox.. Mozy... Evernote....</title>
			<link>http://kory.pe.kr/78</link>
			<description>&lt;br /&gt;
맥북을 사용하게 되면서 IBM PC와의 자료 공유가 필요하게 되어&amp;nbsp;알게된 서비스들....&lt;br /&gt;
(물론 같은 네트워크에 있다면 자료 공유를 하면 되지만....)&lt;br /&gt;
&lt;br /&gt;2달여간 사용하다보니 이제는 이 서비스 없이는 원활한 맥북 라이프를 즐기기 힘들 것 같다는..&lt;br /&gt;
&lt;br /&gt;그래서 요즘은 비용을 지불해야하는 프리미엄 서비스를.. ^^&lt;br /&gt;
&lt;br /&gt;자세한 소개는 다른 블로그들이 했을테니 넘어가고 간단하게 살펴보면..&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
1. Mozy (&lt;A href=&quot;http://www.mozy.com/&quot;&gt;http://www.mozy.com&lt;/A&gt;)&lt;br /&gt;
지정해 놓은 경로나 PC의 환경을 수시로 백업 해주는 서비스로&lt;br /&gt;
OS를 리인스톨 했을 때 전에 사용하던 환경을&amp;nbsp;복구를 기대할 수 있다는....&lt;br /&gt;
&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile8.uf.tistory.com/original/183381284C06882E5E92FD&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile8.uf.tistory.com/image/183381284C06882E5E92FD&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile8.uf@183381284C06882E5E92FD.png&quot; height=&quot;244&quot; width=&quot;300&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;2. Dropbox (&lt;A href=&quot;http://www.dropbox.com/&quot;&gt;http://www.dropbox.com&lt;/A&gt;)&lt;br /&gt;
웹 하드 서비스로 PC의&amp;nbsp;특정 폴더를 지정하면 웹 하드와 sync를 유지해주기 때문에 사용과 관리가 편리하다는....&lt;br /&gt;
맥북과 MS PC의 특정&amp;nbsp;폴더에 같은 자료가 있게끔 관리가 가능하다.&lt;br /&gt;
&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile2.uf.tistory.com/original/193381284C06882E5F769F&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile2.uf.tistory.com/image/193381284C06882E5F769F&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile2.uf@193381284C06882E5F769F.png&quot; height=&quot;244&quot; width=&quot;300&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;3. Evernote (&lt;A href=&quot;http://www.evernote.com/&quot;&gt;http://www.evernote.com&lt;/A&gt;)&lt;br /&gt;
웹 기반의 텍스트 에디터로 단순 문서 에더팅 뿐만 아니라 웹&amp;nbsp;페이지 및 사진까지 스냅하여 보관 해준다는....&lt;br /&gt;
개인 메일 계정을 제공해주는데 해당 메일 계정으로 메일을 보내면 메일 내용이 자동으로 추가되는 서비스도&amp;nbsp;제공해준다.&lt;br /&gt;
에드온을 사용하면 웹 브라우저에 관계없이 스냅 기능을 사용할 수 있어서 완전 강추하는 서비스~!!!&lt;br /&gt;
그리고 문서 공유도 가능하기 때문에&amp;nbsp;여러 사람들과 필요에 따라&amp;nbsp;자료 공유(추가/수정/삭제)가 가능하다는...&lt;br /&gt;
(물론 프리미엄 서비스를 가입해야 완벽한 문서 공유 서비스를 제공해준다. ㅡㅡ)&lt;br /&gt;
&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile22.uf.tistory.com/original/193381284C06882F604E2F&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile22.uf.tistory.com/image/193381284C06882F604E2F&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile22.uf@193381284C06882F604E2F.png&quot; height=&quot;244&quot; width=&quot;300&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-78-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-78-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-78-2&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&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;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin ttShareEntryWithSNS tt-sns-icon-alignment-right tt-sns-icon-size-small&quot;&gt;
	&lt;button class=&quot;ttShareEntryWithYozm&quot; id=&quot;ttServiceYozm_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;yozm&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;요즘에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithTwitter&quot; id=&quot;ttServiceTwitter_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;twitter&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;트위터에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithFacebook&quot; id=&quot;ttServiceFacebook_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;facebook&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;페이스북에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithMe2day&quot; id=&quot;ttServiceMe2day_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;me2day&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;미투데이에 보내기&lt;/span&gt;&lt;/button&gt;
&lt;/div&gt;
</description>
			<category>일상 이야기</category>
			<author>Kory</author>
			<guid>http://kory.pe.kr/78</guid>
			<comments>http://kory.pe.kr/78#entry78comment</comments>
			<pubDate>Sat, 27 Feb 2010 01:08:00 +0900</pubDate>
		</item>
		<item>
			<title>썬라이즈 토마토</title>
			<link>http://kory.pe.kr/77</link>
			<description>&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&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile25.uf.tistory.com/original/127A9D254C0687910C5191&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/127A9D254C0687910C5191&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile25.uf@127A9D254C0687910C5191.JPG&quot; height=&quot;225&quot; width=&quot;300&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;건조 중에 혹시 맛이 심심할까봐서 후추도 뿌리고 단맛?을 강하게 하고파서 소금도 조금 뿌리고..&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile7.uf.tistory.com/original/177A9D254C0687950DBAE4&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile7.uf.tistory.com/image/177A9D254C0687950DBAE4&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile7.uf@177A9D254C0687950DBAE4.JPG&quot; height=&quot;225&quot; width=&quot;300&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;오븐 최저 온도에서 한 시간 가량&amp;nbsp; 걸려 서서히 말리고.. ㅡㅡ;;&lt;br /&gt;
&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile1.uf.tistory.com/original/137A9D254C06879D0E341C&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile1.uf.tistory.com/image/137A9D254C06879D0E341C&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile1.uf@137A9D254C06879D0E341C.JPG&quot; height=&quot;225&quot; width=&quot;300&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;바질, 마늘을 추가하고 올리브 오일에&amp;nbsp;절이면 완료~!! 보관은 유리병(?)으로..&lt;br /&gt;
&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile25.uf.tistory.com/original/197A9D254C0687A70F7DBC&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/197A9D254C0687A70F7DBC&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile25.uf@197A9D254C0687A70F7DBC.JPG&quot; height=&quot;225&quot; width=&quot;300&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;역시 쫄깃쫄깃 씹히는 맛이 완전 일품~!! ㅜㅜ&lt;br /&gt;
&lt;br /&gt;샐러드나 토마토 스파게티 소스에 사용해서 먹어도 맛나고,&lt;br /&gt;
&lt;br /&gt;카레에 몇 조각 넣으면 인도 카레 전문점에서 파는 카레를 만들 수도 있다는... ^O^&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-77-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-77-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-77-2&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&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;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin ttShareEntryWithSNS tt-sns-icon-alignment-right tt-sns-icon-size-small&quot;&gt;
	&lt;button class=&quot;ttShareEntryWithYozm&quot; id=&quot;ttServiceYozm_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;yozm&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;요즘에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithTwitter&quot; id=&quot;ttServiceTwitter_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;twitter&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;트위터에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithFacebook&quot; id=&quot;ttServiceFacebook_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;facebook&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;페이스북에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithMe2day&quot; id=&quot;ttServiceMe2day_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;me2day&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;미투데이에 보내기&lt;/span&gt;&lt;/button&gt;
&lt;/div&gt;
</description>
			<category>일상 이야기</category>
			<category>썬라이즈 토마토</category>
			<author>Kory</author>
			<guid>http://kory.pe.kr/77</guid>
			<comments>http://kory.pe.kr/77#entry77comment</comments>
			<pubDate>Tue, 09 Feb 2010 21:51:00 +0900</pubDate>
		</item>
		<item>
			<title>앤디 워홀의 위대한 세계</title>
			<link>http://kory.pe.kr/76</link>
			<description>&lt;br /&gt;
&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile24.uf.tistory.com/original/11051E014C068CFE5D607A&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile24.uf.tistory.com/image/11051E014C068CFE5D607A&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;앤디워홀.png&quot; height=&quot;221&quot; width=&quot;320&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;DIV&gt;팝아트의 선구자... 너무나도 유명한 아티스트...&lt;/DIV&gt;
&lt;DIV&gt;&lt;br /&gt;
&lt;/DIV&gt;
&lt;DIV&gt;시간이 되어 서울시립미술관으로 향했다..&lt;/DIV&gt;
&lt;DIV&gt;&lt;br /&gt;
&lt;/DIV&gt;
&lt;DIV&gt;&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile29.uf.tistory.com/original/12520D164C069D01195935&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile29.uf.tistory.com/image/12520D164C069D01195935&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile29.uf@12520D164C069D01195935.jpg&quot; height=&quot;225&quot; width=&quot;300&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;br /&gt;
&lt;/DIV&gt;
&lt;DIV&gt;표를 구매하는 줄 이외에도 입장하는데 따로 줄이 있어서 당황스러웠다.&lt;/DIV&gt;
&lt;DIV&gt;&lt;br /&gt;
&lt;/DIV&gt;
&lt;DIV&gt;결국에는 대기하는데&amp;nbsp;시간을 많이 허비하여 급한 마음으로 쭈욱 훑어보고 나왔다는..&lt;/DIV&gt;
&lt;DIV&gt;&lt;br /&gt;
&lt;/DIV&gt;
&lt;DIV&gt;카메라의 배터리가 없어서 iPhone(화질이 참....)으로.....&lt;/DIV&gt;
&lt;DIV&gt;(이제보니 모르는 여성분이 모델로 찍혔다는.. ^^;;;)&lt;/DIV&gt;
&lt;DIV&gt;&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile8.uf.tistory.com/original/11520D164C069D021A2F9B&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile8.uf.tistory.com/image/11520D164C069D021A2F9B&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile8.uf@11520D164C069D021A2F9B.jpg&quot; height=&quot;400&quot; width=&quot;300&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;/DIV&gt;
&lt;DIV&gt;&lt;br /&gt;
&lt;/DIV&gt;
&lt;DIV&gt;&lt;br /&gt;
&lt;/DIV&gt;
&lt;DIV&gt;앤디 워홀의 위대한 세계&lt;br /&gt;

&lt;DIV&gt;기간: 2009.12.12.(토) ~ 2010.4.4.(일)&lt;br /&gt;
장소: 서울 중구 시울시립미술관 본관&lt;br /&gt;
주회: 서울시립미술관, 동아일보, 등..&lt;br /&gt;
웹: &lt;A href=&quot;http://www.warhol.co.kr/&quot;&gt;www.warhol.co.kr&lt;/A&gt;&lt;br /&gt;
&lt;/DIV&gt;
&lt;DIV&gt;&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile6.uf.tistory.com/original/12051E014C068CFE5E4EDA&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile6.uf.tistory.com/image/12051E014C068CFE5E4EDA&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile6.uf@12051E014C068CFE5E4EDA.png&quot; height=&quot;407&quot; width=&quot;500&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;

&lt;DIV&gt;
&lt;HR style=&quot;BORDER-BOTTOM: black 3px solid; BORDER-LEFT: black 0px; DISPLAY: block; HEIGHT: 7px; BORDER-TOP: black 1px solid; BORDER-RIGHT: black 0px&quot;&gt;
&lt;/DIV&gt;&lt;br /&gt;

&lt;TABLE style=&quot;BORDER-BOTTOM: #f3f3f3 1px solid; BORDER-LEFT: #f3f3f3 1px solid; LINE-HEIGHT: 16px !important; BACKGROUND-COLOR: #ffffff; BORDER-TOP: #f3f3f3 1px solid; BORDER-RIGHT: #f3f3f3 1px solid&quot; border=0 cellSpacing=0 cellPadding=12 width=374 height=120 category=&quot;people_detail&quot; openpost=&quot;false&quot; key=&quot;FwZ&quot;&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD style=&quot;PADDING-BOTTOM: 0px&quot;&gt;
&lt;TABLE border=0 cellSpacing=0 cellPadding=0 width=350&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD vAlign=top width=66&gt;&lt;A href=&quot;http://search.daum.net/cgi-bin/nsp/search.cgi?q=%EC%95%A4%EB%94%94%20%EC%9B%8C%ED%99%80%20%28Andrew%20Warhola%29+%EC%98%81%ED%99%94%EA%B0%90%EB%8F%85%2C%ED%99%94%EA%B0%80&quot; target=_blank&gt;&lt;IMG border=0 src=&quot;http://img.search.daum-img.net/moviein/20080610_64772_96x120.jpg&quot; width=66 height=82&gt;&lt;/A&gt;&lt;/TD&gt;
&lt;TD width=12&gt;&lt;/TD&gt;
&lt;TD vAlign=top width=278&gt;
&lt;TABLE border=0 cellSpacing=0 cellPadding=0 width=&quot;100%&quot;&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TH height=18 vAlign=top colSpan=2 align=left&gt;&lt;FONT style=&quot;FONT-FAMILY: 굴림,gulim,sans-serif; COLOR: #333333; FONT-SIZE: 12px; FONT-WEIGHT: bold&quot;&gt;&lt;A style=&quot;COLOR: #333333 !important; TEXT-DECORATION: none !important&quot; href=&quot;http://search.daum.net/cgi-bin/nsp/search.cgi?q=%EC%95%A4%EB%94%94%20%EC%9B%8C%ED%99%80%20%28Andrew%20Warhola%29+%EC%98%81%ED%99%94%EA%B0%90%EB%8F%85%2C%ED%99%94%EA%B0%80&quot; target=_blank&gt;앤디 워홀 (Andrew Warhola)&lt;/A&gt;&lt;/FONT&gt; &lt;FONT style=&quot;FONT-FAMILY: 굴림,gulim,sans-serif; COLOR: #999999; FONT-SIZE: 12px; FONT-WEIGHT: normal&quot;&gt;/ 영화감독,화가&lt;/FONT&gt; &lt;/TH&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height=18 vAlign=top width=40 align=left&gt;&lt;FONT style=&quot;LINE-HEIGHT: 1.4; FONT-FAMILY: 굴림,gulim,sans-serif; COLOR: #999999; FONT-SIZE: 12px&quot;&gt;출생&lt;/FONT&gt; &lt;/TD&gt;
&lt;TD height=18 vAlign=top align=left&gt;&lt;SPAN style=&quot;TEXT-OVERFLOW: ellipsis; DISPLAY: block; FLOAT: left; HEIGHT: 14px; OVERFLOW: hidden&quot;&gt;&lt;FONT style=&quot;LINE-HEIGHT: 1.4; FONT-FAMILY: 굴림,gulim,sans-serif; COLOR: #333333; FONT-SIZE: 12px&quot;&gt;1928년 8월 6일&lt;/FONT&gt;&lt;/SPAN&gt; &lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height=18 vAlign=top width=40 align=left&gt;&lt;FONT style=&quot;LINE-HEIGHT: 1.4; FONT-FAMILY: 굴림,gulim,sans-serif; COLOR: #999999; FONT-SIZE: 12px&quot;&gt;신체&lt;/FONT&gt; &lt;/TD&gt;
&lt;TD height=18 vAlign=top align=left&gt;&lt;SPAN style=&quot;TEXT-OVERFLOW: ellipsis; DISPLAY: block; FLOAT: left; HEIGHT: 14px; OVERFLOW: hidden&quot;&gt;&lt;FONT style=&quot;LINE-HEIGHT: 1.4; FONT-FAMILY: 굴림,gulim,sans-serif; COLOR: #333333; FONT-SIZE: 12px&quot;&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height=18 vAlign=top width=40 align=left&gt;&lt;FONT style=&quot;LINE-HEIGHT: 1.4; FONT-FAMILY: 굴림,gulim,sans-serif; COLOR: #999999; FONT-SIZE: 12px&quot;&gt;팬카페&lt;/FONT&gt; &lt;/TD&gt;
&lt;TD height=18 vAlign=top align=left&gt;&lt;SPAN style=&quot;TEXT-OVERFLOW: ellipsis; DISPLAY: block; FLOAT: left; HEIGHT: 14px; OVERFLOW: hidden&quot;&gt;&lt;FONT style=&quot;LINE-HEIGHT: 1.4; FONT-FAMILY: 굴림,gulim,sans-serif; COLOR: #333333; FONT-SIZE: 12px&quot;&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;
&lt;TR&gt;
&lt;TD vAlign=top colSpan=2 align=left&gt;&lt;A style=&quot;PADDING-BOTTOM: 0px; PADDING-LEFT: 0px; PADDING-RIGHT: 5px; FONT-FAMILY: 돋움,dotum,verdana; BACKGROUND: url(http://deco.daum-img.net/contents/info/ic_more.gif) no-repeat 100% 3px; COLOR: #999999 !important; FONT-SIZE: 11px; TEXT-DECORATION: underline; PADDING-TOP: 0px&quot; href=&quot;http://search.daum.net/cgi-bin/nsp/search.cgi?q=%EC%95%A4%EB%94%94%20%EC%9B%8C%ED%99%80%20%28Andrew%20Warhola%29+%EC%98%81%ED%99%94%EA%B0%90%EB%8F%85%2C%ED%99%94%EA%B0%80&quot; target=_blank&gt;상세보기&lt;/A&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;br /&gt;
웹사이트 발췌.. snapshot...&lt;br /&gt;

&lt;p id=&quot;more76_0&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, &#039;76_0&#039;,&#039;더보기&#039;,&#039;접기&#039;); return false;&quot;&gt;더보기&lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content76_0&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile26.uf.tistory.com/original/13051E014C068D025F897F&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile26.uf.tistory.com/image/13051E014C068D025F897F&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile26.uf@13051E014C068D025F897F.png&quot; height=&quot;651&quot; width=&quot;500&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-76-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-76-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-76-2&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&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;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin ttShareEntryWithSNS tt-sns-icon-alignment-right tt-sns-icon-size-small&quot;&gt;
	&lt;button class=&quot;ttShareEntryWithYozm&quot; id=&quot;ttServiceYozm_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;yozm&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;요즘에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithTwitter&quot; id=&quot;ttServiceTwitter_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;twitter&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;트위터에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithFacebook&quot; id=&quot;ttServiceFacebook_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;facebook&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;페이스북에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithMe2day&quot; id=&quot;ttServiceMe2day_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;me2day&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;미투데이에 보내기&lt;/span&gt;&lt;/button&gt;
&lt;/div&gt;
</description>
			<category>공연 이야기</category>
			<category>앤디워홀</category>
			<category>위대한 세계</category>
			<category>팝아트</category>
			<author>Kory</author>
			<guid>http://kory.pe.kr/76</guid>
			<comments>http://kory.pe.kr/76#entry76comment</comments>
			<pubDate>Sat, 16 Jan 2010 21:12:00 +0900</pubDate>
		</item>
		<item>
			<title>이제는 MacBook이다.. ^O^</title>
			<link>http://kory.pe.kr/75</link>
			<description>&lt;br /&gt;
Dell mini10에 만족했었지만 사용량이 증가하여 점점 느려짐을 느끼고.....&lt;br /&gt;
&lt;br /&gt;iPhone 구매 이후에 mini10이 iTunes를 힘들어함에 따라.....&lt;br /&gt;
&lt;br /&gt;결국에는 MacBook으로~~&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile29.uf.tistory.com/original/15570E1E4B556F30A17312&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile29.uf.tistory.com/image/15570E1E4B556F30A17312&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile29.uf@15570E1E4B556F30A17312.jpg&quot; height=&quot;225&quot; width=&quot;300&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;회사 동료 왈, &quot;애플빠가 되기로 한거???&quot;&lt;br /&gt;
&lt;br /&gt;음... 10살에 MS-DOS를 처음 사용하면서부터 Windows,&amp;nbsp;그리고&amp;nbsp;WinCE까지 모두 MS 제품군이였는데..&lt;br /&gt;
&lt;br /&gt;iPhone에 이어 Mac 구매하자마자 애플빠라고 하면, 난 여태 MS빠였다는..... ㅎㅎㅎ&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-75-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-75-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-75-2&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&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;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin ttShareEntryWithSNS tt-sns-icon-alignment-right tt-sns-icon-size-small&quot;&gt;
	&lt;button class=&quot;ttShareEntryWithYozm&quot; id=&quot;ttServiceYozm_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;yozm&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;요즘에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithTwitter&quot; id=&quot;ttServiceTwitter_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;twitter&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;트위터에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithFacebook&quot; id=&quot;ttServiceFacebook_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;facebook&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;페이스북에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithMe2day&quot; id=&quot;ttServiceMe2day_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;me2day&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;미투데이에 보내기&lt;/span&gt;&lt;/button&gt;
&lt;/div&gt;
</description>
			<category>일상 이야기</category>
			<category>MacBook</category>
			<author>Kory</author>
			<guid>http://kory.pe.kr/75</guid>
			<comments>http://kory.pe.kr/75#entry75comment</comments>
			<pubDate>Thu, 14 Jan 2010 22:53:00 +0900</pubDate>
		</item>
		<item>
			<title>지하철 2호선 - 크리스마스 열차?</title>
			<link>http://kory.pe.kr/74</link>
			<description>&lt;DIV&gt;&lt;br /&gt;
2호선을 탔는데 크리스마스가 되어서 그런지 열차가 나름 이쁘게 꾸며져 있었다.&lt;br /&gt;
&lt;br /&gt;다음에 서울 지하철이 보여줄 자그만 이벤트가 기대된다는....&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile6.uf.tistory.com/original/164B95244B44AB8D39F830&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile6.uf.tistory.com/image/164B95244B44AB8D39F830&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile6.uf@164B95244B44AB8D39F830.jpg&quot; height=&quot;270&quot; width=&quot;360&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile9.uf.tistory.com/original/164B95244B44AB913A7488&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile9.uf.tistory.com/image/164B95244B44AB913A7488&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile9.uf@164B95244B44AB913A7488.jpg&quot; height=&quot;270&quot; width=&quot;360&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile22.uf.tistory.com/original/136A34284B44B1F48EFC28&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile22.uf.tistory.com/image/136A34284B44B1F48EFC28&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile22.uf@136A34284B44B1F48EFC28.jpg&quot; height=&quot;270&quot; width=&quot;360&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;&lt;/DIV&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-74-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-74-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-74-2&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&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;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin ttShareEntryWithSNS tt-sns-icon-alignment-right tt-sns-icon-size-small&quot;&gt;
	&lt;button class=&quot;ttShareEntryWithYozm&quot; id=&quot;ttServiceYozm_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;yozm&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;요즘에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithTwitter&quot; id=&quot;ttServiceTwitter_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;twitter&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;트위터에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithFacebook&quot; id=&quot;ttServiceFacebook_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;facebook&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;페이스북에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithMe2day&quot; id=&quot;ttServiceMe2day_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;me2day&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;미투데이에 보내기&lt;/span&gt;&lt;/button&gt;
&lt;/div&gt;
</description>
			<category>일상 이야기</category>
			<category>지하철 2호선</category>
			<category>크리스마스</category>
			<author>Kory</author>
			<guid>http://kory.pe.kr/74</guid>
			<comments>http://kory.pe.kr/74#entry74comment</comments>
			<pubDate>Sat, 26 Dec 2009 20:52:00 +0900</pubDate>
		</item>
		<item>
			<title>이젠 iPhone 이다...</title>
			<link>http://kory.pe.kr/73</link>
			<description>&lt;br /&gt;
열심히 MS 유저가 되겠다고 다짐(??&amp;nbsp;&lt;A title=&quot;[http://kory.pe.kr/72]로 이동합니다.&quot; href=&quot;http://kory.pe.kr/72&quot; target=_blank&gt;Windows 7 Pro 64bit를 구매하다&lt;/A&gt;.. ㅋㅋ)한지 1주일만에&amp;nbsp;아이폰을 구매해버렸다..&lt;br /&gt;
&lt;br /&gt;그 동시에 지금은 iMac으로 PC를 바꿔버릴까 고민 중이라는.... (이젠 애플로??)&lt;br /&gt;
&lt;br /&gt;어쨌든 iPhone의 등장으로 2009년 끝자락에 대한민국에 작은 바람이 불고 있다는..&lt;br /&gt;
&lt;br /&gt;이젠 iTunesU와 Podcast를 사용할 수 있다~~ 야호~~&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;tt-plugin ttShareEntryWithSNS tt-sns-icon-alignment-right tt-sns-icon-size-small&quot;&gt;
	&lt;button class=&quot;ttShareEntryWithYozm&quot; id=&quot;ttServiceYozm_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;yozm&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;요즘에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithTwitter&quot; id=&quot;ttServiceTwitter_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;twitter&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;트위터에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithFacebook&quot; id=&quot;ttServiceFacebook_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;facebook&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;페이스북에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithMe2day&quot; id=&quot;ttServiceMe2day_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;me2day&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;미투데이에 보내기&lt;/span&gt;&lt;/button&gt;
&lt;/div&gt;
</description>
			<category>일상 이야기</category>
			<category>iphone</category>
			<category>지름</category>
			<author>Kory</author>
			<guid>http://kory.pe.kr/73</guid>
			<comments>http://kory.pe.kr/73#entry73comment</comments>
			<pubDate>Mon, 21 Dec 2009 22:19:00 +0900</pubDate>
		</item>
		<item>
			<title>Windows 7 Pro 64bit</title>
			<link>http://kory.pe.kr/72</link>
			<description>&lt;br /&gt;
&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile25.uf.tistory.com/original/140FFF184C0695522B800B&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/140FFF184C0695522B800B&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile25.uf@140FFF184C0695522B800B.png&quot; height=&quot;308&quot; width=&quot;360&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;무슨 바람이 불었는지 아무런 생각없이 Windows 7을 다운로드 버젼으로 구매를 해버렸다..&lt;br /&gt;
&lt;br /&gt;그 것도 64bit로.... 물론 XP를 버릴 수 없기에 XP virtual PC가 가능한 Professional으로 구매를..&lt;br /&gt;
&lt;br /&gt;기본적인 UI는 Vista와 비슷하며 설치시 항상 권한을 달라는 메세지가 뜬다는..&lt;br /&gt;
&lt;br /&gt;Vista를 제대로 써보지는 않았지만 테마들이 전부 화려해서 리소스를 제법 차지할 듯 하다.&lt;br /&gt;
&lt;br /&gt;[Windows key+tab] 누르면 아래와 같이 활성화/비활성화된 창을 모두 볼 수 있다.&lt;br /&gt;
&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile29.uf.tistory.com/original/160FFF184C0695532C250E&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile29.uf.tistory.com/image/160FFF184C0695532C250E&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile29.uf@160FFF184C0695532C250E.png&quot; height=&quot;312&quot; width=&quot;500&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;Windows7의 주요 기능인 Aero중에서 Aero peek 기능으로 작업표시줄에서 해당 창의 내용을 미리볼 수 있다.&lt;br /&gt;
&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile29.uf.tistory.com/original/110FFF184C0695572D326E&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile29.uf.tistory.com/image/110FFF184C0695572D326E&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile29.uf@110FFF184C0695572D326E.png&quot; height=&quot;190&quot; width=&quot;400&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;그 중에서 나름 압권인 것은 바로 동영상이 플레이 도중인 것을 살짝 확인해볼 수 있다는 것이다..&lt;br /&gt;
&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile7.uf.tistory.com/original/130FFF184C0695582EEC9F&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile7.uf.tistory.com/image/130FFF184C0695582EEC9F&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile7.uf@130FFF184C0695582EEC9F.png&quot; height=&quot;174&quot; width=&quot;300&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;그리고 마지막으로 Virtual PC XP mode....&lt;br /&gt;
&lt;div class=&quot;imageblock&quot; style=&quot;display:inline;&quot;&gt;&lt;a href=&quot;http://cfile27.uf.tistory.com/original/167EDD1D4C06983A02CA87&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile27.uf.tistory.com/image/167EDD1D4C06983A02CA87&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile27.uf@167EDD1D4C06983A02CA87.png&quot; height=&quot;312&quot; width=&quot;500&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-72-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-72-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-72-2&quot; class=&quot;entry-ccl-sa&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black04.png&quot; alt=&quot;동일 조건 변경 허락&quot;/&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;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;tt-plugin ttShareEntryWithSNS tt-sns-icon-alignment-right tt-sns-icon-size-small&quot;&gt;
	&lt;button class=&quot;ttShareEntryWithYozm&quot; id=&quot;ttServiceYozm_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;yozm&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;요즘에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithTwitter&quot; id=&quot;ttServiceTwitter_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;twitter&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;트위터에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithFacebook&quot; id=&quot;ttServiceFacebook_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;facebook&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;페이스북에 보내기&lt;/span&gt;&lt;/button&gt;&lt;button
	class=&quot;ttShareEntryWithMe2day&quot; id=&quot;ttServiceMe2day_&quot; onclick=&quot;ShareEntryWithSNS.share(&#039;me2day&#039;, &#039;&#039;, &#039;&#039;);&quot;&gt;&lt;span&gt;미투데이에 보내기&lt;/span&gt;&lt;/button&gt;
&lt;/div&gt;
</description>
			<category>일상 이야기</category>
			<category>64bit OS</category>
			<category>Windows 7</category>
			<category>미친짓</category>
			<author>Kory</author>
			<guid>http://kory.pe.kr/72</guid>
			<comments>http://kory.pe.kr/72#entry72comment</comments>
			<pubDate>Wed, 16 Dec 2009 22:41:00 +0900</pubDate>
		</item>
	</channel>
</rss>

