<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title>Lomohome</title>
		<link>http://lomohome.com/</link>
		<description>모근원의 블로그, Lomohome since 2001
디지털 카메라 사진과 로모카메라 사진을 포스팅</description>
		<language>ko</language>
		<pubDate>Thu, 11 Feb 2010 13:29:29 +0900</pubDate>
		<generator>Tistory 1.1 (http://www.tistory.com/)</generator>
		<image>
		<title>Lomohome</title>
		<url><![CDATA[http://cfs2.tistory.com/upload_control/download.blog?fhandle=YmxvZzU0ODY2QGZzMi50aXN0b3J5LmNvbTovYXR0YWNoLzkvOTI0LmpwZw%3D%3D]]></url>
		<link>http://lomohome.com/</link>
		<description>모근원의 블로그, Lomohome since 2001
디지털 카메라 사진과 로모카메라 사진을 포스팅</description>
		</image>
		<item>
			<title>티스토리 블로그 스마트폰에서 모바일페이지로 보게하기</title>
			<link>http://lomohome.com/309</link>
			<description>&lt;p&gt;아이팟이나 아이폰에서 티스토리 블로그를 보시는분들 많으시죠?&lt;br /&gt;
http://[일반주소].tistory.com&lt;br /&gt;
를 사용하시던 티스토리 블로거 님들은 신경쓰지 않으셔도 &lt;br /&gt;
&lt;span style=&quot;text-decoration: line-through;&quot;&gt;아이팟이나 아이폰에서 블로그 접근하면 모바일용 페이지로 보입니다.&lt;/span&gt;&lt;br /&gt;
스마트폰에서 블로그로 접근하면 모바일용 페이지로 보입니다.&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;color: rgb(227, 22, 0);&quot;&gt;- 수정 : 현재나와있는 거의 모든 모바일기기의 userAgent 를 검사하는 방식으로 변경했습니다.&lt;/span&gt;&lt;br /&gt;
&lt;a style=&quot;color: rgb(227, 22, 0);&quot; href=&quot;http://en.wikipedia.org/wiki/List_of_user_agents_for_mobile_phones&quot; target=&quot;_blank&quot;&gt;http://en.wikipedia.org/wiki/List_of_user_agents_for_mobile_phones&lt;/a&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;그런데 저처럼 티스토리에 자신의 도메인을 연결해서 쓰시는분들은 &lt;br /&gt;
다음 그림에서처럼 자동으로 모바일 페이지로 이동이 안되고 일반 웹페이지가 나왔었지요.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile3.uf.tistory.com/original/121E541E4B726BD15900D6&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile3.uf.tistory.com/image/121E541E4B726BD15900D6&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;1.png&quot; height=&quot;770&quot; width=&quot;414&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
이때 자바스크립트 몇줄만 스킨에 넣어주면 모바일용 페이지로 이동하게 만들 수 있습니다.&lt;br /&gt;
이 방법은 저처럼 lomohome.com 이나 &lt;a href=&quot;http://www.lomohome.com/&quot;&gt;www.lomohome.com&lt;/a&gt;&amp;nbsp;등의 도메인을 티스토리에 연결하신 분께 해당됩니다.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;관리자모드 - 스킨 - HTML/CSS 편집&lt;/strong&gt;에서&lt;br /&gt;
HTML 의 &lt;strong&gt;&amp;lt;head&amp;gt;&amp;lt;/head&amp;gt;&lt;/strong&gt; 태그 사이안에 다음의 자바스크립트를 넣으면&lt;br /&gt;
&lt;br /&gt;
블로그 접근시 유저에이전트를 검사하여 스마트폰이면&lt;br /&gt;
모바일 사이트로 이동을 하게 합니다 :-)&lt;br /&gt;
&lt;br /&gt;
&lt;font style=&quot;background-color: rgb(255, 228, 48);&quot; color=&quot;#544b33&quot;&gt;&amp;lt;script language=&quot;JavaScript&quot;&amp;gt;&lt;br /&gt;
//모바일 페이지로 이동. &lt;br /&gt;
//http://en.wikipedia.org/wiki/List_of_user_agents_for_mobile_phones&lt;br /&gt;
var uAgent = navigator.userAgent.toLowerCase();&lt;br /&gt;
var mobilePhones = new Array(&#039;iphone&#039;,&#039;ipod&#039;,&#039;android&#039;,&#039;blackberry&#039;,&#039;windows ce&#039;,&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &#039;nokia&#039;,&#039;webos&#039;,&#039;opera mini&#039;,&#039;sonyericsson&#039;,&#039;opera mobi&#039;,&#039;iemobile&#039;);&lt;br /&gt;
for(var i=0;i&amp;lt;mobilePhones.length;i++)&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; if(uAgent.indexOf(mobilePhones[i]) != -1)&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; document.location = &quot;http://&quot;+ location.host +&quot;/m&quot; + location.pathname;&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;/font&gt;&lt;br /&gt;
&lt;span style=&quot;text-decoration: line-through;&quot;&gt;주의하실점은 위의 빨간색에 이탤릭체로 표시된 부분은 &lt;/span&gt;&lt;br style=&quot;text-decoration: line-through;&quot;&gt;
&lt;font style=&quot;text-decoration: line-through;&quot; color=&quot;#e31600&quot;&gt;http://[원래티스토리주소].tistory.com/m&lt;/font&gt;&lt;br style=&quot;text-decoration: line-through;&quot;&gt;&lt;span style=&quot;text-decoration: line-through;&quot;&gt;
으로 해주셔야 한다는것 입니다 :-)&lt;/span&gt;&lt;br /&gt;
url 을 가져와서 가는방법으로 수정되었습니다.&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;* 현재 제 블로그에서 [페이지 소스보기] 로 보셔도 해당 소스를 보실 수 있습니다.&lt;span style=&quot;text-decoration: line-through;&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
작업 후 아이팟 터치나 아이폰에서 자신의 블로그로 접근하면&lt;/span&gt;&lt;br /&gt;
작업 후 스마트폰에서 자신의 블로그로 접근하면&lt;br /&gt;
이렇게 모바일용 페이지로 이동합니다 :-)&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile25.uf.tistory.com/original/1534681B4B726C434CE45D&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/1534681B4B726C434CE45D&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;2.png&quot; height=&quot;770&quot; width=&quot;414&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;모바일용 웹페이지는 작은 해상도에 맞게 이미지등도 리사이즈 해줘서&lt;br /&gt;
느린 모바일기기에서 최적의 상태로 블로그를 볼수 있게 합니다.&lt;br /&gt;
&lt;/p&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-309-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-309-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-309-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/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;
</description>
			<category>articles</category>
			<category>도메인 연결</category>
			<category>모바일 사이트</category>
			<category>모바일 사파리</category>
			<category>블로그</category>
			<category>스마트폰</category>
			<category>아이팟</category>
			<category>아이폰</category>
			<category>티스토리</category>
			<author>Geunwon Mo 모근원</author>
			<guid>http://lomohome.com/309</guid>
			<comments>http://lomohome.com/309#entry309comment</comments>
			<pubDate>Thu, 11 Feb 2010 13:18:39 +0900</pubDate>
		</item>
		<item>
			<title>간단히 스크린샷으로 알아보는 하나은행 아이폰 뱅킹</title>
			<link>http://lomohome.com/308</link>
			<description>&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
국내 은행 최초로 하나은행에서 아이폰/아이팟 용 모바일뱅킹 어플이 나왔습니다.&lt;br /&gt;
이름은 하나 N Bank 라는군요.&lt;br /&gt;
아시는 바와같이 &lt;span style=&quot;background-color: rgb(212, 42, 27); color: rgb(255, 255, 255);&quot;&gt;해킹 (즉 탈옥)된 아이폰/팟 (이하는 편의상 아이폰이라 하겠습니다) 에서는 사용이 되지 않는다네요&lt;/span&gt;. 보안을 위해서라 생각됩니다.&lt;br /&gt;
처음엔 한국 스토어에만 올라왔으나 현재는 미국스토어에서도 내려받기가 가능하다고 합니다.&lt;br /&gt;
가격은 당연히 Free 이구요.&lt;br /&gt;
어플스토어에서 &quot;hanabank&quot; 를 검색하시면 됩니다.&lt;br /&gt;
&lt;a href=&quot;http://itunes.apple.com/us/app/id340826757?mt=8&quot; target=&quot;_blank&quot;&gt;http://itunes.apple.com/us/app/id340826757?mt=8 [바로가기 링크]&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
실행하면 기동화면이 나오고 해킹여부를 확인후 공인인증센터에서 인증서를 내려받을수 있습니다.&lt;br /&gt;
이니텍의 모듈을 사용하기때문에 안타깝게도 Windows 기반의 PC 에서 작업을 해야하네요.&lt;br /&gt;
공인인증서를 아이폰에 넣는 방법은 하나은행 홈페이지에 상세히 설명 되어있습니다.&lt;br /&gt;
&lt;a target=&quot;_blank&quot; href=&quot;http://www.hanabank.com/smart&quot;&gt;http://www.hanabank.com/smart&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
이제 공인인증서를 내려받았으니 기본적인 거래내역 조회와 이체화면을 알아보겠습니다.&lt;br /&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile8.uf.tistory.com/original/1961C7204B2041E14D69A6&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile8.uf.tistory.com/image/1961C7204B2041E14D69A6&quot; alt=&quot;&quot; filemime=&quot;image/png&quot; filename=&quot;IMG_0213.PNG&quot; height=&quot;480&quot; width=&quot;320&quot;/&gt;&lt;/a&gt;&lt;/div&gt;공인인증서 작업이 완료된 후엔 이렇게 인증서 로그인을 통해 뱅킹서비스를 시작하게됩니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile29.uf.tistory.com/original/14616D204B2041E163CB20&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile29.uf.tistory.com/image/14616D204B2041E163CB20&quot; alt=&quot;&quot; filemime=&quot;image/png&quot; filename=&quot;IMG_0214.PNG&quot; height=&quot;480&quot; width=&quot;320&quot;/&gt;&lt;/a&gt;&lt;/div&gt;인증서 선택후 인증서 비밀번호를 입력하는 화면입니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile29.uf.tistory.com/original/146288204B2041E252AB6D&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile29.uf.tistory.com/image/146288204B2041E252AB6D&quot; alt=&quot;&quot; filemime=&quot;image/png&quot; filename=&quot;IMG_0215.PNG&quot; height=&quot;480&quot; width=&quot;320&quot;/&gt;&lt;/a&gt;&lt;/div&gt;12시부터 5분간은 서비스가 안된다네요 -_-;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile10.uf.tistory.com/original/186198204B2041E22C0AEE&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile10.uf.tistory.com/image/186198204B2041E22C0AEE&quot; alt=&quot;&quot; filemime=&quot;image/png&quot; filename=&quot;IMG_0217.PNG&quot; height=&quot;585&quot; width=&quot;320&quot;/&gt;&lt;/a&gt;&lt;/div&gt;최초 사용시엔 이렇게 약관페이지가 나오며&lt;br /&gt;
약관에 동의하여야 스마트폰 뱅킹 서비스를 받을 수 있습니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile10.uf.tistory.com/original/1761CC204B2041E344E287&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile10.uf.tistory.com/image/1761CC204B2041E344E287&quot; alt=&quot;&quot; filemime=&quot;image/png&quot; filename=&quot;IMG_0219.PNG&quot; height=&quot;480&quot; width=&quot;320&quot;/&gt;&lt;/a&gt;&lt;/div&gt;스마트폰 뱅킹 서비스를 가입하기 위해 다시 한번 공인인증서와 보안카드를 넣는&lt;br /&gt;
보안매채인증 작업을 합니다. OTP 이용자는 OTP 번호 입력창이 뜨겠네요.&lt;br /&gt;
탈옥을 하면 사용할수 없는 모바일 뱅킹이라 Backgrounder 를 사용할수 없습니다.&lt;br /&gt;
저처럼 아이폰에 보안카드 번호를 보안어플을 이용하여&lt;br /&gt;
보관하시는 분들은 조금 불행한겁니다.. 실물 카드를 가지고 다니는편이 편하겠네요.&lt;br /&gt;
&lt;br /&gt;&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span style=&quot;color: rgb(87, 4, 140);&quot;&gt;*간단하지만 복잡한-_-팁을 하나 알려드리겠습니다.&lt;/span&gt;&lt;br style=&quot;color: rgb(87, 4, 140);&quot;&gt;&lt;span style=&quot;color: rgb(87, 4, 140);&quot;&gt;보안카드란것은 한번 요구번호가 나오면 (위에서는 19,18) 정확한 보안카드번호를 넣어서 거래를 하기전엔 바뀌지 않습니다. 따라서 번거롭지만 아무데나 이체를 하는척해서 보안카드 요구번호를 알아내고 어플 종료후, 보안카드 어플에서 보안카드 번호를 확인한후 다시 은행어플로 와서 진행하면 아까 요구한것과 같은 보안카드 요구번호가 나올겁니다.&lt;/span&gt; 조금 귀찮지요..&lt;br /&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile7.uf.tistory.com/original/196185204B2041E350DEE6&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile7.uf.tistory.com/image/196185204B2041E350DEE6&quot; alt=&quot;&quot; filemime=&quot;image/png&quot; filename=&quot;IMG_0220.PNG&quot; height=&quot;480&quot; width=&quot;320&quot;/&gt;&lt;/a&gt;&lt;/div&gt;어찌되었건 사용완료 하고 이젠 사용을 하면 됩니다 :-)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile22.uf.tistory.com/original/1761AD204B2041E4440C90&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile22.uf.tistory.com/image/1761AD204B2041E4440C90&quot; alt=&quot;&quot; filemime=&quot;image/png&quot; filename=&quot;IMG_0223.PNG&quot; height=&quot;573&quot; width=&quot;320&quot;/&gt;&lt;/a&gt;&lt;/div&gt;예금계좌 목록조회 화면입니다.&lt;br /&gt;
하나은행에 가지고있는 통장목록이 나오는군요.&lt;br /&gt;
탭으로 예금,펀드,대출,외환,자산의 보기가 가능합니다.&lt;br /&gt;
통장에서 오른쪽의 &amp;gt; 버튼을 누르면 해당 통장에서 할수있는 바로가기 버튼들이 나옵니다.&lt;br /&gt;
월급통장의 &amp;gt; 를 탭하니 계좌정보,거래내역,즉시이체 버튼이 나오는군요.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile6.uf.tistory.com/original/1661E0204B2041E44CBA9C&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile6.uf.tistory.com/image/1661E0204B2041E44CBA9C&quot; alt=&quot;&quot; filemime=&quot;image/png&quot; filename=&quot;IMG_0224.PNG&quot; height=&quot;818&quot; width=&quot;320&quot;/&gt;&lt;/a&gt;&lt;/div&gt;계좌정보를 조회한 화면입니다.&lt;br /&gt;
해당 통장의 상세정보가 나옵니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile26.uf.tistory.com/original/2061B9204B2041E4477D3C&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile26.uf.tistory.com/image/2061B9204B2041E4477D3C&quot; alt=&quot;&quot; filemime=&quot;image/png&quot; filename=&quot;IMG_0226.PNG&quot; height=&quot;480&quot; width=&quot;320&quot;/&gt;&lt;/a&gt;&lt;/div&gt;거래내역 조회를 해보겠습니다.&lt;br /&gt;
인터넷뱅킹과 화면이 그리 다르지 않습니다.&lt;br /&gt;
계좌가 여러개이신 분들은 계좌번호선택에 번호만 표기되어 불편한 점도 있을 수 있겠네요.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile28.uf.tistory.com/original/1961D6204B2041E834BCEB&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile28.uf.tistory.com/image/1961D6204B2041E834BCEB&quot; alt=&quot;&quot; filemime=&quot;image/png&quot; filename=&quot;IMG_0227.PNG&quot; height=&quot;480&quot; width=&quot;320&quot;/&gt;&lt;/a&gt;&lt;/div&gt;조회 결과입니다.&lt;br /&gt;
출금된 내역은 - 로, 입금된내역은 + 로 표시가 되네요.&lt;br /&gt;
아이폰을 이용하면 어디서든 입출금 내역을 확인할수가 있습니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile2.uf.tistory.com/original/1861EA204B2041E8405CC0&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile2.uf.tistory.com/image/1861EA204B2041E8405CC0&quot; alt=&quot;&quot; filemime=&quot;image/png&quot; filename=&quot;IMG_0229.PNG&quot; height=&quot;774&quot; width=&quot;320&quot;/&gt;&lt;/a&gt;&lt;/div&gt;자금이체의 첫화면입니다.&lt;br /&gt;
인터넷뱅킹과 화면이 다르지 않습니다 :-)&lt;br /&gt;
&#039;자주쓰는 계좌&#039; 나 최근입금계좌를 사용이 가능하네요.&lt;br /&gt;
자주쓰는 계좌를 눌러보겠습니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile28.uf.tistory.com/original/1261F9204B2041E9316BAB&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile28.uf.tistory.com/image/1261F9204B2041E9316BAB&quot; alt=&quot;&quot; filemime=&quot;image/png&quot; filename=&quot;IMG_0230.PNG&quot; height=&quot;480&quot; width=&quot;320&quot;/&gt;&lt;/a&gt;&lt;/div&gt;인터넷뱅킹에서 관리되는 자주쓰는 계좌와 완전히 동일합니다.&lt;br /&gt;
자주쓰는 계좌는 이렇게 등록하여 쓰면 클릭만으로 은행과 계좌번호가 자동입력 됩니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile24.uf.tistory.com/original/1461FE204B2041E9773221&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile24.uf.tistory.com/image/1461FE204B2041E9773221&quot; alt=&quot;&quot; filemime=&quot;image/png&quot; filename=&quot;IMG_0231.PNG&quot; height=&quot;480&quot; width=&quot;320&quot;/&gt;&lt;/a&gt;&lt;/div&gt;은행 선택화면입니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile4.uf.tistory.com/original/1361D1204B2041E93FA0D2&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile4.uf.tistory.com/image/1361D1204B2041E93FA0D2&quot; alt=&quot;&quot; filemime=&quot;image/png&quot; filename=&quot;IMG_0232.PNG&quot; height=&quot;480&quot; width=&quot;320&quot;/&gt;&lt;/a&gt;&lt;/div&gt;금액이나 계좌번호를 입력할땐 Qwerty 키보드가아닌 숫자키패드가 나타납니다.&lt;br /&gt;
상당히 편리한 인터페이스네요 :-) 개발자분들의 노고와 세심함이 느껴지는 부분입니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile2.uf.tistory.com/original/1561E5204B2041EA597E00&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile2.uf.tistory.com/image/1561E5204B2041EA597E00&quot; alt=&quot;&quot; filemime=&quot;image/png&quot; filename=&quot;IMG_0235.PNG&quot; height=&quot;563&quot; width=&quot;320&quot;/&gt;&lt;/a&gt;&lt;/div&gt;어찌돼었든, 이체를 진행해보겠습니다.&lt;br /&gt;
수취조회를 한 화면입니다. 인터넷뱅킹 이체의 step 2 에 해당하겠네요.&lt;br /&gt;
여기서 받는 분을 확인하고 &#039;진행&#039;하게되면 실제 이체 프로세스가 진행됩니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile2.uf.tistory.com/original/1561F4204B2041EA2F4B14&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile2.uf.tistory.com/image/1561F4204B2041EA2F4B14&quot; alt=&quot;&quot; filemime=&quot;image/png&quot; filename=&quot;IMG_0237.PNG&quot; height=&quot;480&quot; width=&quot;320&quot;/&gt;&lt;/a&gt;&lt;/div&gt;보안카드 입력화면이네요.&lt;br /&gt;
실물카드를 가지고 있지 않고 폰에 보안카드 번호가 있다면 조금 불편함이 예상됩니다.&lt;br /&gt;
보안카드를 입력하고 다시한번 공인인증서를 제출하게 됩니다.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile7.uf.tistory.com/original/116224204B2041EB448FE6&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile7.uf.tistory.com/image/116224204B2041EB448FE6&quot; alt=&quot;&quot; filemime=&quot;image/png&quot; filename=&quot;IMG_0238.PNG&quot; height=&quot;480&quot; width=&quot;320&quot;/&gt;&lt;/a&gt;&lt;/div&gt;이체가 완료된 화면입니다.&lt;br /&gt;
속도도 3G 망을 이용하여 테스트 했는데 크게 불편이 없는 속도였습니다.&lt;br /&gt;
10여분넘게 인터넷뱅킹을 테스트 했었는데 사용된 패킷은&lt;br /&gt;
일반 &amp;gt; 사용내역 확인시 2메가 남짓 된듯 보입니다. 2MB 정도 사용하니 웬지 찝찝하네요 -_-..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
이 포스팅으로 간단히 하나은행 아이폰 뱅킹에서 거래내역 조회와 이체화면을 살펴봤습니다.&lt;br /&gt;
인터넷뱅킹을 사용할때 주로 하는 거래가 이 두가지 거래라고 생각합니다.&lt;br /&gt;
이 외에 지로/공과금 납부나 카드서비스, 외환, 펀드등의 서비스가 곧 추가될것으로 보이니 국내 은행중 첫 아이폰 뱅킹서비스를 선보이는것 치고는 굉장한 완성도를 보입니다 :-)&lt;br /&gt;
이로서 아이폰을 사용하는데 불편함이 하나 해소되었네요.&lt;br /&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-308-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-308-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-308-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/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;
</description>
			<category>articles</category>
			<category>hanabank</category>
			<category>모바일 뱅킹</category>
			<category>사용기</category>
			<category>사진</category>
			<category>아이팟</category>
			<category>아이폰</category>
			<category>아이폰 뱅킹</category>
			<category>인터넷 뱅킹</category>
			<category>하나은행</category>
			<author>Geunwon Mo 모근원</author>
			<guid>http://lomohome.com/308</guid>
			<comments>http://lomohome.com/308#entry308comment</comments>
			<pubDate>Thu, 10 Dec 2009 09:55:47 +0900</pubDate>
		</item>
		<item>
			<title>괴물 핸드폰 아이폰?</title>
			<link>http://lomohome.com/307</link>
			<description>&lt;div&gt;
