<?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">HapPyN2sth :) 해피니스</title>
 <id>http://blog.kalcapt.net/atom</id>
 <link rel="alternate" type="text/html" hreflang="ko" href="http://blog.kalcapt.net/"/>
 <subtitle type="html">HapPyN2sth :) 해피니스하세요~^^*</subtitle>
 <updated>2010-02-11T18:20:19+09:00</updated>
 <generator>Textcube.com 2.0 Garnet</generator>
 <entry>
  <title type="html">text 내 url을 링크로 바꿔주는 함수</title>
  <link rel="alternate" type="text/html" href="http://blog.kalcapt.net/168"/>
  <link rel="replies" type="application/atom+xml" href="http://blog.kalcapt.net/atom/discuss/168" thr:count="0"/>
  <category term="PHP"/>
  <author>
   <name>kalcapt</name>
  </author>
  <id>http://blog.kalcapt.net/168</id>
  <updated>2010-01-26T04:38:03+09:00</updated>
  <published>2010-01-26T04:34:50+09:00</published>
  <summary type="html"> &amp;lt;?php /* vim: set expandtab tabstop=4 shiftwidth=4: &amp;nbsp;+--------------------------------------------------------+ &amp;nbsp;| PHP version 5.x &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; | &amp;nbsp;+--------------------------------------------------------+ &amp;nbsp;| Copyright : Song, Hyo-Jin &amp;lt;shj at xenosi.de&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; | &amp;nbsp;| Modifier&amp;nbsp; : Z&amp;amp;Mee &amp;lt;znmee at naver.com&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; | &amp;nbsp;+--------------------------------------------------------+ &amp;nbsp;| License&amp;nbsp; : GPLv3 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; | &amp;nbsp;+--------------------------------------------------------+ &amp;nbsp;$Id: autolink.inc.php, 2010-01-18. crucify, znmee Exp $ */ function autolink($html) { &amp;nbsp;return preg_replace_callback(&amp;#039;~((?:https?|ftps?|ed2k|mmst?)://|//)?((\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}|(?:[a-z\d\-\.]+(?:\.(com|net|org|af|al|dz|as|ad|ao|ai|aq|ag|ar|am|aw|au|at|az|bs|bh|bd|bb|by|be|bz|bj|bm|bt|bo|ba|bw|bv|br|io|vg|bn|bg|bf|bi|kh|cm|ca|cv|ky|cf|td|cl|cn|cx|cc|co|km|cd|cg|ck|cr|ci|cu|cy|cz|dk|dj|dm|do|ec|eg|sv|gq|er|ee|et|fo|fk|fj|fi|fr|gf|pf|tf|ga|gm|ge|de|gh|gi|gr|gl|gd|gp|gu|gt|gn|gw|gy|ht|hm|va|hn|hk|hr|hu|is|in|id|ir|iq|ie|il|it|jm|jp|jo|kz|ke|ki|kp|kr|kw|kg|la|lv|lb|ls|lr|ly|li|lt|lu|mo|mk|mg|mw|my|mv|ml|mt|mh|mq|mr|mu|yt|mx|fm|md|mc|mn|ms|ma|mz|mm|na|nr|np|an|nl|nc|nz|ni|ne|ng|nu|nf|mp|no|om|pk|pw|ps|pa|pg|py|pe|ph|pn|pl|pt|pr|qa|re|ro|ru|rw|sh|kn|lc|pm|vc|ws|sm|st|sa|sn|cs|sc|sl|sg|sk|si|sb|so|za|gs|es|lk|sd|sr|sj|sz|se|ch|sy|tw|tj|tz|th|tl|tg|tk|to|tt|tn|tr|tm|tc|tv|vi|ug|ua|ae|gb|um|us|uy|uz|vu|ve|vn|wf|eh|ye|zm|zw))))(:\d+)?(?:([^/\s\)\x80-\xff])|/[^ \)&amp;lt;&amp;gt;\r\n]*)?)~im&amp;#039;, &amp;#039;autolink_callback&amp;#039;, $html); } function autolink_callback($matches) { &amp;nbsp;if( isset($matches[6]) ) { &amp;nbsp; if( $matches[6] != &amp;#039;&amp;#039; ) { return $matches[0]; } &amp;nbsp;} &amp;nbsp;$link = &amp;#039;&amp;#039;; &amp;nbsp;if( $matches[1] != &amp;#039;&amp;#039; ) { &amp;nbsp; $link .= $matches[1]; &amp;nbsp;} else { &amp;nbsp; $link .= &amp;#039;http://&amp;#039;; &amp;nbsp;} &amp;nbsp;$link .= $matches[2]; &amp;nbsp;$url = $link; &amp;nbsp;$arr = explode(&amp;#039;?&amp;#039;,$link); &amp;nbsp;if ( isset($arr[1]) ) { &amp;nbsp; $ar = explode(&amp;#039;&amp;amp;&amp;#039;,$arr[1]); &amp;nbsp; foreach ( $ar as &amp;amp;$v ) { &amp;nbsp; &amp;nbsp;$i = explode(&amp;#039;=&amp;#039;,$v); &amp;nbsp; &amp;nbsp;$v = $i[0]; &amp;nbsp; &amp;nbsp;if ( isset($i[1]) ) { &amp;nbsp; &amp;nbsp; $str = $i[1]; &amp;nbsp; &amp;nbsp; if ( preg_match(&amp;#039;/[\x80-\xff]+/&amp;#039;,$str) ) { &amp;nbsp; &amp;nbsp; &amp;nbsp;$v .= &amp;#039;=&amp;#039;.urlencode($i[1]); &amp;nbsp; &amp;nbsp; } else { &amp;nbsp; &amp;nbsp; &amp;nbsp;$v .= &amp;#039;=&amp;#039;.$i[1]; &amp;nbsp; &amp;nbsp; } &amp;nbsp; &amp;nbsp;} &amp;nbsp; } &amp;nbsp; $arr[1] = implode(&amp;#039;&amp;amp;amp;&amp;#039;,$ar); &amp;nbsp; $url = $arr[0].&amp;#039;?&amp;#039;.$arr[1]; &amp;nbsp;} &amp;nbsp;$urlHtm = htmlspecialchars($matches[0]); &amp;nbsp;return &amp;#039;&amp;lt;a href=&amp;quot;&amp;#039;.$url.&amp;#039;&amp;quot; title=&amp;quot;&amp;#039;.$urlHtm.&amp;#039;&amp;quot; onclick=&amp;quot;window.open(this.href); return false;&amp;quot;&amp;gt;&amp;#039;.$urlHtm.&amp;#039;&amp;lt;/a&amp;gt;&amp;#039;; } ?&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; http://www.casternet.com/spamfree/example.php?code=20091202_02 &lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://blog.kalcapt.net/168&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</summary>
 </entry>
 <entry>
  <title type="html">mcrypt 없다고 난리칠때..</title>
  <link rel="alternate" type="text/html" href="http://blog.kalcapt.net/167"/>
  <link rel="replies" type="application/atom+xml" href="http://blog.kalcapt.net/atom/discuss/167" thr:count="0"/>
  <category term="Linux"/>
  <author>
   <name>kalcapt</name>
  </author>
  <id>http://blog.kalcapt.net/167</id>
  <updated>2009-10-24T21:50:25+09:00</updated>
  <published>2009-10-24T21:50:25+09:00</published>
  <summary type="html">yum install libmcrypt libmcrypt-devel libmhash libmhash-devel&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://blog.kalcapt.net/167&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</summary>
 </entry>
 <entry>
  <title type="html">Cent OS 5.x에서 Mysql 4.0.x 설치시 에러..</title>
  <link rel="alternate" type="text/html" href="http://blog.kalcapt.net/166"/>
  <link rel="replies" type="application/atom+xml" href="http://blog.kalcapt.net/atom/discuss/166" thr:count="0"/>
  <author>
   <name>kalcapt</name>
  </author>
  <id>http://blog.kalcapt.net/166</id>
  <updated>2009-10-24T21:25:23+09:00</updated>
  <published>2009-10-24T21:25:23+09:00</published>
  <summary type="html"> LinuxThreads 를 포함한.. 잡것들.. 에러뜰 때... 이번엔;; &amp;nbsp; yum install gcc gcc-c++ cpp-c++ compat-gcc-32-g77 flex libjpeg-devel libpng-devel freetype-devel gd-devel libmcrypt php-ncurses.x86_64 glibc-utils.x86_64 libtiff-devel curl libtermcap-devel &amp;nbsp; 요놈.. 한번 실행시켜주니깐.. 두말없이 컴파일되네;;ㅋㅋ &lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://blog.kalcapt.net/166&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</summary>
 </entry>
 <entry>
  <title type="html">LinuxThreads 에러</title>
  <link rel="alternate" type="text/html" href="http://blog.kalcapt.net/165"/>
  <link rel="replies" type="application/atom+xml" href="http://blog.kalcapt.net/atom/discuss/165" thr:count="0"/>
  <author>
   <name>kalcapt</name>
  </author>
  <id>http://blog.kalcapt.net/165</id>
  <updated>2009-10-24T20:25:11+09:00</updated>
  <published>2009-10-24T20:25:11+09:00</published>
  <summary type="html"> mysql 설치중 에러 checking &amp;quot;LinuxThreads&amp;quot;... &amp;quot;Not found&amp;quot; configure: error: This is a linux system and Linuxthreads was not found. On linux Linuxthreads should be used.&amp;nbsp; Please install Linuxthreads (or a new glibc) and try again.&amp;nbsp; See the Installation chapter in the Reference Manual for more information. &amp;nbsp; ----------------------------------------------------------------------- 코어4에서는 새로운 glibc를 쓰는데... /usr/include/pthread.h 에 /* Linuxthreads */ 라고 추가해줘야 한다는군요.. echo &amp;quot;/* Linuxthreads */&amp;quot; &amp;gt;&amp;gt; /usr/include/pthread.h 첫줄에 넣어두 되고 아무곳에나.... 원인!! mysql configure과정에서 pthread.h파일을 찾아 위 문구가 있는지 조사합니다. Fedora Core4의 gllibc는 당연히 없으니 에러가 납니다! ----------------------------------------------------------------------- 흠...결국엔 요즘배포판 버전에는 상관이 없다는 말인가?? 혹시나 하는마음에 글작성.. - 출처 : 서버구글 - &lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://blog.kalcapt.net/165&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</summary>
 </entry>
 <entry>
  <title type="html">필리핀을 향해..~</title>
  <link rel="alternate" type="text/html" href="http://blog.kalcapt.net/164"/>
  <link rel="replies" type="application/atom+xml" href="http://blog.kalcapt.net/atom/discuss/164" thr:count="1" thr:updated="2009-10-05T19:48:58+09:00"/>
  <category term="Diary!!"/>
  <author>
   <name>kalcapt</name>
  </author>
  <id>http://blog.kalcapt.net/164</id>
  <updated>2009-10-13T19:27:06+09:00</updated>
  <published>2009-10-03T16:09:25+09:00</published>
  <summary type="html"> 오늘(10.03.sat) 6시에 합회 앞에서 모여서 인천으로 고고싱~ 내일(10.04.sun) 새벽에 비행기타고 슝슝 간데욤.ㅋㅋ &amp;nbsp; PR467편 타고~ ... &amp;nbsp; 미국 유학간다고 알고 있는사람들 OTL;; &amp;nbsp; 다녀와서 후한이&amp;nbsp;후환이 걱정되넹;;ㅋㅋㅋㅋ [5타정정 ㅋㅋㅋㅋ] &amp;nbsp; 잘 무마시켜야지..~; &amp;nbsp; BlahBlah~ &lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://blog.kalcapt.net/164&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</summary>
 </entry>
 <entry>
  <title type="html">DNS 관련 쿼리 사이트</title>
  <link rel="alternate" type="text/html" href="http://blog.kalcapt.net/163"/>
  <link rel="replies" type="application/atom+xml" href="http://blog.kalcapt.net/atom/discuss/163" thr:count="0"/>
  <category term="About WEB"/>
  <author>
   <name>kalcapt</name>
  </author>
  <id>http://blog.kalcapt.net/163</id>
  <updated>2009-09-24T05:04:22+09:00</updated>
  <published>2009-09-24T05:04:22+09:00</published>
  <summary type="html"> http//www.dnsstuff.com/tools &amp;nbsp; 각종 DNS나 도메인 관련 쿼리를 날려서 조회할 수 있는... 유용한 사이트... 해당 도메인의 네임서버들... MX관련사항들... 유료를 제외하고도 무료로 이용할 수 있는 다양한 서비스들.. &amp;nbsp; 9ood~ &lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://blog.kalcapt.net/163&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</summary>
 </entry>
 <entry>
  <title type="html">퀵메뉴 슬라이딩 소스</title>
  <link rel="alternate" type="text/html" href="http://blog.kalcapt.net/162"/>
  <link rel="replies" type="application/atom+xml" href="http://blog.kalcapt.net/atom/discuss/162" thr:count="1" thr:updated="2009-09-21T17:48:56+09:00"/>
  <category term="JavaScript"/>
  <author>
   <name>kalcapt</name>
  </author>
  <id>http://blog.kalcapt.net/162</id>
  <updated>2009-09-21T03:13:38+09:00</updated>
  <published>2009-09-21T03:13:38+09:00</published>
  <summary type="html"> //Head에 들어가는 부분 &amp;nbsp; &amp;lt;SCRIPT language=JavaScript&amp;gt; &amp;lt;!-- self.onError=null; currentX = currentY = 0; whichIt = null; lastScrollX = 0; lastScrollY = 0; NS = (document.layers) ? 1 : 0; IE = (document.all) ? 1: 0; &amp;lt;!-- STALKER CODE --&amp;gt; function heartBeat() { if(IE) { diffY = document.body.scrollTop; diffX = 0; } if(NS) { diffY = self.pageYOffset; diffX = self.pageXOffset; } if(diffY != lastScrollY) { percent = .1 * (diffY - lastScrollY); if(percent &amp;gt; 0) percent = Math.ceil(percent); else percent = Math.floor(percent); if(IE) document.all.floater.style.pixelTop += percent; if(NS) document.floater.top += percent; lastScrollY = lastScrollY + percent; } if(diffX != lastScrollX) { percent = .1 * (diffX - lastScrollX); if(percent &amp;gt; 0) percent = Math.ceil(percent); else percent = Math.floor(percent); if(IE) document.all.floater.style.pixelLeft += percent; if(NS) document.floater.top += percent; lastScrollY = lastScrollY + percent; } } if(NS || IE) action = window.setInterval(&amp;quot;heartBeat()&amp;quot;,1); &amp;nbsp;function OnLoad2() { &amp;nbsp; var y; &amp;nbsp; if ( top.frames.length ) &amp;nbsp; if ( bNetscape4plus ) { &amp;nbsp;&amp;nbsp; document[&amp;quot;Layer99&amp;quot;].top = top.pageYOffset + 135; &amp;nbsp;&amp;nbsp; document[&amp;quot;Layer99&amp;quot;].visibility = &amp;quot;visible&amp;quot;; &amp;nbsp; } else if ( bExplorer4plus ) { &amp;nbsp;&amp;nbsp; Layer99.style.top = document.body.scrollTop + 135; &amp;nbsp;&amp;nbsp; Layer99.style.visibility = &amp;quot;visible&amp;quot;; &amp;nbsp; } &amp;nbsp; CheckUIElements2(); &amp;nbsp; return true; &amp;nbsp;} //OnLoad2(); //--&amp;gt; &amp;lt;/SCRIPT&amp;gt; &amp;nbsp; //DIV의 id값을 floater로 주면 작동. ex) &amp;lt;div id=&amp;quot;floater&amp;quot; name=&amp;quot;floater&amp;quot; style=&amp;quot;position:absolute; left:90%; top:150px;&amp;nbsp; width:50px; height:226px; z-index:1&amp;quot;&amp;gt;&amp;lt;img src=&amp;#039;images/r_qm.jpg&amp;#039; border=&amp;#039;0&amp;#039; usemap=&amp;quot;#r_qm&amp;quot; /&amp;gt;&amp;lt;/div&amp;gt; &lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://blog.kalcapt.net/162&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</summary>
 </entry>
 <entry>
  <title type="html">홈페이지 주소 고정 (FrameSet 이용)</title>
  <link rel="alternate" type="text/html" href="http://blog.kalcapt.net/160"/>
  <link rel="replies" type="application/atom+xml" href="http://blog.kalcapt.net/atom/discuss/160" thr:count="2" thr:updated="2009-11-30T08:59:53+09:00"/>
  <category term="HTML"/>
  <category term="&#xC8FC;&#xC18C;&#xACE0;&#xC815;"/>
  <category term="&#xD648;&#xD398;&#xC774;&#xC9C0; &#xC8FC;&#xC18C; &#xACE0;&#xC815;"/>
  <category term="&#xD648;&#xD53C; &#xC8FC;&#xC18C; &#xACE0;&#xC815;"/>
  <author>
   <name>kalcapt</name>
  </author>
  <id>http://blog.kalcapt.net/160</id>
  <updated>2009-09-20T02:19:19+09:00</updated>
  <published>2009-09-20T02:19:19+09:00</published>
  <summary type="html"> &amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Frameset//EN&amp;quot; &amp;quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd&amp;quot;&amp;gt; &amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot;&amp;gt; &amp;lt;head&amp;gt; &amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot; /&amp;gt; &amp;lt;title&amp;gt;타이틀~&amp;lt;/title&amp;gt; &amp;lt;/head&amp;gt; &amp;lt;frameset rows=&amp;quot;100,0&amp;quot; frameborder=&amp;quot;no&amp;quot; border=&amp;quot;0&amp;quot; framespacing=&amp;quot;0&amp;quot;&amp;gt; &amp;nbsp; &amp;lt;frame src=&amp;quot;아햏&amp;quot; name=&amp;quot;mainFrame&amp;quot; scrolling=&amp;quot;auto&amp;quot; noresize=&amp;quot;noresize&amp;quot; id=&amp;quot;mainFrame&amp;quot; /&amp;gt; &amp;nbsp; &amp;lt;frame src=&amp;quot;about:blank&amp;quot; name=&amp;quot;blank&amp;quot; id=&amp;quot;HiddenFrame&amp;quot; /&amp;gt; &amp;lt;/frameset&amp;gt; &amp;lt;noframes&amp;gt;&amp;lt;body&amp;gt; &amp;lt;/body&amp;gt; &amp;lt;/noframes&amp;gt;&amp;lt;/html&amp;gt; &amp;nbsp; 히든 프레임은 blank로.. 필요에 따라 원하는 페이지 삽입 가능. 매번 코딩하기 귀찮아서 코드등록 ㅋㅋㅋㅋ &lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://blog.kalcapt.net/160&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</summary>
 </entry>
 <entry>
  <title type="html">홈피 접속 시 항상 www 붙게하기</title>
  <link rel="alternate" type="text/html" href="http://blog.kalcapt.net/159"/>
  <link rel="replies" type="application/atom+xml" href="http://blog.kalcapt.net/atom/discuss/159" thr:count="1" thr:updated="2009-09-20T13:06:57+09:00"/>
  <category term="JavaScript"/>
  <author>
   <name>kalcapt</name>
  </author>
  <id>http://blog.kalcapt.net/159</id>
  <updated>2009-09-20T02:12:44+09:00</updated>
  <published>2009-09-20T02:12:44+09:00</published>
  <summary type="html"> &amp;lt;script&amp;nbsp; language=&amp;quot;JavaScript&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt; &amp;nbsp;var host = location.host.toLowerCase(); &amp;nbsp;var currentAddress = location.href; &amp;nbsp;if (host.indexOf(&amp;quot;www&amp;quot;) == -1) &amp;nbsp;{ &amp;nbsp; currentAddress = currentAddress.replace(&amp;quot;//&amp;quot;,&amp;quot;//www.&amp;quot;); &amp;nbsp; location.href = currentAddress; &amp;nbsp;} &amp;lt;/script&amp;gt; &amp;nbsp; 주소창의 주소를 체크해서 앞에 www가 없으면 www를 붙인 페이지로 이동시켜준다. Document 최상단에 삽입. &lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://blog.kalcapt.net/159&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</summary>
 </entry>
 <entry>
  <title type="html">SATerdaY</title>
  <link rel="alternate" type="text/html" href="http://blog.kalcapt.net/158"/>
  <link rel="replies" type="application/atom+xml" href="http://blog.kalcapt.net/atom/discuss/158" thr:count="2" thr:updated="2009-09-20T02:31:57+09:00"/>
  <author>
   <name>kalcapt</name>
  </author>
  <id>http://blog.kalcapt.net/158</id>
  <updated>2009-09-20T01:40:17+09:00</updated>
  <published>2009-09-20T01:40:17+09:00</published>
  <summary type="html"> 항상 그렇지만 졸린날. &amp;nbsp; 채플 전후로 100+영상 촬영하고.. &amp;nbsp; 모퉁이돌서 노래연습취소되서.. 교회학생반 마가린으로 계란부치고 빵굽고 -_-;;ㅋㅋㅋㅋ &amp;nbsp; IRENE 오디션 가서.. 구경하고..ㅋㅋ 난 오디션은 관여를 안하는지라 심적 부담은 없는데. 정말 사람을 Choose하고 혹은Omission (방금 네이버에서 단어 검색 ㅋㅋㅋㅋ) 시키는게 장난은 아닌데 흑;; 힘들어..ㅠ &amp;nbsp; 모든 회의를 마치고 애들이랑 김나에 가서 밥먹고..;; 연아볼링장 가서 ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ 공 굴리는데 오늘 영.. 컨뒤션이 좋지않아...ㅎㄷㄷ &amp;nbsp; 난 한판만 하고.. 두번째판은 아스크림내기..ㅋ 셋째판은 대표들만 원킬겜..ㅋㅋ 결국 내가 샀어 기냥 흐흐~ &amp;nbsp; 애들 보내고 나도 성화랑 집으로 고고~ 나 가게 들러서 마감 도와주고 바래다주고 집에돌아옴. BOOR 들리려했는데 사장님 ㅍㅣ곤하셔서 일찍 ㅎㄷㄷ; 그래서 지혜 뿔남 ㅋㅋㅋ 게다가 동생까지 -_-;; &amp;nbsp; 망고스무디와 사이다와 얼음과 함께 ㅋㅋㅋㅋㅋㅋㅋ &lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://blog.kalcapt.net/158&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</summary>
 </entry>
</feed>
