<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title>코코아 향기</title>
		<link>http://blog.codeguruz.com/</link>
		<description></description>
		<language>ko</language>
		<pubDate>Fri, 22 Jan 2010 14:30:54 +0900</pubDate>
		<generator>Tistory 1.1 (http://www.tistory.com/)</generator>
		<image>
		<title>코코아 향기</title>
		<url><![CDATA[http://cfile5.uf.tistory.com/image/160EA10F4AB4C966210D43]]></url>
		<link>http://blog.codeguruz.com/</link>
		<description></description>
		</image>
		<item>
			<title>log4cxx inputstreamreader.cpp:66: error: &#039;memmove&#039; was not declared in this scope 문제 해결</title>
			<link>http://blog.codeguruz.com/90</link>
			<description>when i compile log4cxx i get the same error message : inputstreamreader.cpp:66: error: &#039;memmove&#039; was not declared in this scope can you tell how to fix it? Try adding to inputstreamreader.cpp a #include &lt;string.h&gt; and see if that helps. If it doesn&#039;t, s..&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-90-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-fr/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-fr/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/DerivativeWorks&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>C/C++</category>
			<author>배고파씨</author>
			<guid>http://blog.codeguruz.com/90</guid>
			<comments>http://blog.codeguruz.com/90#entry90comment</comments>
			<pubDate>Fri, 22 Jan 2010 14:30:53 +0900</pubDate>
		</item>
		<item>
			<title>linux에서 문자열 치환 하는 방법</title>
			<link>http://blog.codeguruz.com/88</link>
			<description>linux에서 특정 문자열을 치환하는방법에는 여러가지가 있는데 나는 다음과 같은 명령어로 해보았다. (치환 결과를 다른 파일에 저장해야 할 때) $ cat {SOURCE_FILE_NAME} | sed &#039;s/{ORIGINAL}/{CHANGE}/g&#039; &gt; {NEW_FILE_NAME} (치환 결과를 원본에 저장할때) $ sed -i &#039;s/{ORIGINAL}/{CHANGE}/g&#039; {FILE_NAME} {ORIGINAL} : 원본 문자열 {CHANGE} : 바..</description>
			<category>Tools</category>
			<author>배고파씨</author>
			<guid>http://blog.codeguruz.com/88</guid>
			<comments>http://blog.codeguruz.com/88#entry88comment</comments>
			<pubDate>Mon, 02 Nov 2009 15:40:41 +0900</pubDate>
		</item>
		<item>
			<title>mysql 4.1 -&gt; 5.0 데이터베이스 마이그레이션</title>
			<link>http://blog.codeguruz.com/87</link>
			<description>일반적으로 dump 백업 후 (4.1에서) 5.0 으로 복원하기가 쉽지는 않다.(언어셋부터, 키워드 때문에 잘 안됨) 노가다 방법은 많으니 제쳐두고 서버가 4.1, 5.0 두대 다 있을것으로 가정하고 복원 백업하는 방법이다. 이게 젤 편한거 같음 먼저 4.1과 5.0 서버의 charset은 미리 맞춰두고 시작한다. 그게 아니라면 dump시 옵션으로 준다. 4.1 서버에서 5.0 서버가 접근할 수 있는 유저를 추가한다. 5.0 서버에서 4.1 서버로..</description>
			<category>DataBase</category>
			<author>배고파씨</author>
			<guid>http://blog.codeguruz.com/87</guid>
			<comments>http://blog.codeguruz.com/87#entry87comment</comments>
			<pubDate>Mon, 02 Nov 2009 13:27:47 +0900</pubDate>
		</item>
		<item>
			<title>gcc 4.1.x extra qualification error</title>
			<link>http://blog.codeguruz.com/86</link>
			<description>gcc 4.1.x 버전에서 extra qualification error 관련 해서 포스팅 합니다. 예를 들어 아래와 같은 클래스가 있다고 가정하면 class AClass { public: AClass::AClass(){}; virtual AClass::~AClass(){}; } gcc (g++) 4.1.x로 컴파일 하면 아래와 같은 애러 메세지가 나옵니다. error: extra qualification AClass:: on member AClas..</description>
			<category>C/C++</category>
			<category>extra qualification</category>
			<category>g++</category>
			<category>gcc 4.1.x</category>
			<author>배고파씨</author>
			<guid>http://blog.codeguruz.com/86</guid>
			<comments>http://blog.codeguruz.com/86#entry86comment</comments>
			<pubDate>Sat, 24 Oct 2009 17:54:05 +0900</pubDate>
		</item>
		<item>
			<title>터치 3세대를 개발기기로 사용 할때...</title>
			<link>http://blog.codeguruz.com/84</link>
			<description>애플 개발자 사이트의 내용입니다 Touch 3G를 개발 기기로 사용하실경우 다음 작업을 해주세요. * iPhone, iPhone 3G, iPhone 3GS, Touch, Touch 2G는 관련없습니다. 터미널에서 다음 명령문(한줄)을 칩니다. ln -s /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.1.1\ \(7C145\) /Developer/Platforms/iPhoneOS.platform/De..</description>
			<category>Objective-C</category>
			<category>iPhone</category>
			<category>iphone sdk</category>
			<category>ipod touch 3세대</category>
			<author>배고파씨</author>
			<guid>http://blog.codeguruz.com/84</guid>
			<comments>http://blog.codeguruz.com/84#entry84comment</comments>
			<pubDate>Fri, 02 Oct 2009 20:38:41 +0900</pubDate>
		</item>
		<item>
			<title>Upgrading Parallels Tools in CentOS 5.3</title>
			<link>http://blog.codeguruz.com/82</link>
			<description>1. CentOS의 방화벽을 모두 해제한다. 2. Parallels 에서 Virtual Machine-&gt;Install Parallels Tools... 을 실행해서 Parallels Tools을 CentOS에 마운트 시킨다. 3. mount -o remount,exec /media/Parallels\ Tools 실행 4. /media/Parallels\ Tools로 이동 후 ./install --force-install 실행 5. 재부팅 후 ./in..</description>
			<category>Server</category>
			<category>CentOS</category>
			<category>Parallels</category>
			<author>배고파씨</author>
			<guid>http://blog.codeguruz.com/82</guid>
			<comments>http://blog.codeguruz.com/82#entry82comment</comments>
			<pubDate>Fri, 18 Sep 2009 19:03:14 +0900</pubDate>
		</item>
		<item>
			<title>[mac os x] ls 결과를 색깔로 구분해서 표시하기</title>
			<link>http://blog.codeguruz.com/81</link>
			<description>ls 결과를 색깔로 구분해서 표시하기 Mac OS X 에 설치되어 있는 ls 명령은 -G 설정 혹은 CLICOLOR 환경 변수와 함께 사용되면, 결과들을 색깔별로 구분해서 나열할 수 있습니다. 여기에 표시되는 색깔들의 구분은 LSCOLORS 환경 변수를 따로 지정해서 사용자의 입맛에 맞게 변경할 수도 있답니다. 그래서, 예를 들어 만약 디렉토리 표시 색깔을 기본 파란색에서 노란색(원래 d값은 갈색을 나타내지만, 실제로는 노란색과 비슷하게 표시됩니다)..</description>
			<category>Tools</category>
			<category>LSCOLORS</category>
			<category>MacOS X</category>
			<author>배고파씨</author>
			<guid>http://blog.codeguruz.com/81</guid>
			<comments>http://blog.codeguruz.com/81#entry81comment</comments>
			<pubDate>Wed, 09 Sep 2009 18:46:44 +0900</pubDate>
		</item>
		<item>
			<title>Visual Studio 2008의 ATL 보안업데이트 이후 발생하는 컴파일 에러 문제</title>
			<link>http://blog.codeguruz.com/80</link>
			<description>WindowsSDK와 Visual Studio, Visual Studio Servicepack의 일부 include되는 파일셋은 서로 설치하면서 덮어 써집니다.&lt;?xml:namespace prefix = o ns = &quot;urn:schemas-microsoft-com:office:office&quot; /&gt; 따라서, 가장 최신에 나온 파일이 가장 나중에 덮어 써지게 설치를 해야 합니다. Visual Studio2008을 예로 들면, 설치 순서는 Visual St..</description>
			<category>C/C++</category>
			<category>ATL</category>
			<category>Service Pack 1</category>
			<category>Visual Studio 2008</category>
			<category>보안업데이트</category>
			<author>배고파씨</author>
			<guid>http://blog.codeguruz.com/80</guid>
			<comments>http://blog.codeguruz.com/80#entry80comment</comments>
			<pubDate>Sat, 15 Aug 2009 00:56:06 +0900</pubDate>
		</item>
		<item>
			<title>가비지 컬렉션을 이용 하는 프로그램</title>
			<link>http://blog.codeguruz.com/79</link>
			<description>컴파일 시에 옵션 -fobjc-gc-only가 필요하다. 메소드 실행 중에 사용하는 객체는 메소드내의 자동 변수에 대입해서 사용 한다. 당분간 사용할 것 같은 객체는 외부 변수에서 참조 할 수 있도록 해둔다. 회수 대상이 되는 것은 id 타입이거나, 클래스명을 타입으로 사용하는 변수이다. 오너쉽과 인스턴스 변수에 대해 신경 쓰지 않아도 된다. 객체가 해제 될 때 필요한 후처리는 finalize 메소스에 기술할 수 있지만 가급적 사용 하지 않도록 한다..</description>
			<category>Objective-C</category>
			<category>garbage collection</category>
			<category>Objective C</category>
			<category>가비지컬렉션</category>
			<author>배고파씨</author>
			<guid>http://blog.codeguruz.com/79</guid>
			<comments>http://blog.codeguruz.com/79#entry79comment</comments>
			<pubDate>Sun, 09 Aug 2009 19:19:42 +0900</pubDate>
		</item>
		<item>
			<title>해제 되지 않는 인스턴스</title>
			<link>http://blog.codeguruz.com/78</link>
			<description>객체 중에는 해제 하면 안되는 객체도 있습니다. 예를 들어 클래스 객체(Objective-C에서는 클래스자체도 객체로 취급합니다. main 함수가 시작될때 인스턴스화 됩니다.)나 하나의 인스턴스만 만들어서 공유 하는 경우 혹은 NSString 문자열에 있는 것과 같은 객체 상수입니다. 이들 객체에 메세지 retainCount를 보내면 UINT_MAX라는 리턴값이 돌아 옵니다. 이것은 C언어 표준 라이브러리의 헤더 limits.h에서 정의된 unsig..</description>
			<category>Objective-C</category>
			<category>Objective C</category>
			<category>해제되지 않는 인스턴스</category>
			<author>배고파씨</author>
			<guid>http://blog.codeguruz.com/78</guid>
			<comments>http://blog.codeguruz.com/78#entry78comment</comments>
			<pubDate>Sat, 08 Aug 2009 02:38:14 +0900</pubDate>
		</item>
	</channel>
</rss>