그동안 써왔던 핸드폰중에 사진이 이렇게 나오는 핸드폰은 아이폰이 처음인듯 싶다.&lt;br /&gt;
&lt;br /&gt;&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile22.uf.tistory.com/original/111325214B1F978E7144C4&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile22.uf.tistory.com/image/111325214B1F978E7144C4&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;IMG_0081.jpg&quot; height=&quot;329&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;출근길 지하철 안에서. 꽉막히던 강변북로.&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile9.uf.tistory.com/original/172458214B1F979547CE81&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile9.uf.tistory.com/image/172458214B1F979547CE81&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile9.uf@172458214B1F979547CE81.jpg&quot; height=&quot;599&quot; width=&quot;450&quot;/&gt;&lt;/a&gt;&lt;/div&gt;새벽에 집을 나서면서&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile29.uf.tistory.com/original/152B1E214B1F97A337A81F&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile29.uf.tistory.com/image/152B1E214B1F97A337A81F&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile29.uf@152B1E214B1F97A337A81F.jpg&quot; height=&quot;599&quot; width=&quot;450&quot;/&gt;&lt;/a&gt;&lt;/div&gt;점심먹고 나와 식당앞에서 한컷&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile21.uf.tistory.com/original/12269B214B1F97B3768900&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile21.uf.tistory.com/image/12269B214B1F97B3768900&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile21.uf@12269B214B1F97B3768900.jpg&quot; height=&quot;599&quot; width=&quot;450&quot;/&gt;&lt;/a&gt;&lt;/div&gt;명동에 함박눈 내리던 오후&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile27.uf.tistory.com/original/181326214B1F97BE6BA566&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile27.uf.tistory.com/image/181326214B1F97BE6BA566&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cfile27.uf@181326214B1F97BE6BA566.jpg&quot; height=&quot;599&quot; width=&quot;450&quot;/&gt;&lt;/a&gt;&lt;/div&gt;사무실 로비에 자리잡은 크리스 마스 트리&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
Apple iPhone 3Gs / sRGB / Free PhotoFilters +photoshop.com / 2009. 12&lt;br /&gt;
&lt;/div&gt;
&lt;/div&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-307-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-307-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-307-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/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;
</description>
			<category>digitalgraphy</category>
			<category>사진</category>
			<category>아이폰</category>
			<category>아이폰 3GS</category>
			<category>애플</category>
			<author>Geunwon Mo 모근원</author>
			<guid>http://lomohome.com/307</guid>
			<comments>http://lomohome.com/307#entry307comment</comments>
			<pubDate>Wed, 09 Dec 2009 21:32:00 +0900</pubDate>
		</item>
		<item>
			<title>애플 아이폰</title>
			<link>http://lomohome.com/306</link>
			<description>아기다리고기다리던 아이폰이 왔습니다 :-)&lt;br /&gt;
