<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0">
  <title type="html">세상을 연주하다</title>
  <id>http://www.lifefeel.com/</id>
  <link rel="alternate" type="text/html" hreflang="ko" href="http://www.lifefeel.com/" />
  <subtitle type="html">이세상을 음악처럼 연주하고픈, 세상을 연주하는 외로운 사나이</subtitle>
  <updated>2009-01-05T03:08:40+09:00</updated>
  <generator>Textcube 1.7.6 : Staccato</generator>
  <entry>
    <title type="html">Ruby on Rails 인코딩(charset) 변환하기</title>
    <link rel="alternate" type="text/html" href="http://www.lifefeel.com/320" />
    <link rel="replies" type="application/atom+xml" href="http://www.lifefeel.com/atom/response/320" thr:count="0"/>
    <category term="Ruby On Rails" />
    <category term="charset" />
    <category term="iconv" />
    <category term="Ruby on Rails" />
    <author>
      <name>(LifeFeel)</name>
    </author>
    <id>http://www.lifefeel.com/320</id>
    <updated>2008-12-22T20:52:08+09:00</updated>
    <published>2008-12-22T20:52:08+09:00</published>
    <summary type="html">Ruby On Rails에서는 전체 사이트의 charset을 간단하게 변환 할 수 있습니다. &lt;br&gt;아래의 코드를 app/controllers/application.rb 에 추가해 주시기만 하면 됩니다.&lt;br&gt;&lt;br&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(228, 228, 228);&quot;&gt;after_filter :change_charset_to_sjis&lt;br&gt;&lt;br&gt;protected&lt;br&gt;&amp;nbsp; &lt;br&gt;def change_charset_to_sjis&lt;br&gt;&amp;nbsp; response.body = response.body.tosjis&amp;nbsp; #String객체의 메소드 이용&lt;br&gt;end&lt;/div&gt;&lt;br&gt;response.body.tosjis 부분에서 charset이 shift-jis로 바뀝니다.(Ruby On Rails 기본 charset은 utf-8)&lt;br&gt;여기서 중요한 건, 반드시 after_filter를 이용해서 호출해 주세요. 모든 처리가 끝난 후에 호출해야 출력문서의 charset이 바뀝니다. &lt;br&gt;&lt;br&gt;iconv를 이용하면 더욱 다양한 charset으로 변경이 가능합니다.&lt;br&gt;&lt;br&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(228, 228, 228);&quot;&gt;def change_charset_to_sjis&lt;br&gt;&amp;nbsp; require &#039;iconv&#039;&lt;br&gt;&amp;nbsp; response.body = Iconv.conv(&quot;shift-jis&quot;,&quot;utf-8&quot;, response.body)&lt;br&gt;end&lt;/div&gt;&lt;br&gt;아래를 참조하세요.&lt;br&gt;&lt;a href=&quot;http://www.ruby-doc.org/core/classes/String.html&quot;  target=&quot;_blank&quot;&gt;http://www.ruby-doc.org/core/classes/String.html&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;http://www.ruby-doc.org/core/classes/Iconv.html&quot;  target=&quot;_blank&quot;&gt;http://www.ruby-doc.org/core/classes/Iconv.html&lt;/a&gt;&lt;br&gt;</summary>
  </entry>
  <entry>
    <title type="html">Ruby on Rails Git을 이용한 플러그인 설치</title>
    <link rel="alternate" type="text/html" href="http://www.lifefeel.com/319" />
    <link rel="replies" type="application/atom+xml" href="http://www.lifefeel.com/atom/response/319" thr:count="1"/>
    <category term="Ruby On Rails" />
    <category term="Git" />
    <category term="Plugin" />
    <category term="Ruby on Rails" />
    <category term="플러그인" />
    <author>
      <name>(LifeFeel)</name>
    </author>
    <id>http://www.lifefeel.com/319</id>
    <updated>2008-12-06T15:51:42+09:00</updated>
    <published>2008-12-06T15:48:55+09:00</published>
    <summary type="html">&lt;a href=&quot;http://github.com/&quot;  target=&quot;_blank&quot;&gt;GitHub&lt;/a&gt;에 있는 소스코드 &lt;a href=&quot;http://git.or.cz/&quot;  target=&quot;_blank&quot;&gt;Git&lt;/a&gt;으로 관리되고 있는 소스코드를, Ruby on Rails 프로젝트의 플러그인으로 받아오기 위해선 다음과 같은 명령을 실행합니다.&lt;br&gt;&lt;br&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(228, 228, 228);&quot;&gt;&amp;gt; ruby script/plugin install git://github.com/darashi/jpmobile.git&lt;/div&gt;&lt;br&gt;그러나... &lt;br&gt;&lt;br&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(228, 228, 228);&quot;&gt;removing: C:/Documents and Settings/Administrator/My Documents/Aptana Studio/testing_etc/vendor/plugins/jpmobile/.git&lt;/div&gt;&lt;br&gt;위와 같은 에러메시지가 나오고서는 그대로 종료되어 버리고 말지요.&lt;br&gt;&lt;br&gt;무언가 반응을 하기에 시스템엔 아무런 문제가 없어 보이지만, 원인은 시스템에 Git이 설치되어 있지 않기 때문입니다. 그러므로 시스템에 &lt;a href=&quot;http://git.or.cz/&quot;  target=&quot;_blank&quot;&gt;Git&lt;/a&gt;을 설치해 주면 말끔히 해결 됩니다.&lt;br&gt;&lt;br&gt;Windows환경에서 개발하시는 분은 &lt;br&gt;&lt;a href=&quot;http://code.google.com/p/msysgit/&quot;  target=&quot;_blank&quot;&gt;http://code.google.com/p/msysgit/&lt;/a&gt; 로 가시면 윈도우즈용 Git을 다운로드 하실 수 있습니다.&lt;br&gt;</summary>
  </entry>
  <entry>
    <title type="html">FreeBSD에 Ruby Gem 설치</title>
    <link rel="alternate" type="text/html" href="http://www.lifefeel.com/294" />
    <link rel="replies" type="application/atom+xml" href="http://www.lifefeel.com/atom/response/294" thr:count="0"/>
    <category term="FreeBSD" />
    <category term="FreeBSD" />
    <category term="Gem" />
    <category term="Ruby" />
    <author>
      <name>(LifeFeel)</name>
    </author>
    <id>http://www.lifefeel.com/294</id>
    <updated>2008-06-26T21:16:25+09:00</updated>
    <published>2008-06-18T02:10:00+09:00</published>
    <summary type="html">FreeBSD에는 기본적으로 Ruby가 설치되어 있으므로 Ruby Gem 만 설치하면 된다.&lt;br&gt;Gem은 포트를 이용해서 간단하게 설치할 수 있다.&lt;br&gt;&lt;br&gt;&amp;nbsp; $ cd /usr/ports/devel/ruby18-gem/&lt;br&gt;&amp;nbsp; $ make install clean&lt;br&gt;&amp;nbsp; $ rehash&lt;br&gt;&lt;br&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;br&gt;최신버전의 RubyGems으로 업데이트&lt;/span&gt;&lt;br&gt;&lt;br&gt;0.8.5 버전 이상&lt;br&gt;&amp;nbsp; $ gem update --system&lt;br&gt;&lt;br&gt;0.8.5 버전 미만&lt;br&gt;&lt;br&gt;&amp;nbsp; $ gem install rubygems-update&lt;br&gt;
