<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0">
 <title type="html">남정현의 닷넷 블로그:최근 커뮤니케이션</title>
 <id>atom</id>
 <link rel="alternate" type="text/html" hreflang="ko" href=""/>
 <subtitle type="html">닷넷 프로그래밍을 전문적으로 다루는 블로그입니다. :-)</subtitle>
 <updated>2010-03-10T21:50:54+09:00</updated>
 <generator>Textcube.com 2.0 Garnet</generator>
 <entry>
  <title type="html">reply by Kevins Story</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/355?expandComment=1#comment8685872"/>
  <author>
   <name>Kevins Story</name>
  </author>
  <id>http://www.rkttu.com/355?expandComment=1#comment8685872</id>
  <updated>2010-03-06T02:05:12+09:00</updated>
  <published>2010-03-06T02:05:12+09:00</published>
  <content type="html">오늘은 Apache와 PHP를 수동으로 설치하는 것을 해보려 합니다. 제가 이 글을 쓰는 이유는 아무리 뒤져봐도 Apache server에 PHP를 설정하는 것이 대부분 APM(Apache server + PHP + MySQL)이라는 패키지를 설치함으로서 자동으로 설정하는 법은 많지만, 수동으로 설치하는 것은 없기에 이 포스트를 씀으로서 CGI 웹프로그램을 하려는 이들이 처음 자신의 컴퓨터에 세팅을 할 때 도움이 되길 바라는 마음에서 이 글을 씁니다..</content>
 </entry>
 <entry>
  <title type="html">reply by Kevins Story</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/351?expandComment=1#comment8685871"/>
  <author>
   <name>Kevins Story</name>
  </author>
  <id>http://www.rkttu.com/351?expandComment=1#comment8685871</id>
  <updated>2010-03-06T02:05:09+09:00</updated>
  <published>2010-03-06T02:05:09+09:00</published>
  <content type="html">오늘은 Apache와 PHP를 수동으로 설치하는 것을 해보려 합니다. 제가 이 글을 쓰는 이유는 아무리 뒤져봐도 Apache server에 PHP를 설정하는 것이 대부분 APM(Apache server + PHP + MySQL)이라는 패키지를 설치함으로서 자동으로 설정하는 법은 많지만, 수동으로 설치하는 것은 없기에 이 포스트를 씀으로서 CGI 웹프로그램을 하려는 이들이 처음 자신의 컴퓨터에 세팅을 할 때 도움이 되길 바라는 마음에서 이 글을 씁니다..</content>
 </entry>
 <entry>
  <title type="html">reply by 남정현</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/307?expandComment=1#comment8678034"/>
  <thr:in-reply-to ref="http://www.rkttu.com/307?expandComment=1#comment8676929" type="application/xhtml+xml" href="http://www.rkttu.com/307?expandComment=1#comment8676929"/>
  <author>
   <name>남정현</name>
  </author>
  <id>http://www.rkttu.com/307?expandComment=1#comment8678034</id>
  <updated>2010-03-04T23:31:46+09:00</updated>
  <published>2010-03-04T23:31:46+09:00</published>
  <content type="html">리소스 테이블의 검색에 관련된 문제로 IKVM으로 변환한 모듈이 정상적으로 동작하지 않는듯 합니다. 저도 이 부분은 계속 테스트를 해보았지만 답을 구하지 못해서 현재는 진행하지 못하고 있습니다.&#13;
&#13;
IKVM의 최신 버전을 다시 활용해보거나, 가능한 범위에서 포팅을 시도해보아야 할 것 같습니다.</content>
 </entry>
 <entry>
  <title type="html">reply by 피온이</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/307?expandComment=1#comment8676929"/>
  <author>
   <name>피온이</name>
  </author>
  <id>http://www.rkttu.com/307?expandComment=1#comment8676929</id>
  <updated>2010-03-04T15:11:23+09:00</updated>
  <published>2010-03-04T15:11:23+09:00</published>
  <content type="html">안녕하세요~ 남정현님께서 올리신 글을 보고, 저도 IKVMC를 이용해 Dll로 만드는 것까지 성공을 하였는데요..&#13;