&lt;br /&gt;&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile8.uf.tistory.com/original/203E321E4B1705151BD490&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile8.uf.tistory.com/image/203E321E4B1705151BD490&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2415.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;드디어 왔구나~ iPhone 3Gs.&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile22.uf.tistory.com/original/173E371E4B1705163ADA64&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile22.uf.tistory.com/image/173E371E4B1705163ADA64&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2416.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;정갈한 32기가 화이트입니다. 밥주고 있지요 :-)&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile30.uf.tistory.com/original/173E3C1E4B1705174399D1&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile30.uf.tistory.com/image/173E3C1E4B1705174399D1&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2419.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;이날 같이 배송된 애플 &quot;매직 마우스&quot;&lt;br /&gt;
버튼과 스크롤휠이 없고 멀티터치 펑션이 들어가있습니다.&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile10.uf.tistory.com/original/143E411E4B1705171D9A7E&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile10.uf.tistory.com/image/143E411E4B1705171D9A7E&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2421.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;사무실 책상샷. 절반은 애플제품이군요 :-)&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile28.uf.tistory.com/original/183E231E4B170514359067&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile28.uf.tistory.com/image/183E231E4B170514359067&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2180.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;아이폰 구입으로 방출된 아이팟 터치 1세대.&lt;br /&gt;
첫월급 받아서 산이후 애지중지한게 2년이 되어가네요 :-)&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile10.uf.tistory.com/original/183E471E4B170518263AD1&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile10.uf.tistory.com/image/183E471E4B170518263AD1&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2423.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;안녕~&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile29.uf.tistory.com/original/203E1E1E4B1705153C95FB&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile29.uf.tistory.com/image/203E1E1E4B1705153C95FB&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2183.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;박스에 담아 고이고이 빠이빠이 ㅎ&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile8.uf.tistory.com/original/203E5D1E4B17051842BA90&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile8.uf.tistory.com/image/203E5D1E4B17051842BA90&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2429.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;그나저나 핸드폰 산지 5개월만의 기기변경이라 기기할부 20만원 + 위약금 12만원을 냈더니&lt;br /&gt;
아이폰을 구입하기 위해 출혈이 심했다는 생각도 드네요 ;-(&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;

&lt;div style=&quot;text-align: center;&quot;&gt;
SIGMA DP2 / RAW / sRGB / SPP 3.3 + Photoshop CS3 / 2009. 12. 1&lt;br /&gt;
&lt;/div&gt;
&lt;/div&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-306-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-306-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-306-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/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;
</description>
			<category>digitalgraphy</category>
			<category>매직마우스</category>
			<category>사무실</category>
			<category>사진</category>
			<category>아이폰</category>
			<category>애플</category>
			<category>책상샷</category>
			<category>쿠키</category>
			<category>화이트</category>
			<author>Geunwon Mo 모근원</author>
			<guid>http://lomohome.com/306</guid>
			<comments>http://lomohome.com/306#entry306comment</comments>
			<pubDate>Thu, 03 Dec 2009 09:31:15 +0900</pubDate>
		</item>
		<item>
			<title>영등포 교보문고</title>
			<link>http://lomohome.com/304</link>
			<description>새로생긴 타임스퀘어 안의 교보문고&lt;br /&gt;
&lt;br /&gt;
&lt;DIV style=&quot;TEXT-ALIGN: center&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile23.uf.tistory.com/original/11326A204AF21DAC46C039&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile23.uf.tistory.com/image/11326A204AF21DAC46C039&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2317.jpg&quot; height=&quot;780&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile25.uf.tistory.com/original/16315C204AF21DAD5CDED6&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/16315C204AF21DAD5CDED6&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2318_1.jpg&quot; height=&quot;780&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;교보문고 안에 까페도 있어서 책들을 가져다 커피한잔하면서 볼수있어 좋다~ ^^&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile25.uf.tistory.com/original/172F1F034AEF937B071891&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/172F1F034AEF937B071891&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2320.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile5.uf.tistory.com/original/174DC9034AEF937C9FBFD9&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile5.uf.tistory.com/image/174DC9034AEF937C9FBFD9&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2321.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;공무도하 김훈작가님 싸인회&lt;br /&gt;
&lt;br /&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;br /&gt;

&lt;DIV style=&quot;TEXT-ALIGN: center&quot;&gt;SIGMA DP2 / RAW / sRGB / SPP 3.3 + Photoshop CS3 / 2009. 11. 1&lt;br /&gt;
&lt;/DIV&gt;&lt;/DIV&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-304-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-304-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-304-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/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;
</description>
			<category>digitalgraphy</category>
			<category>공무도하</category>
			<category>교보문고</category>
			<category>김훈</category>
			<category>사인회</category>
			<category>사진</category>
			<category>영등포</category>
			<category>타임스퀘어</category>
			<author>Geunwon Mo 모근원</author>
			<guid>http://lomohome.com/304</guid>
			<comments>http://lomohome.com/304#entry304comment</comments>
			<pubDate>Wed, 04 Nov 2009 15:13:17 +0900</pubDate>
		</item>
		<item>
			<title>프로그래머의 자리</title>
			<link>http://lomohome.com/305</link>
			<description>항상 깔끔하려고 노력하는 사무실에서 내 자리&lt;br /&gt;
살짝 설정샷&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile25.uf.tistory.com/original/17315A014AEF93AB28604E&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/17315A014AEF93AB28604E&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2323.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile25.uf.tistory.com/original/1556AD014AEF93AD95E4A4&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/1556AD014AEF93AD95E4A4&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2324.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;이번에 구입한 맥북. 이걸로 Objective-C 공부중~&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile24.uf.tistory.com/original/153847014AEF93AD0DB160&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile24.uf.tistory.com/image/153847014AEF93AD0DB160&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2325.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;메인 노트북에선 회사 작업용. 작업용으로 쓰기엔 너무 아깝다 ㅠㅠ&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile25.uf.tistory.com/original/1333B8014AEF93AE34E428&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/1333B8014AEF93AE34E428&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2326.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;IT분사 저지!(?)&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
SIGMA DP2 / RAW / sRGB / SPP 3.3 + Photoshop CS3 / 2009. 11. 4&lt;br /&gt;
&lt;/div&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-305-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-305-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-305-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/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;
</description>
			<category>digitalgraphy</category>
			<category>개발자</category>
			<category>노트북</category>
			<category>맥북</category>
			<category>사진</category>
			<category>자리</category>
			<category>책상</category>
			<author>Geunwon Mo 모근원</author>
			<guid>http://lomohome.com/305</guid>
			<comments>http://lomohome.com/305#entry305comment</comments>
			<pubDate>Wed, 04 Nov 2009 15:13:07 +0900</pubDate>
		</item>
		<item>
			<title>가을 북한산 등산</title>
			<link>http://lomohome.com/303</link>
			<description>&lt;DIV style=&quot;TEXT-ALIGN: left&quot;&gt;빨리 가버릴것 같은 늦은 가을에 북한산 등산&lt;/DIV&gt;
&lt;DIV style=&quot;TEXT-ALIGN: center&quot;&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile1.uf.tistory.com/original/187FD3014AE7EF2C3DFCDA&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile1.uf.tistory.com/image/187FD3014AE7EF2C3DFCDA&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2236.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;아직 초반 즐거운 등산길~&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile21.uf.tistory.com/original/167612014AE7EF2D6D1957&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile21.uf.tistory.com/image/167612014AE7EF2D6D1957&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2237.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;쌩얼 작렬&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile6.uf.tistory.com/original/1702F2014AE7EF2E4FF52C&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile6.uf.tistory.com/image/1702F2014AE7EF2E4FF52C&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2238.jpg&quot; height=&quot;780&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;등산 매니아. 소영.&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile2.uf.tistory.com/original/147F1B014AE7EF2F829E6E&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile2.uf.tistory.com/image/147F1B014AE7EF2F829E6E&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2243.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;은평 뉴타운 바라보면서 식사하시는 분들&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile7.uf.tistory.com/original/2074CB014AE7EF3034B567&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile7.uf.tistory.com/image/2074CB014AE7EF3034B567&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2245.jpg&quot; height=&quot;780&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;난 보기만해도 후덜덜 하던데 ㅠ&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile4.uf.tistory.com/original/1273EB014AE7EF316EFB1C&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile4.uf.tistory.com/image/1273EB014AE7EF316EFB1C&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2249.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;족두리봉에서 소영이&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile24.uf.tistory.com/original/157CF1014AE7EF3146EC04&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile24.uf.tistory.com/image/157CF1014AE7EF3146EC04&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2254.jpg&quot; height=&quot;780&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;첫번째 봉우리에서 쩔은 저질체력 보유자&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile24.uf.tistory.com/original/150B6F014AE7EF323C71B6&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile24.uf.tistory.com/image/150B6F014AE7EF323C71B6&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2256.jpg&quot; height=&quot;780&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;오늘의 목표(?)&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile9.uf.tistory.com/original/20019E014AE7EF332CBBAE&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile9.uf.tistory.com/image/20019E014AE7EF332CBBAE&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2257.jpg&quot; height=&quot;780&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;머리 묶고 다시 출발 채비&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile7.uf.tistory.com/original/1809C2014AE7EF332BA377&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile7.uf.tistory.com/image/1809C2014AE7EF332BA377&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2260.jpg&quot; height=&quot;780&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;간식 먹는 햄스터&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile2.uf.tistory.com/original/197C63014AE7EF343FA280&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile2.uf.tistory.com/image/197C63014AE7EF343FA280&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2261.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;다리 한번 잘못 딪으면 한방에 훅&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile4.uf.tistory.com/original/197F1F014AE7EF35616239&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile4.uf.tistory.com/image/197F1F014AE7EF35616239&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2266.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;쉴만큼 쉬고 다시 이동 전에 기념촬영&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile30.uf.tistory.com/original/1873EF014AE7EF367A19CD&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile30.uf.tistory.com/image/1873EF014AE7EF367A19CD&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2268.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;저~기 보이는곳이 방금 사진찍었던 족두리봉&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile8.uf.tistory.com/original/187E77014AE7EF3740E932&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile8.uf.tistory.com/image/187E77014AE7EF3740E932&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2273.jpg&quot; height=&quot;780&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;향로봉 가는길&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile3.uf.tistory.com/original/1877F7014AE7EF3749D5C3&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile3.uf.tistory.com/image/1877F7014AE7EF3749D5C3&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2275.jpg&quot; height=&quot;780&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;가다가 지쳐서 커피타임&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile3.uf.tistory.com/original/207E6B014AE7EF3869FEBA&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile3.uf.tistory.com/image/207E6B014AE7EF3869FEBA&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2277.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;럭셔리한 맥심&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile9.uf.tistory.com/original/157580014AE7EF397453D2&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile9.uf.tistory.com/image/157580014AE7EF397453D2&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2281.jpg&quot; height=&quot;780&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;사실 커피마시기전에 집에서 구워온 만두도 있었는데 ㅠ&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile29.uf.tistory.com/original/140196014AE7EF3968CD1C&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile29.uf.tistory.com/image/140196014AE7EF3968CD1C&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2283.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;두번째 봉우리인 향로봉 찍고 비봉가는길&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile26.uf.tistory.com/original/1476D6014AE7EF3A6A0E92&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile26.uf.tistory.com/image/1476D6014AE7EF3A6A0E92&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2284.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;북한산&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile24.uf.tistory.com/original/18019D014AE7EF3D4C9D92&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile24.uf.tistory.com/image/18019D014AE7EF3D4C9D92&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2290.jpg&quot; height=&quot;123&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;북한산 파노라마&lt;br /&gt;
* 사진을 클릭한후 크게 보시길 추천&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile29.uf.tistory.com/original/19769A014AE7EF4059347D&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile29.uf.tistory.com/image/19769A014AE7EF4059347D&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2291.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;북한산은 돌산이어서 단풍나무는 잘 없었지만 (아얘 못본것 같기도..)&lt;br /&gt;
그래도 울긋 불긋하니 가을분위기는 났었다~&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile6.uf.tistory.com/original/117E73014AE7EF41602601&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile6.uf.tistory.com/image/117E73014AE7EF41602601&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2292.jpg&quot; height=&quot;780&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;향로봉&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile25.uf.tistory.com/original/131C2A014AE7EF42156F00&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/131C2A014AE7EF42156F00&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2293.jpg&quot; height=&quot;780&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;또 걸어걸어 비봉도착. 젊은 나이에 죽기 싫어 올라가지않았다.&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile5.uf.tistory.com/original/167C9A014AE7EF43502580&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile5.uf.tistory.com/image/167C9A014AE7EF43502580&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2294.jpg&quot; height=&quot;780&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;사실 비봉은 119 대원님께서 못올라가게 막고 있었는듯.&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile26.uf.tistory.com/original/207478014AE7EF447A637B&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile26.uf.tistory.com/image/207478014AE7EF447A637B&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2296.jpg&quot; height=&quot;780&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;세번째 봉우리인 비봉을 찍고 사모바위&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile29.uf.tistory.com/original/1678B8014AE7EF44328640&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile29.uf.tistory.com/image/1678B8014AE7EF44328640&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2297.jpg&quot; height=&quot;780&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;단풍구경 왔다가 너무 무리하는것 같아서 승가사 찍고 저녁식사 고고싱&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile10.uf.tistory.com/original/120C2A014AE7EF45129CC6&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile10.uf.tistory.com/image/120C2A014AE7EF45129CC6&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2299.jpg&quot; height=&quot;780&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;승가사&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile9.uf.tistory.com/original/127A29014AE7EF465DAD6E&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile9.uf.tistory.com/image/127A29014AE7EF465DAD6E&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2302.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;내려오는길에 마눌님이 싸온 도시락.&lt;br /&gt;
산에서 먹는 밥은 정말 너무 맛있다 :-)&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile2.uf.tistory.com/original/1476DA014AE7EF47835178&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile2.uf.tistory.com/image/1476DA014AE7EF47835178&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2307.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;내려와서 종로 청계천에와서 노숙모드&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile23.uf.tistory.com/original/1779D3014AE7EF485C9003&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile23.uf.tistory.com/image/1779D3014AE7EF485C9003&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2308.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;등산~ 끝~&lt;br /&gt;
&lt;br /&gt;&lt;/DIV&gt;
&lt;DIV style=&quot;TEXT-ALIGN: center&quot;&gt;SIGMA DP2 / RAW / sRGB / SPP 3.3 + Photoshop CS3 / 2009. 10. 25&lt;br /&gt;
&lt;/DIV&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-303-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-303-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-303-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/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;
</description>
			<category>digitalgraphy</category>
			<category>가을</category>
			<category>등산</category>
			<category>북한산</category>
			<category>비봉</category>
			<category>사진</category>
			<category>승가사</category>
			<category>족두리봉</category>
			<category>청계천</category>
			<category>향로봉</category>
			<author>Geunwon Mo 모근원</author>
			<guid>http://lomohome.com/303</guid>
			<comments>http://lomohome.com/303#entry303comment</comments>
			<pubDate>Fri, 30 Oct 2009 12:56:47 +0900</pubDate>
		</item>
		<item>
			<title>작업환경</title>
			<link>http://lomohome.com/302</link>
			<description>&lt;DIV&gt;Objective-C 와 Cocoa 를 해보며 취미로 iPhone, iPod 프로그래밍을 해보려고 산 맥북.&lt;br /&gt;
