<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet href="http://rss.egloos.com/style/blog.xsl" type="text/xsl" media="screen"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
	<title>때깔나게 살기</title>
	<link>http://epro.egloos.com</link>
	<description>목표설정, 이제 날개짓을 할 때이다.</description>
	<language>ko</language>
	<pubDate>Mon, 22 Jan 2007 04:14:33 GMT</pubDate>
	<generator>Egloos</generator>
	<image>
		<title>때깔나게 살기</title>
		<url>http://pds2.egloos.com/logo/1/200609/24/65/d0006965.jpg</url>
		<link>http://epro.egloos.com</link>
		<width>80</width>
		<height>31</height>
		<description>목표설정, 이제 날개짓을 할 때이다.</description>
	</image>
  	<item>
		<title><![CDATA[ Object-Oriented Analysis and Design ]]> </title>
		<link>http://epro.egloos.com/839165</link>
		<guid>http://epro.egloos.com/839165</guid>
		<description>
			<![CDATA[ 
  <a href="http://www.cs.colorado.edu/~kena/classes/6448/s05/lectures/">http://www.cs.colorado.edu/~kena/classes/6448/s05/lectures/</a><br />
<br />
The&nbsp;Lectures of the Department of Computer Science at the University of Colorado			 ]]> 
		</description>

		<comments>http://epro.egloos.com/839165#comments</comments>
		<pubDate>Mon, 22 Jan 2007 04:14:33 GMT</pubDate>
		<dc:creator>epro</dc:creator>
	</item>
	<item>
		<title><![CDATA[ Apache2.2 document ]]> </title>
		<link>http://epro.egloos.com/671623</link>
		<guid>http://epro.egloos.com/671623</guid>
		<description>
			<![CDATA[ 
  <ul><li>동적공유객체 (DSO) 지원<br />
<a href="http://httpd.apache.org/docs/2.2/ko/dso.html">http://httpd.apache.org/docs/2.2/ko/dso.html</a><br />
</li><li>apxs - APache eXtenSion 도구<br />
<a href="http://httpd.apache.org/docs/2.2/ko/programs/apxs.html">http://httpd.apache.org/docs/2.2/ko/programs/apxs.html</a></li></ul>			 ]]> 
		</description>

		<comments>http://epro.egloos.com/671623#comments</comments>
		<pubDate>Tue, 12 Dec 2006 09:03:41 GMT</pubDate>
		<dc:creator>epro</dc:creator>
	</item>
	<item>
		<title><![CDATA[ [아파치 모듈]DSO와 Static의 차이점 ]]> </title>
		<link>http://epro.egloos.com/670953</link>
		<guid>http://epro.egloos.com/670953</guid>
		<description>
			<![CDATA[ 
  <table style="MARGIN: 10px 0px 50px; COLOR: #404040; LINE-HEIGHT: 18px" cellspacing="0" width="590"><tbody><tr><td>DSO 방식과 Static 방식의 차이점은 무엇일가요? <br />
<br />
DSO방식은 아파치를 먼저 컴파일하고 다른 모듈들을 추가로 설치할 때는 아파치를 재 컴파일하지 <br />
않고 한번 설정되어 컴파일된 아파치를 계속 사용하는 것이다. <br />
즉, DSO방식은 아파치를 단 한번만 컴파일한다는 것이다. 이점은 관리, 설치면에서 커다란 장점이다. <br />
Static 방식은 설치면에서 추가로 모듈을 설치하려고 하면 설정하려는 모듈만 설정하고 컴파일하는 <br />
과정이 필요할 뿐만 아니라 아파치 또한 그에 따라 컴파일을 하여야 한다. <br />
이는 관리면에서 단점이 될 수 있다. <br />
<br />
시스템 측면에서 이 두 가지의 차이점이 있다. <br />
<br />
먼저 DSO는 아파치에 설치된 모듈이 필요할 때 시스템에 적재된다. 이는 클라이언트의 요청에 <br />
응답하는 요청시간이 다소 느릴 수 있지만, 하드웨어의 속도가 뒷받침된다면 해결이 될 수 있는 부분이다. <br />
여하튼 이런 방식(DSO)은 시스템의 리소스(메모리, CPU)들을 적절하게 효율적으로 사용한다고 볼 수 있다. <br />
이 방식은 예전에는 실험적인 성격을 가졌지만, 이젠 거의 안정 수준에 올라와 점점 DSO방식을 선호하고 있다. <br />
<br />
또 다른 방식인 Static 방식은 이전 방식(DSO)와는 다소 차이가 있다. <br />
이 방식은 아파치에 추가된 모듈이 아파치의 기동과 함께 모든 모듈을 포함하여 시스템에 적재한다. <br />
만약 아파치의 기동과 함께 적재된 어떤 모듈이 클라이언트에 의해 거의 쓰지 않는다면 쓸데없이 <br />
시스템 리소스를 점유하고 있으므로 이는 비효율적이라 볼 수 있다. <br />
또한 아파치와 각 모듈들은 설치시 복잡하다. <br />
각 모듈과 설정된 아파치에 또 다시 모듈을 추가하려 할 때 아파치와 모듈을 다시 컴파일하여야 한다.<br />
<br />
<br />
<br />
<br />
DSO 방식으로 설치되었을시 모듈의 추가는 아래처럼 한다..<br />
<br />
$ /usr/local/apache/bin/apxs -i -a -c /아파치소스경로/modules/모듈명.c</td></tr></tbody></table>			 ]]> 
		</description>

		<comments>http://epro.egloos.com/670953#comments</comments>
		<pubDate>Tue, 12 Dec 2006 05:45:39 GMT</pubDate>
		<dc:creator>epro</dc:creator>
	</item>
	<item>
		<title><![CDATA[ At last.. Fix up a date ]]> </title>
		<link>http://epro.egloos.com/557441</link>
		<guid>http://epro.egloos.com/557441</guid>
		<description>
			<![CDATA[ 
  31 March, 2007<br />
IELTS! 			 ]]> 
		</description>
		<category>호주</category>

		<comments>http://epro.egloos.com/557441#comments</comments>
		<pubDate>Thu, 16 Nov 2006 00:05:34 GMT</pubDate>
		<dc:creator>epro</dc:creator>
	</item>
	<item>
		<title><![CDATA[ blah blah ]]> </title>
		<link>http://epro.egloos.com/534840</link>
		<guid>http://epro.egloos.com/534840</guid>
		<description>
			<![CDATA[ 
  <p>Roll you eyes<br />
<a href="http://times.hankooki.com/lpage/plaza/200601/kt2006012515203612640.htm">http://times.hankooki.com/lpage/plaza/200601/kt2006012515203612640.htm</a></p><p>tickle<br />
<a href="http://web.tickle.com/">http://web.tickle.com/</a>&nbsp;&lt;- for killing time..</p>			 ]]> 
		</description>
		<category>English</category>

		<comments>http://epro.egloos.com/534840#comments</comments>
		<pubDate>Thu, 09 Nov 2006 09:03:46 GMT</pubDate>
		<dc:creator>epro</dc:creator>
	</item>
	<item>
		<title><![CDATA[ DWR: Easy AJAX for JAVA ]]> </title>
		<link>http://epro.egloos.com/533688</link>
		<guid>http://epro.egloos.com/533688</guid>
		<description>
			<![CDATA[ 
  orig&nbsp;page<br />
<a href="http://getahead.ltd.uk/dwr/overview/dwr">http://getahead.ltd.uk/dwr/overview/dwr</a><br />
<br />
<br />
translate into Korean<br />
<a href="http://cafe.naver.com/sqler.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=516">http://cafe.naver.com/sqler.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=516</a> <br />
<br />
<br />
이거 쓰면 편한가?<br />
보아하니.. web.xml에 설정해주고 dwr.xml도 만들어 줘야 하는거 같은데..<br />
Struts쓰면서 가장 불편한 것이 struts-config.xml을 만들어 주는 거였는데..<br />
비스무리한 개념인가? 그런담.. 약간 거부감이..;;<br />
<br />
&nbsp;			 ]]> 
		</description>
		<category>career＊Ajax</category>

		<comments>http://epro.egloos.com/533688#comments</comments>
		<pubDate>Thu, 09 Nov 2006 02:41:18 GMT</pubDate>
		<dc:creator>epro</dc:creator>
	</item>
	<item>
		<title><![CDATA[ My place - Nelly ]]> </title>
		<link>http://epro.egloos.com/530482</link>
		<guid>http://epro.egloos.com/530482</guid>
		<description>
			<![CDATA[ 
  <a href="http://tong.nate.com/lce0112/25794612">http://tong.nate.com/lce0112/25794612</a> <br />
중독성 매우 강함...			 ]]> 
		</description>
		<category>感</category>

		<comments>http://epro.egloos.com/530482#comments</comments>
		<pubDate>Wed, 08 Nov 2006 05:23:46 GMT</pubDate>
		<dc:creator>epro</dc:creator>
	</item>
	<item>
		<title><![CDATA[ 4색볼펜 ]]> </title>
		<link>http://epro.egloos.com/525611</link>
		<guid>http://epro.egloos.com/525611</guid>
		<description>
			<![CDATA[ 
  <div style="TEXT-ALIGN: center"><a href="http://epro.egloos.com/photo/album/32807/551481"><img alt="" src="http://pds3.egloos.com/pmf/200611/06/65/d0006965_111106385267_m.jpg" border="0" /></a><br />
<a title="Rolly C4" href="http://epro.egloos.com/photo/32807">Rolly C4</a></div><div style="TEXT-ALIGN: center">&nbsp;</div><div style="TEXT-ALIGN: center">4색 볼펜 구입!</div><div style="TEXT-ALIGN: center">&nbsp;</div><div style="TEXT-ALIGN: center">필기감도 좋고 두께도 얇다..</div><div style="TEXT-ALIGN: center">회사나 학원에서 애용 중.</div><div style="TEXT-ALIGN: center">&nbsp;</div><div style="TEXT-ALIGN: center">중요한 곳엔 빨간색</div><div style="TEXT-ALIGN: center">약간 덜 중요한 곳엔 파란색</div><div style="TEXT-ALIGN: center">주관적인 부분엔 초록색..</div><div style="TEXT-ALIGN: center">필기는 검정색..</div><div style="TEXT-ALIGN: center">&nbsp;</div><div style="TEXT-ALIGN: center">&nbsp;</div>			 ]]> 
		</description>
		<category>English</category>

		<comments>http://epro.egloos.com/525611#comments</comments>
		<pubDate>Tue, 07 Nov 2006 00:18:34 GMT</pubDate>
		<dc:creator>epro</dc:creator>
	</item>
	<item>
		<title><![CDATA[ 세계의 매너, 예절, 에티켓 등 예절상식 ]]> </title>
		<link>http://epro.egloos.com/515549</link>
		<guid>http://epro.egloos.com/515549</guid>
		<description>
			<![CDATA[ 
  <p><br />
<a href="http://blog.naver.com/micalra11?Redirect=Log&amp;logNo=30039347">http://blog.naver.com/micalra11?Redirect=Log&amp;logNo=30039347</a></p><p><br />
<a href="http://blog.naver.com/micalra11?Redirect=Log&amp;logNo=30039387">http://blog.naver.com/micalra11?Redirect=Log&amp;logNo=30039387</a></p>			 ]]> 
		</description>
		<category>국제화</category>

		<comments>http://epro.egloos.com/515549#comments</comments>
		<pubDate>Sat, 04 Nov 2006 07:38:08 GMT</pubDate>
		<dc:creator>epro</dc:creator>
	</item>
	<item>
		<title><![CDATA[ About ]]> </title>
		<link>http://epro.egloos.com/511835</link>
		<guid>http://epro.egloos.com/511835</guid>
		<description>
			<![CDATA[ 
  &nbsp;<a href="http://esl.about.com/"><img id="lg1" alt="About.com" src="http://z.about.com/h/lg/ab06.gif" border="0" /></a><br />
<br />
<br />
When&nbsp;you have a question about "English as 2nd Language"... <br />
Ask this web site named 'About'~ <br />
<br />
<br />
<a href="http://esl.about.com/">http://esl.about.com/</a> 			 ]]> 
		</description>
		<category>English</category>

		<comments>http://epro.egloos.com/511835#comments</comments>
		<pubDate>Fri, 03 Nov 2006 04:05:07 GMT</pubDate>
		<dc:creator>epro</dc:creator>
	</item>
</channel>
</rss>