&amp;nbsp; $ update_rubygems&lt;br&gt;</summary>
  </entry>
  <entry>
    <title type="html">지진을 경험하다</title>
    <link rel="alternate" type="text/html" href="http://www.lifefeel.com/292" />
    <link rel="replies" type="application/atom+xml" href="http://www.lifefeel.com/atom/response/292" thr:count="0"/>
    <category term="세상을 연주하다" />
    <category term="일본" />
    <category term="지진" />
    <author>
      <name>(LifeFeel)</name>
    </author>
    <id>http://www.lifefeel.com/292</id>
    <updated>2008-12-22T00:01:45+09:00</updated>
    <published>2008-05-09T01:03:13+09:00</published>
    <summary type="html">&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;그저 과학시간에 지각운동을 배우면서 한번 듣고 지나가는 단어 &#039;지진&#039;. 이제는 그 지진이라는 말이 어떤 것인지 실감할 만한 경험을 해 버리고 말았다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;어제 일어난 지진이 생각보다 강도가 높아 진원지 부근은 6.7도였다고 한다. 늦은 밤, 약 1시 40분경 스탠드 하나에 의지해 공부하고 있을 무렵, 갑자기 우르릉 하는 소리가 들렸다. 뭔 바람이 이리 센가 싶은 찰나에 물건이 움직이기 시작한다. 달그락, 달그락, 따닥딱... 헉. 이것이 바로 말로만 듣던 지진이란걸 알아챘다. 집이 움직인다. 걸어놓은 물건들이 출렁출렁 흔들린다. 전등은 신나게 진자운동을 한다. 한 10초정도 계속되었다. &lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;지진은 처음 겪는 일이라 어떻게 해야할지 사실 조금 당황스러웠다. 놀이기구가 흔들리는 것같은 진동속에, 대피를 해야하는 것일까 아니면 집에 있는게 더 안전할까 하는 혼란이 순간적으로 머리속에 일어났다. 그래 침착하자. 일단 테레비젼부터 켰다. 역시나 뉴스 속보에 지진이 나오고 있다. 한동안은 당장이라도 대피할 수 있는 태세로 뉴스의 방송에 최대한 귀를 귀울였다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;내가 사는 카와사키에는진도 3도 정도의 지진이었다. 땅이 이렇게 움직이고, 집이 이렇게 흔들릴 수 있구나 하는 것을 몸소 체험하고 나니, 자연의 힘의 거대함을 어렴품이나마 느낄 수 있을 것만 같았다. &lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;사실 어느정도 안정되고 나서 들은 생각이지만, 심하게 집이 흔들려서 대피하려고 문을 열었더니, 하늘은 쌔까맣고, 화산재가 뿌옅게 날아다니고, 길 저 끝에서 씨뻘건 용암이 밀려오고 있다면 정말 어떤 기분일까 싶었다. 사람들은 용암의 속도를 조금이라도 늦추기 위해 버스를 넘어뜨려 막아보지만 별 효과가 없다는 것을 뒤늦게 알아차리고 달아나기 시작, 사람들이 소리를 지르고, 용암이 가까워질수록 더워지고, 매섭게 흐르는 땀방울... 상상은 여기까지.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;모두 무사해서 다행이다. 아무도 다치지 않아서 다행이다. 정말정말 다행이다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;그래도 지진이 일어난 순간 그렇게 비극적인 생각이 들지 않았던 것은 아직 난 죽을 운명이 아니라는 뜻인지도 모르겠다. &#039;넌 아직 죽을 운명이 아니야, 넌 아직 할게 많잖아.&#039; 하는 신의 소리가 들렸는지도 ㅋㅋㅋ&lt;/span&gt;&lt;br&gt;</summary>
  </entry>
  <entry>
    <title type="html">어느 덧 벗꽃이 만발한 일본</title>
    <link rel="alternate" type="text/html" href="http://www.lifefeel.com/286" />
    <link rel="replies" type="application/atom+xml" href="http://www.lifefeel.com/atom/response/286" thr:count="2"/>
    <category term="세상을 연주하다" />
    <category term="벗꽃" />
    <category term="봄" />
    <author>
      <name>(LifeFeel)</name>
    </author>
    <id>http://www.lifefeel.com/286</id>
    <updated>2008-04-03T17:03:12+09:00</updated>
    <published>2008-04-03T17:02:27+09:00</published>
    <summary type="html">&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;왠지모르게 올해는 다른 때보다도 더 벗꽃이 기다려졌던 해가 아니었나 싶다. &lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;봄이왔다는 느낌도 벗꽃을 보며 몸소 느낄 수 있고, 마음이 좀 더 투명해지고 순수해 지는 기분이랄까?&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;괜시리 촉촉해지는 마음에 헤어진 연인의 이름도 마음속으로 불러보고.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;그 무엇보다도 일본에서는 벗꽃이 가장 유명하다. 사람들이 벗꽃만 피면 다들 나무 밑에 앉아서 술이 벌겋게 취할만큼 마시고 논다고 하니, 그들에게는 분명 벗꽃이 삶의 상징적인 존재일지도 모르겠다. &lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;역사적으로도 상징적인 꽃이라고는 하나 거기까지는 아직 공부해보지 않아서...&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://www.lifefeel.com/attach/1/7156403063.jpg&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;240&quot; width=&quot;432&quot; /&gt;&lt;p class=&quot;cap1&quot;&gt;벗꽃도 두종류인지 잘보면 색이 다르다&lt;/p&gt;&lt;/div&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;한국에 있을 때에는 늘 남쪽지방이 먼저 피어서 적지않은 부러움이 있었는데 일본은 한국보다 먼저 피니 올해는 다른 해보다도 벗꽃을 보는 기분이 남다르다.&lt;/span&gt;&lt;br&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://www.lifefeel.com/attach/1/9059346779.jpg&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;240&quot; width=&quot;432&quot; /&gt;&lt;/div&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;div class=&quot;imageblock dual&quot; style=&quot;text-align: center;&quot;&gt;&lt;table cellspacing=&quot;5&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; style=&quot;margin: 0 auto;&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;img src=&quot;http://www.lifefeel.com/attach/1/9808988831.jpg&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;390&quot; width=&quot;217&quot; /&gt;&lt;/td&gt;&lt;td&gt;&lt;img src=&quot;http://www.lifefeel.com/attach/1/5601463444.jpg&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;390&quot; width=&quot;217&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;참으로 재미있는 사실 중 하나는, 벗꽃은 일본의 국화임에도 일본인의 사랑을 넘칠듯이 받는다는 것이다. 그에 반해 대중들에게 그다지 많은 인기를 얻지 못한 우리나라의 무궁화가 상대적으로 초라하게 느껴졌던 어느 봄의 하루이기도 하다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;</summary>
  </entry>
  <entry>
    <title type="html">외국생활은 패스트푸드점 부터</title>
    <link rel="alternate" type="text/html" href="http://www.lifefeel.com/280" />
    <link rel="replies" type="application/atom+xml" href="http://www.lifefeel.com/atom/response/280" thr:count="0"/>
    <category term="세상을 연주하다" />
    <category term="높임말" />
    <category term="외국생활" />
    <category term="일본" />
    <category term="패스트푸드" />
    <author>
      <name>(LifeFeel)</name>
    </author>
    <id>http://www.lifefeel.com/280</id>
    <updated>2008-11-17T21:56:09+09:00</updated>
    <published>2008-03-22T23:35:42+09:00</published>
    <summary type="html">&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;외국생활에서 가장 처음 맞는 어려움 중 하나는 음식점에서의 주문이 아닐까 싶다. 나 역시도 일본에 처음 와서 말은 한마디도 못한 채 바디랭귀지로 주문을 해결했던 경험이 있다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;주문 하는 일이 가장 어려운 곳은 패스트푸드점이다. 주문하는 것 자체는 어렵지 않은데, 주문 후 점원이 건네는 말은 도무지 알아들을 수가 없다. 배고파서 빨리 먹고 싶은데 주문에서부터 막힌다면 얼마나 안타까운 일인가.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;오래전 미국에 처음 갔을 때, 맥도날드에서 &#039;For here or to go?&#039;란 말을 알아듣지 못했다. 역시나 책에서 가르쳐 주지 않는 표현이었던 것. 일본도 다르지 않은 것 같다. 오히려 일본이 더 어렵다. 일본에도 한국처럼 높임말 있기 때문에, 점원들은 무조건 손님들에게 극존칭을 써서 말을 해야 한다. 예를들어, &#039;여기서 드십니까?&#039;도 아닌 &#039;여기서 잡수십니까&#039;정도의 표현을 사용하니 외국인인 나에겐 여간 힘든일이 아닐 수 없다. 알아들을 수 없었기 때문에 매번 주문할 때 마다 불쌍한 표정을 지어야만 했다. (불쌍한 표정을 지어야 쉬운말로 다시 말해준다.)&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;일본에서 생활하면서 이제서야 패스트푸드점에서 하는 말을 알아들을 수 있게 되었다. 이제는 적어도 어디가서도 주문하는 일은 두렵지 않다. 다만 한국에서도 알아듣기 힘든 패밀리 레스토랑 주문은 언제쯤 일본에서 가능해질까.&lt;/span&gt;&lt;br&gt;</summary>
  </entry>
  <entry>
    <title type="html">나는야 잠꼬대의 대마왕</title>
    <link rel="alternate" type="text/html" href="http://www.lifefeel.com/272" />
    <link rel="replies" type="application/atom+xml" href="http://www.lifefeel.com/atom/response/272" thr:count="0"/>
    <category term="세상을 연주하다" />
    <category term="일본어" />
    <category term="잠꼬대" />
    <author>
      <name>(LifeFeel)</name>
    </author>
    <id>http://www.lifefeel.com/272</id>
    <updated>2008-03-15T16:19:42+09:00</updated>
    <published>2008-03-15T16:19:18+09:00</published>
    <summary type="html">&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;직접 본인은 자신인 잠꼬대 하는 것을 잘 모르지만 상대방은 들을 수 있다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;고등학교 기숙사 생활 때도 그랬고, 내가 잠꼬대를 한다고들 주변에서 말하더라.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;최근 나의 룸메이트가 내가 잠꼬대 하는 것을 알아차렸다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;매일같이 잠꼬대를 한다나? 물론 한두마디.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;그러다 몇일전, 내가 전화하는줄 알고 깼다는 룸메이트의 말.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;알고보니 잠꼬대를 하고 있는 것이었지만 10분가량 일본어로 혼자 떠들어 댔다고??&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;믿을 수 없다. 잠꼬대는 한국말로 해야되는데 왜 하필 일본어로, 그것도 한두마디가 아닌 10분동안??&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;하하. 살짝 내 스스로에게 어이가 없기도 했지만 그다지 나쁘지 않은 잠꼬대 인것 같다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;근데 궁금한건 그 잠꼬대를 하면서 10분동안 누구랑 대화했을까??&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br&gt;&lt;br&gt;</summary>
  </entry>
  <entry>
    <title type="html">시점(時點)차이가 가져온 기분 좋은 경험</title>
    <link rel="alternate" type="text/html" href="http://www.lifefeel.com/271" />
    <link rel="replies" type="application/atom+xml" href="http://www.lifefeel.com/atom/response/271" thr:count="2"/>
    <category term="세상을 연주하다" />
    <category term="JR패스" />
    <category term="시점차" />
    <category term="엔화" />
    <category term="원화" />
    <category term="환율" />
    <author>
      <name>(LifeFeel)</name>
    </author>
    <id>http://www.lifefeel.com/271</id>
    <updated>2008-11-17T21:57:55+09:00</updated>
    <published>2008-03-14T03:23:58+09:00</published>
    <summary type="html">&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;오늘 아주 기분 좋은 시점차 경험을 하고야 말았다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;일명 &#039;시점차 공략&#039;이라고 해야할까? 그 내막은 다음과 같다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;한국에서 일본에 오기 전 일본 여행을 목적으로 JR프리패스를 사두었다. JR프리패스라는 것은 일본의 신칸센 열차를 일정 기간동안 무제한으로 이용할 수 있는 티켓인데, 신칸센은 현지인이 느끼기에도 매우 비싸기 때문에 쉽게 이용하기 어렵다. 우리나라의 예를 들면, 서울에서 부산에 갔다오는데 KTX로 왕복 10만원이면 해결이 되지만 일본같은 경우엔 그정도 거리에 20만원 이상을 주어야 갔다 올 수 있다. 역시나 JR프리패스는 외국인만 이용할 수 있는 특권이 있기 때문에 나름 치밀한 준비를 해 두었던 것.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;그러나 막상 현지생활에 적응하고 나니깐 쉽게 여행을 떠날 수가 없는 법. 고민과 고민 끝에 환불 결정을 하게 되었다. 울며 겨자먹기로 수수료를 떼여가며 환불해야 했지만 한편으론 현지 생활비를 확보할 수 있다는 기쁨도 섞여있는 상태였다. 그러나 아쉬움은 오늘의 환율을 보고나서부터 기쁨으로 바뀌고 말았다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;JR프리패스의 가격은 엔화로 28,300엔. 엔화이기 때문에 사는 시점에 따라서 금액이 달라진다. 내가 샀던 때에는 100엔당 838원 이었기 때문에 237,400원에 구입했다. 환불을 하기 위해서는 수수료인 10%가 제외되는데, 28,300엔의 10%인 25,470엔을 받게 된다. 여간 찝찝한 일이 아닐 수 없다. 그러나 이게 왠일인가, 오늘의 환율은 하루 사이에 37원이 오른 100엔당 979원. 당장 계산기를 두드렸다. 타닥, 탁탁, 탁, 타탁!. 어랏.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;현재 시점에서 25,470엔을 바꾸려면 원화로 249,351원이 필요하다. 지금 시점에서 엔화를 사려면 수수료 10%를 제외하고서라도 내가 처음에 샀던 금액보다 약 14,000원가량 큰 돈이 필요하다는 것이다. 이게 왠 떡인가 싶어서 얼른 엔화로 환불받아버렸다. 환율탓이 아니었다면 바꾸고서도 계속 기분이 안좋았을 일이었는데 오히려 돈을 번 느낌이랄까.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;사실 따지고 보면 환율이 어떻든 내가 환불받는 돈은 똑같다. 그러나 지금은 현실적인 생각보단 환율로 위안을 삼고 싶은 기분이 좀더 앞서는것은 아마 누구에게나 마찬가지가 아닐까.&lt;/span&gt;&lt;br&gt;</summary>
  </entry>
  <entry>
    <title type="html">일본인에게는 생활스포츠인 탁구</title>
    <link rel="alternate" type="text/html" href="http://www.lifefeel.com/268" />
    <link rel="replies" type="application/atom+xml" href="http://www.lifefeel.com/atom/response/268" thr:count="2"/>
    <category term="세상을 연주하다" />
    <category term="스포츠" />
    <category term="체육관" />
    <category term="탁구" />
    <author>
      <name>(LifeFeel)</name>
    </author>
    <id>http://www.lifefeel.com/268</id>
    <updated>2008-02-29T16:06:11+09:00</updated>
    <published>2008-02-29T16:04:37+09:00</published>
    <summary type="html">&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;얼마전 카와사키 체육관에 갔었다. 매주 수요일마다 탁구치는 날이기 때문에 수요일이 되길 기다리는 수 밖에 없었다. 탁구를 좋아하는 나 이지만 사실 아직 일본에서 탁구를 제대로 쳐본적이 없기에 설레는 마음을 가지지 않을 수 없었다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;체육관에 도착하니 놀라움을 금치 않을 수 없었다. 탁구치러 오는 사람들이 이렇게 많을 줄은 생각지도 못했던 것이다. 더군다나 여기 있는 분들이 전부 선수처럼 잘치시니 그걸 보는 나로서는 그저 놀랍고 환상적일 따름이었다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;처음엔 같이 간 사람들끼리 치다가 나는 다른 사람들과 쳐보고 싶어서 더 남아있기로 했다. 일부러 한가한 척 해도 아무도 같이 치자는 사람이 없길래 용기를 내어 직접 가서 말걸었다. &quot;아노... 아노... 히마나라 잇쇼니 야리마셍까...&quot; (あの。。。ぁの。。。暇ならいっしょうにやりませんか。). 굳이 해석하자면... &quot;저기... 저기... 한가하시면 같이 치실래요???&quot;. 어찌되었든 같이 치게 되었다. 사실 게임 하자고 말걸은 건 아니었는데, 그냥 연습하자는 의도였는데, 게임을 하게 되어버렸다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;문제는 엄청난 고수라는 것. 시작하면서부터 긴장을 잔뜩 했다. 지더라도 최선을 다해보자라는 심정으로. 결과는 내가 3전 3패로 졌지만 여태까지 내가 했던 게임중에서 제일 환상적이고 느낌이 좋았던 게임이었다. 아직도 머리속에는 내가 득점할 때의 공이 생생하게 떠오른다. &lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;잘치는 사람이 많은 이유는 잘 모르겠지만 일본에서는 초등학교, 중학교, 고등학교 때 체육시간에 탁구를 배운다고 한다. 학교에서 탁구를 따로 배우지 않는 한국과는 달리 탁구가 생활스포츠일 수 밖에 없는 절대적인 이유가 아닐까 싶다. 아무리 그래도 나이 지긋이 들어 보이시는 할머니, 할아버지 분들이 엄청난 속도로 날라다니는 것은...좀...&lt;/span&gt;&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://www.lifefeel.com/attach/1/7501804890.jpg&quot; alt=&quot;카와사키 체육관&quot; height=&quot;240&quot; width=&quot;432&quot; /&gt;&lt;p class=&quot;cap1&quot;&gt;카와사키 체육관&lt;/p&gt;&lt;/div&gt;</summary>
  </entry>
  <entry>
    <title type="html">최근 근황 및 카와사키역에서 본 석양</title>
    <link rel="alternate" type="text/html" href="http://www.lifefeel.com/267" />
    <link rel="replies" type="application/atom+xml" href="http://www.lifefeel.com/atom/response/267" thr:count="3"/>
    <category term="세상을 연주하다" />
    <category term="MUZA" />
    <category term="다시시작" />
    <category term="석양" />
    <category term="카와사키" />
    <author>
      <name>(LifeFeel)</name>
    </author>
    <id>http://www.lifefeel.com/267</id>
    <updated>2008-02-28T16:07:03+09:00</updated>
    <published>2008-02-28T15:52:15+09:00</published>
    <summary type="html">&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;가만 생각해 보면 블로그가 좋다면서 매일 같이 손을 떼지 못하던 때도 있었던 것 같은데, 어느새 블로그가 그저 주인조차도 들어오지 않은 그런 외로운 생활을 홀로 견뎌내고 있었다는 것을 깨닳았다. 뭔가 멋있게 블로그를 운영하고 싶다는 생각도 했지만 그런생각이 들면 들수록 더더욱 블로그에 손대기 어려워진다. 그래도 다시 용기를 내어 이렇게 시작의 운을 띄워보았다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;이런저런 이유보마도 요즘 가장 글이 남기고 싶음 이유는 사진을 올리고 싶어서이다. 어느덧 일본에 온지 두달이 지났는데 궁금해 하는 사람들도 많이 있거니와 이런저런 일본에 대해서 조금씩 소개를 해주고 싶기도 하다. 내가 신기해하고 재미있었던 것들, 감동이었던 사진들을 올려놓으면 보는사람도 재미를 느낄 수 있지 않을까 하는 생각에서 용기를 발휘할 수 있었던 것 같다. 이제부턴 열심히 글을 올려야지.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;밑의 사진은 내가 살고있는 카와사키에서 찍은 사진이다. 우연히 저녁무렵 카와사키역을 지나가다가 석양이 지는 모습을 보았는데 너무도 멋있어서 입을 다물지 못했다. 멋진 석양을 보면 무언가에 홀린듯 정신을 못차리는건 이날 도 어쩔 수 없었다. 아쉽게도 이런 날 카메라가 없어서 휴대폰으로 찍었는데 그래도 잘나온 것 같다. &lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;일본에 와서 하늘이 한국보다 더 맑다는 느낌을 받았다. 한국에선 맑은 하늘을 볼 수 있는 날이 많지 않아 늘 아쉬워했던 기억이 많은데 이곳에서는 낮에 푸른 하늘을 볼 수 있는 날이 많고 멋지게 석양이 지는 모습을 볼 수 있는 날도 많다는 것!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://www.lifefeel.com/attach/1/4906612858.jpg&quot; alt=&quot;역에서 보이는 석양&quot; height=&quot;240&quot; width=&quot;432&quot; /&gt;&lt;p class=&quot;cap1&quot;&gt;역에서 보이는 석양&lt;/p&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://www.lifefeel.com/attach/1/5863486901.jpg&quot; alt=&quot;카와사키의 음악홀 MUZA&quot; height=&quot;240&quot; width=&quot;432&quot; /&gt;&lt;p class=&quot;cap1&quot;&gt;카와사키의 음악홀 MUZA&lt;/p&gt;&lt;/div&gt;&lt;br /&gt;</summary>
  </entry>
  <entry>
    <title type="html">다음(Daum), 날씨가 더워서 벗었다?</title>
    <link rel="alternate" type="text/html" href="http://www.lifefeel.com/220" />
    <link rel="replies" type="application/atom+xml" href="http://www.lifefeel.com/atom/response/220" thr:count="11"/>
    <category term="이것저것" />
    <category term="CSS" />
    <category term="다음" />
    <category term="웹표준" />
    <author>
      <name>(LifeFeel)</name>
    </author>
    <id>http://www.lifefeel.com/220</id>
    <updated>2007-07-11T16:29:30+09:00</updated>
    <published>2007-07-11T16:29:30+09:00</published>
    <summary type="html">&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://www.lifefeel.com/attach/1/9405718333.png&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;5751&quot; width=&quot;450&quot; /&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;2007년 7월 11일 현재, 다음 메인 페이지가 헐거벗은 모습으로 탈바꿈 했다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;처음엔 나의 브라우저가 잘못 되었는 줄 알았는데 알고보니 다음 서버측의 문제이다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;문제는 코드에서 CSS를 로딩하는 부분이 빠져있다. 개발팀 쪽의 실수인가.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;무엇보다도 칭찬하고 싶은 것은 다음의 메인이 상당한 웹 표준을 준수하고 있다는 점이다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;CSS가 읽히지 않더라도 글을 읽는데에는 전혀 지장이 없다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;만약 네이버가 이런 문제가 발생한다면 어떻게 될 것인가. 그것은 여러분의 상상력에 맡기겠다.&lt;/span&gt;&lt;br /&gt;</summary>
  </entry>
  <entry>
    <title type="html">FreeBSD portupgrade 설치 및 업데이트</title>
    <link rel="alternate" type="text/html" href="http://www.lifefeel.com/209" />
    <link rel="replies" type="application/atom+xml" href="http://www.lifefeel.com/atom/response/209" thr:count="0"/>
    <category term="FreeBSD" />
    <category term="FreeBSD" />
    <category term="portupgrade" />
    <category term="설치" />
    <category term="업데이트" />
    <author>
      <name>(LifeFeel)</name>
    </author>
    <id>http://www.lifefeel.com/209</id>
    <updated>2007-06-06T00:37:38+09:00</updated>
    <published>2007-06-06T00:37:38+09:00</published>
    <summary type="html">&lt;ol&gt;
