<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>junyong's blog</title>
    <link>https://junyong.tistory.com/</link>
    <description>junyong.tistory.com</description>
    <language>ko</language>
    <pubDate>Tue, 9 Jun 2026 11:22:50 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>준용</managingEditor>
    <item>
      <title>Subclipse - STS or Eclipse SubVersion plug-in</title>
      <link>https://junyong.tistory.com/194</link>
      <description>Subclipse Install&lt;br /&gt;
1. &quot;Help - Install New Software...&quot; 메뉴 선택&lt;br /&gt;
2. &quot;Add...&quot; 버튼 클릭&lt;br /&gt;
3. Name 항목에 &quot;Subclipse&quot; 입력, Location 항목에 &lt;a title=&quot;[http://subclipse.tigris.org/servlets/ProjectProcess?pageID=p4wYuA]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;http://subclipse.tigris.org/servlets/ProjectProcess?pageID=p4wYuA&quot;&gt;Subclipse download project page&lt;/a&gt; 사이트에서 Eclipse update site Url을 입력한다.(현재 버전은 1.6.x이며 업데이트 주소는 http://subclipse.tigris.org/update_1.6.x 이다)&lt;br /&gt;
4. &quot;Select All&quot; 버튼 클릭 후,&amp;nbsp; &quot;Next &amp;gt; &quot; 클릭&lt;br /&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/1259934A4E65DCB210&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F1259934A4E65DCB210&quot; width=&quot;640&quot; height=&quot;570&quot; alt=&quot;&quot; filename=&quot;1.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;br /&gt;
5. Install 항목들 나오고 약관 동의 후 &quot;Finish&quot; 버튼 클릭시 Install 진행&lt;br /&gt;
6. Install 후 STS or Eclipse 재시작&lt;br /&gt;
&lt;br /&gt;</description>
      <category>java</category>
      <category>Eclispe</category>
      <category>Plugin</category>
      <category>STS</category>
      <category>Subclipse</category>
      <category>Subversion</category>
      <category>SVN</category>
      <author>준용</author>
      <guid isPermaLink="true">https://junyong.tistory.com/194</guid>
      <comments>https://junyong.tistory.com/194#entry194comment</comments>
      <pubDate>Tue, 6 Sep 2011 17:48:23 +0900</pubDate>
    </item>
    <item>
      <title>Mac OS X Subversion auto start</title>
      <link>https://junyong.tistory.com/193</link>
      <description>부팅시 Subversion을 자동으로 실행하기 위해서는 &lt;code&gt;launchd를 이용함&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;
&lt;div style=&quot;border-style: solid; border-width: 1px; border-color: rgb(193, 193, 193); background-color: rgb(238, 238, 238); padding: 10px;&quot; class=&quot;txc-textbox&quot;&gt;&amp;lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE plist PUBLIC &quot;-//Apple Computer//DTD PLIST 1.0//EN&quot; &quot;http://www.apple.com/DTDs/PropertyList-1.0.dtd&quot;&amp;gt;&lt;br /&gt;
&amp;lt;plist version=&quot;1.0&quot;&amp;gt;&lt;br /&gt;
&amp;lt;dict&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;key&amp;gt;Label&amp;lt;/key&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;string&amp;gt;org.tigris.Subversion&amp;lt;/string&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;key&amp;gt;ProgramArguments&amp;lt;/key&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;array&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;string&amp;gt;/usr/bin/svnserve&amp;lt;/string&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;string&amp;gt;--daemon&amp;lt;/string&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;string&amp;gt;--root&amp;lt;/string&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;string&amp;gt;/usr/local/svn&amp;lt;/string&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/array&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;key&amp;gt;RunAtLoad&amp;lt;/key&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;true/&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;key&amp;gt;ServiceDescription&amp;lt;/key&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;string&amp;gt;Subversion Server&amp;lt;/string&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;key&amp;gt;UserName&amp;lt;/key&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;string&amp;gt;root&amp;lt;/string&amp;gt;&lt;br /&gt;
&amp;lt;/dict&amp;gt;&lt;br /&gt;
&amp;lt;/plist&amp;gt;&lt;/div&gt;
위 내용으로 &lt;tt&gt;/Library/LaunchDaemons/org.tigris.subversion.plis&lt;/tt&gt;t 파일 생성(위 /usr/local/svn 경로는 실제 repository경로로 바꿀 것)&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;div style=&quot;border-style: solid; border-width: 1px; border-color: rgb(193, 193, 193); background-color: rgb(238, 238, 238); padding: 10px;&quot; class=&quot;txc-textbox&quot;&gt;#sudo vi &lt;tt&gt;/Library/LaunchDaemons/org.tigris.subversion.plis&lt;/tt&gt;t&lt;/div&gt;
파일 생성 후 plutil로 확인 OK나오면 다음 실행&lt;br /&gt;
&lt;br /&gt;&lt;div style=&quot;border-style: solid; border-width: 1px; border-color: rgb(193, 193, 193); background-color: rgb(238, 238, 238); padding: 10px;&quot; class=&quot;txc-textbox&quot;&gt;
#plutil org.tigris.subversion.plist&lt;br /&gt;
&lt;/div&gt;재부팅하면 자동으로 svnserve가 실행되며 아래 명령어로는 재부팅하지 않고 바로 svnserve를 실행할수 있음&lt;br /&gt;
&lt;br /&gt;등록 후 &lt;br /&gt;
&lt;div style=&quot;border-style: solid; border-width: 1px; border-color: rgb(193, 193, 193); background-color: rgb(238, 238, 238); padding: 10px;&quot; class=&quot;txc-textbox&quot;&gt;#sudo launchctl load /Library/LaunchDaemons/org.tifris.subversion.plist&lt;/div&gt;
확인 &lt;br /&gt;
&lt;div style=&quot;border-style: solid; border-width: 1px; border-color: rgb(193, 193, 193); background-color: rgb(238, 238, 238); padding: 10px;&quot; class=&quot;txc-textbox&quot;&gt;#sudo launchctl list&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;</description>
      <category>mac</category>
      <category>launchd</category>
      <category>Mac</category>
      <category>Mac OS X</category>
      <category>Subversion</category>
      <category>SVN</category>
      <category>맥</category>
      <author>준용</author>
      <guid isPermaLink="true">https://junyong.tistory.com/193</guid>
      <comments>https://junyong.tistory.com/193#entry193comment</comments>
      <pubDate>Thu, 1 Sep 2011 17:00:03 +0900</pubDate>
    </item>
    <item>
      <title>Mac OS X Subversion setting</title>
      <link>https://junyong.tistory.com/192</link>
      <description>Terminal 실행&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;border-style: solid; border-width: 1px; border-color: rgb(193, 193, 193); background-color: rgb(238, 238, 238); padding: 10px;&quot; class=&quot;txc-textbox&quot;&gt;
#mkdir svn&lt;br /&gt;
#cd svn&lt;br /&gt;
#svnadmin create --fs-type fsfs work&lt;br /&gt;
#svnserve -d -r svn&lt;/div&gt;
적당한 곳에 디렉토리(svn) 만든 후 프로젝트 폴더(work) 생성 후 svn실행&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;border-style: solid; border-width: 1px; border-color: rgb(193, 193, 193); background-color: rgb(238, 238, 238); padding: 10px;&quot; class=&quot;txc-textbox&quot;&gt;
#ps -ef | grep svnserve&lt;/div&gt;
프로세스 확인 &lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;border-style: solid; border-width: 1px; border-color: rgb(193, 193, 193); background-color: rgb(238, 238, 238); padding: 10px;&quot; class=&quot;txc-textbox&quot;&gt;
#svn checkout svn://localhost/work&lt;/div&gt;
테스트 checkout&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;border-style: solid; border-width: 1px; border-color: rgb(193, 193, 193); background-color: rgb(238, 238, 238); padding: 10px;&quot; class=&quot;txc-textbox&quot;&gt;
#cd svn/work/conf&lt;br /&gt;
&lt;/div&gt;
conf폴더 접근 후 설정 변경&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;border-style: solid; border-width: 1px; border-color: rgb(193, 193, 193); background-color: rgb(238, 238, 238); padding: 10px;&quot; class=&quot;txc-textbox&quot;&gt;
#vi svnserve.conf&lt;br /&gt;
[general]&lt;br /&gt;
anon-access = read&lt;br /&gt;
auth-access = write&lt;br /&gt;
password-db = passwd&lt;br /&gt;
authz-db = authz&lt;br /&gt;
realm = My First Repository&lt;br /&gt;
&lt;/div&gt;
접근권한관련 conf파일 &lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;border-style: solid; border-width: 1px; border-color: rgb(193, 193, 193); background-color: rgb(238, 238, 238); padding: 10px;&quot; class=&quot;txc-textbox&quot;&gt;
#vi passwd&lt;br /&gt;
[users]&lt;br /&gt;
admin = admin&lt;/div&gt;
접근 가능 사용자 생성 (user = password)&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;border-style: solid; border-width: 1px; border-color: rgb(193, 193, 193); background-color: rgb(238, 238, 238); padding: 10px;&quot; class=&quot;txc-textbox&quot;&gt;
#vi authz&lt;br /&gt;
[/]&lt;br /&gt;
admin = rw&lt;/div&gt;
사용자별 접근 디렉토리 설정&lt;br /&gt;
&lt;br /&gt;</description>
      <category>mac</category>
      <category>Mac</category>
      <category>Mac OS X</category>
      <category>Subversion</category>
      <category>SVN</category>
      <category>맥</category>
      <author>준용</author>
      <guid isPermaLink="true">https://junyong.tistory.com/192</guid>
      <comments>https://junyong.tistory.com/192#entry192comment</comments>
      <pubDate>Mon, 29 Aug 2011 23:48:25 +0900</pubDate>
    </item>
    <item>
      <title>MacBook Pro Info</title>
      <link>https://junyong.tistory.com/191</link>
      <description>&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/207AFE524E4C82D10B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F207AFE524E4C82D10B&quot; width=&quot;321&quot; height=&quot;393&quot; alt=&quot;&quot; filename=&quot;스크린샷 2011-08-13 오후 4.17.21.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/117AFE524E4C82D10C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F117AFE524E4C82D10C&quot; width=&quot;294&quot; height=&quot;174&quot; alt=&quot;&quot; filename=&quot;스크린샷 2011-08-13 오후 8.52.06.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/127AFE524E4C82D10D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F127AFE524E4C82D10D&quot; width=&quot;640&quot; height=&quot;417&quot; alt=&quot;&quot; filename=&quot;스크린샷 2011-08-17 오후 2.14.49.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/155BA83A4E4DC29D27&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F155BA83A4E4DC29D27&quot; width=&quot;640&quot; height=&quot;362&quot; alt=&quot;&quot; filename=&quot;P1000476.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;p style=&quot;margin:0&quot;&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/165BA83A4E4DC29D28&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F165BA83A4E4DC29D28&quot; width=&quot;640&quot; height=&quot;362&quot; alt=&quot;&quot; filename=&quot;P1000477.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;/p&gt;
&lt;br /&gt;</description>
      <category>mac</category>
      <category>info</category>
      <category>Mac</category>
      <category>맥북프로</category>
      <author>준용</author>
      <guid isPermaLink="true">https://junyong.tistory.com/191</guid>
      <comments>https://junyong.tistory.com/191#entry191comment</comments>
      <pubDate>Thu, 18 Aug 2011 12:11:58 +0900</pubDate>
    </item>
    <item>
      <title>MacBook Pro 15-inch(MC371KH/A) RAM 6GB Upgrade !</title>
      <link>https://junyong.tistory.com/189</link>
      <description>작년 4월에 구입한 맥북프로!&lt;br /&gt;
&lt;br /&gt;기본램이 4기가인데 가상머신을 쓸때 약간의 램압박으로 램업그레이드 실시&lt;br /&gt;
&lt;br /&gt;4기가 2개를 꼽아 8기가로 업그레이드 하려고 했지만, 일단은 4기가 램 하나만 교체해서 6기가로 업그레이드 결정&lt;br /&gt;
(기본은 램 2기가 2개로 4기가이고 램슬롯은 2개이며 8기가까지 지원함)&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/2057E9374D78723F24&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F2057E9374D78723F24&quot; width=&quot;600&quot; height=&quot;338&quot; alt=&quot;&quot; filename=&quot;P1000238.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;br /&gt;
교체할 램으로 삼성전자 노트북 DDR3 4G PC3-10600 클럭은 1.333GHz&lt;br /&gt;
맥북프로에서 사용하는 램은 클럭이 1.067GHz이지만 2010년 맥북프로부터는 상위클럭의 &lt;br /&gt;
램을 꼽아도 문제없이 사용할 수 있다고 함(가격도 더 저렴함)&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/1157E9374D78723F25&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F1157E9374D78723F25&quot; width=&quot;600&quot; height=&quot;338&quot; alt=&quot;&quot; filename=&quot;P1000239.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;br /&gt;
나사를 풀고 하판 제거&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/14632B4E4D78758F2B&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F14632B4E4D78758F2B&quot; width=&quot;600&quot; height=&quot;338&quot; alt=&quot;&quot; filename=&quot;P1000241.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;br /&gt;
가운데 램이 위치&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/14632B4E4D7875902C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F14632B4E4D7875902C&quot; width=&quot;600&quot; height=&quot;338&quot; alt=&quot;&quot; filename=&quot;P1000244.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;br /&gt;
램은 겹쳐서 꽂혀 있고 하나를 제거&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/15632B4E4D7875902D&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F15632B4E4D7875902D&quot; width=&quot;600&quot; height=&quot;338&quot; alt=&quot;&quot; filename=&quot;P1000245.jpg&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;br /&gt;
새로운 램으로 교체 끝&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/1457E9374D78724029&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F1457E9374D78724029&quot; width=&quot;321&quot; height=&quot;393&quot; alt=&quot;&quot; filename=&quot;스크린샷 2011-01-19 오후 12.12.08.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;br /&gt;
6기가로 정상적으로 인식 완료&lt;br /&gt;
&lt;br /&gt;램을 업그레이드 한건 1월초이고 현재 3월인데 2달가량 써보니 엄청난 성능향상은 없었지만&lt;br /&gt;
확실히 가상머신을 실행시키고도 램에 여유가 있었고 xcode에 sts까지도 나름 괜찮았다~&lt;br /&gt;
곧 8기가로 업그레이드를 해야 할듯싶다.&lt;br /&gt;
&lt;br /&gt;</description>
      <category>mac</category>
      <category>6기가</category>
      <category>Mac</category>
      <category>램업그레이드</category>
      <category>맥북프로</category>
      <author>준용</author>
      <guid isPermaLink="true">https://junyong.tistory.com/189</guid>
      <comments>https://junyong.tistory.com/189#entry189comment</comments>
      <pubDate>Thu, 10 Mar 2011 16:00:44 +0900</pubDate>
    </item>
    <item>
      <title>UserAgentString.com</title>
      <link>https://junyong.tistory.com/170</link>
      <description>&lt;br /&gt;
브라우져의 UserAgent를 알 수 있는 &lt;a title=&quot;[http://useragentstring.com]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;http://useragentstring.com&quot;&gt;UserAgentString.com&lt;/a&gt; &lt;br /&gt;
&lt;br /&gt;브라우져로 접속하면 아래와 같이 현재 브라우져의 UserAgent를 표시해준다&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/16222F494D786AF804&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F16222F494D786AF804&quot; width=&quot;640&quot; height=&quot;593&quot; alt=&quot;&quot; filename=&quot;스크린샷 2011-03-10 오후 3.08.32.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;a title=&quot;[http://useragentstring.com/pages/useragentstring.php]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;http://useragentstring.com/pages/useragentstring.php&quot;&gt;List of User Agent Strings&lt;/a&gt;메뉴는 모든 UserAgent를 알 수 있다.&lt;br /&gt;
&lt;br /&gt;Link : &lt;a title=&quot;[http://useragentstring.com]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;http://useragentstring.com&quot;&gt;http://useragentstring.com&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <category>script</category>
      <category>LinK</category>
      <category>useragent</category>
      <author>준용</author>
      <guid isPermaLink="true">https://junyong.tistory.com/170</guid>
      <comments>https://junyong.tistory.com/170#entry170comment</comments>
      <pubDate>Thu, 10 Mar 2011 15:11:59 +0900</pubDate>
    </item>
    <item>
      <title>Mac OS X uTorrent ipfilter.data 경로</title>
      <link>https://junyong.tistory.com/188</link>
      <description>~/Library/Application Support/uTorrent &lt;br /&gt;
&lt;br /&gt;맥(Mac) uTorrent ipfilter.dat 파일이 있는 경로는 위와 같고(~는 홈디렉토리)&lt;br /&gt;
&lt;br /&gt;최신 ipfilter.dat파일 다운 받을 수 있는 사이트는 &lt;a title=&quot;[http://www.emule-mods.de/?mods=ipfilter]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;http://www.emule-mods.de/?mods=ipfilter&quot;&gt;이곳&lt;/a&gt;..&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;</description>
      <category>mac</category>
      <category>ipfilter.dat</category>
      <category>Mac OS X</category>
      <category>uTorrent</category>
      <category>맥</category>
      <category>맥북프로</category>
      <author>준용</author>
      <guid isPermaLink="true">https://junyong.tistory.com/188</guid>
      <comments>https://junyong.tistory.com/188#entry188comment</comments>
      <pubDate>Tue, 15 Feb 2011 16:24:44 +0900</pubDate>
    </item>
    <item>
      <title>Boot Camp 1.4 Download Link</title>
      <link>https://junyong.tistory.com/187</link>
      <description>&lt;a title=&quot;[http://junyong.pe.kr/18]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;http://junyong.tistory.com/18&quot;&gt;이전글&lt;/a&gt;에서 부트캠프(Boot Camp) 1.4 파일을 필요로 하는 분들에게 메일로 보내기 운동(?)을 했는데&lt;br /&gt;
&lt;br /&gt;
은근히 필요로 하시는 분들이 놀라웠고.. 얼마전까지도 요청을 하시는 분들이 있어서 &lt;br /&gt;
&lt;br /&gt;
요즘 대세인 cloud환경에 업로드를 해서 파일공유를 하는게 편할듯해서 &lt;a title=&quot;[http://www.ucloud.com/main.kt]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;http://www.ucloud.com/main.kt&quot;&gt;ucloud&lt;/a&gt;에 올린 링크를 공유합니다~&lt;br /&gt;
&lt;br /&gt;
&lt;a style=&quot;text-decoration: line-through;&quot; title=&quot;[https://files.ucloud.com/pf/D74464_014481_62554]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;https://files.ucloud.com/pf/D74464_014481_62554&quot;&gt;https://files.ucloud.com/pf/D74464_014481_62554&lt;/a&gt;&lt;br /&gt;
&lt;a style=&quot;text-decoration: line-through;&quot; title=&quot;[https://files.ucloud.com/pf/D74464_014481_64576]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;https://files.ucloud.com/pf/D74464_014481_64576&quot;&gt;https://files.ucloud.com/pf/D74464_014481_64576&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
링크 클릭시 자동으로 다운로드 됩니다~!&lt;br /&gt;
&lt;br /&gt;
ps. 위 링크를 다른곳에 게시하는건 자제 부탁드립니다.&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;border: 0pt none; height: 15px; background: url(&amp;quot;http://deco.daum-img.net/contents/horizontalrule/line06.gif?rv=1.0.1&amp;quot;) repeat-x scroll left center transparent; width: 99%;&quot;&gt;
&lt;hr style=&quot;position: relative; top: -999px; left: -999px; border: 0pt none;&quot;&gt;&lt;/div&gt;
&lt;br /&gt;ucloud는 파일다운로드수 제한이 있어서 그만 올려야겠네요..&lt;br /&gt;
다운로드는 밑에 링크로 해주세요..&lt;br /&gt;
&lt;a title=&quot;[http://www.4shared.com/file/z_-CKMyG/BootCamp14.html]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;http://www.4shared.com/file/z_-CKMyG/BootCamp14.html&quot;&gt;http://www.4shared.com/file/z_-CKMyG/BootCamp14.html&lt;/a&gt;&lt;br /&gt;</description>
      <category>mac</category>
      <category>bootcamp</category>
      <category>Mac</category>
      <category>ucloud</category>
      <category>부트캠프</category>
      <author>준용</author>
      <guid isPermaLink="true">https://junyong.tistory.com/187</guid>
      <comments>https://junyong.tistory.com/187#entry187comment</comments>
      <pubDate>Fri, 7 Jan 2011 12:11:22 +0900</pubDate>
    </item>
    <item>
      <title>[Link] IP(아이피) 주소를 확인하는 가장 쉬운 사이트!</title>
      <link>https://junyong.tistory.com/186</link>
      <description>&lt;br /&gt;
피시의 아이피를 쉽게 확인할 수 있는 국내사이트&lt;br /&gt;
해외 사이트는 여러군데 있는데 국내사이트라 추천&lt;br /&gt;
&lt;br /&gt;&lt;a title=&quot;[http://www.findip.kr/myip/]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;http://www.findip.kr/myip/&quot;&gt;간단버전&lt;/a&gt;과 &lt;a title=&quot;[http://www.findip.kr/myip.php]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;http://www.findip.kr/myip.php&quot;&gt;더 가벼운 화면&lt;/a&gt;도 제공하며 &lt;a title=&quot;[http://www.findip.kr/m/]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;http://www.findip.kr/m/&quot;&gt;모바일버전&lt;/a&gt;도 있다~&lt;br /&gt;
&lt;br /&gt;Link : &lt;a title=&quot;[http://www.findip.kr/]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;http://www.findip.kr/&quot;&gt;http://www.findip.kr/&lt;/a&gt;&lt;br /&gt;</description>
      <category>etc</category>
      <category>findip</category>
      <category>ip</category>
      <category>아이피주소</category>
      <category>아이피확인</category>
      <author>준용</author>
      <guid isPermaLink="true">https://junyong.tistory.com/186</guid>
      <comments>https://junyong.tistory.com/186#entry186comment</comments>
      <pubDate>Sun, 28 Nov 2010 20:39:02 +0900</pubDate>
    </item>
    <item>
      <title>[Link] Mac 원격제어 프로그램 Remote Desktop Connection Client for Mac 2</title>
      <link>https://junyong.tistory.com/185</link>
      <description>맥에서 윈도우 원격제어를 할 수 있는 클라이언트 프로그램&lt;br /&gt;
&lt;br /&gt;
Link : &lt;a href=&quot;http://www.microsoft.com/mac/products/remote-desktop/default.mspx&quot;&gt;http://www.microsoft.com/mac/products/remote-desktop/default.mspx&lt;/a&gt;&lt;br /&gt;</description>
      <category>mac</category>
      <category>LinK</category>
      <category>Mac</category>
      <category>Remote</category>
      <category>Remote Desktop</category>
      <category>맥북 프로</category>
      <category>원격제어</category>
      <author>준용</author>
      <guid isPermaLink="true">https://junyong.tistory.com/185</guid>
      <comments>https://junyong.tistory.com/185#entry185comment</comments>
      <pubDate>Wed, 3 Nov 2010 14:39:00 +0900</pubDate>
    </item>
    <item>
      <title>[Link] Mac 메모리 관리 프로그램 - Libera Memory</title>
      <link>https://junyong.tistory.com/180</link>
      <description>프로그램들을 실행한 후 반환안되는 메모리를 돌려주는 프로그램&lt;br /&gt;
&lt;br /&gt;밑에 링크들어간 후 Libera Memory부분에서 download링크 클릭&lt;br /&gt;
&lt;br /&gt;Link : &lt;a href=&quot;http://tama-san.com/?page_id=2&quot;&gt;http://tama-san.com/?page_id=2&lt;/a&gt;</description>
      <category>mac</category>
      <category>Libera Memory</category>
      <category>LinK</category>
      <category>Mac</category>
      <category>맥북 프로</category>
      <category>메모리관리</category>
      <author>준용</author>
      <guid isPermaLink="true">https://junyong.tistory.com/180</guid>
      <comments>https://junyong.tistory.com/180#entry180comment</comments>
      <pubDate>Mon, 25 Oct 2010 14:37:33 +0900</pubDate>
    </item>
    <item>
      <title>익스플로러에서 window.open() 팝업 창의 width가 250 이하로 조정이 안될때</title>
      <link>https://junyong.tistory.com/184</link>
      <description>익스플로러(ie)8에서 &lt;a title=&quot;[https://developer.mozilla.org/en/DOM/window.open]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;https://developer.mozilla.org/en/DOM/window.open&quot;&gt;window.open()&lt;/a&gt; 팝업 창을 띄우면서 width값을 200으로 했는데&lt;br /&gt;
팝업 사이즈가 250이하로는 조정이 안되는것이었다.&lt;br /&gt;
&lt;br /&gt;찾아보니 ie7에서 부터 팝업 최소 사이즈를 height=150px, width=250px으로 제한한것이였다.&lt;br /&gt;
대체..왜..이유가 뭘까..&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/131BD60C4CA3DEA55C&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F131BD60C4CA3DEA55C&quot; width=&quot;566&quot; height=&quot;97&quot; alt=&quot;&quot; filename=&quot;1.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;참고링크 : &lt;a title=&quot;[http://www.microsoft.com/korea/windows/ie/ie7/technology/faq/default.mspx]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;http://www.microsoft.com/korea/windows/ie/ie7/technology/faq/default.mspx&quot;&gt;http://www.microsoft.com/korea/windows/ie/ie7/technology/faq/default.mspx&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;</description>
      <category>script</category>
      <category>JavaScript</category>
      <category>window.open()</category>
      <category>팝업사이즈</category>
      <author>준용</author>
      <guid isPermaLink="true">https://junyong.tistory.com/184</guid>
      <comments>https://junyong.tistory.com/184#entry184comment</comments>
      <pubDate>Thu, 30 Sep 2010 09:50:54 +0900</pubDate>
    </item>
    <item>
      <title>[Link] 앱스토어 리뷰가이드 라인(번역)</title>
      <link>https://junyong.tistory.com/183</link>
      <description>&lt;br /&gt;
애플 앱스토어의 리뷰가이드 라인 번역본 링크&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
Link - &lt;a title=&quot;[http://www.appsnext.com/bbs/reviewguide.php]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;http://www.appsnext.com/bbs/reviewguide.php&quot;&gt;http://www.appsnext.com/bbs/reviewguide.php&lt;/a&gt;&lt;br /&gt;</description>
      <category>mac/iPhone</category>
      <category>ios</category>
      <category>LinK</category>
      <category>리뷰</category>
      <category>리젝</category>
      <category>앱스토어</category>
      <author>준용</author>
      <guid isPermaLink="true">https://junyong.tistory.com/183</guid>
      <comments>https://junyong.tistory.com/183#entry183comment</comments>
      <pubDate>Sat, 25 Sep 2010 15:39:40 +0900</pubDate>
    </item>
    <item>
      <title>[Link] Google Maps Plugin for jQuery</title>
      <link>https://junyong.tistory.com/163</link>
      <description>구글맵을 편하게 사용하기 위한 jQuery플러그인 사이트&lt;br /&gt;
&lt;br /&gt;예제와 문서가 깔끔하게 정리&lt;br /&gt;
&lt;br /&gt;Link : &lt;a title=&quot;[http://gmap.nurtext.de/index.html]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;http://gmap.nurtext.de/index.html&quot;&gt;http://gmap.nurtext.de/index.html&lt;/a&gt;&lt;br /&gt;</description>
      <category>script</category>
      <category>Google Maps</category>
      <category>JavaScript</category>
      <category>jQuery</category>
      <category>LinK</category>
      <category>Plugin</category>
      <author>준용</author>
      <guid isPermaLink="true">https://junyong.tistory.com/163</guid>
      <comments>https://junyong.tistory.com/163#entry163comment</comments>
      <pubDate>Mon, 20 Sep 2010 13:36:00 +0900</pubDate>
    </item>
    <item>
      <title>아이폰 이어폰 리퍼 후기</title>
      <link>https://junyong.tistory.com/182</link>
      <description>&lt;a title=&quot;[http://junyong.pe.kr/147]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;http://junyong.tistory.com/147&quot;&gt;아이폰3gs를 구입&lt;/a&gt; 후 대략 8개월정도 잘 쓰고 있는데&lt;br /&gt;
기본으로 들어있는 이어폰의 볼륨버튼과 마이크가 고장이 나버린 상황&lt;br /&gt;
새로 사야 하는건가 하다가 검색을 해보니 이어폰도 리퍼가 가능하다고 하여 &lt;br /&gt;
강북 kt플라자로 향했다.&lt;br /&gt;
&lt;br /&gt;
이어폰 리퍼에 대해 인터넷검색을 했을때는 무료로 리퍼를 해준다고 하여 &lt;br /&gt;
방문해서 새로 교환을 받으면 되겠구나 하고 서비스시간인 9시에 맞춰서 방문&lt;br /&gt;
&lt;br /&gt;
대기표를 끊고 상담원에게 이어폰을 주면서 이상증세를 말했더니&lt;br /&gt;
고장이 났다고 하면서 이어폰을 살펴보더니 외관상으로 파손이 됐다면서 &lt;br /&gt;
유상리퍼판정..34,100원 !&lt;br /&gt;
&lt;br /&gt;
8개월가량 이어폰을 쓰면서 이어폰단자쪽 고무가 벗겨지고&lt;br /&gt;
이어폰소리나오는쪽 회색고무가 벗겨져서 무상리퍼가 힘들다고 한다.(사진을 남겼어야 하는데;)&lt;br /&gt;
상담원이 무상리퍼를 하려면 외관상으로 깨끗해야 한다고 해서 &lt;br /&gt;
새로사는셈치고 유상리퍼로 새 이어폰 받아왔고 &lt;br /&gt;
리퍼비용은 핸드폰요금에 합산하여 나온다고 함&lt;br /&gt;
&lt;br /&gt;
슬픈 이어폰 리퍼 후기 끝..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description>
      <category>life</category>
      <category>KT플라자</category>
      <category>리퍼</category>
      <category>아이폰</category>
      <category>애플</category>
      <category>이어폰 리퍼</category>
      <author>준용</author>
      <guid isPermaLink="true">https://junyong.tistory.com/182</guid>
      <comments>https://junyong.tistory.com/182#entry182comment</comments>
      <pubDate>Fri, 13 Aug 2010 16:24:17 +0900</pubDate>
    </item>
    <item>
      <title>Mac 프로그램을 깨끗이 삭제해주는 AppCleaner</title>
      <link>https://junyong.tistory.com/181</link>
      <description>맥os에서의 프로그램 삭제는 굉장히 쉽다.(프로그램아이콘을 휴지통으로 넣거나 delete하면 삭제)&lt;br /&gt;
그러나 환경설정같은 파일들을 따로 관리하는 프로그램에 대해서는 위와 같이 삭제시 안지워질수가 있다.&lt;br /&gt;
그래서 &lt;a title=&quot;[http://www.freemacsoft.net/AppCleaner/]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;http://www.freemacsoft.net/AppCleaner/&quot;&gt;AppCleaner&lt;/a&gt;프로그램을 이용하면 모두 검색해서 삭제를 해준다~강추~&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;https://t1.daumcdn.net/cfile/tistory/11496F024C56C9DA9E&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;fname=https%3A%2F%2Ft1.daumcdn.net%2Fcfile%2Ftistory%2F11496F024C56C9DA9E&quot; width=&quot;481&quot; height=&quot;377&quot; alt=&quot;&quot; filename=&quot;스크린샷 2010-08-02 오후 10.36.02.png&quot; filemime=&quot;image/jpeg&quot;/&gt;&lt;/div&gt;
&lt;br /&gt;
위 점선 네모에 프로그램을 끌어 놓으면 관련 파일들이 나오며~그 상태에서 삭제를 할수 있다.&lt;br /&gt;
&lt;br /&gt;Link : &lt;a title=&quot;[http://www.freemacsoft.net/AppCleaner/]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;http://www.freemacsoft.net/AppCleaner/&quot;&gt;http://www.freemacsoft.net/AppCleaner/&lt;/a&gt;&lt;br /&gt;</description>
      <category>mac</category>
      <category>AppCleaner</category>
      <category>Apps</category>
      <category>LinK</category>
      <category>Mac</category>
      <category>uninstall</category>
      <category>맥북 프로</category>
      <author>준용</author>
      <guid isPermaLink="true">https://junyong.tistory.com/181</guid>
      <comments>https://junyong.tistory.com/181#entry181comment</comments>
      <pubDate>Mon, 2 Aug 2010 22:38:50 +0900</pubDate>
    </item>
    <item>
      <title>[Link] javascript CDN(Content Delivery Network) Catalog</title>
      <link>https://junyong.tistory.com/179</link>
      <description>각종 자바스크립트 라이브러리 CDN서비스들을 모아놓은 사이트&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;Link :&amp;nbsp;&lt;a href=&quot;http://www.cdncatalog.com/&quot;&gt;&lt;a href=&quot;http://www.cdncatalog.com/&quot; target=&quot;_blank&quot; title=&quot;[http://www.cdncatalog.com/]로 이동합니다.&quot;&gt;http://www.cdncatalog.com/&lt;/a&gt;&lt;/a&gt;&lt;/div&gt;</description>
      <category>script</category>
      <category>CDN</category>
      <category>JavaScript</category>
      <category>LinK</category>
      <author>준용</author>
      <guid isPermaLink="true">https://junyong.tistory.com/179</guid>
      <comments>https://junyong.tistory.com/179#entry179comment</comments>
      <pubDate>Thu, 8 Jul 2010 14:06:32 +0900</pubDate>
    </item>
    <item>
      <title>[Link] UIApplication 샘플 예제 코드</title>
      <link>https://junyong.tistory.com/178</link>
      <description>&lt;br /&gt;
&lt;div&gt;Link url :&amp;nbsp;&lt;a href=&quot;http://www.servin.com/iphone/UIApplication.html&quot; target=&quot;_blank&quot; title=&quot;[http://www.servin.com/iphone/UIApplication.html]로 이동합니다.&quot;&gt;http://www.servin.com/iphone/UIApplication.html&lt;/a&gt;&lt;/div&gt;</description>
      <category>mac/iPhone</category>
      <category>iphone</category>
      <category>LinK</category>
      <category>UIApplication</category>
      <category>Xcode</category>
      <category>아이폰</category>
      <author>준용</author>
      <guid isPermaLink="true">https://junyong.tistory.com/178</guid>
      <comments>https://junyong.tistory.com/178#entry178comment</comments>
      <pubDate>Thu, 10 Jun 2010 15:04:06 +0900</pubDate>
    </item>
    <item>
      <title>Xcode Uninstall Command(Xcode 삭제 명령어)</title>
      <link>https://junyong.tistory.com/177</link>
      <description>터미널에서 아래의 명령어를 실행(삭제하는 디렉토리에서 명령어를 실행하지 말것.root에서 실행하길 권장)&lt;br /&gt;
&lt;br /&gt;sudo /Developer/Library/uninstall-devtools --mode=all&lt;br /&gt;
&lt;br /&gt;</description>
      <category>mac/iPhone</category>
      <category>Mac</category>
      <category>uninstall</category>
      <category>Xcode</category>
      <category>Xcode 삭제</category>
      <category>맥북프로</category>
      <author>준용</author>
      <guid isPermaLink="true">https://junyong.tistory.com/177</guid>
      <comments>https://junyong.tistory.com/177#entry177comment</comments>
      <pubDate>Wed, 19 May 2010 14:13:53 +0900</pubDate>
    </item>
    <item>
      <title>[Link] 맥북 or 맥북프로 배터리 캘리브레이션</title>
      <link>https://junyong.tistory.com/176</link>
      <description>배터리는 무조건 어댑터를 연결해서 써야 배터리 상태가 좋은줄 알았는데&lt;br /&gt;
애플에서 제공하는 배터리 캘리브레이션방법이 있다.&lt;br /&gt;
&lt;br /&gt;Link : &lt;a title=&quot;[http://docs.info.apple.com/article.html?path=Mac/10.5/ko/9036.html]로 이동합니다.&quot; target=&quot;_blank&quot; href=&quot;http://docs.info.apple.com/article.html?path=Mac/10.5/ko/9036.html&quot;&gt;http://docs.info.apple.com/article.html?path=Mac/10.5/ko/9036.html&lt;/a&gt;&lt;br /&gt;</description>
      <category>mac</category>
      <category>Mac</category>
      <category>맥북</category>
      <category>맥북프로</category>
      <category>배터리</category>
      <category>캘리브레이션</category>
      <author>준용</author>
      <guid isPermaLink="true">https://junyong.tistory.com/176</guid>
      <comments>https://junyong.tistory.com/176#entry176comment</comments>
      <pubDate>Fri, 7 May 2010 15:13:39 +0900</pubDate>
    </item>
  </channel>
</rss>