<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title>Superkkt Blog: 최근 댓글 목록</title>
		<link>http://superkkt.com/</link>
		<description>프로그램 개발과 관련된 지식을 정리하는 공간입니다.</description>
		<language>ko</language>
		<pubDate>Mon, 06 Feb 2012 21:20:09 +0900</pubDate>
		<generator>Textcube 1.7.8 : Con moto</generator>
		<image>
		<title>Superkkt Blog: 최근 댓글 목록</title>
		<url>http://superkkt.com/attach/1/9636956052.gif</url>
		<link>http://superkkt.com/</link>
		<width>140</width>
		<height>120</height>
		<description>프로그램 개발과 관련된 지식을 정리하는 공간입니다.</description>
		</image>
		<item>
			<title>Matlab 코드를 C/C++ 공유 라이브러리로 배포 : 안지훈님의 댓글</title>
			<link>http://superkkt.com/434#comment126</link>
			<description>혹시 matlab에서 c로 코드 변환하는 작업을 하실수 있으신가요,,, 연구소에서 간단한 코드작업을 용역으로 대체하려 하는데요,,,,
ahn_jh@cnu.ac.kr로 답변 부탁드립니다.</description>
			<author>(안지훈)</author>
			<guid>http://superkkt.com/434#comment126</guid>
			<comments>http://superkkt.com/434#comment</comments>
			<pubDate>Wed, 23 Nov 2011 18:18:44 +0900</pubDate>
		</item>
		<item>
			<title>리눅스에서 Mac OS의 타임머신 백업 따라하기 : 멍멍이닷님의 댓글</title>
			<link>http://superkkt.com/625#comment123</link>
			<description>유용한 정보 감사합니다~ 소규모로 데이터를 PC데스크탑으로 서버를 이용하려고하는데  백업서버에서 쓸 마땅한 솔루션을 못찾았는데 이걸로하면되겠어요</description>
			<author>(멍멍이닷)</author>
			<guid>http://superkkt.com/625#comment123</guid>
			<comments>http://superkkt.com/625#comment</comments>
			<pubDate>Fri, 19 Aug 2011 00:37:50 +0900</pubDate>
		</item>
		<item>
			<title>아이폰 VPN 설정 : skiro님의 댓글</title>
			<link>http://superkkt.com/510#comment121</link>
			<description>감사합니다. 가장 잘 정리 된 것 같아요!!</description>
			<author>(skiro)</author>
			<guid>http://superkkt.com/510#comment121</guid>
			<comments>http://superkkt.com/510#comment</comments>
			<pubDate>Sun, 14 Aug 2011 22:01:25 +0900</pubDate>
		</item>
		<item>
			<title>블럭 디바이스(Block device) I/O - 1 : 초보님의 댓글</title>
			<link>http://superkkt.com/372#comment120</link>
			<description>잘 읽었습니다</description>
			<author>(초보)</author>
			<guid>http://superkkt.com/372#comment120</guid>
			<comments>http://superkkt.com/372#comment</comments>
			<pubDate>Wed, 15 Jun 2011 10:29:58 +0900</pubDate>
		</item>
		<item>
			<title>Doxygen 사용을 위한 주석 : ㅁㅁ님의 댓글</title>
			<link>http://superkkt.com/210#comment117</link>
			<description>독시젠 아닙니다. 오류겐이죠</description>
			<author>(ㅁㅁ)</author>
			<guid>http://superkkt.com/210#comment117</guid>
			<comments>http://superkkt.com/210#comment</comments>
			<pubDate>Fri, 25 Feb 2011 17:47:49 +0900</pubDate>
		</item>
		<item>
			<title>Internet Checksum 계산 공식 : 사막바람님의 댓글</title>
			<link>http://superkkt.com/72#comment115</link>
			<description>제가 이제 공부를 시작해서 잘모르는데요. 
아래와 같이 하면 되나요? 에러가 나서요..
어찌 수정해야 하는지요? 
8자리 checksum 을 찾으려고 합니다. 
예: 07 06 0D CA 2E 1B 04 52

/* checksum-1.cpp */

#include &amp;lt;stdio.h&amp;gt;

static uint16_t

checksum(uint16_t *data, int len)
{
        int i;
        uint32_t sum = 0;

        for(i = 0; len &amp;gt; 1; i++, len -= 2)
                sum += data[i];
        /* 만약 마지막 데이터가 8비트라면 뒤에 8비트의 0을 추가한다 */
        if(len)
                sum += data[i] &amp;amp; 0xFF00;

        /* 상위 16비트(carrige)를 하위 16비트에 더해서 1의보수 합을 구한다 */
        sum = (sum &amp;gt;&amp;gt; 16) + (sum &amp;amp; 0xFFFF);
        /* 상위 16비트로 올림된 값이 있으면 다시 더해준다 */
        sum += (sum &amp;gt;&amp;gt; 16);

        return((uint16_t) htons(~sum));
}</description>
			<author>(사막바람)</author>
			<guid>http://superkkt.com/72#comment115</guid>
			<comments>http://superkkt.com/72#comment</comments>
			<pubDate>Thu, 13 Jan 2011 16:24:57 +0900</pubDate>
		</item>
		<item>
			<title>비밀 댓글입니다</title>
			<link>http://superkkt.com/464#comment114</link>
			<description>비밀 댓글입니다</description>
			<author>비밀 댓글입니다</author>
			<guid>http://superkkt.com/464#comment114</guid>
			<comments>http://superkkt.com/464#comment</comments>
			<pubDate>Wed, 22 Dec 2010 10:07:17 +0900</pubDate>
		</item>
		<item>
			<title>Ubuntu VNC Server : 쵸르님의 댓글</title>
			<link>http://superkkt.com/530#comment113</link>
			<description>깔끔한 정리 덕분에 많은 도움이 되었습니다 ^^
Mac 기본 &#039;화면 공유, Screen Sharing&#039; 에서 화면이 제대로 안나오는 문제가 &#039;32비트 모드에서 실행&#039; 옵션으로도 처리될 수 있다고 하네요.
http://goo.gl/aRxyP</description>
			<author>(쵸르)</author>
			<guid>http://superkkt.com/530#comment113</guid>
			<comments>http://superkkt.com/530#comment</comments>
			<pubDate>Sat, 11 Dec 2010 01:03:39 +0900</pubDate>
		</item>
		<item>
			<title>구조체(Structure)와 패딩비트(Paddin... : 박성민님의 댓글</title>
			<link>http://superkkt.com/159#comment112</link>
			<description>너무 유용한 자료 감사합니다 .^^;
안그래도 구조체 padding에 대한 개념을 몰라 2byte가 추가된걸 모르고 한참 삽질을했는데 감사합니다.</description>
			<author>(박성민)</author>
			<guid>http://superkkt.com/159#comment112</guid>
			<comments>http://superkkt.com/159#comment</comments>
			<pubDate>Sun, 05 Dec 2010 13:24:36 +0900</pubDate>
		</item>
		<item>
			<title>비밀 댓글입니다</title>
			<link>http://superkkt.com/146#comment111</link>
			<description>비밀 댓글입니다</description>
			<author>비밀 댓글입니다</author>
			<guid>http://superkkt.com/146#comment111</guid>
			<comments>http://superkkt.com/146#comment</comments>
			<pubDate>Fri, 22 Oct 2010 22:51:15 +0900</pubDate>
		</item>
	</channel>
</rss>