&lt;li&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;portupgrade 설치하기&lt;/span&gt;&lt;br /&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(228, 228, 228);&quot;&gt;# cd /usr/ports/sysutils/portupgrade (바뀌기 이전 디렉토리)&lt;br /&gt;# cd /usr/ports/ports-mgmt/portupgrade (새로 바뀐 디렉토리)&lt;br /&gt;# make install clean&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;cvsup 수행하기&lt;/span&gt;&lt;br /&gt;portupgrade를 수행하기 전에는 반드시 cvsup을 먼저 수행해야 합니다..&lt;br /&gt;링크참조 : &lt;a href=&quot;../../../../110&quot;&gt;cvsup 설치 및 업데이트&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;포트 데이터베이스 업데이트 하기&lt;/span&gt;&lt;br /&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(228, 228, 228);&quot;&gt;# /usr/local/sbin/portsdb -Uu 또는&lt;br /&gt;# /usr/local/sbin/portsdb -Fu&lt;/div&gt;&lt;br /&gt;-F옵션은 공식 싸이트에서 최신 INDEX파일을 받아와 포트 데이터베이스 파일인 INDEX.db파일을 생성합니다. 그러나 -U옵션은 make index를 실행하여 생성하기 때문에 오랜 시간이 걸립니다. 만약&amp;nbsp; /etc/make.conf에 특정 의존관계에 대한 매크로를 생성했다면 -U옵션을 이용하여 생성해야 합니다.&lt;br /&gt;일반적으로는 portsdb -Fu를 사용합니다.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;업그레이드가 필요한 포트의 리스트 보기&lt;/span&gt;&lt;br /&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(228, 228, 228);&quot;&gt;/usr/local/sbin/portversion -l &quot;&amp;lt;&quot;&lt;/div&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;업그레이드 수행하기&lt;/span&gt;&lt;br /&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(228, 228, 228);&quot;&gt;/usr/local/sbin/portupgrade -arR&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;업그레이드를 수행하기전에 /usr/posts/UPDATING 파일의 내용을 확인합니다. 추가적으로 수행해 주어야 하는 명령이 있을 경우가 있으며 따르지 않을 경우에는 업그레이드가 제대로 수행되지 않는 경우도 있습니다.&lt;br /&gt;&lt;br /&gt;
&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;업그레이드 후 패키지 레지스트리 업데이트하기&lt;/span&gt;&lt;br /&gt;&lt;div style=&quot;padding: 10px; background-color: rgb(228, 228, 228);&quot;&gt;# /usr/local/sbin/pkgdb -F&lt;br /&gt;&lt;br /&gt;만약 업그레이드를 실패하였다면 다음 명령을 이용하여 강제로 업데이트합니다.&lt;br /&gt;# /usr/local/sbin/pkgdb -fu&lt;/div&gt;&lt;/li&gt;&lt;/ol&gt;</summary>
  </entry>
  <entry>
    <title type="html">맥주는 와인잔에 먹는게 제맛!</title>
    <link rel="alternate" type="text/html" href="http://www.lifefeel.com/211" />
    <link rel="replies" type="application/atom+xml" href="http://www.lifefeel.com/atom/response/211" thr:count="1"/>
    <category term="세상을 연주하다" />
    <category term="맥주" />
    <category term="생맥주" />
    <category term="와인잔" />
    <category term="하이네켄" />
    <author>
      <name>(LifeFeel)</name>
    </author>
    <id>http://www.lifefeel.com/211</id>
    <updated>2007-05-25T00:37:04+09:00</updated>
    <published>2007-05-25T00:17:57+09:00</published>
    <summary type="html">&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://www.lifefeel.com/attach/1/5856913347.jpg&quot; alt=&quot;하이네켄 생맥주&quot; height=&quot;337&quot; width=&quot;450&quot; /&gt;&lt;p class=&quot;cap1&quot;&gt;맥주는 와인잔에 먹는게 제맛!&lt;/p&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;오랜만에 다시 우리회사에 불은 맥주바람.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;이번엔 캔맥주에 만족하지 못한 채, 가정용 하이네켄 생맥주를 아예 통째로 사와버렸다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;맥주 속에 탄산이 분리되어 있어 맥주를 따라 먹을 때 탄산과 맥주 원액이 적절한 비율로 섞여 나와 그 맛이 일품이다. 무엇보다도 이 맥주의 관건은 10시간동안의 냉장고에 짱박아놓기!&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;사실 투명컵이 없어서 와인잔에 따라먹었는데 정말 호프집에서는 느낄 수 없는 기가막힌 경험이었다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;휴일임에도 불구하고 쉬지 않는 우리 회사 사람들. 이 늦은밤 이 맥주를 한잔씩 들이키고 과연 일은 제대로 하련지... ㅋㅋ&lt;/span&gt;&lt;br /&gt;</summary>
  </entry>
  <entry>
    <title type="html">디카 산 후 첫 출사??</title>
    <link rel="alternate" type="text/html" href="http://www.lifefeel.com/203" />
    <link rel="replies" type="application/atom+xml" href="http://www.lifefeel.com/atom/response/203" thr:count="1"/>
    <category term="포토로그" />
    <category term="용산고등학교" />
    <category term="정보처리 산업기사" />
    <category term="출사" />
    <author>
      <name>(LifeFeel)</name>
    </author>
    <id>http://www.lifefeel.com/203</id>
    <updated>2007-07-02T02:28:39+09:00</updated>
    <published>2007-04-25T02:14:22+09:00</published>
    <summary type="html">&lt;SPAN style=&quot;COLOR: rgb(23,127,205)&quot;&gt;&amp;nbsp; 디카를 산 기념으로 처음 나간 출사. (사긴 샀는데 카드 할부값을 어찌 해야할지...)&lt;/SPAN&gt;&lt;BR style=&quot;COLOR: rgb(23,127,205)&quot;&gt;&lt;SPAN style=&quot;COLOR: rgb(23,127,205)&quot;&gt;일요일에 정보처리 산업기사 시험을 보러 용산 고등학교에 갔다가 시험 끝나고 나온 김에 잠시 찍은 것이라서 출사 갔다왔다고 할 순 없지만 야외에서 찍은 첫 사진이니깐 첫 출사나 다름 없는 날이다.&lt;/SPAN&gt;&lt;BR style=&quot;COLOR: rgb(23,127,205)&quot;&gt;&lt;SPAN style=&quot;COLOR: rgb(23,127,205)&quot;&gt;어쨋든 시험은 그럭저럭 본 것 같다. 그랬으니 사진 찍을 마음이 생겼을 것이라 생각한다.&lt;/SPAN&gt;&lt;BR style=&quot;COLOR: rgb(23,127,205)&quot;&gt;&lt;BR style=&quot;COLOR: rgb(23,127,205)&quot;&gt;&lt;SPAN style=&quot;COLOR: rgb(23,127,205)&quot;&gt;조경이 잘 가꾸어져 있는 용산 고등학교.&lt;/SPAN&gt;&lt;BR style=&quot;COLOR: rgb(23,127,205)&quot;&gt;&lt;SPAN style=&quot;COLOR: rgb(23,127,205)&quot;&gt;일단 사진은 찍었는데 꽃의 이름을 모르겠다. 누구든지 안다면 알려주세요~&lt;/SPAN&gt;&lt;BR style=&quot;COLOR: rgb(23,127,205)&quot;&gt;&lt;SPAN style=&quot;COLOR: rgb(23,127,205)&quot;&gt;마지막 사진은 덤으로 진달래를 찍어봤다.&lt;/SPAN&gt;&lt;BR style=&quot;COLOR: rgb(23,127,205)&quot;&gt;&lt;SPAN style=&quot;COLOR: rgb(23,127,205)&quot;&gt;진달래가 아닐 수도 있지만 난 진달래라고 주장하련다.&lt;/SPAN&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://www.lifefeel.com/attach/1/6093720657.jpg&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;337&quot; width=&quot;450&quot; /&gt;&lt;p class=&quot;cap1&quot;&gt;1차 접사시도&lt;/p&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://www.lifefeel.com/attach/1/2597401162.jpg&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;337&quot; width=&quot;450&quot; /&gt;&lt;p class=&quot;cap1&quot;&gt;2차 접사시도&lt;/p&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://www.lifefeel.com/attach/1/8790778611.jpg&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;337&quot; width=&quot;450&quot; /&gt;&lt;p class=&quot;cap1&quot;&gt;에라 모르겠다 그냥 찍자!&lt;/p&gt;&lt;/div&gt;&lt;br /&gt;&lt;SPAN style=&quot;COLOR: rgb(23,127,205)&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://www.lifefeel.com/attach/1/7908495762.jpg&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;337&quot; width=&quot;450&quot; /&gt;&lt;p class=&quot;cap1&quot;&gt;덤으로 하나 더!&lt;/p&gt;&lt;/div&gt;&lt;/SPAN&gt;&lt;br /&gt;</summary>
  </entry>
  <entry>
    <title type="html">제 9회 크림슨 마스터즈 콘서트 - 플룻(플루트) &amp; 하프</title>
    <link rel="alternate" type="text/html" href="http://www.lifefeel.com/198" />
    <link rel="replies" type="application/atom+xml" href="http://www.lifefeel.com/atom/response/198" thr:count="0"/>
    <category term="이것저것" />
    <category term="고려대학교" />
    <category term="공연" />
    <category term="크림슨 마스터즈" />
    <category term="플룻" />
    <category term="하프" />
    <author>
      <name>(LifeFeel)</name>
    </author>
    <id>http://www.lifefeel.com/198</id>
    <updated>2008-12-22T00:03:46+09:00</updated>
    <published>2007-04-13T23:18:48+09:00</published>
    <summary type="html">&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://www.lifefeel.com/attach/1/4347340323.jpg&quot; alt=&quot;제 9회 크림슨 마스터즈&quot; height=&quot;630&quot; width=&quot;450&quot; /&gt;&lt;p class=&quot;cap1&quot;&gt;제 9회 크림슨 마스터즈&lt;/p&gt;&lt;/div&gt;&lt;br&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;뜻밖에 보러가게된 공연, 그랬기 때문에 더 특별했는지도 모르겠다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;고려대에서 열린 공연이었는데 이 때문에 사실상 고대를 구경한 일은 처음이 된 셈이다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;소문처럼 고려대는 데이트 코스로 제격인 듯 싶다. 낮이든 밤이든 간에.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;평소에 들을 기회가 별로 없던 하프 소리, 하프와 플룻의 만남.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;공연을 보면서, 아니 사실 이 글을 쓰면서 바닷속에서 인어가 하프를 연주하는 듯한 이미지가 연상 되었다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;음악을 들으면서 음 하나하나를 주의깊게 들으려고 신경을 곤두세우기도 했었다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;하프만의 특색있는 소리와 새가 지저귀는듯한 플룻소리는 상당히 조화가 잘 이루어졌다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;가끔 아는 음악이 나올 땐 왜그리도 즐거운지 나도모르게 발을 구르고 있는 이유는 무엇이었을까.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;하프라는 악기를 보면서 느낀건 손으로 뜯는 현악기가 기타 말고 또 있다는 것이다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;어디선가 기타가 유일하게 손으로 뜯는 현악기라고 들은 것 같았는데...&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;현악기이다 보니 현의 단진동을 이용한 하모닉스가 가능한테 연주자가 하모닉스 음을 낼 땐&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;전기가 올 것 만 같은 아름다운 소리가 났다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;안그래도 마음이 복잡해질려는 찰나에 공연을 보고나니깐 기분이 조금이나마 상쾌해진듯 하다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;찾아보면, 알고 있던 것 보다도 &lt;/span&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;주변에 &lt;/span&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;공연이 많다. 가끔씩 도시생활에서의 빡빡함을, 공연을 보면서 &lt;/span&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;잠시나마 여유를 느끼고 마음을 재충전 하는건 어떨까.&lt;/span&gt;&lt;br&gt;</summary>
  </entry>
  <entry>
    <title type="html">체리필터 3집 - 갑작스런 충동구매</title>
    <link rel="alternate" type="text/html" href="http://www.lifefeel.com/197" />
    <link rel="replies" type="application/atom+xml" href="http://www.lifefeel.com/atom/response/197" thr:count="3"/>
    <category term="이것저것" />
    <category term="신나라 레코드" />
    <category term="진주" />
    <category term="체리필터 3집" />
    <category term="충동구매" />
    <author>
      <name>(LifeFeel)</name>
    </author>
    <id>http://www.lifefeel.com/197</id>
    <updated>2008-11-07T16:27:33+09:00</updated>
    <published>2007-04-10T01:39:44+09:00</published>
    <summary type="html">&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://www.lifefeel.com/attach/1/1956655111.jpg&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;200&quot; width=&quot;200&quot; /&gt;&lt;/div&gt;&lt;br&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;체리 필터 3집 - The Third Eye&lt;/span&gt;&lt;br&gt;발매일 : 2003-09-04&lt;br&gt;&lt;br&gt;&lt;div style=&quot;text-align: center;&quot;&gt;01 . Dive&lt;br&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;02 . 오리날다&lt;/span&gt;&lt;br&gt;03 . 달빛소년&lt;br&gt;04 . 푸른꽃흰나비&lt;br&gt;05 . Digital shockwave&lt;br&gt;06 . Snow Man&lt;br&gt;07 . 아싸라비아&lt;br&gt;08 . Back to the future&lt;br&gt;09 . 꿈꾸는 쎄일러&lt;br&gt;10 . Tick-Tock&lt;br&gt;11 . 오리날다Ver.2&lt;br&gt;12 . No peace,Yes war?&lt;br&gt;13 . Dr.FAUST&lt;br&gt;&lt;br&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;지난주 주말, 잠시 진주에 출장을 갔었다. 그동안의 일을 모두 마치고 마지막 출장이었던 날이다. 비록 출장으로 들르긴 한 도시지만 그동안 나름 정이들었는지 왠지모를 쓸쓸한 감정에 마지막으로 시내구경이나 할겸 혼자 진주 시내를 거닐게 되었다. 가장 먼저 남강 앞에 앉자 잠시 멋진 야경을 구경하다 강을 따라 걸어 시내로 접어 들었다. 남강의 야경은 너무나도 아름다워서 앉은 자리에서 시간이 멈춰있는 것만 같은 느낌을 받았다. 겨우 발걸음을 내딛어 시내로 접어들었다. 이리저리 두리번 거리며 한 장면이라도 더 기억할까 해서 천천히 걷는데 갑자기 체리필터 음악이 머리속에서 맴돌기 시작했다. 아마도 출장가기 몇일 전에 체리필터 음악을 들었던 탓일까. 그것도 특정 음악만 자꾸 떠오르는 것이었다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;출장갔다 돌아오는 길, 지하철에서 다시 체리필터가 내 마음속에서 꿈틀 거리기 시작했다. 내 머릿속에 돌던 음악을 CD로 듣겠다는 일념하에 무작정 신촌역에서 내리자 마자 신나라 레코드로 향했다. 그리고 음악을 들으면서 구경했다. 아직 끼니를 때우진 않았지만 배고픔도 잊었다. 그리고는 체리필터 3집을 집어들었다. 그렇지만 내 머릿속에 맴돌던 노래는 2집에 있었던 것. 그런데 왜 3집이 사고싶은거지. 정말 충동적이었다. 그 순간 눈에 들어오는 CD라면 다 사버리고 싶기도 했었다. 충동적으로 물건을 산 일이 있다면 나에게는 이번이 처음이라고 할 수 있을 정도로 강한 충동이었다. 그래도 아직 내 마음엔 강력한 이성이 통제를 하고 있었다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;비록 구매는 충동적이었지만 사온 CD를 곧장 듣기 시작했다. 역시 좋다. 체리필터 보컬의 고음역대는 MP3에서 얼마나 많이 왜곡되었던가. 자칭 체리필터 마니아로서 나머지 앨범도 사고싶지만 나의 이성의 허락을 받기 전까진 감성의 지배력을 가두어 두기로 했다.&lt;/span&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</summary>
  </entry>
  <entry>
    <title type="html">영화표를 얻고서 모두가 고민했던 사건</title>
    <link rel="alternate" type="text/html" href="http://www.lifefeel.com/195" />
    <link rel="replies" type="application/atom+xml" href="http://www.lifefeel.com/atom/response/195" thr:count="0"/>
    <category term="이것저것" />
    <category term="영화표" />
    <author>
      <name>(LifeFeel)</name>
    </author>
    <id>http://www.lifefeel.com/195</id>
    <updated>2008-11-07T16:10:09+09:00</updated>
    <published>2007-04-08T23:49:03+09:00</published>
    <summary type="html">&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://www.lifefeel.com/attach/1/5596589737.jpg&quot; alt=&quot;메가박스 영화표&quot; height=&quot;360&quot; width=&quot;450&quot; /&gt;&lt;p class=&quot;cap1&quot;&gt;메가박스 영화표&lt;/p&gt;&lt;/div&gt;&lt;br&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;신촌에서 잠깐 아는 형을 만났다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;아는 형은 나에게 다짜고짜 신촌에 아는 여자가 있느냐고 묻는다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;신촌에 사는 아는 여자가 없기도 없었지만 왜인지가 더 궁굼해서 머릿속에 아는 여자를 하나씩 떠올렸다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;결국 아는 여자는 없고 남자애 하나 있다고 얘기했다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;이 영화표 두장을 주면서 보려고 사놨다가 안보게 될 것 같아서 나 준다고...&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;일단 챙겨서 들고왔다. 같이 있는 누나나 형에게 주려고 했지만 둘 다 임자가 아니었나보다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;셋이서 주변에 아는 사람들에게 전화하기 시작했다. &quot;**야~ 혹시 영화보러갈래? 표 2장줄께~&quot;.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;그러나 다들 너무 바쁜가보다. 역시 이 영화표의 임자는 나타나질 않았다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;결국 밤 10시가 되길 셋이서 기다렸다는 듯이 10시가 되자마자 다같이 한숨을 쉬었다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;나의 그녀와 함께 할 수 없다는게 어찌나 아쉬웠던 밤이었던가.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;그것도 당일날 개봉한 영화표. &lt;br&gt;이 주인을 만나지 못한 가엾은 표 두장은, 그렇게 3명 모두에게 아쉬움을 남겨주곤 소리없이 사라졌다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br&gt;</summary>
  </entry>
  <entry>
    <title type="html">나는 단지 아마추어일 뿐...</title>
    <link rel="alternate" type="text/html" href="http://www.lifefeel.com/194" />
    <link rel="replies" type="application/atom+xml" href="http://www.lifefeel.com/atom/response/194" thr:count="1"/>
    <category term="세상을 연주하다" />
    <category term="선수" />
    <category term="아마추어" />
    <category term="완벽추구" />
    <category term="탁구" />
    <author>
      <name>(LifeFeel)</name>
    </author>
    <id>http://www.lifefeel.com/194</id>
    <updated>2007-03-29T00:49:59+09:00</updated>
    <published>2007-03-29T00:49:59+09:00</published>
    <summary type="html">&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;몇일 전 운동을 마치고 나오던 길...&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;어떤 여자와 남자도 때마침 끝나고 나가는 길이었다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;계단을 내려가는 길에 그 남자가 나에게 말을 건넨다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(255, 118, 53);&quot;&gt;&quot;아저씨 혹시 선수에요?&quot;&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;물론 난 아니라고, 단지 배우는 사람일 뿐이다 라고 말했다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;그러곤 혼자 집에 돌아오면서 왜그리도 가슴이 뛰던지,&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;너무 기분이 좋은 나머지 아무것도 모르는 어린아이처럼 해맑게 웃으며 돌아왔다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;가만 생각해보니 내가 탁구를 배운지도 벌써 1년하고도 3개월이 지났다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;실력이 빼어난 것은 아니지만 선수가 훈련받는 것처럼 배우는 정도...&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;그사람은 아마도 내가 배우던 모습이 선수같아 보이지 않았을까.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;배우다보니 멈출 수 없는 상황에까지 오게 되어버렸다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;배우고 나니 기술을 알게 되었고, 기술을 알게되니 게임이 보이기 시작한다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;어느 덧 탁구란 운동에 대한 매력에 흠뻑 빠져버리고 만 것이다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;나의 완벽추구의 성격 탓인지는 몰라도 한번 시작한 것은 대체로 오래,&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;그리고 제대로 하려고 노력한다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;비록 아마추어일 뿐이지만 언젠가 선수로 출전할 날이 올지 누가 아는가.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;결실을 맺을 수 있는 그날까지 탁구채를 휘둘러나 볼까...&lt;/span&gt;&lt;br /&gt;</summary>
  </entry>
  <entry>
    <title type="html">무의식의 놀라운 힘</title>
    <link rel="alternate" type="text/html" href="http://www.lifefeel.com/193" />
    <link rel="replies" type="application/atom+xml" href="http://www.lifefeel.com/atom/response/193" thr:count="0"/>
    <category term="이것저것" />
    <category term="단어" />
    <category term="무의식" />
    <author>
      <name>(LifeFeel)</name>
    </author>
    <id>http://www.lifefeel.com/193</id>
    <updated>2007-03-28T00:08:03+09:00</updated>
    <published>2007-03-27T16:35:07+09:00</published>
    <summary type="html">&lt;span class=&quot;board_contents&quot; id=&quot;oContents&quot;&gt;&lt;blockquote style=&quot;color: rgb(142, 142, 142);&quot;&gt;캠릿브지 대학의 연결구과에 따르면, 한 단어 안에서 글자가 어떤 순서로 배되열어 있는가 하것는은 중하요지 않고, 첫째번와 마지막 글자가 올바른 위치에 있것는이 중하요다고 한다. 나머지 글들자은 완전히 엉진창망의 순서로 되어 있지을라도 당신은 아무 문없제이 이것을 읽을 수 있다. 왜하냐면 인간의 두뇌는 모든 글자를 하나 하나 읽것는이 아니라 단어 하나를 전체로 인하식기 때이문다.&lt;/blockquote&gt;&lt;br /&gt;&lt;/span&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span class=&quot;board_contents&quot; id=&quot;oContents&quot;&gt;.&lt;/span&gt;&lt;br /&gt;&lt;span class=&quot;board_contents&quot; id=&quot;oContents&quot;&gt;.&lt;/span&gt;&lt;br /&gt;&lt;span class=&quot;board_contents&quot; id=&quot;oContents&quot;&gt;.&lt;/span&gt;&lt;br /&gt;&lt;span class=&quot;board_contents&quot; id=&quot;oContents&quot;&gt;.&lt;/span&gt;&lt;br /&gt;&lt;span class=&quot;board_contents&quot; id=&quot;oContents&quot;&gt;.&lt;/span&gt;&lt;br /&gt;&lt;span class=&quot;board_contents&quot; id=&quot;oContents&quot;&gt;.&lt;/span&gt;&lt;br /&gt;&lt;span class=&quot;board_contents&quot; id=&quot;oContents&quot;&gt;.&lt;/span&gt;&lt;br /&gt;&lt;span class=&quot;board_contents&quot; id=&quot;oContents&quot;&gt;.&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;span class=&quot;board_contents&quot; id=&quot;oContents&quot;&gt;출처 : &lt;a href=&quot;http://chochobo.net/blog/50&quot;  target=&quot;_blank&quot;&gt;초초보의 세상을 바라보는 창&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;잘 읽으셨나요?&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;사실 저도 놀랬어요. &lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;생각없이 읽고 있다가 마지막 문장을 읽는 순간 다시 읽어보았는데&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;허걱... 이게 제대로 된 단어가 아니었다니.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;최근에 소비자에 대한 관심이 급증하면서 이런 연구결과들에 관심이 많이 생기네요.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;다음에 또 재미있는게 있다면 올리겠습니다.&lt;/span&gt;&lt;br style=&quot;color: rgb(23, 127, 205);&quot;&gt;&lt;br /&gt;&lt;br /&gt; &lt;/span&gt;</summary>
  </entry>
  <entry>
    <title type="html">생각의 날개를 달아줘~</title>
    <link rel="alternate" type="text/html" href="http://www.lifefeel.com/191" />
    <link rel="replies" type="application/atom+xml" href="http://www.lifefeel.com/atom/response/191" thr:count="0"/>
    <category term="세상을 연주하다" />
    <category term="맥주" />
    <category term="발상" />
    <category term="삿뽀로" />
    <category term="생각" />
    <category term="아사이" />
    <author>
      <name>(LifeFeel)</name>
    </author>
    <id>http://www.lifefeel.com/191</id>
    <updated>2007-04-08T23:49:41+09:00</updated>
    <published>2007-03-14T04:36:05+09:00</published>
    <summary type="html">&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://www.lifefeel.com/attach/1/1106333326.jpg&quot; alt=&quot;일본맥주&quot; height=&quot;334&quot; width=&quot;450&quot; /&gt;&lt;p class=&quot;cap1&quot;&gt;발상은 알콜과 함께...&lt;/p&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(23, 127, 205);&quot;&gt;가끔, 아니 점점 자주 발상의 전환을 필요로 하게 된다. 낡은 사고의 체계를 바꾸기 위해 참 많은 이야기들이 오가고 아이디어를
짜내곤 한다. 그러나 무멋보다도 발상의 전환에 있어 가장 큰 일등공신이 있었으니 그것은 바로 맥주. 적당한 알콜함량과 함께
기분은 살짝 좋아지고 긴장이 풀리면서 생각은 날개를 달기 시작한다. 알콜의 힘 덕분에 알지모르게 서로간에 쌓였던 벽도 자연스럽게
허물어진다. 대세를 이루는 아사이의 인기에 뻔뻔한 삿보로의 자태를 보라. 캔 5개의 벽은 왠지 쉽게 허물어 지지 않을 것만 같다.&lt;/span&gt;&lt;br /&gt;</summary>
  </entry>
</feed>
