<?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>Istanto Blog - Online Business, Short Reviews, Computers and Internet, Tips and Trick, Make Money Online. &#187; youtube</title>
	<atom:link href="http://www.istanto.net/tag/youtube/feed" rel="self" type="application/rss+xml" />
	<link>http://www.istanto.net</link>
	<description>Online Business, Short Reviews, Computers and Internet, Tips and Trick, Make Money Online.</description>
	<lastBuildDate>Sun, 08 Jan 2012 02:56:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>PHP: How To Created Youtube Related Video</title>
		<link>http://www.istanto.net/php-how-to-created-youtube-related-video.html</link>
		<comments>http://www.istanto.net/php-how-to-created-youtube-related-video.html#comments</comments>
		<pubDate>Mon, 15 Aug 2011 13:50:40 +0000</pubDate>
		<dc:creator>Istanto</dc:creator>
				<category><![CDATA[Computer And Internet]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[related video]]></category>
		<category><![CDATA[youtube]]></category>
		<category><![CDATA[youtube related]]></category>

		<guid isPermaLink="false">http://www.istanto.net/?p=2537</guid>
		<description><![CDATA[This stupid idea come into my head when I analyze the most keywords coming to one of my lyrics site. Mostly people coming to my site with a relevant keyword, example: song title and artist name. I need something to make an interactive place for them to keep them coming back. I was thinking about [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">This <em>stupid</em> idea come into my head when I analyze the most keywords coming to one of my lyrics site. Mostly people coming to my site with a relevant keyword, example: song title and artist name. I need something to make an interactive place for them to keep them coming back. I was thinking about an video preview and it ended with related video idea.</p>
<p style="text-align: justify;">On this short articles I will share the way to created youtube related video using combination of PHP and javascript (using wordpress as CMS, of course you can edit it to fit your site). This feature will fits for mp3 sites or reviews related site which may need related video to give more information to visitors.</p>
<p style="text-align: justify;">First we will need this javascript code:</p>
<blockquote><p>function ytlist(data) {<br />
var feed = data.feed;<br />
var entries = feed.entry || [];<br />
var html = ['&lt;ul class="yt-related"&gt;'];<br />
for (var i = 0; i &lt; entries.length; i++) {<br />
var entry = entries[i];<br />
var thumbnailUrl = entries[i].media$group.media$thumbnail[0].url;<br />
var playerUrl = entries[i].media$group.media$content[0].url;<br />
html.push(&#8216;&lt;li onclick=&#8221;loadVideo(\&#8221;, playerUrl, &#8216;\&#8217;, true)&#8221;&gt;&#8217;, &#8216;&lt;img src=&#8221;&#8216;, thumbnailUrl, &#8216;&#8221; width=&#8221;130&#8243; height=&#8221;90&#8243;/&gt;&#8217;, &#8216;&lt;/span&gt;&lt;/li&gt;&#8217;);<br />
}<br />
html.push(&#8216;&lt;/ul&gt;&lt;br style=&#8221;clear: left;&#8221;/&gt;&#8217;);<br />
document.getElementById(&#8216;ytlist&#8217;).innerHTML = html.join(&#8221;);<br />
if (entries.length &gt; 0) {<br />
loadVideo(entries[0].media$group.media$content[0].url, false);<br />
}<br />
}<br />
function loadVideo(playerUrl, autoplay) {<br />
var atts = {<br />
id: &#8216;ytbox&#8217;<br />
};<br />
swfobject.embedSWF(playerUrl + &#8216;&amp;fs=1&amp;enablejsapi=1&amp;autoplay=&#8217; + (autoplay ? 1 : 0), &#8216;player&#8217;, &#8217;500&#8242;, &#8217;300&#8242;, &#8217;9.0.0&#8242;, false, false, {<br />
allowfullscreen: &#8216;true&#8217;<br />
}, {<br />
allowscriptaccess: &#8216;always&#8217;<br />
});<br />
}<br />
function setVisibility(id, visibility) {<br />
document.getElementById(id).style.display = visibility;</p></blockquote>
<p style="text-align: justify;">Save it as yt.js or get it directly from here <a href="http://www.istanto.net/files/yt.js" target="_blank">yt.js</a> upload it into the right place (in this sample I used wordpress so I put it into themes folder). Next in your header site put this code before &lt;/head&gt; tag</p>
<blockquote><p>&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://<strong>YOURDOMAIN</strong>/<strong>PATH</strong>/yt.js&#8221;&gt;&lt;/script&gt;<br />
&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://swfobject.googlecode.com/svn/trunk/swfobject/swfobject.js&#8221;&gt;&lt;/script&gt;</p></blockquote>
<p style="text-align: justify;">After this done create CSS file or add this code bellow if you&#8217;re already have the CSS file.</p>
<blockquote><p>#yt{background:#FFF;width:575px}<br />
.close{background:#eee;font-size:12px;height:20px;text-align:right;width:500px}<br />
.close a{color:#111}<br />
ul.yt-related li{cursor:pointer;float:left;list-style:none;margin:5px;width:130px}<br />
ul.yt-related{margin-bottom:10px;margin-top:10px}<br />
#ytbox{display:none;float:left;height:300px;margin:20px;width:500px}<br />
#player{margin-bottom:20px}<br />
#ytlist{margin-top:10px}</p></blockquote>
<p style="text-align: justify;">Last step is just put this code in area where you want related video shown. Because in this sample I used wordpress I put this code on single.php and using &lt;?php the_title(); ?&gt; as the keyword for related video (you can change this to anything you like).</p>
<blockquote><p>&lt;div id=&#8221;yt&#8221;&gt; &lt;h4&gt;Video Terkait Tentang &lt;?php the_title(); ?&gt;&lt;/h4&gt;<br />
&lt;div id=&#8221;ytbox&#8221;&gt;<br />
&lt;div class=&#8221;close&#8221;<br />
onclick=&#8221;setVisibility(&#8216;ytbox&#8217;, &#8216;none&#8217;);&#8221;&gt;<br />
&lt;center&gt;&lt;a href=&#8221;javascript:void(0)&#8221;&gt;Selesai Menonton&lt;/a&gt;&lt;/center&gt;<br />
&lt;/div&gt;<br />
&lt;object id=&#8221;player&#8221;&gt;&lt;/object&gt;<br />
&lt;/div&gt;<br />
&lt;div id=&#8221;ytlist&#8221; onclick=&#8221;setVisibility(&#8216;ytbox&#8217;, &#8216;block&#8217;);&#8221;&gt;<br />
&lt;/div&gt;<br />
&lt;center&gt;&lt;script type=&#8221;text/javascript&#8221;<br />
src=&#8221;http://gdata.youtube.com/feeds/api/videos?q=&lt;?php the_title(); ?&gt;&amp;alt=json-in-script&amp;callback=ytlist&amp;max-results=4&amp;format=5&#8243;&gt;<br />
&lt;/script&gt;&lt;/center&gt;<br />
&lt;/div&gt;<br />
&lt;div id=&#8221;yt&#8221;&gt; &lt;h4&gt;Video Terkait Tentang &lt;?php the_title(); ?&gt;&lt;/h4&gt;<br />
&lt;div id=&#8221;ytbox&#8221;&gt;<br />
&lt;div class=&#8221;close&#8221;<br />
onclick=&#8221;setVisibility(&#8216;ytbox&#8217;, &#8216;none&#8217;);&#8221;&gt;<br />
&lt;center&gt;&lt;a href=&#8221;javascript:void(0)&#8221;&gt;<strong>Selesai Menonton</strong>&lt;/a&gt;&lt;/center&gt;<br />
&lt;/div&gt;<br />
&lt;object id=&#8221;player&#8221;&gt;&lt;/object&gt;<br />
&lt;/div&gt;<br />
&lt;div id=&#8221;ytlist&#8221; onclick=&#8221;setVisibility(&#8216;ytbox&#8217;, &#8216;block&#8217;);&#8221;&gt;<br />
&lt;/div&gt;<br />
&lt;center&gt;&lt;script type=&#8221;text/javascript&#8221;<br />
src=&#8221;http://gdata.youtube.com/feeds/api/videos?q=<strong>&lt;?php the_title(); ?&gt;</strong>&amp;alt=json-in-script&amp;callback=ytlist&amp;max-results=<strong>4</strong>&amp;format=<strong>5</strong>&#8220;&gt;<br />
&lt;/script&gt;&lt;/center&gt;<br />
&lt;/div&gt;</p></blockquote>
<p>The result will be like this sample:</p>
<p><a href="http://www.istanto.net/wp-content/uploads/2011/08/ist-related-video.jpg"><img class="aligncenter size-medium wp-image-2539" title="ist-related-video" src="http://www.istanto.net/wp-content/uploads/2011/08/ist-related-video-293x300.jpg" alt="" width="293" height="300" /></a></p>
<p style="text-align: justify;">You can check the live sample in here <a title="judas" href="http://lyrics.mp3zap.net/judas.html" target="_blank">http://lyrics.mp3zap.net/judas.html</a> Try opening another post and check the related video it will automatically searching related video on youtube using post title as keyword.</p>
<p style="text-align: justify;">Have problem to integrate? don&#8217;t be shy to asking as long I&#8217;m not busy I will help. That&#8217;s share for today, Have a nice day <img src='http://www.istanto.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.istanto.net/php-how-to-created-youtube-related-video.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YM and Skype Virus:YouTube Lady_Eats_Her_Shit Worm:Coutsonif.A</title>
		<link>http://www.istanto.net/ym-and-skype-virus-youtube-lady_eats_her_shit.html</link>
		<comments>http://www.istanto.net/ym-and-skype-virus-youtube-lady_eats_her_shit.html#comments</comments>
		<pubDate>Sat, 14 Feb 2009 23:53:43 +0000</pubDate>
		<dc:creator>Istanto</dc:creator>
				<category><![CDATA[Computer And Internet]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Coutsonif.A]]></category>
		<category><![CDATA[Lady_Eats_Her_Shit]]></category>
		<category><![CDATA[skype]]></category>
		<category><![CDATA[TMP]]></category>
		<category><![CDATA[TRUSTED]]></category>
		<category><![CDATA[virus]]></category>
		<category><![CDATA[Worm]]></category>
		<category><![CDATA[Yahoo]]></category>
		<category><![CDATA[yahoo messenger]]></category>
		<category><![CDATA[YM]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.istanto.net/?p=999</guid>
		<description><![CDATA[Last week I got IRC bot virus in my server. I don&#8217;t know the virus name but I cleaned it manually. We&#8217;re not talking about this IRC bot virus cause it really simple cleaned manually using ANSAV UPX tools and Hidden Revealer I cleaned it in within short 1 minutes In this article we will [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Last week I got IRC bot virus in my server. I don&#8217;t know the virus name but I cleaned it manually. We&#8217;re not talking about this IRC bot virus cause it really simple cleaned manually using <a href="http://www.ansav.com/download/" target="_blank">ANSAV</a> <span style="text-decoration: underline;">UPX tools</span> and <span style="text-decoration: underline;">Hidden Revealer</span> I cleaned it in within short 1 minutes <img src='http://www.istanto.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  In this article we will write to clean YM and Skype bot virus Worm:Coutsonif.A</p>
<p style="text-align: justify;">This virus spreading using social technique and autorun.inf, since it using social technique this virus can spreading easy. Did you ever received message from your <span style="text-decoration: underline;"><strong>TRUSTED</strong></span> friend like this sample?</p>
<p style="text-align: justify;"><a href="http://www.istanto.net/wp-content/uploads/2009/02/coutsonif.png"><img class="alignnone size-thumbnail wp-image-1001" title="coutsonif" src="http://www.istanto.net/wp-content/uploads/2009/02/coutsonif-150x150.png" alt="coutsonif" width="150" height="150" /></a></p>
<p style="text-align: justify;">Listen to me, don&#8217;t so easy clicked any link in email or anything! even it come from trusted source. In this case social technique can make you in danger position, Think if virus collecting your financial information :p</p>
<p style="text-align: justify;">When you download this virus it will making 2 random file in %systemroot%\Documents and Settings\%user%\Local Settings\Temp with extension .tmp and .exe then created <strong>vshost.exe</strong> with size <strong>122kb,</strong> file will available on every drive root.</p>
<p style="text-align: justify;">Virus will also make another files:</p>
<ul>
<li>%systemroot%\autorun.inf [all drive]</li>
<li>%systemroot%\RECYCLER\S-1-5-21-9949614401-9544371273-983011715-7040\winservices.exe</li>
<li>%systemroot%\WINDOWS\system32\sysmgr.exe</li>
<li>%systemroot%\WINDOWS\TEMP\5755.tmp</li>
<li>%systemroot%\windows\system32\crypts.dll</li>
<li>%systemroot%\windows\system32\msvcrt2.dll</li>
</ul>
<p style="text-align: justify;">It wil also change your registry to automatically started when your computers booting. Beside that, old autorun.inf technique also adopted in this virus spreading:</p>
<p style="text-align: justify;"><a href="http://www.istanto.net/wp-content/uploads/2009/02/coutsonif-autorun.png"><img class="alignnone size-thumbnail wp-image-1002" title="coutsonif-autorun" src="http://www.istanto.net/wp-content/uploads/2009/02/coutsonif-autorun-150x150.png" alt="coutsonif-autorun" width="150" height="150" /></a></p>
<p style="text-align: justify;">Virus will change your registry to allowed only <span style="text-decoration: underline;">11</span> maximum active application, it also blocking your maximum port to only port <span style="text-decoration: underline;">8000</span>.</p>
<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>Automatic Update:</strong></span></p>
<p style="text-align: justify;">This virus will try to automatically update himself to this address list:</p>
<p style="text-align: justify;">66.90.103.169:99/a.exe<br />
66.90.103.169:6666/lsass .exe<br />
66.90.103.169:443/crss .exe<br />
TCP:72.249.94.146:7008 Port:27<br />
TCP:127.0.0.1:1092 Port:30<br />
TCP:66.90.103.169:99 Port:29<br />
TCP:66.90.103.169:6666 Port:30<br />
TCP:66.90.103.169:443 Port:30<br />
Port 80 IP:83.133.127.5<br />
Port 80 IP:68.180.151.74<br />
Port 25 IP:127.0.0.1<br />
Port 80 IP:65.55.21.250<br />
TCP:83.133.127.5:443 Port:17<br />
TCP:65.54.186.47:443 Port:17<br />
Port 80 IP:87.248.208.54<br />
TCP:89.149.254.14:443 Port:21<br />
Port 80 IP:64.4.33.7<br />
Port 80 IP:207.46.11.121<br />
Port 80 IP:65.54.186.47<br />
Port 80 IP:88.221.26.64<br />
TCP:65.55.16.123:443 Port:28<br />
TCP:92.122.112.124:443 Port:28<br />
TCP:92.122.112.124:443 Port:28<br />
TCP:88.221.165.186:443 Port:29<br />
TCP:88.221.165.186:443 Port:29<br />
TCP:83.133.127.5:443 Port:18<br />
TCP:89.149.254.14:443 Port:2<br />
TCP:65.55.16.123:443 Port:27<br />
TCP:65.54.186.47:443 Port:27<br />
TCP:92.122.112.124:443 Port:27<br />
TCP:92.122.112.124:443 Port:28<br />
TCP:88.221.165.186:443 Port:28<br />
TCP:89.149.254.14:443 Port:21</p>
<p style="text-align: justify;"><span style="text-decoration: underline;"><span style="color: #008000;"><strong>Simple steps to cleaning Coutsonif.A:</strong></span></span></p>
<p style="text-align: justify;"><span style="color: #000000;">1. </span><span style="color: #008000;"><span style="color: #000000;">Disable &#8220;<span style="text-decoration: underline;"><strong>System Restore</strong></span>&#8221; when in cleaning process.</span></span></p>
<p style="text-align: justify;"><span style="color: #008000;"><span style="color: #000000;">2. Disable &#8220;<span style="text-decoration: underline;"><strong>autoplay/autorun</strong></span>&#8221; function by:</span></span></p>
<p><span id="more-999"></span></p>
<ul>
<li><span style="color: #008000;"><span style="color: #000000;">Start -&gt; Run -&gt; Type &#8220;<span style="text-decoration: underline;"><strong>gpedit.msc</strong></span>&#8221; -&gt; Computer Configuration -&gt; Administrative Templates -&gt; System -&gt; look on &#8220;<strong>Turn off autoplay</strong>&#8221; -&gt; Properties -&gt; Setting tab -&gt; Enabled</span></span></li>
</ul>
<p><span style="color: #008000;"><span style="color: #000000;"><a href="http://www.istanto.net/wp-content/uploads/2009/02/coutsonif-autoplay-disabled.png"><img class="alignnone size-thumbnail wp-image-1004" title="coutsonif-autoplay-disabled" src="http://www.istanto.net/wp-content/uploads/2009/02/coutsonif-autoplay-disabled-150x150.png" alt="coutsonif-autoplay-disabled" width="150" height="150" /></a><br />
</span></span></p>
<p><span style="color: #008000;"><span style="color: #000000;"><a href="http://www.istanto.net/wp-content/uploads/2009/02/coutsonif-autoplay-disabled-2.png"><img class="alignnone size-thumbnail wp-image-1003" title="coutsonif-autoplay-disabled-2" src="http://www.istanto.net/wp-content/uploads/2009/02/coutsonif-autoplay-disabled-2-150x150.png" alt="coutsonif-autoplay-disabled-2" width="150" height="150" /></a></span></span></p>
<p style="text-align: justify;"><span style="color: #008000;"><span style="color: #000000;">3. Kill active virus process in background, You can use any task manager tools such as <a href="http://www.neuber.com/taskmanager/download.html" target="_blank">Security Task Manager</a>, just killed sysmgr.exe, vshost.exe, winservices.exe, *.tmp</span></span></p>
<p style="text-align: justify;"><span style="color: #008000;"><span style="color: #000000;">*<strong>TMP</strong> is random.</span></span></p>
<p style="text-align: justify;"><span style="color: #008000;"><span style="color: #000000;">4. Repair your registry files using code below or download <a href="http://www.istanto.net/wp-content/uploads/2009/02/repair1.inf">repair.inf</a></span></span></p>
<p style="text-align: justify;"><span style="color: #008000;"><span style="color: #000000;">[Version]<br />
Signature=&#8221;$Chicago$&#8221;<br />
Provider=Nobody</span></span></p>
<p>[DefaultInstall]<br />
AddReg=UnhookRegKey<br />
DelReg=del</p>
<p>[UnhookRegKey]<br />
HKLM, Software\CLASSES\batfile\shell\open\command,,,&#8221;"&#8221;%1&#8243;&#8221; %*&#8221;<br />
HKLM, Software\CLASSES\comfile\shell\open\command,,,&#8221;"&#8221;%1&#8243;&#8221; %*&#8221;<br />
HKLM, Software\CLASSES\exefile\shell\open\command,,,&#8221;"&#8221;%1&#8243;&#8221; %*&#8221;<br />
HKLM, Software\CLASSES\piffile\shell\open\command,,,&#8221;"&#8221;%1&#8243;&#8221; %*&#8221;<br />
HKLM, Software\CLASSES\regfile\shell\open\command,,,&#8221;regedit.exe &#8220;%1&#8243;&#8221;<br />
HKLM, Software\CLASSES\scrfile\shell\open\command,,,&#8221;"&#8221;%1&#8243;&#8221; %*&#8221;<br />
HKLM, SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon, Shell,0, &#8220;Explorer.exe&#8221;<br />
HKCU, SessionInformation, ProgramCount, 0&#215;00010001,3<br />
HKCU, AppEvents\Schemes\Apps\Explorer\BlockedPopup\.current,,,&#8221;C:\WINDOWS\media\Windows XP Pop-up Blocked.wav&#8221;<br />
HKCU, AppEvents\Schemes\Apps\Explorer\EmptyRecycleBin\.Current,,,&#8221;C:\Windows\media\Windows XP Recycle.wav&#8221;<br />
HKCU, AppEvents\Schemes\Apps\Explorer\Navigating\.Current,,,&#8221;C:\Windows\media\Windows XP Start.wav&#8221;<br />
HKCU, AppEvents\Schemes\Apps\Explorer\SecurityBand\.current,,,&#8221;C:\WINDOWS\media\Windows XP Information Bar.wav&#8221;</p>
<p>[del]<br />
HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\Run, Microsoft(R) System Manager<br />
HKCU, Software\Microsoft\Windows\CurrentVersion\Run, bMaxUserPortWindows Service help<br />
HKLM, SYSTEM\CurrentControlSet\Services\Tcpip\Parameters, MaxUserPort</p>
<p style="text-align: justify;"><span style="color: #008000;"><span style="color: #000000;">5. Deleted this file list, when it hard you can use <a href="http://www.malwarebytes.org/fileassassin.php" target="_blank">File Assasin</a> tools:</span></span></p>
<ul>
<li><span style="color: #008000;"><span style="color: #000000;">\vshost.exe [all drive]</span></span></li>
<li>\autorun.inf [all drive]</li>
<li>\RECYCLER\S-1-5-21-9949614401-9544371273-983011715-7040\winservices.exe</li>
<li>\Documents and Settings\%user%\Local Settings\Temp</li>
</ul>
<p>A415.tmp (random)<br />
034.exe (Random)<br />
Lady_Eats_Her_Shit&#8211;www.youtube.com</p>
<ul>
<li><span style="color: #008000;"><span style="color: #000000;">\WINDOWS\system32\sysmgr.exe</span></span></li>
<li>\WINDOWS\TEMP\5755.tmp</li>
<li>\windows\system32\crypts.dll</li>
<li><span style="color: #008000;"><span style="color: #000000;">\windows\system32\msvcrt2.dll</span></span></li>
</ul>
<p><span style="color: #008000;"><span style="color: #000000;">6. Re-checking your system to make sure it clean using your best antivirus or use <a href="http://download.norman.no/public/Norman_Malware_Cleaner.exe" target="_blank">Norman Malware Cleaner</a></span></span></p>
<p><span style="color: #008000;"><span style="color: #000000;">Done, Have a good day everyone <img src='http://www.istanto.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.istanto.net/ym-and-skype-virus-youtube-lady_eats_her_shit.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Youtube Can Accessed Again!</title>
		<link>http://www.istanto.net/youtube-can-accessed-again.html</link>
		<comments>http://www.istanto.net/youtube-can-accessed-again.html#comments</comments>
		<pubDate>Fri, 11 Apr 2008 18:46:59 +0000</pubDate>
		<dc:creator>Istanto</dc:creator>
				<category><![CDATA[Computer And Internet]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[MODERATION]]></category>
		<category><![CDATA[stupid]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.istanto.net/2008/04/11/youtube-can-accessed-again/</guid>
		<description><![CDATA[Ha Ha Ha finally our government has learn something over this week, Internet Power! Started from today all Indonesian people can access youtube website again, memkoninfo officially said access into youtube and some site has &#8220;fitna&#8221; movie on it can be accessed but blocked for URL of that movie. This is better than totally blocked [...]]]></description>
			<content:encoded><![CDATA[<p align="justify"><img src="http://www.istanto.net/wp-content/uploads/2008/04/nuh.jpg" alt="nuh.jpg" align="left" />Ha Ha Ha <img src='http://www.istanto.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  finally our government has learn something over this week, <strong>Internet Power! </strong>Started from today all Indonesian people can access youtube website again, memkoninfo officially said access into youtube and some site has &#8220;fitna&#8221; movie on it can be accessed but blocked for URL of that movie.</p>
<p align="justify">This is better than totally blocked site content, After a week people has depressed (me too :p) we are complaining and plan to make big demonstration because we all believe this is totally make us <strong><em>STUPID</em></strong> on this world by blocked big site like youtube. I love youtube content it&#8217;s creative. Anyway not all people have some view point like me so if youtube want to stay be loved and exist I suggest use that <strong>MODERATION</strong> functions.</p>
<p align="justify">Indonesian Government officially apologized for any lost or damage for a week because this blocking they also<span id="more-90"></span> officially tell us what Google inc write to Government using  detikinet.com as media google said <strong>will not</strong> deleted this video but google asking to work together for blocking &#8220;<em>bad site</em>&#8221; you know in here mean *porn LOL <img src='http://www.istanto.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Here is the list URL get blocked from accessed because has &#8220;fitna&#8221; movie content on it:</p>
<p>1. http://www.fitnathemovie.com<br />
2. http://www.youtube.com/watch?v=_LyeviTOh2w<br />
3. http://video.google.com/videoplay?docid=-294954647556 1 399959<br />
4. http://wikileaks.org/wikii Fitna_anti-islam_movie_by_ceert_Wilders<br />
5. http://video.aof .mm/videodetaillfitna-the-movie/16966&#8217;16402<br />
6. http://blogfi lmfi tna.blogspot.com<br />
7. http://f ile.sunshinepress.org :5444s/fitna-fl ash-video.zip<br />
8. http://wikileaks.org/lealdfltna-fl ash-video.zip<br />
9. http://thepiratebay.o tglto 4 1 027 38 lF itna_the_movie_-.English_-_AVl_and_FLV_format</p>
<p align="justify">The last thing&#8230;&#8230;. I&#8217;m just curious if there is someone make a really bad video about george bush or barack obama or anything that can hurt western people will youtube deleted it or not&#8230; Freedom  Anyone?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.istanto.net/youtube-can-accessed-again.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Youtube got blocked: Affect from Fitna the movie</title>
		<link>http://www.istanto.net/youtube-got-blocked-affect-from-fitna-the-movie.html</link>
		<comments>http://www.istanto.net/youtube-got-blocked-affect-from-fitna-the-movie.html#comments</comments>
		<pubDate>Fri, 04 Apr 2008 09:24:42 +0000</pubDate>
		<dc:creator>Istanto</dc:creator>
				<category><![CDATA[Computer And Internet]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[fitna]]></category>
		<category><![CDATA[Indonesia]]></category>
		<category><![CDATA[position]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.istanto.net/2008/04/04/youtube-got-blocked-affect-from-fitna-the-movie/</guid>
		<description><![CDATA[Started from today when I write this article officially memkominfo has declared ultimatum to blocked access into youtube and any blog or website has fitna Movie content on it. This letter of ultimatum has been sent to 146 ISP (Internet Service Provider) and 30 NAP (Network Access Provider) on Indonesia, It&#8217;s strange because I can still access youtube [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">Started from today when I write this article officially memkominfo has declared ultimatum to blocked access into youtube and any blog or website has <em><strong>fitna Movie</strong></em> content on it.</p>
<p><img src="http://www.istanto.net/wp-content/uploads/2008/04/mohammad_nuh.jpg" alt="Mohammad Nuh" /></p>
<p align="justify">This letter of ultimatum has been sent to 146 ISP (Internet Service Provider) and 30 NAP (Network Access Provider) on Indonesia, It&#8217;s strange because I can still <strong>access</strong> youtube site. Also I&#8217;m disagree with blocking access to youtube site because fitna movie. Actually I hate that movie from my personal view that movie can make war because provocating Muslim and Christian,<span id="more-82"></span> <strong>BUT</strong> youtube is not the maker so why we should blocked youtube site? Still there is lot of better content on youtube and because only fitna movie we blocked it?</p>
<p align="justify">Agree or disagree <strong>youtube should take this issue seriously</strong> before all country <strike>blocked</strike> their site access permanently youtube will die, youtube will be <strong><em>nothing</em></strong> without their user. Administrator should take position on this by censored bad video content.</p>
<p>Freedom of speaking? writing?! <strong>Not yet!!</strong> we are not totally freedom!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.istanto.net/youtube-got-blocked-affect-from-fitna-the-movie.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