&#13;
그래서 닷넷(C#)으로 테스트 중 영어의 경우 잘 되는데.. &#13;
한글만 넣으면 try + catch문으로 잡아도 ex.source만 나오고&#13;
메세지가 나오질 않아 디버깅 하기가 힘드네요. &#13;
사전때문에 그런 것 같기도 하고.. &#13;
&#13;
            int i = 0;&#13;
            KoreanAnalyzer analyzer = new KoreanAnalyzer();&#13;
&#13;
            TokenStream stream = analyzer.tokenStream(&amp;quot;k&amp;quot;, new StringReader(textBox1.Text));&#13;
&#13;
            Token t;&#13;
&#13;
            textBox2.Text = stream.toString();&#13;
&#13;
            try&#13;
            {&#13;
                while ((t = stream.next()) != null &amp;amp;&amp;amp; i &amp;lt; 1000)&#13;
                {&#13;
                    textBox2.Text += t.termText() + &amp;quot;\r\n&amp;quot;;&#13;
                    i++;&#13;
                }&#13;
            }&#13;
            catch (Exception ex)&#13;
            {&#13;
                textBox2.Text += &amp;quot;[&amp;quot; + i.ToString() + &amp;quot;]&amp;quot; + ex.Source + &amp;quot;\r\n&amp;quot;;&#13;
                textBox2.Text += ex.Message;&#13;
            }&#13;
&#13;
위 소스를 보시고, 시간 되실때 고려해야 될 사항이 있으면 가르쳐 주시면 고맙겠습니다.. 귀찮게 해 드려 죄송합니다.</content>
 </entry>
 <entry>
  <title type="html">reply by 남정현</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/351?expandComment=1#comment8624237"/>
  <thr:in-reply-to ref="http://www.rkttu.com/351?expandComment=1#comment8624079" type="application/xhtml+xml" href="http://www.rkttu.com/351?expandComment=1#comment8624079"/>
  <author>
   <name>남정현</name>
  </author>
  <id>http://www.rkttu.com/351?expandComment=1#comment8624237</id>
  <updated>2010-02-28T12:44:18+09:00</updated>
  <published>2010-02-28T12:44:18+09:00</published>
  <content type="html">세미나에 참석해주셔서 감사합니다. 궁금하신 점은 언제든지 블로그나 메일을 통하여 문의하여 주십시오. :-)</content>
 </entry>
 <entry>
  <title type="html">reply by PiPS</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/351?expandComment=1#comment8624079"/>
  <author>
   <name>PiPS</name>
  </author>
  <id>http://www.rkttu.com/351?expandComment=1#comment8624079</id>
  <updated>2010-02-28T11:20:04+09:00</updated>
  <published>2010-02-28T11:20:04+09:00</published>
  <content type="html">어제 세미나 잘 보았습니다 :)</content>
 </entry>
 <entry>
  <title type="html">reply by UMC 와 함께하는 .NET 플랫폼 이야기</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/351?expandComment=1#comment8383592"/>
  <author>
   <name>UMC 와 함께하는 .NET 플랫폼 이야기</name>
  </author>
  <id>http://www.rkttu.com/351?expandComment=1#comment8383592</id>
  <updated>2010-02-18T20:21:48+09:00</updated>
  <published>2010-02-18T20:21:48+09:00</published>
  <content type="html">Microsoft C# MVP 인 남정현님이 Devpia 에서 주최하는 Windows Azure 관련 세미나를 진행합니다. C# 이나 .NET 에 능통하신 분이니, Azure 뿐만 아니라 여러 가지 좋은 경험과 지식 얻어 가세요... 원문 : http://www.rkttu.com/351 참가 신청은 http://www.devpia.com/Maeul/Contents/Detail.aspx?BoardID=216&amp;amp;MAEULNo=8&amp;amp;no=1231&amp;amp;ref=12..</content>
 </entry>
 <entry>
  <title type="html">reply by PHP, Javascript, MySQL, PostgreSQL, Python, JAVA, Apache</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/351?expandComment=1#comment8376159"/>
  <author>
   <name>PHP, Javascript, MySQL, PostgreSQL, Python, JAVA, Apache</name>
  </author>
  <id>http://www.rkttu.com/351?expandComment=1#comment8376159</id>
  <updated>2010-02-16T14:40:17+09:00</updated>
  <published>2010-02-16T14:40:17+09:00</published>
  <content type="html">idna_convert.class.php 위 파일을 다운로드 한후 아래코드 삽입후 실행 function getPunyCode($url) { require_once('idna_convert.class.php'); $IDN = new idna_convert(); $encoded = $IDN-&amp;gt;encode(iconv('euc-kr', 'utf-8', $url[0])); return $encoded; } $pattern = '|http\:\/\/[a-zA-..</content>
 </entry>
 <entry>
  <title type="html">reply by DG Group - 빈곤블로거 : TendoZinZzA&amp;#039;s Story - 밴쿠버 올림픽 축전 ::: 설 잘 보내십시</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/349?expandComment=1#comment8376038"/>
  <author>
   <name>DG Group - 빈곤블로거 : TendoZinZzA&amp;#039;s Story - 밴쿠버 올림픽 축전 ::: 설 잘 보내십시</name>
  </author>
  <id>http://www.rkttu.com/349?expandComment=1#comment8376038</id>
  <updated>2010-02-16T13:00:11+09:00</updated>
  <published>2010-02-16T13:00:11+09:00</published>
  <content type="html">오늘 드디어 Windows Phone 7이 출시되었습니다. | 승리의 Windows Phone? 이제 MS는 7 실패하면 망하는게다. 약간의 유출로 열기가 좀 시들해졌기는 했지만 말이죠. 작년에 출시한 준 HD Ui를 탑재하였습니다. (준 HD는 그리 성공적이지는 않았습니다.) 그리고, 써드파티와 OEM의 UI 적용을 전면 금지시켜, 윈폰7에서 삼성의 햅틱 UI, 옴니아 UI를 볼 수 없게 되었습니다. 윈도우폰7 UI는 아이폰 UI와는 정반대의 위치..</content>
 </entry>
 <entry>
  <title type="html">reply by PiPS</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/345?expandComment=1#comment8375578"/>
  <thr:in-reply-to ref="http://www.rkttu.com/345?expandComment=1#comment8374785" type="application/xhtml+xml" href="http://www.rkttu.com/345?expandComment=1#comment8374785"/>
  <author>
   <name>PiPS</name>
  </author>
  <id>http://www.rkttu.com/345?expandComment=1#comment8375578</id>
  <updated>2010-02-16T10:57:05+09:00</updated>
  <published>2010-02-16T10:57:05+09:00</published>
  <content type="html">그렇군요..</content>
 </entry>
 <entry>
  <title type="html">reply by 남정현</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/345?expandComment=1#comment8375507"/>
  <thr:in-reply-to ref="http://www.rkttu.com/345?expandComment=1#comment8374785" type="application/xhtml+xml" href="http://www.rkttu.com/345?expandComment=1#comment8374785"/>
  <author>
   <name>남정현</name>
  </author>
  <id>http://www.rkttu.com/345?expandComment=1#comment8375507</id>
  <updated>2010-02-16T09:46:39+09:00</updated>
  <published>2010-02-16T09:46:39+09:00</published>
  <content type="html">클라우드 어플리케이션은 웹 어플리케이션과 구분됩니다. 웹 어플리케이션의 유형에 따라 차이가 있겠지만, 대개 HTTP 통신을 기준으로 하며, DHTML/AJAX를 주 표현 수단으로 삼는 경우가 많습니다.&#13;
