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

<channel>
	<title>june8th.net</title>
	<atom:link href="http://june8th.net/wp/feed" rel="self" type="application/rss+xml" />
	<link>http://june8th.net/wp</link>
	<description>born on june 8th and married one who was born on june 8th</description>
	<lastBuildDate>Fri, 28 Oct 2011 04:55:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>터치스크린</title>
		<link>http://june8th.net/wp/archives/890</link>
		<comments>http://june8th.net/wp/archives/890#comments</comments>
		<pubDate>Fri, 28 Oct 2011 04:55:43 +0000</pubDate>
		<dc:creator>june8th</dc:creator>
				<category><![CDATA[scribble]]></category>

		<guid isPermaLink="false">http://june8th.net/wp/?p=890</guid>
		<description><![CDATA[터치스크린이 기본 인터페이스가 된 시대가 도래했지만 프로그래머들은 아직 구시대의 인터페이스 키보드와 마우스로 그것들을 만든다. 펀치카드를 쓰던 프로그래머가 사라졌듯이 키보드와 마우스를 쓰는 프로그래머들은 언제까지 존재하려나.]]></description>
			<content:encoded><![CDATA[<p>터치스크린이 기본 인터페이스가 된 시대가 도래했지만 프로그래머들은 아직 구시대의 인터페이스 키보드와 마우스로 그것들을 만든다. 펀치카드를 쓰던 프로그래머가 사라졌듯이 키보드와 마우스를 쓰는 프로그래머들은 언제까지 존재하려나.</p>
]]></content:encoded>
			<wfw:commentRss>http://june8th.net/wp/archives/890/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>자려다 말고</title>
		<link>http://june8th.net/wp/archives/883</link>
		<comments>http://june8th.net/wp/archives/883#comments</comments>
		<pubDate>Tue, 04 Oct 2011 04:20:49 +0000</pubDate>
		<dc:creator>june8th</dc:creator>
				<category><![CDATA[scribble]]></category>

		<guid isPermaLink="false">http://june8th.net/wp/?p=883</guid>
		<description><![CDATA[딸 홈페이지를 워드프레스로 변경.장기적으로 보건데 텍스트큐브를 갈고 닦을 개발자들이 없어질것으로 예상되어 그나마 갈아탈 수 있을때 갈아타려고 작정중. 몇년간 잘 써왔는데 안타깝지만 어쩔수 없네. ttxml.php를 잘 받아서 썼다. 아래는 post_author 보존을 위한 hack. # diff -urN ttxml-author.php ttxml.php --- ttxml-author.php 2011-10-03 21:58:51.000000000 -0600 +++ ttxml.php 2011-04-23 12:38:20.000000000 -0600 @@ -181,13 +181,13 @@ return true; } - [...]]]></description>
			<content:encoded><![CDATA[<p>딸 홈페이지를 워드프레스로 변경.장기적으로 보건데 텍스트큐브를 갈고 닦을 개발자들이 없어질것으로 예상되어 그나마 갈아탈 수 있을때 갈아타려고 작정중. 몇년간 잘 써왔는데 안타깝지만 어쩔수 없네. ttxml.php를 잘 받아서 썼다. 아래는 post_author 보존을 위한 hack.</p>
<pre># diff -urN ttxml-author.php ttxml.php
--- ttxml-author.php	2011-10-03 21:58:51.000000000 -0600
+++ ttxml.php	2011-04-23 12:38:20.000000000 -0600
@@ -181,13 +181,13 @@
         return true;
     }

-    function import_attachments($post_id, $post_author, &amp;$attachments) {
+    function import_attachments($post_id, &amp;$attachments) {
         foreach ( $attachments as $data ) {
             // image only
             if ( strpos($data['post_mime_type'], 'image/') !== 0 )
                 continue;

-            $data['post_author'] = $post_author;
+            $data['post_author'] = 1;
             $data['post_content'] = '';
             $data['post_status'] = 'inherit';
             $data['post_type'] = 'attachment';
@@ -298,8 +298,7 @@
             'private'=&gt;'private', 'protected'=&gt;'publish'
         );

-	preg_match('|&lt;userid&gt;([^&lt;]+)&lt;/userid&gt;|s', $data, $post_author);
-        $post_author = $post_author[1];
+        $post_author = 1;

         $post_type = (strpos($data, '&lt;post') === 0) ? 'post' : 'page';

@@ -551,7 +550,7 @@
                     if ( $post_id &gt; 0 ) {
                         $this-&gt;import_comments($post_id, $comments);
                         $this-&gt;import_comments($post_id, $trackbacks);
-                        $this-&gt;import_attachments($post_id, $post['post_author'], $attachments);
+                        $this-&gt;import_attachments($post_id, $attachments);

                         // count info
                         if ( $post['tags_input'] !== '' ) {
@@ -693,4 +692,4 @@
 $ttxml_import = new TTXML_Import();

 register_importer('ttxml', __('TTXML'), __('Import posts from TTXML.'), array ($ttxml_import, 'dispatch'));
-?&gt;
+?&gt;
\ No newline at end of file</pre>
]]></content:encoded>
			<wfw:commentRss>http://june8th.net/wp/archives/883/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>주일학교</title>
		<link>http://june8th.net/wp/archives/879</link>
		<comments>http://june8th.net/wp/archives/879#comments</comments>
		<pubDate>Sun, 24 Jul 2011 16:33:48 +0000</pubDate>
		<dc:creator>june8th</dc:creator>
				<category><![CDATA[생각]]></category>

		<guid isPermaLink="false">http://june8th.net/wp/archives/879</guid>
		<description><![CDATA[주일학교에 딸을 보내놓고 발걸음이 떨어지지 않아 문 밖에서 서성이고 있다. 이 망설임의 원인을 따져보면 내 손길이 미치지 못하는 곳에서 이루어지는 교육(이라고쓰고 세뇌라 읽는다)이 필요한 것인지 옳은것인지에 대한 의문이다. 내 삶의 절반 가까이 질문이 필요없는 대답이 되었던 가치관을 딸에게 주입하려 시도하는 행위에 동의하는 것이 정당한 일인가. 모든 교육이란것이 결국 이런류(일종의 세뇌)에 지나지 않는다면 특별히 해롭지 않을 [...]]]></description>
			<content:encoded><![CDATA[<p>주일학교에 딸을 보내놓고 발걸음이 떨어지지 않아 문 밖에서 서성이고 있다. 이 망설임의 원인을 따져보면 내 손길이 미치지 못하는 곳에서 이루어지는 교육(이라고쓰고 세뇌라 읽는다)이 필요한 것인지 옳은것인지에 대한 의문이다. 내 삶의 절반 가까이 질문이 필요없는 대답이 되었던 가치관을 딸에게 주입하려 시도하는 행위에 동의하는 것이 정당한 일인가. 모든 교육이란것이 결국 이런류(일종의 세뇌)에 지나지 않는다면 특별히 해롭지 않을 수준의 기독교 가치관을 심어주는 것도 나쁜것은 아니지 않는가.</p>
]]></content:encoded>
			<wfw:commentRss>http://june8th.net/wp/archives/879/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>캐나다 여행</title>
		<link>http://june8th.net/wp/archives/878</link>
		<comments>http://june8th.net/wp/archives/878#comments</comments>
		<pubDate>Fri, 22 Jul 2011 08:06:02 +0000</pubDate>
		<dc:creator>june8th</dc:creator>
				<category><![CDATA[scribble]]></category>

		<guid isPermaLink="false">http://june8th.net/wp/archives/878</guid>
		<description><![CDATA[처음으로 캐나다에 가봤다. 게다가&#160;처음으로 차를 몰고 국경이란걸 넘어 봤다.&#160;무사히&#160;집에 돌아온 기쁨으로인해 여태&#160;안 자고 영화보고 낮에 듣다 만 나는 꼼수다 듣고 놀고 그러고 있다.]]></description>
			<content:encoded><![CDATA[<p>처음으로 캐나다에 가봤다. 게다가&nbsp;처음으로 차를 몰고 국경이란걸 넘어 봤다.&nbsp;무사히&nbsp;집에 돌아온 기쁨으로인해 여태&nbsp;안 자고 영화보고 낮에 듣다 만 나는 꼼수다 듣고 놀고 그러고 있다.</p>
]]></content:encoded>
			<wfw:commentRss>http://june8th.net/wp/archives/878/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>재택근무</title>
		<link>http://june8th.net/wp/archives/876</link>
		<comments>http://june8th.net/wp/archives/876#comments</comments>
		<pubDate>Fri, 24 Jun 2011 15:52:22 +0000</pubDate>
		<dc:creator>june8th</dc:creator>
				<category><![CDATA[scribble]]></category>

		<guid isPermaLink="false">http://june8th.net/wp/?p=876</guid>
		<description><![CDATA[어제 온수 보일러 통이 터지는 바람에 오늘 통 교체를 하기로 했다. 일하면서 고치러 오길 기다리는데, 점심때가 되도록 오지 않는다. 집중이 잘 안되어 일도 진도가 안 나가네..]]></description>
			<content:encoded><![CDATA[<p>어제 온수 보일러 통이 터지는 바람에 오늘 통 교체를 하기로 했다. 일하면서 고치러 오길 기다리는데, 점심때가 되도록 오지 않는다. 집중이 잘 안되어 일도 진도가 안 나가네..</p>
]]></content:encoded>
			<wfw:commentRss>http://june8th.net/wp/archives/876/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>미용실</title>
		<link>http://june8th.net/wp/archives/875</link>
		<comments>http://june8th.net/wp/archives/875#comments</comments>
		<pubDate>Thu, 23 Jun 2011 00:37:39 +0000</pubDate>
		<dc:creator>june8th</dc:creator>
				<category><![CDATA[scribble]]></category>
		<category><![CDATA[김선영]]></category>

		<guid isPermaLink="false">http://june8th.net/wp/archives/875</guid>
		<description><![CDATA[머리를 깍으러 가서 머리를 감는데 천장에 있는 전구가 보인다. 하나는 할로겐 다른것들은 절전형인데 색도 크기도 다르다. 멋을 추구하는 미용실이 뭐 이래. 맨하탄 김선영 실망이야.]]></description>
			<content:encoded><![CDATA[<p>머리를 깍으러 가서 머리를 감는데 천장에 있는 전구가 보인다. 하나는 할로겐 다른것들은 절전형인데 색도 크기도 다르다. 멋을 추구하는 미용실이 뭐 이래. 맨하탄 김선영 실망이야.</p>
]]></content:encoded>
			<wfw:commentRss>http://june8th.net/wp/archives/875/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>나가수</title>
		<link>http://june8th.net/wp/archives/874</link>
		<comments>http://june8th.net/wp/archives/874#comments</comments>
		<pubDate>Sun, 19 Jun 2011 17:18:30 +0000</pubDate>
		<dc:creator>june8th</dc:creator>
				<category><![CDATA[scribble]]></category>

		<guid isPermaLink="false">http://june8th.net/wp/archives/874</guid>
		<description><![CDATA[어제 꿈에 나가수에 출연하는 꿈을 꿨다. 좋아하는 프로그램도 아닌데. 암튼 편곡을 부탁할 사람이 없어서 괴로워하다가 끝났다. 푸하하.]]></description>
			<content:encoded><![CDATA[<p>어제 꿈에 나가수에 출연하는 꿈을 꿨다. 좋아하는 프로그램도 아닌데. 암튼 편곡을 부탁할 사람이 없어서 괴로워하다가 끝났다. 푸하하.</p>
]]></content:encoded>
			<wfw:commentRss>http://june8th.net/wp/archives/874/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>페인트 칠</title>
		<link>http://june8th.net/wp/archives/872</link>
		<comments>http://june8th.net/wp/archives/872#comments</comments>
		<pubDate>Sat, 18 Jun 2011 02:45:49 +0000</pubDate>
		<dc:creator>june8th</dc:creator>
				<category><![CDATA[scribble]]></category>

		<guid isPermaLink="false">http://june8th.net/wp/?p=872</guid>
		<description><![CDATA[오늘 금요일 오후 일 농땡치 치고 회사 사람들과 자원봉사로 페인트칠 하러 갈 계획이었는데 비가 온다는 예보때문에 월요일로 미뤄졌다. 어쩐지 월요일은 페인트 칠하기 싫은데&#8230; http://goo.gl/ZYO0F]]></description>
			<content:encoded><![CDATA[<p>오늘 금요일 오후 일 농땡치 치고 회사 사람들과 자원봉사로 페인트칠 하러 갈 계획이었는데 비가 온다는 예보때문에 월요일로 미뤄졌다. 어쩐지 월요일은 페인트 칠하기 싫은데&#8230; http://goo.gl/ZYO0F</p>
]]></content:encoded>
			<wfw:commentRss>http://june8th.net/wp/archives/872/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>금요일</title>
		<link>http://june8th.net/wp/archives/859</link>
		<comments>http://june8th.net/wp/archives/859#comments</comments>
		<pubDate>Fri, 27 May 2011 11:59:33 +0000</pubDate>
		<dc:creator>june8th</dc:creator>
				<category><![CDATA[scribble]]></category>
		<category><![CDATA[금요일]]></category>

		<guid isPermaLink="false">http://june8th.net/wp/archives/859</guid>
		<description><![CDATA[이번주 금요일은 즐거운 금요일. 은행계좌도 늘어나고 다음주 월요일은 쉬는날. 아침먹으러 가야지.]]></description>
			<content:encoded><![CDATA[<p>이번주 금요일은 즐거운 금요일. 은행계좌도 늘어나고 다음주 월요일은 쉬는날. 아침먹으러 가야지.</p>
]]></content:encoded>
			<wfw:commentRss>http://june8th.net/wp/archives/859/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>itunes 아이콘</title>
		<link>http://june8th.net/wp/archives/857</link>
		<comments>http://june8th.net/wp/archives/857#comments</comments>
		<pubDate>Sat, 21 May 2011 16:34:30 +0000</pubDate>
		<dc:creator>june8th</dc:creator>
				<category><![CDATA[scribble]]></category>

		<guid isPermaLink="false">http://june8th.net/wp/?p=857</guid>
		<description><![CDATA[iphone sync를 맞추느라 pc에 연결했다.  스티브 잡스는 아직 윈도우 오른쪽 아래 떠 있는 못생긴 아이콘을 보지 못했나보다.]]></description>
			<content:encoded><![CDATA[<p>iphone sync를 맞추느라 pc에 연결했다.  스티브 잡스는 아직 윈도우 오른쪽 아래 떠 있는 못생긴 아이콘을 보지 못했나보다.</p>
]]></content:encoded>
			<wfw:commentRss>http://june8th.net/wp/archives/857/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