&lt;/DIV&gt;
&lt;DIV style=&quot;TEXT-ALIGN: center&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile9.uf.tistory.com/original/1321590C4AE317869F26FD&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile9.uf.tistory.com/image/1321590C4AE317869F26FD&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2156.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;훌륭한 테스트 베드, 동생방의 맥북 프로&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile7.uf.tistory.com/original/13042D0C4AE3178A013B8E&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile7.uf.tistory.com/image/13042D0C4AE3178A013B8E&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2235.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;가지고 다니면서 작업중인 맥북 화이트&lt;br /&gt;
* 사진감상 포인트는 너저분한 남자의 방들 -_-;&lt;br /&gt;
&lt;br /&gt;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV style=&quot;TEXT-ALIGN: center&quot;&gt;SIGMA DP2 / RAW / sRGB / SPP 3.5 + Photoshop CS3 / 2009. 10. 21&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-302-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-302-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-302-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/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;
</description>
			<category>digitalgraphy</category>
			<category>iPhone</category>
			<category>ipod</category>
			<category>Objective c</category>
			<category>맥북</category>
			<category>맥북 프로</category>
			<category>사진</category>
			<author>Geunwon Mo 모근원</author>
			<guid>http://lomohome.com/302</guid>
			<comments>http://lomohome.com/302#entry302comment</comments>
			<pubDate>Thu, 29 Oct 2009 10:45:20 +0900</pubDate>
		</item>
		<item>
			<title>홈메이드 스파게티</title>
			<link>http://lomohome.com/301</link>
			<description>400일날 저녁 조촐한 홈메이드 스파게티&lt;br /&gt;