&#13;
하지만 클라우드 어플리케이션은 클라우드 컴퓨팅 서비스가 제공하는 컴퓨팅 파워 (서버 자원, 네트워크 자원 등)를 활용하여 다양한 서비스 (소켓 통신부터 시작하여 웹 서비스, 고성능을 요구로 하는 과학 연산 등)를 개발할 수 있고, 프로그래밍 언어의 선택도 자유롭습니다. (윈도 애져의 경우, C# 뿐만 아니라 PHP, 루비, 자바도 지원합니다.)</content>
 </entry>
 <entry>
  <title type="html">reply by PiPS</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/345?expandComment=1#comment8374785"/>
  <author>
   <name>PiPS</name>
  </author>
  <id>http://www.rkttu.com/345?expandComment=1#comment8374785</id>
  <updated>2010-02-15T22:40:42+09:00</updated>
  <published>2010-02-15T22:40:42+09:00</published>
  <content type="html">클라우드 어플리케이션이.. 웹 기반 어플리케이션인가요..?</content>
 </entry>
 <entry>
  <title type="html">reply by 남정현</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/352?expandComment=1#comment8374360"/>
  <thr:in-reply-to ref="http://www.rkttu.com/352?expandComment=1#comment8374082" type="application/xhtml+xml" href="http://www.rkttu.com/352?expandComment=1#comment8374082"/>
  <author>
   <name>남정현</name>
  </author>
  <id>http://www.rkttu.com/352?expandComment=1#comment8374360</id>
  <updated>2010-02-15T15:30:10+09:00</updated>
  <published>2010-02-15T15:30:10+09:00</published>
  <content type="html">직접 인쇄하거나, PDF를 볼 수 있는 휴대용 장치에 넣어서 세미나 당일 같이 가져오면 편리하지 않을까 싶습니다. :-)</content>
 </entry>
 <entry>
  <title type="html">reply by PiPS</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/352?expandComment=1#comment8374082"/>
  <author>
   <name>PiPS</name>
  </author>
  <id>http://www.rkttu.com/352?expandComment=1#comment8374082</id>
  <updated>2010-02-15T12:49:45+09:00</updated>
  <published>2010-02-15T12:49:45+09:00</published>
  <content type="html">이거 가지고 가야되나요?</content>
 </entry>
 <entry>
  <title type="html">reply by 남정현</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/350?expandComment=1#comment8373600"/>
  <thr:in-reply-to ref="http://www.rkttu.com/350?expandComment=1#comment8338072" type="application/xhtml+xml" href="http://www.rkttu.com/350?expandComment=1#comment8338072"/>
  <author>
   <name>남정현</name>
  </author>
  <id>http://www.rkttu.com/350?expandComment=1#comment8373600</id>
  <updated>2010-02-15T01:03:57+09:00</updated>
  <published>2010-02-15T01:03:57+09:00</published>
  <content type="html">2월 27일에 뵙겠습니다. 감사합니다. :-)</content>
 </entry>
 <entry>
  <title type="html">reply by PiPS</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/350?expandComment=1#comment8373354"/>
  <thr:in-reply-to ref="http://www.rkttu.com/350?expandComment=1#comment8338072" type="application/xhtml+xml" href="http://www.rkttu.com/350?expandComment=1#comment8338072"/>
  <author>
   <name>PiPS</name>
  </author>
  <id>http://www.rkttu.com/350?expandComment=1#comment8373354</id>
  <updated>2010-02-14T19:43:20+09:00</updated>
  <published>2010-02-14T19:43:20+09:00</published>
  <content type="html">친구도 데려갈께요 ㅎ;;</content>
 </entry>
 <entry>
  <title type="html">reply by 남정현</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/350?expandComment=1#comment8373081"/>
  <thr:in-reply-to ref="http://www.rkttu.com/350?expandComment=1#comment8338072" type="application/xhtml+xml" href="http://www.rkttu.com/350?expandComment=1#comment8338072"/>
  <author>
   <name>남정현</name>
  </author>
  <id>http://www.rkttu.com/350?expandComment=1#comment8373081</id>
  <updated>2010-02-14T13:25:39+09:00</updated>
  <published>2010-02-14T13:25:39+09:00</published>
  <content type="html">세미나 참석에 연령 제한이 있거나 하지 않습니다. 궁금하게 보실 분이 계실지는 모르겠지만 걱정하실 필요는 없지 않을까요. :-)</content>
 </entry>
 <entry>
  <title type="html">reply by PiPS</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/350?expandComment=1#comment8372046"/>
  <thr:in-reply-to ref="http://www.rkttu.com/350?expandComment=1#comment8338072" type="application/xhtml+xml" href="http://www.rkttu.com/350?expandComment=1#comment8338072"/>
  <author>
   <name>PiPS</name>
  </author>
  <id>http://www.rkttu.com/350?expandComment=1#comment8372046</id>
  <updated>2010-02-13T20:02:25+09:00</updated>
  <published>2010-02-13T20:02:25+09:00</published>
  <content type="html">저같은 중학생이 가도 될까요 ㅠㅠ 다른분들 눈치 보일것 같은;;</content>
 </entry>
 <entry>
  <title type="html">reply by 남정현</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/350?expandComment=1#comment8370814"/>
  <thr:in-reply-to ref="http://www.rkttu.com/350?expandComment=1#comment8338072" type="application/xhtml+xml" href="http://www.rkttu.com/350?expandComment=1#comment8338072"/>
  <author>
   <name>남정현</name>
  </author>
  <id>http://www.rkttu.com/350?expandComment=1#comment8370814</id>
  <updated>2010-02-13T01:35:27+09:00</updated>
  <published>2010-02-13T01:35:27+09:00</published>
  <content type="html">Windows Azure에 대한 Overview와 함께 Demo 중심의 실전 사례를 살펴보는 세미나로 구성할 계획입니다. 그리고 개인적으로도 뵐 수 있는 기회가 있으면 좋을것 같으니 꼭 함께 해주세요 :-)</content>
 </entry>
 <entry>
  <title type="html">reply by PiPS</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/350?expandComment=1#comment8370264"/>
  <thr:in-reply-to ref="http://www.rkttu.com/350?expandComment=1#comment8338072" type="application/xhtml+xml" href="http://www.rkttu.com/350?expandComment=1#comment8338072"/>
  <author>
   <name>PiPS</name>
  </author>
  <id>http://www.rkttu.com/350?expandComment=1#comment8370264</id>
  <updated>2010-02-12T16:44:55+09:00</updated>
  <published>2010-02-12T16:44:55+09:00</published>
  <content type="html">저는 초보라서 가도 못알아들을텐데요 ㅠ</content>
 </entry>
 <entry>
  <title type="html">reply by 남정현</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/350?expandComment=1#comment8370258"/>
  <thr:in-reply-to ref="http://www.rkttu.com/350?expandComment=1#comment8338072" type="application/xhtml+xml" href="http://www.rkttu.com/350?expandComment=1#comment8338072"/>
  <author>
   <name>남정현</name>
  </author>
  <id>http://www.rkttu.com/350?expandComment=1#comment8370258</id>
  <updated>2010-02-12T16:38:47+09:00</updated>
  <published>2010-02-12T16:38:47+09:00</published>
  <content type="html">세미나는 2월 27일 토요일에 열립니다. 데브피아에서 꼭 신청하시고 와주시면 감사하겠습니다. 즐거운 설 연휴 되세요 :-)</content>
 </entry>
 <entry>
  <title type="html">reply by 남정현</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/349?expandComment=1#comment8370256"/>
  <thr:in-reply-to ref="http://www.rkttu.com/349?expandComment=1#comment8303408" type="application/xhtml+xml" href="http://www.rkttu.com/349?expandComment=1#comment8303408"/>
  <author>
   <name>남정현</name>
  </author>
  <id>http://www.rkttu.com/349?expandComment=1#comment8370256</id>
  <updated>2010-02-12T16:37:47+09:00</updated>
  <published>2010-02-12T16:37:47+09:00</published>
  <content type="html">클라우드 컴퓨팅에 관한 구체적인 정보가 혹시 더 필요하시다면 의견 주세요. :-)</content>
 </entry>
 <entry>
  <title type="html">reply by PiPS</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/350?expandComment=1#comment8338072"/>
  <author>
   <name>PiPS</name>
  </author>
  <id>http://www.rkttu.com/350?expandComment=1#comment8338072</id>
  <updated>2010-02-09T23:28:02+09:00</updated>
  <published>2010-02-09T23:28:02+09:00</published>
  <content type="html">데브피아에서 공지보고 알았어요~ 와.. 강의까지 하시는군요..</content>
 </entry>
 <entry>
  <title type="html">reply by 이정일</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/349?expandComment=1#comment8303408"/>
  <author>
   <name>이정일</name>
  </author>
  <id>http://www.rkttu.com/349?expandComment=1#comment8303408</id>
  <updated>2010-02-07T12:51:09+09:00</updated>
  <published>2010-02-07T12:51:09+09:00</published>
  <content type="html">반도 못알아먹겠다능...</content>
 </entry>
 <entry>
  <title type="html">reply by Exodus with Aaron</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/347?expandComment=1#comment8278393"/>
  <author>
   <name>Exodus with Aaron</name>
  </author>
  <id>http://www.rkttu.com/347?expandComment=1#comment8278393</id>
  <updated>2010-02-05T16:17:42+09:00</updated>
  <published>2010-02-05T16:17:42+09:00</published>
  <content type="html">신용카드사도 모르게 결제? 스마트폰 비상... 이데일리 최근들어 이런 식의 보도가 쏟아져 나오는 것을 보면서 스마트폰에도 뭔가를 심기 위한 사전작업 아닌가 계속 의심하게 됩니다. 솔직히 인터넷뱅킹이나 결제 한 번 하려면 들어가는 사이트마다 뭔가를 계속 설치라고 화면에 뜹니다. 때로는 깔다가 컴퓨터가 죽어서 몇번을 재부팅 해야 하는 경우도 있고, 최악의 경우 본인 컴퓨터로는 결국 그 사이트에는 못들어가게 되는 경우도 있습니다. 그럼에도 불구하고 그것이..</content>
 </entry>
 <entry>
  <title type="html">reply by Finebe</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/348?expandComment=1#comment8267756"/>
  <author>
   <name>Finebe</name>
  </author>
  <id>http://www.rkttu.com/348?expandComment=1#comment8267756</id>
  <updated>2010-02-04T11:50:56+09:00</updated>
  <published>2010-02-04T11:50:56+09:00</published>
  <content type="html">올해의 IT트렌드는 머가 될까라는 질문을 받는다면 전 망설임없이 &amp;quot;스마트폰&amp;quot;입니다. 아이폰이니 옴니아2니 안드로이드폰이니 아주 그냥 스마트폰들이 쓰나미처럼 쏟아지고 있습니다. 이에 스마트폰에 관심이 없던 일반들도 차츰 스마트폰에 빠져들고 있습니다(예: 스마트폰에 전혀전혀 관심없던 친구 내 폰 옴니아2를 보고 옴니아2 지르다...). 우리나라 핸드폰의 일반폰과 스마트폰 비율은 아직 9:1도 안되지만 차츰 그 간격은 좁아질 것은 당연지사입니다. 제가 지..</content>
 </entry>
 <entry>
  <title type="html">reply by 남정현</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/338?expandComment=1#comment8253601"/>
  <thr:in-reply-to ref="http://www.rkttu.com/338?expandComment=1#comment8248274" type="application/xhtml+xml" href="http://www.rkttu.com/338?expandComment=1#comment8248274"/>
  <author>
   <name>남정현</name>
  </author>
  <id>http://www.rkttu.com/338?expandComment=1#comment8253601</id>
  <updated>2010-02-03T00:52:13+09:00</updated>
  <published>2010-02-03T00:52:13+09:00</published>
  <content type="html">방문해 주셔서 감사합니다. :-)</content>
 </entry>
 <entry>
  <title type="html">reply by 윈컴이</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/338?expandComment=1#comment8248274"/>
  <author>
   <name>윈컴이</name>
  </author>
  <id>http://www.rkttu.com/338?expandComment=1#comment8248274</id>
  <updated>2010-02-02T22:36:16+09:00</updated>
  <published>2010-02-02T22:36:16+09:00</published>
  <content type="html">저도 재밌게 읽고 갑니다~</content>
 </entry>
 <entry>
  <title type="html">reply by 〓 Processor&amp;#039;s IT Blog 〓</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/347?expandComment=1#comment8246620"/>
  <author>
   <name>〓 Processor&amp;#039;s IT Blog 〓</name>
  </author>
  <id>http://www.rkttu.com/347?expandComment=1#comment8246620</id>
  <updated>2010-02-02T19:52:01+09:00</updated>
  <published>2010-02-02T19:52:01+09:00</published>
  <content type="html">모질라가 지난 주 노키아의 마에모를 위한 최초의 휴대폰용 파이어폭스 브라우저를 내놓았다고 씨넷이 보도했다. 보도에 따르면 이 브라우저는 페넥이란 이름의 코드명을 갖고 있었다. 마에모5플랫폼용 파이어폭스는 오페라모바일과 오페라 미니처럼 다른 모바일브라우저와 구별되는 재미있는 착상을 가지고 있다고 전했다. . 모질라는 서드파티를 갖고 있고 커스터마이징 가능한 브라우저라는 점에서 모바일시장에서 점유율 확대 가능성이 높을 것으로 기대되고 있다. 파이어폭스는..</content>
 </entry>
 <entry>
  <title type="html">reply by 남정현</title>
  <link rel="alternate" type="text/html" href="http://www.rkttu.com/347?expandComment=1#comment8238702"/>
  <thr:in-reply-to ref="http://www.rkttu.com/347?expandComment=1#comment8238683" type="application/xhtml+xml" href="http://www.rkttu.com/347?expandComment=1#comment8238683"/>
  <author>
   <name>남정현</name>
  </author>
  <id>http://www.rkttu.com/347?expandComment=1#comment8238702</id>
  <updated>2010-02-02T15:22:13+09:00</updated>
  <published>2010-02-02T15:22:13+09:00</published>
  <content type="html">Internet Explorer의 태생부터가 사실은 Windows에 맞춰진 것이 아닐까 합니다. Microsoft Plus! 95의 일부로 배포되기 시작했고, IE 4.0부터는 암묵적으로 Trident 엔진이 Windows 운영 체제의 일부로 자리잡기 시작했으니까요. IE 9.0의 이러한 행보 또한 그렇게 낯선 일은 아닌듯 합니다. ㅎㅎ</content>
 </entry>
</feed>
