<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>BlueⓘBlog</title>
	<atom:link href="http://www.blueiblog.com/ko/feed" rel="self" type="application/rss+xml" />
	<link>http://www.blueiblog.com/ko</link>
	<description>Blueⓘ의 인터넷 아지트</description>
	<lastBuildDate>Wed, 03 Mar 2010 08:44:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>HTML 5 &#8211; AUDIO 태그 브라우저별 음원 지원 현황</title>
		<link>http://www.blueiblog.com/ko/archives/2112</link>
		<comments>http://www.blueiblog.com/ko/archives/2112#comments</comments>
		<pubDate>Wed, 03 Mar 2010 08:35:03 +0000</pubDate>
		<dc:creator>Blueⓘ</dc:creator>
				<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[AUDIO]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[지원음원형식]]></category>

		<guid isPermaLink="false">http://www.blueiblog.com/ko/?p=2112</guid>
		<description><![CDATA[HTML 5에서 새롭게 추가되는 AUDIO 태그에 대해서 알아보던 중 브라우저별 음원 지원 현황이 틀리다는것을 알게되었습니다.
Firefox에서는 MP3음원을 지원하지 않고, Safari 브라우저에서는 OGG형식의 음원을 지원하지 않습니다. 또, Chrome은 WAV형식의 음원을, Opera 브라우저는 OGG와 MP3형식의 음원을 지원하지 않는군요. 뭔가 통일되는 구석이 없습니다&#8230;
아래표는 브라우저 버젼별로 AUDIO태그에 지원되는 음원 형식입니다. 추후 변동사항이 있으면 업데이트 하도록 하겠습니다.

아래 소스는 오디오 플레이 서비스 [...]]]></description>
			<content:encoded><![CDATA[<p>HTML 5에서 새롭게 추가되는 AUDIO 태그에 대해서 알아보던 중 브라우저별 음원 지원 현황이 틀리다는것을 알게되었습니다.</p>
<p>Firefox에서는 MP3음원을 지원하지 않고, Safari 브라우저에서는 OGG형식의 음원을 지원하지 않습니다. 또, Chrome은 WAV형식의 음원을, Opera 브라우저는 OGG와 MP3형식의 음원을 지원하지 않는군요. 뭔가 통일되는 구석이 없습니다&#8230;</p>
<p>아래표는 브라우저 버젼별로 AUDIO태그에 지원되는 음원 형식입니다. 추후 변동사항이 있으면 업데이트 하도록 하겠습니다.</p>
<p><img src="http://www.blueiblog.com/ko/wp-content/uploads/2010/03/audiotag.gif" alt="" title="audiotag" width="506" height="117" class="aligncenter size-full wp-image-2114" /></p>
<p>아래 소스는 오디오 플레이 서비스 時, 오디오 TAG를 먼저 사용하고 AUDIO태그를 지원하지 않을 경우 OBJECT나 EMBED 태그를 사용하여 플레이 서비스를 하는 방법입니다.</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;audio controls autobuffer&gt;</span>
	 <span style="color: #808080; font-style: italic;">&lt;!--// s: OGG --&gt;</span>
	 <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">span</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;strong&quot;</span>&gt;</span>
	 	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">strong</span>&gt;&lt;source <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;1234.ogg&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">strong</span>&gt;</span>
	 <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">span</span>&gt;</span>
	 <span style="color: #808080; font-style: italic;">&lt;!--// e: OGG --&gt;</span>	 
&nbsp;
	 <span style="color: #808080; font-style: italic;">&lt;!--// s: MP3 --&gt;</span>
	 <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">span</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;strong&quot;</span>&gt;</span>
	 	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">strong</span>&gt;&lt;source <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;1234.mp3&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">strong</span>&gt;</span>
	 <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">span</span>&gt;</span>
	 <span style="color: #808080; font-style: italic;">&lt;!--// e: MP3 --&gt;</span>
&nbsp;
	 <span style="color: #808080; font-style: italic;">&lt;!--// s: WAV --&gt;</span>
	 <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">span</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;strong&quot;</span>&gt;</span>
	 	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">strong</span>&gt;&lt;source <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;1234.wav&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">strong</span>&gt;</span>
	 <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">span</span>&gt;</span>
	 <span style="color: #808080; font-style: italic;">&lt;!--// e: MP3 --&gt;</span>	 
&nbsp;
	 <span style="color: #808080; font-style: italic;">&lt;!--// s: EMBEDDED PLAYER --&gt;</span>
	 <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">span</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;strong&quot;</span>&gt;</span>
		<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">strong</span>&gt;&lt;EMBED <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;1234.wav&quot;</span> autostart<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;true&quot;</span> loop<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;false&quot;</span> volume<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;100&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">strong</span>&gt;</span>
	 <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">span</span>&gt;</span>
	 <span style="color: #808080; font-style: italic;">&lt;!--// e: EMBEDDED PLAYER --&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span>audio&gt;</span></pre></div></div>

<div style="margin: 10px 0 10px 0; border: 3px solid #6FA7D1; display: inline-block; width: 720px;"><p style="padding: 0 0 0 20px; margin: 0; line-height: 30px; border-bottom: 1px solid #6FA7D1; background: #CBDEED; font-weight: bold;">이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^</p><ul style="list-style-type: none; margin: 0;; padding: 0;"><li style="width: 100px; float: left; padding-top: 5px; margin: 5px 0;"><div class="blogger-news-widget notprint" style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="67" height="80">
	<param name="movie" value="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=6028744" />
	<!--[if !IE]> <-->
	<object type="application/x-shockwave-flash" data="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=6028744" width="67" height="80">
		<p>플래시를 지원하지 않는 브라우저입니다.</p>
	</object>
	<!--> <![endif]-->
</object></div></li><li style="height: 100px; overflow: hidden; padding: 20px 0 0 0; text-align: center; margin-bottom: -20px;">
<script type='text/javascript'><!--
google_ad_client = 'pub-1866412074966530';
/* 468x60, 작성됨 09. 10. 29 */
google_ad_slot = '9943142053';
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type='text/javascript'
src='http://pagead2.googlesyndication.com/pagead/show_ads.js'>
</script>
</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.blueiblog.com/ko/archives/2112/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>플래시 위에 레이어가 플래시에 가리는 현상 해결법</title>
		<link>http://www.blueiblog.com/ko/archives/2098</link>
		<comments>http://www.blueiblog.com/ko/archives/2098#comments</comments>
		<pubDate>Thu, 18 Feb 2010 02:29:19 +0000</pubDate>
		<dc:creator>Blueⓘ</dc:creator>
				<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[transparent]]></category>
		<category><![CDATA[wmode]]></category>
		<category><![CDATA[레이어]]></category>
		<category><![CDATA[플래시]]></category>

		<guid isPermaLink="false">http://www.blueiblog.com/ko/?p=2098</guid>
		<description><![CDATA[플래시 위에 레이어를 띄울 경우 레이어가 플래시에 가리는 현상이 발생합니다. 
아래 캡쳐화면은 자바스크립트 Alert을 레이어로 처리한 경우에 플래시에 Alert레이어가 가린 경우입니다.

이런 경우 플래시에 wmode파라미터를 주고 transparent값을 주게 되면 플래시가 레이어를 가리는 현상이 사라지게 됩니다.
플래시의 경우 OBJECT 엘리먼트와 비 IE계열을 위한 EMBED 엘리먼트 두곳에 wmode를 설정 해 주셔야 합니다.

&#60;object classid....&#62;
	&#60;param name=&#34;wmode&#34; value=&#34;transparent&#34;&#62;
	...
	...
	&#60;embed ... wmode=&#34;transparent&#34; ... /&#62;
&#60;/object&#62;

아래는 [...]]]></description>
			<content:encoded><![CDATA[<p>플래시 위에 레이어를 띄울 경우 레이어가 플래시에 가리는 현상이 발생합니다. </p>
<p>아래 캡쳐화면은 자바스크립트 Alert을 레이어로 처리한 경우에 플래시에 Alert레이어가 가린 경우입니다.</p>
<p><a href="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/2010-02-18_111501.gif" rel="lightbox[2098]"><img src="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/2010-02-18_111501.gif" alt="" title="2010-02-18_111501" width="499" height="293" class="aligncenter size-full wp-image-2100" /></a></p>
<p>이런 경우 플래시에 wmode파라미터를 주고 transparent값을 주게 되면 플래시가 레이어를 가리는 현상이 사라지게 됩니다.<br />
플래시의 경우 OBJECT 엘리먼트와 비 IE계열을 위한 EMBED 엘리먼트 두곳에 wmode를 설정 해 주셔야 합니다.</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">object</span> <span style="color: #000066;">classid</span>....&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">param</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;wmode&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;transparent&quot;</span>&gt;</span>
	...
	...
	<span style="color: #009900;">&lt;embed ... wmode<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;transparent&quot;</span> ... <span style="color: #66cc66;">/</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">object</span>&gt;</span></pre></div></div>

<p>아래는 완성된 플래시 삽입 코드 입니다. 위의 wmode를 아래와 같이 플래시 코드중 원하시는곳에 삽입 해 주시면 됩니다.</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">object</span> <span style="color: #000066;">classid</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot;</span> </span>
<span style="color: #009900;">	<span style="color: #000066;">codebase</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0&quot;</span> </span>
<span style="color: #009900;">	<span style="color: #000066;">width</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;100%&quot;</span> <span style="color: #000066;">height</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;200&quot;</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;ie_chart&quot;</span> <span style="color: #000066;">align</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;middle&quot;</span>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">param</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;wmode&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;transparent&quot;</span>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">param</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;allowScriptAccess&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;sameDomain&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">param</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;movie&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;movie.php&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">param</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;quality&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;high&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">param</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;bgcolor&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#FFFFFF&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
	<span style="color: #009900;">&lt;embed <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;/open-flash-chart.swf?data=movie.php&quot;</span> quality<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;high&quot;</span> <span style="color: #000066;">bgcolor</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#FFFFFF&quot;</span> <span style="color: #000066;">width</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;100%&quot;</span> </span>
<span style="color: #009900;">		<span style="color: #000066;">height</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;200&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;chart&quot;</span> <span style="color: #000066;">align</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;middle&quot;</span> allowScriptAccess<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;sameDomain&quot;</span> </span>
<span style="color: #009900;">		<span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;application/x-shockwave-flash&quot;</span> wmode<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;transparent&quot;</span></span>
<span style="color: #009900;">		pluginspage<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.macromedia.com/go/getflashplayer&quot;</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;chart&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">object</span>&gt;</span></pre></div></div>

<p>이렇게 하면 위 캡쳐화면에서 레이어가 플래시에 가리던 현상이 아래 캡쳐화면처럼 레이어가 플래시 위에서도 이쁘게 잘 보이는 것을 확인하실 수 있습니다.</p>
<p><a href="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/2010-02-18_112835.gif" rel="lightbox[2098]"><img src="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/2010-02-18_112835.gif" alt="" title="2010-02-18_112835" width="495" height="288" class="aligncenter size-full wp-image-2109" /></a></p>
<div style="margin: 10px 0 10px 0; border: 3px solid #6FA7D1; display: inline-block; width: 720px;"><p style="padding: 0 0 0 20px; margin: 0; line-height: 30px; border-bottom: 1px solid #6FA7D1; background: #CBDEED; font-weight: bold;">이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^</p><ul style="list-style-type: none; margin: 0;; padding: 0;"><li style="width: 100px; float: left; padding-top: 5px; margin: 5px 0;"><div class="blogger-news-widget notprint" style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="67" height="80">
	<param name="movie" value="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5870574" />
	<!--[if !IE]> <-->
	<object type="application/x-shockwave-flash" data="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5870574" width="67" height="80">
		<p>플래시를 지원하지 않는 브라우저입니다.</p>
	</object>
	<!--> <![endif]-->
</object></div></li><li style="height: 100px; overflow: hidden; padding: 20px 0 0 0; text-align: center; margin-bottom: -20px;">
<script type='text/javascript'><!--
google_ad_client = 'pub-1866412074966530';
/* 468x60, 작성됨 09. 10. 29 */
google_ad_slot = '9943142053';
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type='text/javascript'
src='http://pagead2.googlesyndication.com/pagead/show_ads.js'>
</script>
</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.blueiblog.com/ko/archives/2098/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>오리콘 2010년 1월 월간 랭킹 2위 EXILE의 愛すべき未来へ PV(뮤직비디오)</title>
		<link>http://www.blueiblog.com/ko/archives/2078</link>
		<comments>http://www.blueiblog.com/ko/archives/2078#comments</comments>
		<pubDate>Wed, 10 Feb 2010 01:00:23 +0000</pubDate>
		<dc:creator>Blueⓘ</dc:creator>
				<category><![CDATA[음악 & 영화 이야기]]></category>
		<category><![CDATA[EXILE]]></category>
		<category><![CDATA[MV]]></category>
		<category><![CDATA[PV]]></category>
		<category><![CDATA[愛すべき未来へ]]></category>
		<category><![CDATA[뮤직비디오]]></category>

		<guid isPermaLink="false">http://www.blueiblog.com/ko/?p=2078</guid>
		<description><![CDATA[2009년 J Soul Brothers와 합류하여 14인으로 재 편성된 뒤 발매된 EXILE의 첫 앨범 &#8220;愛すべき未来へ&#8221;입니다. 이번 앨범은 EXILE의 첫 일본어 타이틀을 가진 앨범이라는 특징도 가지고 있습니다.
스페셜 한정판으로 2CD+2DVD 초기판도 발매되었는데요&#8230; 소장하고 싶습니다 ㅠ.ㅠ 일본사람들은 한정판이란 단어를 무척 좋아하는데&#8230; 저도 좋아하게 되어버렸습니다. 한정판이라면 역시 소장가치가~~~ 쿨럭
앨범 정보는 오리콘 사이트에 접속하시면 확인 하실 수 있습니다.
http://www.oricon.co.jp/music/release/d/847974/1/


앨범은 지마켓에서 13,200원에 판매 [...]]]></description>
			<content:encoded><![CDATA[<p>2009년 J Soul Brothers와 합류하여 14인으로 재 편성된 뒤 발매된 EXILE의 첫 앨범 &#8220;愛すべき未来へ&#8221;입니다. 이번 앨범은 EXILE의 첫 일본어 타이틀을 가진 앨범이라는 특징도 가지고 있습니다.</p>
<p>스페셜 한정판으로 2CD+2DVD 초기판도 발매되었는데요&#8230; 소장하고 싶습니다 ㅠ.ㅠ 일본사람들은 한정판이란 단어를 무척 좋아하는데&#8230; 저도 좋아하게 되어버렸습니다. 한정판이라면 역시 소장가치가~~~ 쿨럭</p>
<p>앨범 정보는 오리콘 사이트에 접속하시면 확인 하실 수 있습니다.<br />
<a href="http://www.oricon.co.jp/music/release/d/847974/1/" target="_blank">http://www.oricon.co.jp/music/release/d/847974/1/</a></p>
<dl>
<dd onclick="window.open('http://click.linkprice.com/click.php?m=gmarket&#038;a=A100223559&#038;l=9999&#038;l_cd1=3&#038;l_cd2=0&#038;tu=http%3A%2F%2Fgen.gmarket.co.kr%2Fchallenge%2Fneo_goods%2Fgoods.asp%3Fgoodscode%3D176889421')" style="float: left; cursor: pointer; margin-right: 20px; background: url(http://www.blueiblog.com/images/btn_buy.gif); width: 97px; height: 43px;"><img src="http://track.linkprice.com/lpshow.php?m_id=gmarket&#038;a_id=A100223559&#038;p_id=0000&#038;l_id=9999&#038;l_cd1=3&#038;l_cd2=0" width="1" height="1" border="0" nosave></dd>
<dd><u>앨범은 지마켓에서 13,200원에 판매 중입니다. 구매를 원하시는 분은 왼쪽 구매하기 버튼을 클릭하세욤.<br />
(링크를 통해 구매하시면 블로그 운영에 도움이 된답니다 ^^)</u></dd>
</dl>
<p>그럼 愛すべき未来へ를 감상해 볼까욤!!!</p>
<p><object width="720" height="500"><param name="movie" value="http://www.youtube.com/v/nAXw68f6lOI&#038;hl=ko_KR&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/nAXw68f6lOI&#038;hl=ko_KR&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="720" height="500"></embed></object></p>
<div style="margin: 10px 0 10px 0; border: 3px solid #6FA7D1; display: inline-block; width: 720px;"><p style="padding: 0 0 0 20px; margin: 0; line-height: 30px; border-bottom: 1px solid #6FA7D1; background: #CBDEED; font-weight: bold;">이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^</p><ul style="list-style-type: none; margin: 0;; padding: 0;"><li style="width: 100px; float: left; padding-top: 5px; margin: 5px 0;"><div class="blogger-news-widget notprint" style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="67" height="80">
	<param name="movie" value="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5781057" />
	<!--[if !IE]> <-->
	<object type="application/x-shockwave-flash" data="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5781057" width="67" height="80">
		<p>플래시를 지원하지 않는 브라우저입니다.</p>
	</object>
	<!--> <![endif]-->
</object></div></li><li style="height: 100px; overflow: hidden; padding: 20px 0 0 0; text-align: center; margin-bottom: -20px;">
<script type='text/javascript'><!--
google_ad_client = 'pub-1866412074966530';
/* 468x60, 작성됨 09. 10. 29 */
google_ad_slot = '9943142053';
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type='text/javascript'
src='http://pagead2.googlesyndication.com/pagead/show_ads.js'>
</script>
</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.blueiblog.com/ko/archives/2078/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>오리콘 2010년 2월 8일자 주간랭킹에 1위 HY レール PV(뮤직비디오)</title>
		<link>http://www.blueiblog.com/ko/archives/2073</link>
		<comments>http://www.blueiblog.com/ko/archives/2073#comments</comments>
		<pubDate>Tue, 09 Feb 2010 02:27:22 +0000</pubDate>
		<dc:creator>Blueⓘ</dc:creator>
				<category><![CDATA[음악 & 영화 이야기]]></category>
		<category><![CDATA[일본은 지금!!]]></category>
		<category><![CDATA[HY]]></category>
		<category><![CDATA[レール]]></category>
		<category><![CDATA[뮤직비디오]]></category>

		<guid isPermaLink="false">http://www.blueiblog.com/ko/?p=2073</guid>
		<description><![CDATA[2010년 2월 8일자 주간랭킹에 1위 오른 HY의 レール 뮤직 비디오입니다.
앨범명 &#8220;Whistle&#8221;로 2010년 1월 27일 발매되었습니다. 아래는 앨범 수록곡 리스트 입니다.

レール
ビタミンＩ
告白
君のいない世界
すてがらＨＯＬＬＹ
哀しみの向こう側
うけんビーチ
少年
Ｓｕｐｅｒ　Ｐｏｓｉｔｉｖｅ
Ａｎｓｗｅｒ
帰り道
時をこえ

그럼 レール 뮤직비디오 즐감하세요..

이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^
	
	
	
		플래시를 지원하지 않는 브라우저입니다.
	
	 





]]></description>
			<content:encoded><![CDATA[<p>2010년 2월 8일자 주간랭킹에 1위 오른 HY의 レール 뮤직 비디오입니다.</p>
<p>앨범명 &#8220;Whistle&#8221;로 2010년 1월 27일 발매되었습니다. 아래는 앨범 수록곡 리스트 입니다.</p>
<ol>
<li>レール</li>
<li>ビタミンＩ</li>
<li>告白</li>
<li>君のいない世界</li>
<li>すてがらＨＯＬＬＹ</li>
<li>哀しみの向こう側</li>
<li>うけんビーチ</li>
<li>少年</li>
<li>Ｓｕｐｅｒ　Ｐｏｓｉｔｉｖｅ</li>
<li>Ａｎｓｗｅｒ</li>
<li>帰り道</li>
<li>時をこえ</li>
</ol>
<p>그럼 レール 뮤직비디오 즐감하세요..</p>
<p><object width="720" height="500"><param name="movie" value="http://www.youtube.com/v/n-PUQPzpFKU&#038;hl=ko_KR&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/n-PUQPzpFKU&#038;hl=ko_KR&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="720" height="500"></embed></object></p>
<div style="margin: 10px 0 10px 0; border: 3px solid #6FA7D1; display: inline-block; width: 720px;"><p style="padding: 0 0 0 20px; margin: 0; line-height: 30px; border-bottom: 1px solid #6FA7D1; background: #CBDEED; font-weight: bold;">이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^</p><ul style="list-style-type: none; margin: 0;; padding: 0;"><li style="width: 100px; float: left; padding-top: 5px; margin: 5px 0;"><div class="blogger-news-widget notprint" style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="67" height="80">
	<param name="movie" value="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5767496" />
	<!--[if !IE]> <-->
	<object type="application/x-shockwave-flash" data="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5767496" width="67" height="80">
		<p>플래시를 지원하지 않는 브라우저입니다.</p>
	</object>
	<!--> <![endif]-->
</object></div></li><li style="height: 100px; overflow: hidden; padding: 20px 0 0 0; text-align: center; margin-bottom: -20px;">
<script type='text/javascript'><!--
google_ad_client = 'pub-1866412074966530';
/* 468x60, 작성됨 09. 10. 29 */
google_ad_slot = '9943142053';
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type='text/javascript'
src='http://pagead2.googlesyndication.com/pagead/show_ads.js'>
</script>
</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.blueiblog.com/ko/archives/2073/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>소녀시대 GEE 뮤직비디오</title>
		<link>http://www.blueiblog.com/ko/archives/2068</link>
		<comments>http://www.blueiblog.com/ko/archives/2068#comments</comments>
		<pubDate>Tue, 09 Feb 2010 02:14:51 +0000</pubDate>
		<dc:creator>Blueⓘ</dc:creator>
				<category><![CDATA[음악 & 영화 이야기]]></category>
		<category><![CDATA[GEE]]></category>
		<category><![CDATA[뮤직비디오]]></category>
		<category><![CDATA[소녀시대]]></category>

		<guid isPermaLink="false">http://www.blueiblog.com/ko/?p=2068</guid>
		<description><![CDATA[이제 와서 올리긴 좀 오래된 영상이긴 하지만&#8230; 언제 봐도 풋풋한 GEE 뮤직 비디오입니다.
가끔 GEE 뮤비가 첨 시작할때 12시가 되면 마네킹들이 살아 움직이면서 노래를 부르는데&#8230; 동물원이 살아있다가 연상되는 컨셉입니다 ^^. 자 GEE를 들으면서 열심히 하루를 시작하도록 하죠 ^^

이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^
	
	
	
		플래시를 지원하지 않는 브라우저입니다.
	
	 





]]></description>
			<content:encoded><![CDATA[<p>이제 와서 올리긴 좀 오래된 영상이긴 하지만&#8230; 언제 봐도 풋풋한 GEE 뮤직 비디오입니다.</p>
<p>가끔 GEE 뮤비가 첨 시작할때 12시가 되면 마네킹들이 살아 움직이면서 노래를 부르는데&#8230; 동물원이 살아있다가 연상되는 컨셉입니다 ^^. 자 GEE를 들으면서 열심히 하루를 시작하도록 하죠 ^^</p>
<p><object width="720" height="500"><param name="movie" value="http://www.youtube.com/v/ScIpxucdmo0&#038;hl=ko_KR&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ScIpxucdmo0&#038;hl=ko_KR&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="720" height="500"></embed></object></p>
<div style="margin: 10px 0 10px 0; border: 3px solid #6FA7D1; display: inline-block; width: 720px;"><p style="padding: 0 0 0 20px; margin: 0; line-height: 30px; border-bottom: 1px solid #6FA7D1; background: #CBDEED; font-weight: bold;">이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^</p><ul style="list-style-type: none; margin: 0;; padding: 0;"><li style="width: 100px; float: left; padding-top: 5px; margin: 5px 0;"><div class="blogger-news-widget notprint" style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="67" height="80">
	<param name="movie" value="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5767251" />
	<!--[if !IE]> <-->
	<object type="application/x-shockwave-flash" data="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5767251" width="67" height="80">
		<p>플래시를 지원하지 않는 브라우저입니다.</p>
	</object>
	<!--> <![endif]-->
</object></div></li><li style="height: 100px; overflow: hidden; padding: 20px 0 0 0; text-align: center; margin-bottom: -20px;">
<script type='text/javascript'><!--
google_ad_client = 'pub-1866412074966530';
/* 468x60, 작성됨 09. 10. 29 */
google_ad_slot = '9943142053';
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type='text/javascript'
src='http://pagead2.googlesyndication.com/pagead/show_ads.js'>
</script>
</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.blueiblog.com/ko/archives/2068/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>트랙백 이벤트 당첨자 안내</title>
		<link>http://www.blueiblog.com/ko/archives/2062</link>
		<comments>http://www.blueiblog.com/ko/archives/2062#comments</comments>
		<pubDate>Tue, 09 Feb 2010 01:50:55 +0000</pubDate>
		<dc:creator>Blueⓘ</dc:creator>
				<category><![CDATA[공지사항]]></category>
		<category><![CDATA[이벤트]]></category>
		<category><![CDATA[트랙백]]></category>

		<guid isPermaLink="false">http://www.blueiblog.com/ko/?p=2062</guid>
		<description><![CDATA[회원제를 도입하고 난 뒤 첫 트랙백 이벤트(http://www.blueiblog.com/ko/archives/1857)를 진행.. 당첨자 안내를 드립니다.
블루아이블로그의 첫 이벤트인 트랙백 이벤트는 최신 영화 정보 블로그를 운영중이신 페니웨이님이 당첨되셨습니다. 축하드립니다. 변변치 못하지만 USB 8G가를 어제 배송요청 하였습니다. 아마 빠르면 오늘쯤 받아보시지 않을까 합니다 ^^
아래는 머신 페니웨이님의 블로그 캡춰 하면과 블로그 주소입니다. 영화정보를 원하시면 즐겨찾기가 필요할만한 블로그입니다 ^^
블로그 주소 : http://pennyway.net

]]></description>
			<content:encoded><![CDATA[<p>회원제를 도입하고 난 뒤 첫 트랙백 이벤트(<a href="http://www.blueiblog.com/ko/archives/1857">http://www.blueiblog.com/ko/archives/1857</a>)를 진행.. 당첨자 안내를 드립니다.</p>
<p>블루아이블로그의 첫 이벤트인 트랙백 이벤트는 최신 영화 정보 블로그를 운영중이신 페니웨이님이 당첨되셨습니다. 축하드립니다. 변변치 못하지만 USB 8G가를 어제 배송요청 하였습니다. 아마 빠르면 오늘쯤 받아보시지 않을까 합니다 ^^</p>
<p>아래는 머신 페니웨이님의 블로그 캡춰 하면과 블로그 주소입니다. 영화정보를 원하시면 즐겨찾기가 필요할만한 블로그입니다 ^^</p>
<p>블로그 주소 : http://pennyway.net</p>
<p><a href="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/2010-02-09_105007.gif" rel="lightbox[2062]"><img src="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/2010-02-09_105007-720x647.gif" alt="" title="2010-02-09_105007" width="720" height="647" class="aligncenter size-large wp-image-2064" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blueiblog.com/ko/archives/2062/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>저희 회사에서 준비중인 SNS 2.0 TOG가 클베를 시작했습니다.</title>
		<link>http://www.blueiblog.com/ko/archives/2052</link>
		<comments>http://www.blueiblog.com/ko/archives/2052#comments</comments>
		<pubDate>Tue, 09 Feb 2010 01:42:10 +0000</pubDate>
		<dc:creator>Blueⓘ</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[SNS]]></category>
		<category><![CDATA[TOG]]></category>
		<category><![CDATA[토그]]></category>

		<guid isPermaLink="false">http://www.blueiblog.com/ko/?p=2052</guid>
		<description><![CDATA[저희 회사에서 준비중이던 SNS 2.0 TOG가 드디어 CBT를 시작하였습니다. TOG 티져페이지를 통해서 CBT에 참가하고 싶은 이용자분들을 모집하였고 약 300여분께 CBT 초대장을 보내드렸습니다.
TOG>는 아래와 같은 특징을 베이스로 개발된 서비스 입니다.

보이스 포스팅이 가능한 마이크로 블로그
네이버나 다음 카페를 무색하게 할 진화된 실시간 카페
온라인 친구들과 직접적으로 연결되는 VoIP 및 SMS 및 MO 서비스

이런 블로그가 없었다는게 정답이지 않을까 하는&#8230; 고생도 [...]]]></description>
			<content:encoded><![CDATA[<p>저희 회사에서 준비중이던 SNS 2.0 <a href="http://tog.kr" target="_blank">TOG</a>가 드디어 CBT를 시작하였습니다. <a href="http://tog.kr" target="_blank">TOG</a> 티져페이지를 통해서 CBT에 참가하고 싶은 이용자분들을 모집하였고 약 300여분께 CBT 초대장을 보내드렸습니다.</p>
<p><a href="http://tog.kr" target="_blank">TOG</a>>는 아래와 같은 특징을 베이스로 개발된 서비스 입니다.</p>
<ol>
<li>보이스 포스팅이 가능한 마이크로 블로그</li>
<li>네이버나 다음 카페를 무색하게 할 진화된 실시간 카페</li>
<li>온라인 친구들과 직접적으로 연결되는 VoIP 및 SMS 및 MO 서비스</li>
</ol>
<p>이런 블로그가 없었다는게 정답이지 않을까 하는&#8230; 고생도 많이 한 서비스입니다.</p>
<p>아직 <a href="http://tog.kr" target="_blank">TOG</a> CBT에 참여의사를 밝히지 않으셔서 이용이 불가능한 네티즌 여러분들중 참가를 원하시는 분들은 제게 메일 주세욤~~ (제 메일 주소는 <u>bluei at blueiblog.com</u> 입니다.)</p>
<p>그럼, 앞으로도 <a href="http://tog.kr" target="_blank">TOG</a>에 많은 관심과 사랑 부탁드리겠습니다. <a href="http://tog.kr" target="_blank">TOG</a>의 주소는 <a href="http://tog.kr" target="_blank">http://tog.kr</a>입니다 ^^</p>
<p>아래 링크는 그동안 제가 토그에 관해 쓴 포스팅 리스트 입니다.</p>
<blockquote><p><a href="http://www.blueiblog.com/ko/archives/1379">http://www.blueiblog.com/ko/archives/1379 / 제가 매체 노출되었습니다 ^^ [도전! 콘텐츠 强小기업] 세중게임즈</a><br />
<a href="http://www.blueiblog.com/ko/archives/1353">http://www.blueiblog.com/ko/archives/1353 / 저희 회사에서 준비중인 SNS 2.0 “TOG”</a></p></blockquote>
<p><a href="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/togcbt.gif" rel="lightbox[2052]"><img src="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/togcbt-720x470.gif" alt="" title="togcbt" width="720" height="470" class="aligncenter size-large wp-image-2053" /></a></p>
<div style="margin: 10px 0 10px 0; border: 3px solid #6FA7D1; display: inline-block; width: 720px;"><p style="padding: 0 0 0 20px; margin: 0; line-height: 30px; border-bottom: 1px solid #6FA7D1; background: #CBDEED; font-weight: bold;">이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^</p><ul style="list-style-type: none; margin: 0;; padding: 0;"><li style="width: 100px; float: left; padding-top: 5px; margin: 5px 0;"><div class="blogger-news-widget notprint" style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="67" height="80">
	<param name="movie" value="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5766613" />
	<!--[if !IE]> <-->
	<object type="application/x-shockwave-flash" data="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5766613" width="67" height="80">
		<p>플래시를 지원하지 않는 브라우저입니다.</p>
	</object>
	<!--> <![endif]-->
</object></div></li><li style="height: 100px; overflow: hidden; padding: 20px 0 0 0; text-align: center; margin-bottom: -20px;">
<script type='text/javascript'><!--
google_ad_client = 'pub-1866412074966530';
/* 468x60, 작성됨 09. 10. 29 */
google_ad_slot = '9943142053';
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type='text/javascript'
src='http://pagead2.googlesyndication.com/pagead/show_ads.js'>
</script>
</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.blueiblog.com/ko/archives/2052/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>정성하군의 호텔 캘리포니아 연주</title>
		<link>http://www.blueiblog.com/ko/archives/2043</link>
		<comments>http://www.blueiblog.com/ko/archives/2043#comments</comments>
		<pubDate>Mon, 08 Feb 2010 05:13:23 +0000</pubDate>
		<dc:creator>Blueⓘ</dc:creator>
				<category><![CDATA[음악 & 영화 이야기]]></category>
		<category><![CDATA[정성하]]></category>
		<category><![CDATA[호텔캘리포니아]]></category>

		<guid isPermaLink="false">http://www.blueiblog.com/ko/?p=2043</guid>
		<description><![CDATA[한국이 나은 기타 신동 정성하군의 호텔 캘리포니아 연주 동영상입니다.
원곡과 또다른 느낌의 기타 연주&#8230; 정말 훌륭하군요&#8230; 호텔 캘리포니아의 박력과 편한함을 안겨주는 기타 소리&#8230; 앞으로도 많은 활약 부탁드립니다.
정성하군의 다른 연주를 듣고 싶으시면 정성하군의 홈페이지 http://www.sunghajung.com/로 접속 해 보세요 ^^

이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^
	
	
	
		플래시를 지원하지 않는 브라우저입니다.
	
	 





]]></description>
			<content:encoded><![CDATA[<p>한국이 나은 기타 신동 정성하군의 호텔 캘리포니아 연주 동영상입니다.</p>
<p>원곡과 또다른 느낌의 기타 연주&#8230; 정말 훌륭하군요&#8230; 호텔 캘리포니아의 박력과 편한함을 안겨주는 기타 소리&#8230; 앞으로도 많은 활약 부탁드립니다.</p>
<p>정성하군의 다른 연주를 듣고 싶으시면 정성하군의 홈페이지 <a href="http://www.sunghajung.com/" target="_blank">http://www.sunghajung.com/</a>로 접속 해 보세요 ^^</p>
<p><object width="720" height="500"><param name="movie" value="http://www.youtube.com/v/CI0Ps9Z9wjk&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=ko_KR&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/CI0Ps9Z9wjk&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=ko_KR&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="720" height="500"></embed></object></p>
<div style="margin: 10px 0 10px 0; border: 3px solid #6FA7D1; display: inline-block; width: 720px;"><p style="padding: 0 0 0 20px; margin: 0; line-height: 30px; border-bottom: 1px solid #6FA7D1; background: #CBDEED; font-weight: bold;">이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^</p><ul style="list-style-type: none; margin: 0;; padding: 0;"><li style="width: 100px; float: left; padding-top: 5px; margin: 5px 0;"><div class="blogger-news-widget notprint" style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="67" height="80">
	<param name="movie" value="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5753692" />
	<!--[if !IE]> <-->
	<object type="application/x-shockwave-flash" data="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5753692" width="67" height="80">
		<p>플래시를 지원하지 않는 브라우저입니다.</p>
	</object>
	<!--> <![endif]-->
</object></div></li><li style="height: 100px; overflow: hidden; padding: 20px 0 0 0; text-align: center; margin-bottom: -20px;">
<script type='text/javascript'><!--
google_ad_client = 'pub-1866412074966530';
/* 468x60, 작성됨 09. 10. 29 */
google_ad_slot = '9943142053';
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type='text/javascript'
src='http://pagead2.googlesyndication.com/pagead/show_ads.js'>
</script>
</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.blueiblog.com/ko/archives/2043/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP – bit.ly Short URL API – PHP로 Shorten 메소드 이용해보기</title>
		<link>http://www.blueiblog.com/ko/archives/2029</link>
		<comments>http://www.blueiblog.com/ko/archives/2029#comments</comments>
		<pubDate>Sun, 07 Feb 2010 07:37:35 +0000</pubDate>
		<dc:creator>Blueⓘ</dc:creator>
				<category><![CDATA[Open API]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[bit.ly]]></category>

		<guid isPermaLink="false">http://www.blueiblog.com/ko/?p=2029</guid>
		<description><![CDATA[
PHP – bit.ly Short URL API

API Key 획득 및 API 목록
Shorten 메소드 설명
PHP로 Shorten 메소드 이용해보기



그럼 앞의 두 강좌를 기본으로 PHP를 이용한 bit.ly API 코딩하기 실전으로 들어가도록 하겠습니다. 이 API 코딩법만 익히게 되면 다른 bit.ly API를 이용하는것도 어렵지 않으니 집중하고 내용을 이해 하도록 노력해 주세요.
P.S. 그리고 댓글좀 써주세요 ㅡㅡ; 댓글 없는 포스팅을 보게되면 강좌를 연재할 [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin: 0 0 10px 20px; background: #fff;">
<fieldset>
<legend>PHP – bit.ly Short URL API</legend>
<ol style="margin: 0; padding: 0 35px 0 20px;">
<li><a href="http://www.blueiblog.com/ko/archives/1976">API Key 획득 및 API 목록</a></li>
<li><a href="http://www.blueiblog.com/ko/archives/1986">Shorten 메소드 설명</a></li>
<li><a href="http://www.blueiblog.com/ko/archives/2029">PHP로 Shorten 메소드 이용해보기</a></li>
</ol>
</fieldset>
</div>
<p>그럼 앞의 두 강좌를 기본으로 PHP를 이용한 bit.ly API 코딩하기 실전으로 들어가도록 하겠습니다. 이 API 코딩법만 익히게 되면 다른 bit.ly API를 이용하는것도 어렵지 않으니 집중하고 내용을 이해 하도록 노력해 주세요.</p>
<p><strong>P.S. 그리고 댓글좀 써주세요 ㅡㅡ; 댓글 없는 포스팅을 보게되면 강좌를 연재할 의욕이 꺽인답니다. ^^</strong></p>
<h2>PHP로 Shorten메소드 호출</h2>
<p>이제 어떠한 방식으로 데이터를 주고받는지 알게 되었다면 PHP를 이용하여 bit.ly의 API를 이용하여 짧은 URL을 얻어오는 방법을 설명 하겠습니다. 이번 강의에서 사용될 PHP의 함수는 아래와 같습니다.</p>
<ol>
<li><strong><a href="http://kr.php.net/manual/kr/function.file-get-contents.php" target="_blank">file_get_contents</a></strong> : 로컬내 파일 또는 원격지의 파일 내용을 문자열로 가져오는 함수</li>
<li><strong><a href="http://kr.php.net/manual/kr/function.json-decode.php" target="_blank">json_decode</a></strong> : JSON으로 만들어진 문자열을 JSON 객체로 변환 해주는 함수</li>
</ol>
<p>위 두 함수는 모두 PHP 코어의 일부분으로 따로 설치 하실 필요는 없습니다. 다만 PHP 버젼에 따라 작동되지 않을 수 있습니다.</p>
<p>그럼 간단하게 긴URL을 bit.ly에 던져서 짧은URL을 얻어 출력하는 내용으로 코딩 해보도록 하겠습니다.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$data</span> <span style="color: #339933;">=</span> <span style="color: #990000;">file_get_contents</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;http://api.bit.ly/shorten?version=2.0.1&amp;longUrl=http://www.blueiblog.com/ko/archives/1976&amp;login=xxxx&amp;apiKey=xxxxxxxxxxxx&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$data</span> <span style="color: #339933;">=</span> <span style="color: #990000;">json_decode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$data</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$data</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">results</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$row</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$surl</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$row</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">shortCNAMEUrl</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$surl</span><span style="color: #339933;">;</span></pre></div></div>

<p>그럼 이번에는 함수를 만들어서 언제든 빼 쓸 수 있도록 해보겠습니다.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #009933; font-style: italic;">/**
 * License by Blueⓘ
 *
 * @param String longURL 짧게 변경할 긴 문자열의 URL
 * @return String 짧게 변환된 URL
 */</span>
<span style="color: #000000; font-weight: bold;">function</span> getShortURL<span style="color: #009900;">&#40;</span><span style="color: #000088;">$longURL</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$data</span> <span style="color: #339933;">=</span> <span style="color: #990000;">file_get_contents</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;http://api.bit.ly/shorten?version=2.0.1&amp;longUrl=&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$longURL</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;&amp;login=xxxx&amp;apiKey=xxxxxxxxxxxx&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$data</span> <span style="color: #339933;">=</span> <span style="color: #990000;">json_decode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$data</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$data</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">results</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$row</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
                <span style="color: #000088;">$surl</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$row</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">shortCNAMEUrl</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
        <span style="color: #b1b100;">return</span> <span style="color: #000088;">$surl</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #b1b100;">echo</span> getShortURL<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;http://test.com&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #666666; font-style: italic;">// OUTPUT : http://bit.ly/9ICmwA</span></pre></div></div>

<div style="margin: 10px 0 10px 0; border: 3px solid #6FA7D1; display: inline-block; width: 720px;"><p style="padding: 0 0 0 20px; margin: 0; line-height: 30px; border-bottom: 1px solid #6FA7D1; background: #CBDEED; font-weight: bold;">이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^</p><ul style="list-style-type: none; margin: 0;; padding: 0;"><li style="width: 100px; float: left; padding-top: 5px; margin: 5px 0;"><div class="blogger-news-widget notprint" style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="67" height="80">
	<param name="movie" value="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5742339" />
	<!--[if !IE]> <-->
	<object type="application/x-shockwave-flash" data="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5742339" width="67" height="80">
		<p>플래시를 지원하지 않는 브라우저입니다.</p>
	</object>
	<!--> <![endif]-->
</object></div></li><li style="height: 100px; overflow: hidden; padding: 20px 0 0 0; text-align: center; margin-bottom: -20px;">
<script type='text/javascript'><!--
google_ad_client = 'pub-1866412074966530';
/* 468x60, 작성됨 09. 10. 29 */
google_ad_slot = '9943142053';
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type='text/javascript'
src='http://pagead2.googlesyndication.com/pagead/show_ads.js'>
</script>
</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.blueiblog.com/ko/archives/2029/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>블로그 어드민툴의 카드이용현황 업데이트~~~</title>
		<link>http://www.blueiblog.com/ko/archives/2022</link>
		<comments>http://www.blueiblog.com/ko/archives/2022#comments</comments>
		<pubDate>Sat, 06 Feb 2010 14:13:36 +0000</pubDate>
		<dc:creator>Blueⓘ</dc:creator>
				<category><![CDATA[개발 일지]]></category>
		<category><![CDATA[대쉬보드]]></category>
		<category><![CDATA[워드프레스]]></category>
		<category><![CDATA[카드사용현황]]></category>

		<guid isPermaLink="false">http://www.blueiblog.com/ko/?p=2022</guid>
		<description><![CDATA[카드를 쓰면 항상 내가 얼마 썼는지 모르겠고, 결제일만 되면 서글퍼지는 현실에서 벗어나기 위해~~ 작년(2009년) 5월쯤 블로그 어드민 페이지에 &#8220;카드 사용 현황 대쉬보드 알리미&#8220;이라는 기능을 추가했었습니다. 
그 업그레이드 판으로 그래프로 6개월간의 카드 사용내역을 나, 와이프, 그리고 합계를 한셋으로 하여 그래프로 보여주는 기능을 완성시켰습니다. 역시 사람은 그래프로 보여야 보기 더 쉽군요 ^^. 프로그래머라서 가능한게 많아서 참 좋습니다 [...]]]></description>
			<content:encoded><![CDATA[<p>카드를 쓰면 항상 내가 얼마 썼는지 모르겠고, 결제일만 되면 서글퍼지는 현실에서 벗어나기 위해~~ 작년(2009년) 5월쯤 블로그 어드민 페이지에 &#8220;<a href="http://www.blueiblog.com/ko/archives/443">카드 사용 현황 대쉬보드 알리미</a>&#8220;이라는 기능을 추가했었습니다. </p>
<p>그 업그레이드 판으로 그래프로 6개월간의 카드 사용내역을 나, 와이프, 그리고 합계를 한셋으로 하여 그래프로 보여주는 기능을 완성시켰습니다. 역시 사람은 그래프로 보여야 보기 더 쉽군요 ^^. 프로그래머라서 가능한게 많아서 참 좋습니다 ^^</p>
<p>아래는 인증샷입니다 ^^</p>
<p><a href="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/2010-02-06_201109.gif" rel="lightbox[2022]"><img src="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/2010-02-06_201109.gif" alt="" title="2010-02-06_201109" width="687" height="258" class="aligncenter size-full wp-image-2023" /></a></p>
<div style="margin: 10px 0 10px 0; border: 3px solid #6FA7D1; display: inline-block; width: 720px;"><p style="padding: 0 0 0 20px; margin: 0; line-height: 30px; border-bottom: 1px solid #6FA7D1; background: #CBDEED; font-weight: bold;">이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^</p><ul style="list-style-type: none; margin: 0;; padding: 0;"><li style="width: 100px; float: left; padding-top: 5px; margin: 5px 0;"><div class="blogger-news-widget notprint" style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="67" height="80">
	<param name="movie" value="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5736492" />
	<!--[if !IE]> <-->
	<object type="application/x-shockwave-flash" data="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5736492" width="67" height="80">
		<p>플래시를 지원하지 않는 브라우저입니다.</p>
	</object>
	<!--> <![endif]-->
</object></div></li><li style="height: 100px; overflow: hidden; padding: 20px 0 0 0; text-align: center; margin-bottom: -20px;">
<script type='text/javascript'><!--
google_ad_client = 'pub-1866412074966530';
/* 468x60, 작성됨 09. 10. 29 */
google_ad_slot = '9943142053';
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type='text/javascript'
src='http://pagead2.googlesyndication.com/pagead/show_ads.js'>
</script>
</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.blueiblog.com/ko/archives/2022/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP – bit.ly Short URL API – Shorten 메소드 설명</title>
		<link>http://www.blueiblog.com/ko/archives/1986</link>
		<comments>http://www.blueiblog.com/ko/archives/1986#comments</comments>
		<pubDate>Sat, 06 Feb 2010 02:41:49 +0000</pubDate>
		<dc:creator>Blueⓘ</dc:creator>
				<category><![CDATA[Open API]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[bit.ly]]></category>

		<guid isPermaLink="false">http://www.blueiblog.com/ko/?p=1986</guid>
		<description><![CDATA[
PHP – bit.ly Short URL API

API Key 획득 및 API 목록
Shorten 메소드 설명
PHP로 Shorten 메소드 이용해보기



이번에는 앞서 설명했던 내용을 토대로 shorten메소드에 대해서 알아보도록 하겠습니다. shorten메소드는 bit.ly의 API중 우리가 가장 많이 사용하게 될 메소드입니다. shorten메소드는 http://www.blueiblog.com/ko/archives/1976 와 같은 긴 주소를 http://bit.ly/b4ihSW 와 같이 짧게 줄여주는 역활을 합니다.
그럼 shorten메소드의 사용법에 대해서 알아보도록 하겠습니다.
Shorten Method 요청 및 결과
Shorten메소드는 [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin: 0 0 10px 20px; background: #fff;">
<fieldset>
<legend>PHP – bit.ly Short URL API</legend>
<ol style="margin: 0; padding: 0 35px 0 20px;">
<li><a href="http://www.blueiblog.com/ko/archives/1976">API Key 획득 및 API 목록</a></li>
<li><a href="http://www.blueiblog.com/ko/archives/1986">Shorten 메소드 설명</a></li>
<li><a href="http://www.blueiblog.com/ko/archives/2029">PHP로 Shorten 메소드 이용해보기</a></li>
</ol>
</fieldset>
</div>
<p>이번에는 앞서 설명했던 내용을 토대로 shorten메소드에 대해서 알아보도록 하겠습니다. shorten메소드는 bit.ly의 API중 우리가 가장 많이 사용하게 될 메소드입니다. shorten메소드는 http://www.blueiblog.com/ko/archives/1976 와 같은 긴 주소를 http://bit.ly/b4ihSW 와 같이 짧게 줄여주는 역활을 합니다.</p>
<p>그럼 shorten메소드의 사용법에 대해서 알아보도록 하겠습니다.</p>
<h2>Shorten Method 요청 및 결과</h2>
<p>Shorten메소드는 아래와 같은 파라미터를 입력해야 사용 할 수 있습니다. 입력해야 할 파라미터와 그 설명은 아래와 같습니다.</p>
<fieldset>
<legend>Parameter</legend>
<ul style="margin-top: 0; margin-bottom: 0;">
<li><strong>version</strong> : API 버젼을 입력하는 기본 파라미터(모든 함수 동일)</li>
<li><strong>login</strong> : API를 이용할 아이디(모든 함수 동일)</li>
<li><strong>apiKey</strong> : API를 이용할 Key(모든 함수 동일)</li>
<li><strong>format</strong> : xml과 json중 선택 가능, format파라미터를 입력하지 않으면 JSON으로 반환</li>
<li><strong style="color:blue;">longUrl</strong> : 짧은 URL로 변경할 원래 URL</li>
</ul>
</fieldset>
<p>그럼 위 메소드를 어떻게 사용하는지 알아보도록 하겠습니다. 우선 http://www.blueiblog.com/ko/archives/1976 주소를 짧게 변경하고 싶다면 아래와 같이 shorten메소드를 호출 해 보겠습니다. 브라우저의 주소 입력 창에 아래와 같이 입력해보세요. <span style="text-decoration: underline;">(아래 이미지를 클릭하시면 원본 사이즈로 보실 수 있습니다.)</span></p>
<p><a href="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/2010-02-06_112346.gif" rel="lightbox[1986]"><img src="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/2010-02-06_112346-720x35.gif" alt="" title="2010-02-06_112346" width="720" height="35" class="aligncenter size-large wp-image-1994" /></a></p>

<div class="wp_syntax"><div class="code"><pre class="url" style="font-family:monospace;">http://api.bit.ly/shorten?version=2.0.1&amp;longUrl=http://www.blueiblog.com/ko/archives/1976&amp;login=xxxx&amp;apiKey=xxxxxxxxxxxx</pre></div></div>

<p>이와 같이 브라우져에 데이터를 요청하게 되면 다음과 같은 결과를 얻을 수 있습니다.</p>

<div class="wp_syntax"><div class="code"><pre class="json" style="font-family:monospace;">{
    &quot;errorCode&quot;: 0, 
    &quot;errorMessage&quot;: &quot;&quot;, 
    &quot;results&quot;: {
        &quot;http://www.blueiblog.com/ko/archives/1976&quot;: {
            &quot;hash&quot;: &quot;b4ihSW&quot;, 
            &quot;shortCNAMEUrl&quot;: &quot;http://bit.ly/9pTARb&quot;, 
            &quot;shortKeywordUrl&quot;: &quot;&quot;, 
            &quot;shortUrl&quot;: &quot;http://bit.ly/9pTARb&quot;, 
            &quot;userHash&quot;: &quot;9pTARb&quot;
        }
    }, 
    &quot;statusCode&quot;: &quot;OK&quot;
}</pre></div></div>

<p>위 결과 처럼 Shorten메소드의 호출 결과는 JSON데이터로 반환 됩니다. format파라미터를 xml로 입력하면 xml로 결과를 반환 받을 수 있습니다. 아래는 xml로 반환 받은 경우의 결과 데이터 입니다.</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;bitly<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;errorCode<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>0<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/errorCode<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;errorMessage</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;results<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;nodeKeyVal<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
			<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;shortKeywordUrl</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
			<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;hash<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>b4ihSW<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/hash<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
			<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;userHash<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>9pTARb<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/userHash<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
			<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;nodeKey<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>http://www.blueiblog.com/ko/archives/1976<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/nodeKey<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
			<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;shortUrl<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>http://bit.ly/9pTARb<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/shortUrl<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
			<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;shortCNAMEUrl<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>http://bit.ly/9pTARb<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/shortCNAMEUrl<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
		<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/nodeKeyVal<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/results<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
	<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;statusCode<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>OK<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/statusCode<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/bitly<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>위 결과 처럼 xml로도 데이터를 반환 받을 수 있습니다. 하지만 우리는 기본포맷인 json으로 받은 데이터를 이용하여 프로그램을 작성 할 것입니다.</p>
<div style="margin: 10px 0 10px 0; border: 3px solid #6FA7D1; display: inline-block; width: 720px;"><p style="padding: 0 0 0 20px; margin: 0; line-height: 30px; border-bottom: 1px solid #6FA7D1; background: #CBDEED; font-weight: bold;">이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^</p><ul style="list-style-type: none; margin: 0;; padding: 0;"><li style="width: 100px; float: left; padding-top: 5px; margin: 5px 0;"><div class="blogger-news-widget notprint" style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="67" height="80">
	<param name="movie" value="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5731093" />
	<!--[if !IE]> <-->
	<object type="application/x-shockwave-flash" data="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5731093" width="67" height="80">
		<p>플래시를 지원하지 않는 브라우저입니다.</p>
	</object>
	<!--> <![endif]-->
</object></div></li><li style="height: 100px; overflow: hidden; padding: 20px 0 0 0; text-align: center; margin-bottom: -20px;">
<script type='text/javascript'><!--
google_ad_client = 'pub-1866412074966530';
/* 468x60, 작성됨 09. 10. 29 */
google_ad_slot = '9943142053';
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type='text/javascript'
src='http://pagead2.googlesyndication.com/pagead/show_ads.js'>
</script>
</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.blueiblog.com/ko/archives/1986/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP &#8211; bit.ly Short URL API &#8211; API Key 획득 및 API 목록</title>
		<link>http://www.blueiblog.com/ko/archives/1976</link>
		<comments>http://www.blueiblog.com/ko/archives/1976#comments</comments>
		<pubDate>Fri, 05 Feb 2010 07:56:41 +0000</pubDate>
		<dc:creator>Blueⓘ</dc:creator>
				<category><![CDATA[Open API]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[bit.ly]]></category>

		<guid isPermaLink="false">http://www.blueiblog.com/ko/?p=1976</guid>
		<description><![CDATA[
PHP – bit.ly Short URL API

API Key 획득 및 API 목록
Shorten 메소드 설명
PHP로 Shorten 메소드 이용해보기



마이크로 블로깅으로 인해 숏URL 서비스가 인기를 얻는 세상이 왔습니다. 옛날 같으면 쓰지도 않던 기능인데 말이죠 ^^
저 역시 블로그 글을 출판하게 되면 자동으로 트위터에 포스트의 제목과 URL을 추가하여 출판하고 있습니다. 하지만 역시 블로그의 주소는 길기에&#8230; 어쩔수 없이 Short URL기능을 이용해야 합니다. [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin: 0 0 10px 20px; background: #fff;">
<fieldset>
<legend>PHP – bit.ly Short URL API</legend>
<ol style="margin: 0; padding: 0 35px 0 20px;">
<li><a href="http://www.blueiblog.com/ko/archives/1976">API Key 획득 및 API 목록</a></li>
<li><a href="http://www.blueiblog.com/ko/archives/1986">Shorten 메소드 설명</a></li>
<li><a href="http://www.blueiblog.com/ko/archives/2029">PHP로 Shorten 메소드 이용해보기</a></li>
</ol>
</fieldset>
</div>
<p>마이크로 블로깅으로 인해 숏URL 서비스가 인기를 얻는 세상이 왔습니다. 옛날 같으면 쓰지도 않던 기능인데 말이죠 ^^</p>
<p>저 역시 블로그 글을 출판하게 되면 자동으로 트위터에 포스트의 제목과 URL을 추가하여 출판하고 있습니다. 하지만 역시 블로그의 주소는 길기에&#8230; 어쩔수 없이 Short URL기능을 이용해야 합니다. 그래서 <a href="http://bit.ly" target="_blank">bit.ly</a>의 Short URL API에 대해 알아 보았습니다.</p>
<p>그럼 PHP를 이용하여 <a href="http://bit.ly" target="_blank">bit.ly</a>의 Short URL을 가져오는 방법에 대해서 알아보도록 하겠습니다.</p>
<h2>bit.ly의 API Key 얻기</h2>
<p>여느 API와 마찬가지로 API를 이용하기 위해서는 API Key를 얻어야 합니다. 우선 <a href="http://bit.ly" target="_blank">http://bit.ly</a>의 홈페이지로 이동 한 후 회원가입을 합니다. 회원 가입후 어카운트 정보를 확인하면 아래와 같이 API Key가 보여집니다. (제 API Key 보안을 위해 ^^; 해당 부분은 모자이크 처리 했습니다.)</p>
<p><a href="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/2010-02-05_164433.gif" rel="lightbox[1976]"><img src="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/2010-02-05_164433-720x340.gif" alt="" title="2010-02-05_164433" width="720" height="340" class="aligncenter size-large wp-image-1978" /></a></p>
<p>물론 이렇게 얻은 API Key가 유출되었다면 우측의 Reset키를 누르시면 새로운 API Key를 발급 받으실수 있습니다.</p>
<h2>bit.ly API 목록</h2>
<p><a href="http://bit.ly" target="_blank">bit.ly</a>는 다른 OPEN API에 비해 API의 종류가 매우 간단합니다. 우선 API 리스트는 아래와 같습니다.</p>
<ol>
<li><strong>shorten</strong> : 우리가 제일 필요로 하는 API로 URL을 bit.ly의 짧은 URL로 바꾸어주는 API입니다.</li>
<li><strong>expand</strong> : bit.ly/xxxxx 형식으로 되어 있는 Short URL을 원래의 URL로 바꾸어주는 API입니다.</li>
<li><strong>info</strong> : bit.ly의 Short URL에 해당하는 정보를 보여주는 API입니다.</li>
<li><strong>stats</strong> : bit.ly Short URL의 트래픽 및 레퍼러 정보를 보여주는 API입니다.</li>
<li><strong>errors</strong> : bit.ly에서 사용되는 ERROR CODE를 보여주는 API입니다.</li>
</ol>
<p>P.S. bit.ly의 API 문서 페이지는 <a href="http://code.google.com/p/bitly-api/wiki/ApiDocumentation" target="_blank">http://code.google.com/p/bitly-api/wiki/ApiDocumentation</a> 입니다.</p>
<div style="margin: 10px 0 10px 0; border: 3px solid #6FA7D1; display: inline-block; width: 720px;"><p style="padding: 0 0 0 20px; margin: 0; line-height: 30px; border-bottom: 1px solid #6FA7D1; background: #CBDEED; font-weight: bold;">이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^</p><ul style="list-style-type: none; margin: 0;; padding: 0;"><li style="width: 100px; float: left; padding-top: 5px; margin: 5px 0;"><div class="blogger-news-widget notprint" style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="67" height="80">
	<param name="movie" value="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5723626" />
	<!--[if !IE]> <-->
	<object type="application/x-shockwave-flash" data="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5723626" width="67" height="80">
		<p>플래시를 지원하지 않는 브라우저입니다.</p>
	</object>
	<!--> <![endif]-->
</object></div></li><li style="height: 100px; overflow: hidden; padding: 20px 0 0 0; text-align: center; margin-bottom: -20px;">
<script type='text/javascript'><!--
google_ad_client = 'pub-1866412074966530';
/* 468x60, 작성됨 09. 10. 29 */
google_ad_slot = '9943142053';
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type='text/javascript'
src='http://pagead2.googlesyndication.com/pagead/show_ads.js'>
</script>
</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.blueiblog.com/ko/archives/1976/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>jQuery 1.4 공식 릴리즈 소식</title>
		<link>http://www.blueiblog.com/ko/archives/1968</link>
		<comments>http://www.blueiblog.com/ko/archives/1968#comments</comments>
		<pubDate>Thu, 04 Feb 2010 05:52:11 +0000</pubDate>
		<dc:creator>Blueⓘ</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.blueiblog.com/ko/?p=1968</guid>
		<description><![CDATA[jQuery 1.4가 공식 릴리즈 되었습니다. 2010년 1월 14일이니 좀 됐군요&#8230;
1.4버젼이 공식 릴리즈 되면서 jQuery API 페이지의 변화가 보이는군요&#8230;(jQuery 1.4가 릴리즈 되었는데 홈페이지의 변화 부터 봅니다 ㅡㅡ;) 그동안 좀 보기 어려웠다고 할만한 API페이지가 조금 더 보기 쉽게 변화 되었습니다. 워낙 다른 API에 비해 메뉴얼이 어려워서 진입장벽이 있다고 생각하는 jQuery이기때문에 API 페이지에 신경쓴건 좋았다고 평하고 싶습니다.
jQuery 1.4 [...]]]></description>
			<content:encoded><![CDATA[<p>jQuery 1.4가 공식 릴리즈 되었습니다. 2010년 1월 14일이니 좀 됐군요&#8230;</p>
<p>1.4버젼이 공식 릴리즈 되면서 jQuery API 페이지의 변화가 보이는군요&#8230;(jQuery 1.4가 릴리즈 되었는데 홈페이지의 변화 부터 봅니다 ㅡㅡ;) 그동안 좀 보기 어려웠다고 할만한 API페이지가 조금 더 보기 쉽게 변화 되었습니다. 워낙 다른 API에 비해 메뉴얼이 어려워서 진입장벽이 있다고 생각하는 jQuery이기때문에 API 페이지에 신경쓴건 좋았다고 평하고 싶습니다.</p>
<h2>jQuery 1.4 Release Note</h2>
<p>우선 jQuery 1.4에서 변화된 내용을 살펴보면&#8230;</p>
<ol>
<li>좀 더 쉬운 setter 함수</li>
<li>.css()와 .attr()의 성능 향상</li>
<li>빠른 element 생성</li>
<li>기타 등등</li>
</ol>
<p>입니다&#8230; 뭐 워낙 많아서&#8230; 번역하기 힘듭니다 ^^ <a href="http://jquery14.com/day-01/jquery-14" target="_blank">http://jquery14.com/day-01/jquery-14</a> 에 접속하시면 직접 보실 수 있습니다. 게을러서 죄송합니다 ㅠ.ㅠ</p>
<p>뭐 <strong>전체적으로 성능이 무척 향상 되었고 괜찮은 기능좀 넣었다</strong> 라고 보시면 될거 같습니다.</p>
<div style="margin: 10px 0 10px 0; border: 3px solid #6FA7D1; display: inline-block; width: 720px;"><p style="padding: 0 0 0 20px; margin: 0; line-height: 30px; border-bottom: 1px solid #6FA7D1; background: #CBDEED; font-weight: bold;">이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^</p><ul style="list-style-type: none; margin: 0;; padding: 0;"><li style="width: 100px; float: left; padding-top: 5px; margin: 5px 0;"><div class="blogger-news-widget notprint" style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="67" height="80">
	<param name="movie" value="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5708130" />
	<!--[if !IE]> <-->
	<object type="application/x-shockwave-flash" data="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5708130" width="67" height="80">
		<p>플래시를 지원하지 않는 브라우저입니다.</p>
	</object>
	<!--> <![endif]-->
</object></div></li><li style="height: 100px; overflow: hidden; padding: 20px 0 0 0; text-align: center; margin-bottom: -20px;">
<script type='text/javascript'><!--
google_ad_client = 'pub-1866412074966530';
/* 468x60, 작성됨 09. 10. 29 */
google_ad_slot = '9943142053';
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type='text/javascript'
src='http://pagead2.googlesyndication.com/pagead/show_ads.js'>
</script>
</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.blueiblog.com/ko/archives/1968/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>소아 예방접종 일정표</title>
		<link>http://www.blueiblog.com/ko/archives/1954</link>
		<comments>http://www.blueiblog.com/ko/archives/1954#comments</comments>
		<pubDate>Thu, 04 Feb 2010 00:20:36 +0000</pubDate>
		<dc:creator>Blueⓘ</dc:creator>
				<category><![CDATA[육아일기]]></category>
		<category><![CDATA[소아건강]]></category>
		<category><![CDATA[소아예방접종]]></category>
		<category><![CDATA[예방접종일정표]]></category>
		<category><![CDATA[육아건강]]></category>

		<guid isPermaLink="false">http://www.blueiblog.com/ko/?p=1954</guid>
		<description><![CDATA[
육아건강과 관련된 포스트

아이 경련 대처법
한국소아표준발육표
소아 예방접종 일정표



세상에서 가장 소중한 우리 아이들. 출산전에는 우리 아이가 훌륭한 사람이 되길 소망해보지만 막상 출산에 임박하면서 부터는 같이 숨쉴수 있는 것만으로도 너무 행복합니다. 여러분도 그렇죠? ^^
그래서 우리 아이의 건강을 지켜주는 소아 예방접종 일정표를 구해 적어봅니다. 다들 아시는 내용이지만 소아 예방접종은 국가가 지원하는 필수 예방접종과 기타 예방접종으로 나누어 지며 필수 예방접종의 [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin: 0 0 10px 20px;">
<fieldset>
<legend>육아건강과 관련된 포스트</legend>
<ol style="margin: 0; padding: 0 35px 0 20px;">
<li><a href="http://www.blueiblog.com/ko/archives/1530">아이 경련 대처법</a></li>
<li><a href="http://www.blueiblog.com/ko/archives/392">한국소아표준발육표</a></li>
<li><a href="http://www.blueiblog.com/ko/archives/1954">소아 예방접종 일정표</a></li>
</ol>
</fieldset>
</div>
<p>세상에서 가장 소중한 우리 아이들. 출산전에는 우리 아이가 훌륭한 사람이 되길 소망해보지만 막상 출산에 임박하면서 부터는 같이 숨쉴수 있는 것만으로도 너무 행복합니다. 여러분도 그렇죠? ^^</p>
<p>그래서 우리 아이의 건강을 지켜주는 소아 예방접종 일정표를 구해 적어봅니다. 다들 아시는 내용이지만 소아 예방접종은 국가가 지원하는 필수 예방접종과 기타 예방접종으로 나누어 지며 필수 예방접종의 경우 가까운 보건소에서 무료로 접종 가능합니다.</p>
<p>아래 표는 소아 예방접종 일정표 입니다. <a href="http://niptmp.cdc.go.kr/nip/schedule/ptninjschedule.asp" target="_blank">http://niptmp.cdc.go.kr/nip/schedule/ptninjschedule.asp</a>에 접속하시면 더욱 자세한 정보를 얻으실수 있습니다.</p>
<p><a href="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/2010-02-04_091035.gif" rel="lightbox[1954]"><img src="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/2010-02-04_091035.gif" alt="" title="2010-02-04_091035" width="643" height="924" class="aligncenter size-full wp-image-1955" /></a></p>
<div style="margin: 10px 0 10px 0; border: 3px solid #6FA7D1; display: inline-block; width: 720px;"><p style="padding: 0 0 0 20px; margin: 0; line-height: 30px; border-bottom: 1px solid #6FA7D1; background: #CBDEED; font-weight: bold;">이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^</p><ul style="list-style-type: none; margin: 0;; padding: 0;"><li style="width: 100px; float: left; padding-top: 5px; margin: 5px 0;"><div class="blogger-news-widget notprint" style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="67" height="80">
	<param name="movie" value="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5703507" />
	<!--[if !IE]> <-->
	<object type="application/x-shockwave-flash" data="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5703507" width="67" height="80">
		<p>플래시를 지원하지 않는 브라우저입니다.</p>
	</object>
	<!--> <![endif]-->
</object></div></li><li style="height: 100px; overflow: hidden; padding: 20px 0 0 0; text-align: center; margin-bottom: -20px;">
<script type='text/javascript'><!--
google_ad_client = 'pub-1866412074966530';
/* 468x60, 작성됨 09. 10. 29 */
google_ad_slot = '9943142053';
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type='text/javascript'
src='http://pagead2.googlesyndication.com/pagead/show_ads.js'>
</script>
</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.blueiblog.com/ko/archives/1954/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>트위터 시작 9개월만에 팔로워 100명 달성~~~</title>
		<link>http://www.blueiblog.com/ko/archives/1951</link>
		<comments>http://www.blueiblog.com/ko/archives/1951#comments</comments>
		<pubDate>Wed, 03 Feb 2010 23:52:33 +0000</pubDate>
		<dc:creator>Blueⓘ</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[주절주절]]></category>

		<guid isPermaLink="false">http://www.blueiblog.com/ko/?p=1951</guid>
		<description><![CDATA[트위터를 시작한지 9개월 만에 팔로워 100명 달성 했군요. 한동안 트윗질 않하다가 최근 블로그 포스팅 기능과 함께 다시 이용하기 시작했는데&#8230;
드뎌 100명을 돌파 했습니다. 이제 다음 목표는 1000명을 목표로 ^^
저를 팔로잉 하고 싶으신분들은 ^^ http://twitter.com/dadyzeus 로 접속하셔서 팔로잉 해주세요 ^^

이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^
	
	
	
		플래시를 지원하지 않는 브라우저입니다.
	
	 





]]></description>
			<content:encoded><![CDATA[<p>트위터를 시작한지 9개월 만에 팔로워 100명 달성 했군요. 한동안 트윗질 않하다가 최근 블로그 포스팅 기능과 함께 다시 이용하기 시작했는데&#8230;</p>
<p>드뎌 100명을 돌파 했습니다. 이제 다음 목표는 1000명을 목표로 ^^</p>
<p>저를 팔로잉 하고 싶으신분들은 ^^ <a href="http://twitter.com/dadyzeus" target="_blank"><strong>http://twitter.com/dadyzeus</strong></a> 로 접속하셔서 팔로잉 해주세요 ^^</p>
<p><a href="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/2010-02-04_084832.gif" rel="lightbox[1951]"><img src="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/2010-02-04_084832.gif" alt="" title="2010-02-04_084832" width="198" height="97" class="aligncenter size-full wp-image-1952" /></a></p>
<div style="margin: 10px 0 10px 0; border: 3px solid #6FA7D1; display: inline-block; width: 720px;"><p style="padding: 0 0 0 20px; margin: 0; line-height: 30px; border-bottom: 1px solid #6FA7D1; background: #CBDEED; font-weight: bold;">이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^</p><ul style="list-style-type: none; margin: 0;; padding: 0;"><li style="width: 100px; float: left; padding-top: 5px; margin: 5px 0;"><div class="blogger-news-widget notprint" style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="67" height="80">
	<param name="movie" value="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5703511" />
	<!--[if !IE]> <-->
	<object type="application/x-shockwave-flash" data="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5703511" width="67" height="80">
		<p>플래시를 지원하지 않는 브라우저입니다.</p>
	</object>
	<!--> <![endif]-->
</object></div></li><li style="height: 100px; overflow: hidden; padding: 20px 0 0 0; text-align: center; margin-bottom: -20px;">
<script type='text/javascript'><!--
google_ad_client = 'pub-1866412074966530';
/* 468x60, 작성됨 09. 10. 29 */
google_ad_slot = '9943142053';
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type='text/javascript'
src='http://pagead2.googlesyndication.com/pagead/show_ads.js'>
</script>
</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.blueiblog.com/ko/archives/1951/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>다음 뷰 추천 카운트를 늘리기 위한 고육 지책을 썼건만~~~</title>
		<link>http://www.blueiblog.com/ko/archives/1945</link>
		<comments>http://www.blueiblog.com/ko/archives/1945#comments</comments>
		<pubDate>Wed, 03 Feb 2010 02:55:20 +0000</pubDate>
		<dc:creator>Blueⓘ</dc:creator>
				<category><![CDATA[주절주절]]></category>
		<category><![CDATA[다음뷰]]></category>
		<category><![CDATA[올블로그]]></category>
		<category><![CDATA[추천]]></category>

		<guid isPermaLink="false">http://www.blueiblog.com/ko/?p=1945</guid>
		<description><![CDATA[블로그를 운영하는 사람은 모두 같겠지만&#8230; 올블로그나 다음뷰등의 추천카운트가 늘어나길 희망하죠.
저역시 마찬가지랍니다 ^^ 솔직히 예전에 포스팅을 보면 자동으로 다음뷰 추천 카운트 되게 했었는데&#8230; 결국 다음이 알아차렸나 봅니다 ㅠ.ㅠ 이제는 자동으로 추천이 증가 하지 않더군요&#8230; 아래는 인증샷..

결국 포스팅에 추천 5가 넘기 힘든 저로써는 천군만마를 놓쳤죠&#8230; ^^ 뭐 그래서 별의 별 방법을 다 써보았습니다. 구걸도 해보고 혼자 여러 [...]]]></description>
			<content:encoded><![CDATA[<p>블로그를 운영하는 사람은 모두 같겠지만&#8230; 올블로그나 다음뷰등의 추천카운트가 늘어나길 희망하죠.</p>
<p>저역시 마찬가지랍니다 ^^ 솔직히 예전에 포스팅을 보면 자동으로 다음뷰 추천 카운트 되게 했었는데&#8230; 결국 다음이 알아차렸나 봅니다 ㅠ.ㅠ 이제는 자동으로 추천이 증가 하지 않더군요&#8230; 아래는 인증샷..</p>
<p><a href="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/2010-02-03_115226.gif" rel="lightbox[1945]"><img src="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/2010-02-03_115226.gif" alt="" title="2010-02-03_115226" width="506" height="301" class="aligncenter size-full wp-image-1946" /></a></p>
<p>결국 포스팅에 추천 5가 넘기 힘든 저로써는 천군만마를 놓쳤죠&#8230; ^^ 뭐 그래서 별의 별 방법을 다 써보았습니다. 구걸도 해보고 혼자 여러 컴퓨터로 접속해 추천도 해보고&#8230; 하지만 제 글은 인기가 없나 봅니다.</p>
<p>뭐 전문적인 블로그도 아니고 이것저것 잡학다식한 블로그라 꾸준히 찾아오는 사람도 없고&#8230; 별수 없죠..</p>
<p>그래서 본격적인 구걸을 해보았죠.. 추천 부분의 문구를 바꾸었습니다. 아래처럼&#8230;</p>
<p><a href="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/2010-02-03_114953.gif" rel="lightbox[1945]"><img src="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/2010-02-03_114953.gif" alt="" title="2010-02-03_114953" width="504" height="144" class="aligncenter size-full wp-image-1947" /></a></p>
<p>&#8220;도움이 되지 않더라도 추천을 요망한다는 문구인데&#8230;&#8221; 추천이 별로 없는것을 봐서는&#8230; 꽤 도움들이 되시나 봅니다 ^^</p>
<div style="margin: 10px 0 10px 0; border: 3px solid #6FA7D1; display: inline-block; width: 720px;"><p style="padding: 0 0 0 20px; margin: 0; line-height: 30px; border-bottom: 1px solid #6FA7D1; background: #CBDEED; font-weight: bold;">이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^</p><ul style="list-style-type: none; margin: 0;; padding: 0;"><li style="width: 100px; float: left; padding-top: 5px; margin: 5px 0;"><div class="blogger-news-widget notprint" style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="67" height="80">
	<param name="movie" value="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5690708" />
	<!--[if !IE]> <-->
	<object type="application/x-shockwave-flash" data="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5690708" width="67" height="80">
		<p>플래시를 지원하지 않는 브라우저입니다.</p>
	</object>
	<!--> <![endif]-->
</object></div></li><li style="height: 100px; overflow: hidden; padding: 20px 0 0 0; text-align: center; margin-bottom: -20px;">
<script type='text/javascript'><!--
google_ad_client = 'pub-1866412074966530';
/* 468x60, 작성됨 09. 10. 29 */
google_ad_slot = '9943142053';
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type='text/javascript'
src='http://pagead2.googlesyndication.com/pagead/show_ads.js'>
</script>
</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.blueiblog.com/ko/archives/1945/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>크롬 및 사파리에서 textarea 리사이징 막기</title>
		<link>http://www.blueiblog.com/ko/archives/1937</link>
		<comments>http://www.blueiblog.com/ko/archives/1937#comments</comments>
		<pubDate>Wed, 03 Feb 2010 02:18:52 +0000</pubDate>
		<dc:creator>Blueⓘ</dc:creator>
				<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[TEXTAREA 리사이징]]></category>

		<guid isPermaLink="false">http://www.blueiblog.com/ko/?p=1937</guid>
		<description><![CDATA[크롬 및 사파리에서 아래 그림과 같이 textarea를 사용자가 임의로 변경할수 있도록 되어 있습니다. 

이를 막는 CSS는 다음과 같습니다.

textarea &#123;
    resize: none;
&#125;

위 CSS는 전체 textarea의 리사이징을 막는 CSS이며 foo라는 이름을 가진 TEXTAREA만 막기 위해선 아래와 같이 사용 하시면 됩니다.

textarea&#91;name=foo&#93; &#123;
    resize: none;
&#125;

크롬과 사파리에서의 문제점은 위와 같이 막을 수 있으나 CSS [...]]]></description>
			<content:encoded><![CDATA[<p>크롬 및 사파리에서 아래 그림과 같이 textarea를 사용자가 임의로 변경할수 있도록 되어 있습니다. </p>
<p><a href="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/webkit-textarea-resizable.png" rel="lightbox[1937]"><img src="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/webkit-textarea-resizable.png" alt="" title="webkit-textarea-resizable" width="369" height="81" class="aligncenter size-full wp-image-1939" /></a></p>
<p>이를 막는 CSS는 다음과 같습니다.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">textarea <span style="color: #00AA00;">&#123;</span>
    resize<span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>위 CSS는 전체 textarea의 리사이징을 막는 CSS이며 foo라는 이름을 가진 TEXTAREA만 막기 위해선 아래와 같이 사용 하시면 됩니다.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">textarea<span style="color: #00AA00;">&#91;</span>name<span style="color: #00AA00;">=</span>foo<span style="color: #00AA00;">&#93;</span> <span style="color: #00AA00;">&#123;</span>
    resize<span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>크롬과 사파리에서의 문제점은 위와 같이 막을 수 있으나 <a href="http://jigsaw.w3.org/css-validator/" target="_blank">CSS 2 Validation을 체크</a>하게 되면 아래와 같은 에러가 발생 합니다.</p>
<p><strong>Property resize doesn&#8217;t exist in CSS level 2.1 but exists in [css3] : none</strong></p>
<p>즉 현재 많이 사용되고 있는 CSS 2에서는 지원되지 않는 프로퍼티이며 CSS 3부터는 지원한다는 이야기 입니다. 현재 위 프로퍼티는 Webkit 엔진을 가진 브라우저에서만 사용 가능 하나 Validation 체크 결과가 중요하지 않다면 위 예제처럼 사용하셔도 무방하겠군요.</p>
<div style="margin: 10px 0 10px 0; border: 3px solid #6FA7D1; display: inline-block; width: 720px;"><p style="padding: 0 0 0 20px; margin: 0; line-height: 30px; border-bottom: 1px solid #6FA7D1; background: #CBDEED; font-weight: bold;">이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^</p><ul style="list-style-type: none; margin: 0;; padding: 0;"><li style="width: 100px; float: left; padding-top: 5px; margin: 5px 0;"><div class="blogger-news-widget notprint" style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="67" height="80">
	<param name="movie" value="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5690095" />
	<!--[if !IE]> <-->
	<object type="application/x-shockwave-flash" data="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5690095" width="67" height="80">
		<p>플래시를 지원하지 않는 브라우저입니다.</p>
	</object>
	<!--> <![endif]-->
</object></div></li><li style="height: 100px; overflow: hidden; padding: 20px 0 0 0; text-align: center; margin-bottom: -20px;">
<script type='text/javascript'><!--
google_ad_client = 'pub-1866412074966530';
/* 468x60, 작성됨 09. 10. 29 */
google_ad_slot = '9943142053';
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type='text/javascript'
src='http://pagead2.googlesyndication.com/pagead/show_ads.js'>
</script>
</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.blueiblog.com/ko/archives/1937/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>아이패드(iPad)용 Free GUI 템플릿 등장~~~</title>
		<link>http://www.blueiblog.com/ko/archives/1913</link>
		<comments>http://www.blueiblog.com/ko/archives/1913#comments</comments>
		<pubDate>Tue, 02 Feb 2010 04:52:49 +0000</pubDate>
		<dc:creator>Blueⓘ</dc:creator>
				<category><![CDATA[주절주절]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPad 템플릿]]></category>
		<category><![CDATA[아이패드]]></category>
		<category><![CDATA[아이패드 템플릿]]></category>

		<guid isPermaLink="false">http://www.blueiblog.com/ko/?p=1913</guid>
		<description><![CDATA[아이패드용 프리 GUI 템플릿이 등장했군요.
http://www.teehanlax.com/blog/2010/02/01/ipad-gui-psd/에서 &#8220;iPad GUI PSD&#8221;란 타이틀로 공개 되었습니다. 

아이패드(iPad) 템플릿 다운로드
이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^
	
	
	
		플래시를 지원하지 않는 브라우저입니다.
	
	 





]]></description>
			<content:encoded><![CDATA[<p>아이패드용 프리 GUI 템플릿이 등장했군요.</p>
<p><a href="http://www.teehanlax.com/blog/2010/02/01/ipad-gui-psd/">http://www.teehanlax.com/blog/2010/02/01/ipad-gui-psd/</a>에서 &#8220;iPad GUI PSD&#8221;란 타이틀로 공개 되었습니다. </p>
<p><a href="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/ipad_GUI_PSD1.jpg" rel="lightbox[1913]"><img src="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/ipad_GUI_PSD1.jpg" alt="" title="ipad_GUI_PSD1" width="573" height="354" class="aligncenter size-full wp-image-1917" /></a></p>
<p><a href="http://teehanlax.com/downloads/iPad_GUI_1_0.psd.zip" style="font-size: 14px; font-weight: bold; color: #20A4D0;">아이패드(iPad) 템플릿 다운로드</a></p>
<div style="margin: 10px 0 10px 0; border: 3px solid #6FA7D1; display: inline-block; width: 720px;"><p style="padding: 0 0 0 20px; margin: 0; line-height: 30px; border-bottom: 1px solid #6FA7D1; background: #CBDEED; font-weight: bold;">이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^</p><ul style="list-style-type: none; margin: 0;; padding: 0;"><li style="width: 100px; float: left; padding-top: 5px; margin: 5px 0;"><div class="blogger-news-widget notprint" style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="67" height="80">
	<param name="movie" value="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5677607" />
	<!--[if !IE]> <-->
	<object type="application/x-shockwave-flash" data="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5677607" width="67" height="80">
		<p>플래시를 지원하지 않는 브라우저입니다.</p>
	</object>
	<!--> <![endif]-->
</object></div></li><li style="height: 100px; overflow: hidden; padding: 20px 0 0 0; text-align: center; margin-bottom: -20px;">
<script type='text/javascript'><!--
google_ad_client = 'pub-1866412074966530';
/* 468x60, 작성됨 09. 10. 29 */
google_ad_slot = '9943142053';
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type='text/javascript'
src='http://pagead2.googlesyndication.com/pagead/show_ads.js'>
</script>
</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.blueiblog.com/ko/archives/1913/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TG삼보 올 상반기 중 타블렛 PC 출시~~~</title>
		<link>http://www.blueiblog.com/ko/archives/1909</link>
		<comments>http://www.blueiblog.com/ko/archives/1909#comments</comments>
		<pubDate>Mon, 01 Feb 2010 06:30:04 +0000</pubDate>
		<dc:creator>Blueⓘ</dc:creator>
				<category><![CDATA[주절주절]]></category>
		<category><![CDATA[삼보컴퓨터]]></category>
		<category><![CDATA[애버라텍]]></category>
		<category><![CDATA[타블렛]]></category>

		<guid isPermaLink="false">http://www.blueiblog.com/ko/?p=1909</guid>
		<description><![CDATA[Engadget Korea의 최근 포스팅에 &#8220;TG삼보, 올 상반기 중 타블렛 PC 출시&#8220;라는 포스팅이 업뎃되었네요.
삼보 노트북은 왠지 못미덥다는 생각을 가지고 있지만 이번 타블렛 PC는 좀 관심이 갑니다. 가격만 맞으면 사고 싶은 욕망이~~~
OS는 윈도우 모바일 혹은 안드로이드등이 탑재될 예정이며 한컴 오피스가 기본으로 서비스 될 예정이랍니다.

이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^
	
	
	
		플래시를 지원하지 않는 브라우저입니다.
	
	 [...]]]></description>
			<content:encoded><![CDATA[<p>Engadget Korea의 최근 포스팅에 &#8220;<a href="http://kr.engadget.com/2010/02/01/tg-pc/" target="_blank">TG삼보, 올 상반기 중 타블렛 PC 출시</a>&#8220;라는 포스팅이 업뎃되었네요.</p>
<p>삼보 노트북은 왠지 못미덥다는 생각을 가지고 있지만 이번 타블렛 PC는 좀 관심이 갑니다. 가격만 맞으면 사고 싶은 욕망이~~~</p>
<p>OS는 윈도우 모바일 혹은 안드로이드등이 탑재될 예정이며 한컴 오피스가 기본으로 서비스 될 예정이랍니다.</p>
<p><a href="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/image_readtop.jpg" rel="lightbox[1909]"><img src="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/image_readtop.jpg" alt="" title="image_readtop" width="500" height="408" class="aligncenter size-full wp-image-1910" /></a></p>
<div style="margin: 10px 0 10px 0; border: 3px solid #6FA7D1; display: inline-block; width: 720px;"><p style="padding: 0 0 0 20px; margin: 0; line-height: 30px; border-bottom: 1px solid #6FA7D1; background: #CBDEED; font-weight: bold;">이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^</p><ul style="list-style-type: none; margin: 0;; padding: 0;"><li style="width: 100px; float: left; padding-top: 5px; margin: 5px 0;"><div class="blogger-news-widget notprint" style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="67" height="80">
	<param name="movie" value="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5664702" />
	<!--[if !IE]> <-->
	<object type="application/x-shockwave-flash" data="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5664702" width="67" height="80">
		<p>플래시를 지원하지 않는 브라우저입니다.</p>
	</object>
	<!--> <![endif]-->
</object></div></li><li style="height: 100px; overflow: hidden; padding: 20px 0 0 0; text-align: center; margin-bottom: -20px;">
<script type='text/javascript'><!--
google_ad_client = 'pub-1866412074966530';
/* 468x60, 작성됨 09. 10. 29 */
google_ad_slot = '9943142053';
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type='text/javascript'
src='http://pagead2.googlesyndication.com/pagead/show_ads.js'>
</script>
</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.blueiblog.com/ko/archives/1909/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>블로그 포스트 트위터 출판 기능 추가~~</title>
		<link>http://www.blueiblog.com/ko/archives/1903</link>
		<comments>http://www.blueiblog.com/ko/archives/1903#comments</comments>
		<pubDate>Mon, 01 Feb 2010 06:07:16 +0000</pubDate>
		<dc:creator>Blueⓘ</dc:creator>
				<category><![CDATA[개발 일지]]></category>
		<category><![CDATA[트위터]]></category>
		<category><![CDATA[포스팅]]></category>

		<guid isPermaLink="false">http://www.blueiblog.com/ko/?p=1903</guid>
		<description><![CDATA[블로그 포스트를 트위터에 출판해주는 기능을 추가해보았습니다.
아래 그림처럼 블로그를 출판하면 자동적으로 트위터에 포스팅 되죠 ^^. 블로그 펌링크가 길기에.. bit.ly를 통해 숏링크를 받아서 처리합니다. 혹 숏링크에 오류가 생길경우는 그대로 블로그 펌 링크를 올리기도 합니다.
혹 워드프레스 쓰시는분중 필요한분은 말씀하세요 ^^

이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^
	
	
	
		플래시를 지원하지 않는 브라우저입니다.
	
	 





]]></description>
			<content:encoded><![CDATA[<p>블로그 포스트를 트위터에 출판해주는 기능을 추가해보았습니다.</p>
<p>아래 그림처럼 블로그를 출판하면 자동적으로 트위터에 포스팅 되죠 ^^. 블로그 펌링크가 길기에.. bit.ly를 통해 숏링크를 받아서 처리합니다. 혹 숏링크에 오류가 생길경우는 그대로 블로그 펌 링크를 올리기도 합니다.</p>
<p>혹 워드프레스 쓰시는분중 필요한분은 말씀하세요 ^^</p>
<p><a href="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/2010-02-01_150737.gif" rel="lightbox[1903]"><img src="http://www.blueiblog.com/ko/wp-content/uploads/2010/02/2010-02-01_150737.gif" alt="" title="2010-02-01_150737" width="537" height="121" class="aligncenter size-full wp-image-1905" /></a></p>
<div style="margin: 10px 0 10px 0; border: 3px solid #6FA7D1; display: inline-block; width: 720px;"><p style="padding: 0 0 0 20px; margin: 0; line-height: 30px; border-bottom: 1px solid #6FA7D1; background: #CBDEED; font-weight: bold;">이 글이 도움이 않되셨더라도 왼쪽 아래에 있는 손 모양의 추천을 눌러주세요...^^</p><ul style="list-style-type: none; margin: 0;; padding: 0;"><li style="width: 100px; float: left; padding-top: 5px; margin: 5px 0;"><div class="blogger-news-widget notprint" style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="67" height="80">
	<param name="movie" value="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5664703" />
	<!--[if !IE]> <-->
	<object type="application/x-shockwave-flash" data="http://api.bloggernews.media.daum.net/static/recombox3.swf?nid=5664703" width="67" height="80">
		<p>플래시를 지원하지 않는 브라우저입니다.</p>
	</object>
	<!--> <![endif]-->
</object></div></li><li style="height: 100px; overflow: hidden; padding: 20px 0 0 0; text-align: center; margin-bottom: -20px;">
<script type='text/javascript'><!--
google_ad_client = 'pub-1866412074966530';
/* 468x60, 작성됨 09. 10. 29 */
google_ad_slot = '9943142053';
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type='text/javascript'
src='http://pagead2.googlesyndication.com/pagead/show_ads.js'>
</script>
</li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.blueiblog.com/ko/archives/1903/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