찍어놓고 보니 사진은 이상한데 맛은 좋았다. 에헴.&lt;br /&gt;
&lt;br /&gt;
&lt;DIV style=&quot;TEXT-ALIGN: center&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile5.uf.tistory.com/original/1357B60E4AE31752C863E7&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile5.uf.tistory.com/image/1357B60E4AE31752C863E7&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2231.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;토마토 소스&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile21.uf.tistory.com/original/165A560E4AE317579C9D49&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile21.uf.tistory.com/image/165A560E4AE317579C9D49&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2232.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;까르보나라&lt;br /&gt;
&lt;/DIV&gt;
&lt;DIV&gt;&lt;br /&gt;
&lt;br /&gt;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV style=&quot;TEXT-ALIGN: center&quot;&gt;SIGMA DP2 / RAW / sRGB / SPP 3.5 + Photoshop CS3 / 2009. 10. 11&lt;br /&gt;
&lt;/DIV&gt;&lt;/DIV&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-301-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-301-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-301-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/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;
</description>
			<category>digitalgraphy</category>
			<category>까르보나라</category>
			<category>사진</category>
			<category>스파게티</category>
			<category>저녁</category>
			<category>토마토소스</category>
			<category>파스타</category>
			<author>Geunwon Mo 모근원</author>
			<guid>http://lomohome.com/301</guid>
			<comments>http://lomohome.com/301#entry301comment</comments>
			<pubDate>Thu, 29 Oct 2009 10:41:31 +0900</pubDate>
		</item>
		<item>
			<title>강화도 전등사</title>
			<link>http://lomohome.com/300</link>
			<description>&lt;DIV&gt;지호형네와 강화도로 슬슬 드라이브 갔던날&lt;/DIV&gt;
