<?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>HS's FreeZone~</title>
	<link>http://hyunseung.egloos.com</link>
	<description>HS's FreeZone~!!</description>
	<language>ko</language>
	<pubDate>Sun, 27 May 2007 14:48:48 GMT</pubDate>
	<generator>Egloos</generator>
	<image>
		<title>HS's FreeZone~</title>
		<url>http://pds1.egloos.com/logo/1/200601/24/20/c0054220.jpg</url>
		<link>http://hyunseung.egloos.com</link>
		<width>80</width>
		<height>108</height>
		<description>HS's FreeZone~!!</description>
	</image>
  	<item>
		<title><![CDATA[ 도메인 등록~!! & 티스토리 Open... ]]> </title>
		<link>http://hyunseung.egloos.com/3449353</link>
		<guid>http://hyunseung.egloos.com/3449353</guid>
		<description>
			<![CDATA[ 
  티스토리.. 오픈했다...<br><br>그리고..;; 도메인 장만했다~;;.. <br><br>(3년치.. 7만원 넘던데.. 후덜덜;;..)<br><br><a href="http://www.iam-hs.com/">http://www.iam.hs.com<a href="http://www.iam.hs.com/"><br><br></a></a>이곳은 동결될 듯 하다..;;;			 ]]> 
		</description>
		<category>HS's Story...</category>

		<comments>http://hyunseung.egloos.com/3449353#comments</comments>
		<pubDate>Sun, 27 May 2007 14:47:10 GMT</pubDate>
		<dc:creator>HS_Soul</dc:creator>
	</item>
	<item>
		<title><![CDATA[ 학 한 마리... ]]> </title>
		<link>http://hyunseung.egloos.com/3093530</link>
		<guid>http://hyunseung.egloos.com/3093530</guid>
		<description>
			<![CDATA[ 
  이제는.. 저 하늘을 날고 있는...<br />
<br />
아름답고 하얀 학 한 마리...^^<br />
.<br />
.<br />
<br />
&nbsp;			 ]]> 
		</description>
		<category>HS's Story...</category>

		<comments>http://hyunseung.egloos.com/3093530#comments</comments>
		<pubDate>Sun, 11 Feb 2007 10:43:03 GMT</pubDate>
		<dc:creator>HS_Soul</dc:creator>
	</item>
	<item>
		<title><![CDATA[ 함께 있으면 마음이 편안한 사람... ]]> </title>
		<link>http://hyunseung.egloos.com/3059951</link>
		<guid>http://hyunseung.egloos.com/3059951</guid>
		<description>
			<![CDATA[ 
  예전부터 늘... 생각해왔던 거지만...<br />
<br />
내 인생의&nbsp;목표 중의 하나가... 이거다..<br />
<br />
"함께 있으면 마음이 편안한 사람..."<br />
.<br />
.<br />
<br />
<br />
정말 함께 있는 것만으로도...<br />
<br />
마음이 편안해지는 사람...<br />
<br />
그런 사람이 되고 싶다...^^			 ]]> 
		</description>
		<category>HS's Story...</category>

		<comments>http://hyunseung.egloos.com/3059951#comments</comments>
		<pubDate>Sun, 04 Feb 2007 09:08:51 GMT</pubDate>
		<dc:creator>HS_Soul</dc:creator>
	</item>
	<item>
		<title><![CDATA[ gcc 라이브러리 파일 만들기 ]]> </title>
		<link>http://hyunseung.egloos.com/3012047</link>
		<guid>http://hyunseung.egloos.com/3012047</guid>
		<description>
			<![CDATA[ 
  UNIX &amp; Linux 에서는 주로 gcc 로 작업을 한다.<br />
<br />
UNIX 는 =_=;; 만져본 적이 별로 없어서 잘 모르지만...<br />
<br />
Linux 에서는 기본 패키지로 gcc 가 설치되기 때문이다~<br />
<br />
gcc 는 Linux 의 BASE, Linux 가 무료라고 치면...ㅋ <br />
<br />
C/C++ 컴파일러 구하는 데 드는 비용이~ \0.. ㅋㅋ.. 돈이 굳는다~ -0-b..<br />
<br />
( 아.. =_=;; 약간의 통신비는 어쩔 수 없나? ㅋ )<br />
<br />
뭐.. 솔직히 VC++ / BCB 도 -0-;; 구할 때도 비용이 들지는 않았지만 말이다..ㅋ<br />
<br />
.<br />
.<br />
<br />
서두가 너무 길어졌다~<br />
<br />
gcc 에서 라이브러리( *.a ) 파일을 생성하는 방법이다.<br />
<br />
src1.c , src2.c , src3.c .. 3개의 소스파일이 있다는 가정하에<br />
<br />
이 파일들로 라이브러리를 만들려면 아래와 같이 하면 된다.<br />
<br />
--------------------------------------------------------------------------<br />
<br />
1. 각각의 소스파일을 컴파일~<br />
<br />
<span style="font-weight: bold; color: rgb(51, 51, 255);">&nbsp;&nbsp; gcc -Wall -g -c -o src1.o src1.c</span><br />
<span style="font-weight: bold; color: rgb(51, 51, 255);">&nbsp;&nbsp; gcc -Wall -g -c -o src2.o src2.c</span><br />
<span style="font-weight: bold; color: rgb(51, 51, 255);">&nbsp;&nbsp; gcc -Wall -g -c -o src3.o src3.c</span><br />
<br />
2. 생성된 목적파일( *.o )을 AR 명령어로 묶어주기~<br />
<br />
<span style="color: rgb(51, 51, 255); font-weight: bold;">&nbsp;&nbsp; ar r libsrc.a src1.o src2.o src3.o</span><br />
<span style="color: rgb(51, 51, 255); font-weight: bold;">&nbsp;&nbsp; ar s libsrc.a</span><br />
<br />
--------------------------------------------------------------------------<br />
<br />
생성된 라이브러리 파일에 목적파일들이 제대로 들어있는지 확인하려면...<br />
<br />
<span style="color: rgb(51, 51, 255); font-weight: bold;">ar t libsrc.a</span>&nbsp; 라고 쳐보면 된다~<br />
<br />
라이브러리 파일이 제대로 생성되었다면...<br />
<br />
src1.o<br />
src2.o<br />
src3.o<br />
<br />
라고 출력이 될것이다~ㅋ<br />
<br />
-0-;;<br />
<br />
너무 간단한가..?ㅋ			 ]]> 
		</description>
		<category>OS - Unix &amp; Linux</category>

		<comments>http://hyunseung.egloos.com/3012047#comments</comments>
		<pubDate>Tue, 23 Jan 2007 04:20:43 GMT</pubDate>
		<dc:creator>HS_Soul</dc:creator>
	</item>
	<item>
		<title><![CDATA[ Happy New Year... ]]> </title>
		<link>http://hyunseung.egloos.com/2930321</link>
		<guid>http://hyunseung.egloos.com/2930321</guid>
		<description>
			<![CDATA[ 
  2007년이다...<br />
<br />
지난 한 해 동안..&nbsp;안좋았던 기억들은 모두 다...<br />
<br />
지나가버린 2006년이란 시간에 같이 보내버리고...<br />
<br />
.<br />
.<br />
<br />
새롭게 한 해를 시작해야겠다..^^<br />
<br />
웃으면서...ㅋㅋㅋ<br />
<br />
.<br />
.<br />
<br />
이제부터 다시 시작이다..^^			 ]]> 
		</description>
		<category>HS's Story...</category>

		<comments>http://hyunseung.egloos.com/2930321#comments</comments>
		<pubDate>Mon, 01 Jan 2007 05:10:50 GMT</pubDate>
		<dc:creator>HS_Soul</dc:creator>
	</item>
	<item>
		<title><![CDATA[ JCreator LE 4.00... ]]> </title>
		<link>http://hyunseung.egloos.com/2900284</link>
		<guid>http://hyunseung.egloos.com/2900284</guid>
		<description>
			<![CDATA[ 
  <div style="text-align:center"><img class="image_mid" border="0" onmouseover="this.style.cursor='pointer'" alt="" src="http://pds4.egloos.com/pds/200612/24/20/c0054220_10123185.jpg" width="500" height="362.3046875" onclick="Control.Modal.openDialog(this, event, 'http://pds4.egloos.com/pds/200612/24/20/c0054220_10123185.jpg');" /></div><br />
<br />
JCreator... Java 용 IDE 이다...<br />
<br />
대학교 2학년 때인가...? "객체지향 프로그래밍" 수업을 들을 때, Java 로 수업을 했는데<br />
<br />
그 때 알게된 프로그램이다.<br />
<br />
요 몇일전... 4.0 이 나왔다는 메일이 와서 한번 설치해봤다~<br />
<br />
ㅋ.. 'Start Page' 도 생기고.. VS 를 더 닮아가는 듯한;;<br />
<br />
또, 3.X 버전대에는 한글을 입력하거나 삭제할 때 글자가 깨어지는 현상이 있었던거 같은데;;<br />
<br />
그 문제도 수정된듯하다.. (아.. 3.5 버전에서 수정되었던가..-_-a..)<br />
<br />
내가 아는 선배분은..'이클립스' 가 좋다고 추천했었는데... -0-;;<br />
<br />
그래도 난 아직까진 이게 편하다..<br />
<br />
ㅋㅋㅋ..<br />
			 ]]> 
		</description>
		<category>PC 주절주절...</category>

		<comments>http://hyunseung.egloos.com/2900284#comments</comments>
		<pubDate>Sun, 24 Dec 2006 01:51:02 GMT</pubDate>
		<dc:creator>HS_Soul</dc:creator>
	</item>
	<item>
		<title><![CDATA[ Apache2.2.3 + PHP 5.2.0 ... ]]> </title>
		<link>http://hyunseung.egloos.com/2897363</link>
		<guid>http://hyunseung.egloos.com/2897363</guid>
		<description>
			<![CDATA[ 
  웹쪽도 가끔씩 건드릴 일이 있어서... 어제 아파치서버와 PHP를 설치했다.<br />
<br />
한 2~3년 전에 비하면 설정과정이 많이 줄어든 것 같기도...-0-a..<br />
<br />
Apache2.2.3 은 Win32용 Install 파일을 받아서 설치했고<br />
<br />
PHP 5.2.0 은 그냥 ZIP 파일로 배포된 것을 받아서 압축을 풀기만 했다.<br />
<br />
---------------------------------------------------------------------------------------<br />
<br />
1. PHP 5.2.0 설치.<br />
&nbsp;&nbsp; - PHP 홈페이지(<a href="http://www.php.net" target="_blank">http://www.php.net</a>)에서 5.2.0 release 버전 다운로드.<br />
&nbsp;&nbsp; - 다운로드받은 zip 파일을 원하는 폴더에 압축해제. ( 나는 C:\php5 에 설치 )<br />
&nbsp;&nbsp; - <span style="color: rgb(0, 0, 0); font-weight: bold;">php5ts.dll</span> 파일을 Windows 폴더(<span style="font-weight: bold;">C:\WINDOWS</span> or <span style="font-weight: bold;">C:\WINNT</span>)에 복사.<br />
<br />
2. Apache2.2.3 설치.<br />
&nbsp;&nbsp; - Apache 홈페이지(<a href="http://www.apache.org" target="_blank">http://www.apache.org</a>)에서 2.2.3 release 버전 다운로드.<br />
&nbsp;&nbsp; - 다운로드받은 install 파일을 실행해서 설치.<br />
&nbsp;&nbsp; - 설치가 완료되면 Apache 서버가 설치된 폴더의 conf 폴더에 있는 <span style="font-weight: bold;">httpd.conf</span> 파일을<br />
&nbsp;&nbsp;&nbsp;&nbsp; 자신에게 맞게 수정.<br />
<br />
* ServerAdmin 설정 (설치시 입력) *<br />
<code><br />
<font color="#80a0ff">#</font><br />
<font color="#80a0ff"># ServerAdmin: Your address, where problems with the server should be</font><br />
<font color="#80a0ff"># e-mailed.&nbsp;&nbsp;This address appears on some server-generated pages, such</font><br />
<font color="#80a0ff"># as error documents.&nbsp;&nbsp;e.g. admin@your-domain.com</font><br />
<font color="#80a0ff">#</font><br />
<font color="#40ffff">ServerAdmin</font> janghs1117@naver.com<br />
</code><br />
* ServerName 설정  (설치시 입력) *<br />
<code><br />
<font color="#80a0ff">#</font><br />
<font color="#80a0ff"># ServerName gives the name and port that the server uses to identify itself.</font><br />
<font color="#80a0ff"># This can often be determined automatically, but we recommend you specify</font><br />
<font color="#80a0ff"># it explicitly to prevent problems during startup.</font><br />
<font color="#80a0ff">#</font><br />
<font color="#80a0ff"># If your host doesn't have a registered DNS name, enter its IP address here.</font><br />
<font color="#80a0ff">#</font><br />
<font color="#40ffff">ServerName</font> localhost:80<br />
</code><br />
* DocumentRoot 설정 - 서버 가동시 루트 디렉토리를 설정 (임의로 F:\localhost 로 지정) *<br />
<code><br />
<font color="#80a0ff">#</font><br />
<font color="#80a0ff"># DocumentRoot: The directory out of which you will serve your</font><br />
<font color="#80a0ff"># documents. By default, all requests are taken from this directory, but</font><br />
<font color="#80a0ff"># symbolic links and aliases may be used to point to other locations.</font><br />
<font color="#80a0ff">#</font><br />
<font color="#40ffff">DocumentRoot</font> <font color="#ffa0a0">"F:/localhost"</font><br />
</code><br />
* DocumentRoot 에 설정한 디렉토리를 지정 *<br />
<code><br />
<font color="#80a0ff">#</font><br />
<font color="#80a0ff"># This should be changed to whatever you set DocumentRoot to.</font><br />
<font color="#80a0ff">#</font><br />
<font color="#ffff60">&lt;Directory</font><font color="#ffa0a0"> "F:/localhost"</font><font color="#ffff60">&gt;</font><br />
</code><br />
* 보통 웹의 루트에는 index.html 이 사용되는데 index.php 도 가능하도록 추가 *<br />
<code><br />
<font color="#80a0ff">#</font><br />
<font color="#80a0ff"># DirectoryIndex: sets the file that Apache will serve if a directory</font><br />
<font color="#80a0ff"># is requested.</font><br />
<font color="#80a0ff">#</font><br />
<font color="#ffff60">&lt;IfModule</font><font color="#ffa0a0"> dir_module</font><font color="#ffff60">&gt;</font><br />
&nbsp;&nbsp;&nbsp;&nbsp;<font color="#40ffff">DirectoryIndex</font> index.html index.php<br />
<font color="#ffff60">&lt;/IfModule&gt;</font><br />
</code><br />
* AddType 에 php 관련내용 추가 *<br />
<code><br />
<font color="#40ffff">AddType</font> application/x-compress .Z<br />
<font color="#40ffff">AddType</font> application/x-gzip .gz .tgz<br />
<br />
<font color="#40ffff">AddType</font> application/x-httpd-php .php5 .php4 .php3 .php .phtml .phtm .inc<br />
<font color="#40ffff">AddType</font> application/x-httpd-php-source .phps<br />
</code><br />
* PHP5 연동을 위한 셋팅 *<br />
<code><br />
<font color="#80a0ff"># PHP5_Module</font><br />
PHPIniDir&nbsp;&nbsp; <font color="#ffa0a0">"C:/php5/"</font><br />
<font color="#40ffff">LoadModule</font> php5_module&nbsp;&nbsp;<font color="#ffa0a0">"C:/php5/php5apache2_2.dll"</font><br />
</code><br />
기본적으로 php.ini 파일은 Windows 폴더에서 읽어오지만 이렇게 설정해두면<br />
지정한 폴더(C:\php5)에서 읽어오게 된다.<br />
LoadModule 에서는 apache2.2.X 용 모듈인 php5apache2_2.dll 을 지정.<br />
<br />
3. 아파치 서버 재시작 및 PHP 테스팅~<br />
<br />
---------------------------------------------------------------------------------------<br />
<br />
이것으로 Apache2.2.3 서버와 PHP 5.2.0 설치 및 셋팅이 끝났다.<br />
<br />
DB 도 설치해야 하는데...<br />
<br />
FireBird 를 써볼까... 생각중이다.<br />
<br />
(FireBird 는 생각보다 자료가 없어서...)<br />
<br />
다음에는 공부를 좀 더 해서 FireBird 설치하고 셋팅하는 방법을 올려봐야겠다.			 ]]> 
		</description>
		<category>Web &amp; DB...</category>

		<comments>http://hyunseung.egloos.com/2897363#comments</comments>
		<pubDate>Sat, 23 Dec 2006 02:28:29 GMT</pubDate>
		<dc:creator>HS_Soul</dc:creator>
	</item>
	<item>
		<title><![CDATA[ [C/C++] 공유섹션 사용하기~~~ ]]> </title>
		<link>http://hyunseung.egloos.com/2881624</link>
		<guid>http://hyunseung.egloos.com/2881624</guid>
		<description>
			<![CDATA[ 
  PE 포맷의 실행파일은 구조적으로 섹션이라는 게 존재한다.<br />
<br />
보통 실행코드는 .text 섹션에, 데이터(초기화된 변수들)는 .data 섹션으로 지정되며(VC++ 기준)<br />
<br />
그 외 필요에 따라서 다른 섹션들도 존재할 수 있다.<br />
<br />
개발을 하다보면 경우에 따라서 자신이 작성한 실행코드 혹은 데이터들을<br />
<br />
별도의 섹션으로 만들어서 분리를 해야하는 경우도 생길 수 있다.<br />
<br />
이럴 때는 <span style="FONT-WEIGHT: bold; COLOR: rgb(51,51,255)">#pragma</span> 전처리기를 이용하면 된다.<br />
<br />
먼저 데이터들을 섹션으로 분리하고 싶을 때는...<br />
<br />
<code><br />
<span style="COLOR: #80a0ff">// 데이터 섹션</span><br />
<span style="COLOR: #ff80ff">#pragma data_seg(</span><span style="COLOR: #ffa0a0">".MyData"</span><span style="COLOR: #ff80ff">)</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;.<br />
&nbsp;&nbsp;&nbsp;&nbsp;.<br />
&nbsp;&nbsp;&nbsp;&nbsp;별도의 섹션으로 분리할 데이터<br />
&nbsp;&nbsp;&nbsp;&nbsp;.<br />
&nbsp;&nbsp;&nbsp;&nbsp;.<br />
<span style="COLOR: #ff80ff">#pragma data_seg()</span><br />
<span style="COLOR: #ff80ff">#pragma comment(linker, </span><span style="COLOR: #ffa0a0">"/SECTION:.MyData,RWS"</span><span style="COLOR: #ff80ff">)</span><br />
</code><br />
그리고 실행 코드들을 섹션으로 분리하고 싶을 때는...<br />
<br />
<code><br />
<span style="COLOR: #80a0ff">// 코드 섹션</span><br />
<span style="COLOR: #ff80ff">#pragma code_seg(</span><span style="COLOR: #ffa0a0">".MyCode"</span><span style="COLOR: #ff80ff">)</span><br />
&nbsp;&nbsp;&nbsp;&nbsp;.<br />
&nbsp;&nbsp;&nbsp;&nbsp;.<br />
&nbsp;&nbsp;&nbsp;&nbsp;별도의 섹션으로 분리할 코드들<br />
&nbsp;&nbsp;&nbsp;&nbsp;.<br />
&nbsp;&nbsp;&nbsp;&nbsp;.<br />
<span style="COLOR: #ff80ff">#pragma code_seg()</span><br />
<span style="COLOR: #ff80ff">#pragma comment(linker, </span><span style="COLOR: #ffa0a0">"/SECTION:.MyCode,RWS"</span><span style="COLOR: #ff80ff">)</span><br />
</code><br />
이런식으로.. 코드를 구현하면 된다.<br />
<br />
데이터섹션을 추가하고 싶으면 <span style="FONT-WEIGHT: bold; COLOR: rgb(51,51,255)">data_seg()</span><span style="FONT-WEIGHT: bold"> </span>를, 코드섹션을 추가하고 싶으면 <span style="FONT-WEIGHT: bold; COLOR: rgb(51,51,255)">code_seg()</span> 를<br />
<br />
사용하면 된다. 			 ]]> 
		</description>
		<category>프로그래밍...</category>

		<comments>http://hyunseung.egloos.com/2881624#comments</comments>
		<pubDate>Mon, 18 Dec 2006 14:21:05 GMT</pubDate>
		<dc:creator>HS_Soul</dc:creator>
	</item>
	<item>
		<title><![CDATA[ ...드디어 내일이구나... -0-; ]]> </title>
		<link>http://hyunseung.egloos.com/2881503</link>
		<guid>http://hyunseung.egloos.com/2881503</guid>
		<description>
			<![CDATA[ 
  ...ㅋ...내일 회사 사람들에게는 한번도 공개된 적이 없었던 <br />
<br />
내방이 최초로 공개된다. -0-;;; ( 내일 되어봐야 알겠지만.. 바빠서 취소될수도.. ^_~ ㅋㅋ )<br />
<br />
덕분에 일요일에 수고를 좀 했더라는;;..<br />
<br />
그래도... 뭔가 찝찝하고 더 정리를 해야될 것만 같은.. 이 2% 모자라는 듯한 느낌..;;<br />
<br />
대략... 자금 사정도 안좋아서..<br />
<br />
대접할 것도 없는데..ㅡㅜ;; 요게 살짝 걱정이네;; 에휴..<br />
<br />
과일이랑 쥬스같은거라도 좀 사두어야 되려나;;..<br />
<br />
( ;;;..켁.. 근데 벌써 시간이..;; oTL.... )<br />
			 ]]> 
		</description>
		<category>HS's Story...</category>

		<comments>http://hyunseung.egloos.com/2881503#comments</comments>
		<pubDate>Mon, 18 Dec 2006 13:58:22 GMT</pubDate>
		<dc:creator>HS_Soul</dc:creator>
	</item>
	<item>
		<title><![CDATA[ [TIP] error PRJ0003: 'cl.exe'을(를) 생성하는 동안... ]]> </title>
		<link>http://hyunseung.egloos.com/2880563</link>
		<guid>http://hyunseung.egloos.com/2880563</guid>
		<description>
			<![CDATA[ 
  Visual Studio .NET 2003 이상에서 IDE 로 작업을 하다보면<br />
<br />
한번씩... <span style="color: rgb(255, 0, 0);">" error PRJ0003: 'cl.exe'을(를) 생성하는 동안 오류가 발생했습니다. "</span><br />
<br />
이런 에러가 발생하는 경우가 있다.<br />
<br />
(물론 소스코드에는 아무런 문제가 없다...)<br />
<br />
이 때는 IDE 를 종료한 다음 VCComponents.dat 파일을 삭제하면 된다.<br />
<br />
참고로.. Windows XP 에 Visual Studio 2005 설치를 했다면...<br />
<br />
<span style="color: rgb(51, 51, 255);">C:\Document and Settings\(User Account)\Local Settings\Application Data\Microsoft\VisualStudio\8.0</span><br />
<br />
에 위치한다.			 ]]> 
		</description>
		<category>컴퓨터 TIP...</category>

		<comments>http://hyunseung.egloos.com/2880563#comments</comments>
		<pubDate>Mon, 18 Dec 2006 09:46:45 GMT</pubDate>
		<dc:creator>HS_Soul</dc:creator>
	</item>
</channel>
</rss>
