<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title>RedJini Blog</title>
		<link>http://blog.redjini.com/</link>
		<description></description>
		<language>ko</language>
		<pubDate>Thu, 25 Feb 2010 14:00:49 +0900</pubDate>
		<generator>Textcube 1.7.7 : Con moto</generator>
		<image>
		<title>RedJini Blog</title>
		<url>http://blog.redjini.com/attach/1/1347217587.jpg</url>
		<link>http://blog.redjini.com/</link>
		<width>155</width>
		<height>154</height>
		<description></description>
		</image>
		<item>
			<title>OpenSSL Visual Studio 2008에서 컴파일 및 설치 하기</title>
			<link>http://blog.redjini.com/242</link>
			<description>1. 설치 환경 Visual Studio 2008, WinXP2. 설치 준비 OpenSSL 소스 다운로드 : http://www.openssl.org/source ActivePerl 다운로드 : http://www.activestate.com/activeperl &amp;gt; ActivePerl 설치 &amp;gt; OpenSSL 소스 압축 해제3. 시작 &amp;gt; 실행 &amp;gt; cmd &amp;gt; OpenSSL 폴더로 이동 예) cd D:\My Project\Op...&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://blog.redjini.com/242&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
			<category>Visual C</category>
			<category>OpenSSL</category>
			<category>SSL</category>
			<category>Visual Studio 2008</category>
			<category>VS2008</category>
			<category>window</category>
			<category>설치</category>
			<category>컴파일</category>
			<author>(나그네)</author>
			<guid>http://blog.redjini.com/242</guid>
			<comments>http://blog.redjini.com/242#entry242comment</comments>
			<pubDate>Mon, 11 May 2009 19:45:10 +0900</pubDate>
		</item>
		<item>
			<title>Visual Studio 2008에서 zlib 1.2.3 컴파일</title>
			<link>http://blog.redjini.com/241</link>
			<description>VS2008에서 컴파일 할경우 다음과 같은 오류 메세지가 출력됨.1&amp;gt;------ 빌드 시작: 프로젝트: zlib, 구성: DLL ASM Debug Win32 ------1&amp;gt;Assembling...1&amp;gt; Assembling: D:\My Project\zlib-1.2.3\contrib\masmx86\inffas32.asm1&amp;gt;D:\My Project\zlib-1.2.3\contrib\masmx86\inffas32.asm(647) :...&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://blog.redjini.com/241&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
			<category>Visual C</category>
			<category>compile</category>
			<category>error</category>
			<category>VS2008</category>
			<category>zlib</category>
			<author>(나그네)</author>
			<guid>http://blog.redjini.com/241</guid>
			<comments>http://blog.redjini.com/241#entry241comment</comments>
			<pubDate>Tue, 21 Apr 2009 15:47:10 +0900</pubDate>
		</item>
		<item>
			<title>yum 장애 조치</title>
			<link>http://blog.redjini.com/240</link>
			<description>※ 오류 메세지 Traceback (most recent call last): File &quot;/usr/bin/yum&quot;, line 29, in ? yummain.user_main(sys.argv[1:], exit_code=True) File &quot;/usr/share/yum-cli/yummain.py&quot;, line 229, in user_main errcode = main(args) File &quot;/usr/share/yum-cli/yummain.py&quot;, line...&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://blog.redjini.com/240&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
			<category>기타</category>
			<category>libxml</category>
			<category>Python</category>
			<category>xml</category>
			<category>yum</category>
			<category>업데이트 오류</category>
			<author>(나그네)</author>
			<guid>http://blog.redjini.com/240</guid>
			<comments>http://blog.redjini.com/240#entry240comment</comments>
			<pubDate>Tue, 21 Apr 2009 15:39:42 +0900</pubDate>
		</item>
		<item>
			<title>IE8설치후 VS2008 스크립트 오류 문제</title>
			<link>http://blog.redjini.com/236</link>
			<description>Internet Explorer 8 설치후 Visual Studio 2008에서 함수, 변수 추가시 Script 오류가 발생.임시 해결방법 regedit 실행 &quot;HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones&quot; 항목에 &quot;1000&quot;키 생성 &quot;1000&quot;키 항목에 DWORD값 추가 이름 : 1207 값 : 0x000000 출처 : http://blogs...&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://blog.redjini.com/236&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
			<category>Visual C</category>
			<category>IE8</category>
			<category>Visual C++</category>
			<category>Visual Studio 2008</category>
			<category>VS2008</category>
			<category>스크립트</category>
			<author>(나그네)</author>
			<guid>http://blog.redjini.com/236</guid>
			<comments>http://blog.redjini.com/236#entry236comment</comments>
			<pubDate>Tue, 31 Mar 2009 09:53:11 +0900</pubDate>
		</item>
		<item>
			<title>데이크스트라 알고리즘(Dijkstra algorithm)</title>
			<link>http://blog.redjini.com/228</link>
			<description>[code cpp] #define M 65535#define MAX 10int path_info[MAX][MAX]={ { 0, 1, 4, 2, 9, M, M, M, M, 3}, //a 0 { 1, 0, M, M, 7, M, M, 5, M, M}, //b 1 { 4, M, 0,11, M, M, 4, M, M, M}, //c 2 { 2, M,11, 0, M, 1, M, M, M, M}, //d 3 { 9, 7, M, M, 0, 2, M, 1, M, 3...&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://blog.redjini.com/228&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
			<category>Visual C</category>
			<category>Dijkstra</category>
			<category>데이크스트라</category>
			<category>최단거리</category>
			<author>(나그네)</author>
			<guid>http://blog.redjini.com/228</guid>
			<comments>http://blog.redjini.com/228#entry228comment</comments>
			<pubDate>Mon, 29 Dec 2008 13:08:00 +0900</pubDate>
		</item>
	</channel>
</rss>
