<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>*cygn++</title>
    <link>http://cygn.net/</link>
    <description>C, Python, Java, 그리고 안드로이드</description>
    <language>ko</language>
    <pubDate>Thu, 15 Jul 2010 14:58:58 +0900</pubDate>
    <generator>Textcube.com 2.0 Garnet</generator>
    <image>
    <title>*cygn++</title>
    <url><![CDATA[http://fs.textcube.com/blog/0/980/attach/XHJSyGzQRJ.jpg]]></url>
    <link>http://cygn.net/</link>
    <description>C, Python, Java, 그리고 안드로이드</description>
    </image>
    <item>
      <title>우분투 eclipse의 subclipse 플러그인 에러시 해결 방법</title>
      <link>http://cygn.net/46</link>
      <description>Failed to load JavaHL Library. These are the errors that were encountered: no libsvnjavahl-1 in java.library.path no svnjavahl-1 in java.library.path no svnjavahl in java.library.path java.library.path = /usr/lib/jvm/java-6-sun-1.6.0.03/jre/lib/i386/c...&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://cygn.net/46&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <category>경험했던 error들과 해결방법</category>
      <author>Cygn</author>
      <guid>http://cygn.net/46</guid>
      <comments>http://cygn.net/46?expandComment=1#entry46Comment</comments>
      <pubDate>Wed, 07 Apr 2010 12:34:41 +0900</pubDate>
    </item>
    <item>
      <title>kusearch</title>
      <link>http://cygn.net/45</link>
      <description>http://kusearch.cygn.net 여러모로 아쉬움이 많은 프로젝트... 게시판 댓글 검색엔진. 가용머신이 공용서버 한 대인 관계로 크롤링 규모를 크게 잡지 못했다. 현재는 학기중인데다가, 다른 프로젝트를 하고 있어서 잠시 개발을 중단했지만 여름방학 즈음에는 다시 시작...&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://cygn.net/45&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <category>검색엔진 프로젝트</category>
      <author>Cygn</author>
      <guid>http://cygn.net/45</guid>
      <comments>http://cygn.net/45?expandComment=1#entry45Comment</comments>
      <pubDate>Sun, 21 Mar 2010 21:19:53 +0900</pubDate>
    </item>
    <item>
      <title>정규표현식 문법</title>
      <link>http://cygn.net/44</link>
      <description>&amp;nbsp;. &amp;nbsp;모든문자 &amp;nbsp;^ &amp;nbsp;문자열의 시작 &amp;nbsp;$ &amp;nbsp;문자열의 끝 &amp;nbsp;* &amp;nbsp;반복되지 않거나 반복 &amp;nbsp;+ &amp;nbsp;한번 이상 반복 &amp;nbsp;? &amp;nbsp;반복되지 않거나 한 번 반복 &amp;nbsp;| &amp;nbsp;A|B는 A이거나 B &amp;nbsp;[a-z] &amp;nbsp;영문 소문자 하나 ...&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://cygn.net/44&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <category>Python</category>
      <author>Cygn</author>
      <guid>http://cygn.net/44</guid>
      <comments>http://cygn.net/44?expandComment=1#entry44Comment</comments>
      <pubDate>Tue, 05 Jan 2010 20:42:38 +0900</pubDate>
    </item>
    <item>
      <title>Iterator</title>
      <link>http://cygn.net/41</link>
      <description>for element in [1, 2, 3]: &amp;nbsp; &amp;nbsp;&amp;nbsp; print(element) for char in &amp;quot;123&amp;quot;: &amp;nbsp; &amp;nbsp;&amp;nbsp; print(char) for line in open(&amp;quot;myfile.txt&amp;quot;): &amp;nbsp; &amp;nbsp;&amp;nbsp; print(line) for는 순회 가능한 객체(리스트, 튜플, 문자열)에서 이터레...&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://cygn.net/41&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <category>Python</category>
      <author>Cygn</author>
      <guid>http://cygn.net/41</guid>
      <comments>http://cygn.net/41?expandComment=1#entry41Comment</comments>
      <pubDate>Wed, 18 Nov 2009 09:00:11 +0900</pubDate>
    </item>
    <item>
      <title>지역 영역에서 전역 영역의 변수 사용</title>
      <link>http://cygn.net/40</link>
      <description>g = 1 def testScope(a): &amp;nbsp; &amp;nbsp; &amp;nbsp; global g &amp;nbsp; &amp;nbsp; &amp;nbsp; g = 2 &amp;nbsp; &amp;nbsp; &amp;nbsp; return g + a&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://cygn.net/40&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <category>Python</category>
      <author>Cygn</author>
      <guid>http://cygn.net/40</guid>
      <comments>http://cygn.net/40?expandComment=1#entry40Comment</comments>
      <pubDate>Sun, 15 Nov 2009 20:53:03 +0900</pubDate>
    </item>
    <item>
      <title>깊은 복사</title>
      <link>http://cygn.net/39</link>
      <description># 얕은 복사 a = [1,2,3] b = a a[0] = 38 list a,b 둘다 [38,2,3] 이 됨 # 깊은 복사 a = [1,2,3] b = a[:] 또는 import copy a = [1,2,3] b = copy.deepcopy(a) def change(x): &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; x = x[:] &amp;lt;-- 깊은 복사&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://cygn.net/39&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <category>Python</category>
      <author>Cygn</author>
      <guid>http://cygn.net/39</guid>
      <comments>http://cygn.net/39?expandComment=1#entry39Comment</comments>
      <pubDate>Sun, 15 Nov 2009 20:49:10 +0900</pubDate>
    </item>
    <item>
      <title>C언어 표준 Library 함수 - 문자열 검색 함수</title>
      <link>http://cygn.net/36</link>
      <description>아래 함수사용을 위해서는 string.h header file선언이 필요합니다. &amp;nbsp;함수 &amp;nbsp;사용 &amp;nbsp;설명 &amp;nbsp;strchr() &amp;nbsp;p = strchr(s1, c); &amp;nbsp;s1문자열에서 c문자가 처음발견된 위치부터의 문자열을 pointer로 반환합니다. 만일 c문자를 발견하지 못하면 null...&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://cygn.net/36&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <category>C</category>
      <author>Cygn</author>
      <guid>http://cygn.net/36</guid>
      <comments>http://cygn.net/36?expandComment=1#entry36Comment</comments>
      <pubDate>Wed, 05 Aug 2009 16:53:22 +0900</pubDate>
    </item>
    <item>
      <title>웹페이지 소스저장</title>
      <link>http://cygn.net/34</link>
      <description>tdafx.h 파일에 #include &amp;lt;afxinet.h&amp;gt; 를 추가 BOOL GetSourceHtml(CString theUrl) { // this first block does the actual work CInternetSession session; CInternetFile* file = NULL; try { // try to connect to the URL file = (CInternetFile*) session.Op...&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://cygn.net/34&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <category>Win32 , MFC</category>
      <author>Cygn</author>
      <guid>http://cygn.net/34</guid>
      <comments>http://cygn.net/34?expandComment=1#entry34Comment</comments>
      <pubDate>Tue, 04 Aug 2009 14:36:42 +0900</pubDate>
    </item>
    <item>
      <title>Dialog를 작업표시줄(task bar)에서 숨기려면</title>
      <link>http://cygn.net/33</link>
      <description>Dialog기반 프로그램을 작업표시줄에서 감추고 싶다면, 간단하게 Window Style을 수정해 주면 된다. LRESULT CMainDlg::OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL&amp;amp; /*bHandled*/) { &amp;nbsp; &amp;nbsp; ... &amp;nbsp; &amp;nbsp; ModifyStyleEx(...&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://cygn.net/33&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <category>Win32 , MFC</category>
      <author>Cygn</author>
      <guid>http://cygn.net/33</guid>
      <comments>http://cygn.net/33?expandComment=1#entry33Comment</comments>
      <pubDate>Tue, 04 Aug 2009 00:56:37 +0900</pubDate>
    </item>
    <item>
      <title>외부 기호를 확인할 수 없습니다. 에러시</title>
      <link>http://cygn.net/32</link>
      <description>Debug 모드에서 잘 컴파일 되던것이, Release 모드로 바꾼후 컴파일시 이런 에러가 발생한다면, Debug 모드의 속성 설정과 Release 모드의 설정이 각각 따로 적용되므로, 각 모드의 설정이 동일하게 설정되었는지 확인해 보아야 한다. 위의 프로젝트의 에러의 경우에는,...&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;http://cygn.net/32&quot;&gt;글 전체보기&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <category>경험했던 error들과 해결방법</category>
      <author>Cygn</author>
      <guid>http://cygn.net/32</guid>
      <comments>http://cygn.net/32?expandComment=1#entry32Comment</comments>
      <pubDate>Tue, 04 Aug 2009 00:55:49 +0900</pubDate>
    </item>
  </channel>
</rss>