&lt;DIV style=&quot;TEXT-ALIGN: center&quot;&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile29.uf.tistory.com/original/190A140B4AE316C7C34702&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile29.uf.tistory.com/image/190A140B4AE316C7C34702&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2198.jpg&quot; height=&quot;780&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;전등사, 형수와 소영이&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile2.uf.tistory.com/original/1206350B4AE316CD8F874A&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile2.uf.tistory.com/image/1206350B4AE316CD8F874A&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2201.jpg&quot; height=&quot;780&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile9.uf.tistory.com/original/154FA30B4AE316D7214936&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile9.uf.tistory.com/image/154FA30B4AE316D7214936&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2207.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;형수와 지호형&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile21.uf.tistory.com/original/130CCD0B4AE316DB80AB41&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile21.uf.tistory.com/image/130CCD0B4AE316DB80AB41&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2209.jpg&quot; height=&quot;780&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;마눌님 빵! 터지셨음.&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile1.uf.tistory.com/original/20039A0B4AE316DEB3E9C6&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile1.uf.tistory.com/image/20039A0B4AE316DEB3E9C6&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2210.jpg&quot; height=&quot;780&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;귀여운 표정 작렬(?)&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile4.uf.tistory.com/original/1906FD0B4AE316E4987308&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile4.uf.tistory.com/image/1906FD0B4AE316E4987308&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2215.jpg&quot; height=&quot;780&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;저돈이 내돈이었으면 -_-;;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile23.uf.tistory.com/original/1254D10B4AE316EB135168&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile23.uf.tistory.com/image/1254D10B4AE316EB135168&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2216.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;봉황&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile6.uf.tistory.com/original/2066930B4AE316EE057275&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile6.uf.tistory.com/image/2066930B4AE316EE057275&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2219.jpg&quot; height=&quot;780&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;노출증 나한&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfile4.uf.tistory.com/original/19186E0B4AE316F769B422&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile4.uf.tistory.com/image/19186E0B4AE316F769B422&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;SDIM2225.jpg&quot; height=&quot;347&quot; width=&quot;520&quot;/&gt;&lt;/a&gt;&lt;/div&gt;알뜰한 스님&lt;br /&gt;
&lt;br /&gt;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV style=&quot;TEXT-ALIGN: center&quot;&gt;SIGMA DP2 / RAW / sRGB / SPP 3.3 + Photoshop CS3 / 2009. 10. 10&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-300-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-300-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-300-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/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;
</description>
			<category>digitalgraphy</category>
			<category>강화도</category>
			<category>드라이브</category>
			<category>사진</category>
			<category>전등사</category>
			<author>Geunwon Mo 모근원</author>
			<guid>http://lomohome.com/300</guid>
			<comments>http://lomohome.com/300#entry300comment</comments>
			<pubDate>Wed, 28 Oct 2009 11:15:33 +0900</pubDate>
		</item>
	</channel>
</rss>
