<?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>DucDigital</title>
	<atom:link href="http://www.ducdigital.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ducdigital.com</link>
	<description>for ( $girl = 1; $girl &#60; $required; $girl++ ) { echo "I love DucDigital"; }</description>
	<lastBuildDate>Sat, 07 Aug 2010 09:12:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Jquery collapsible menu for WordPress</title>
		<link>http://www.ducdigital.com/2010/08/07/jquery-collapsible-menu-for-wordpress/</link>
		<comments>http://www.ducdigital.com/2010/08/07/jquery-collapsible-menu-for-wordpress/#comments</comments>
		<pubDate>Sat, 07 Aug 2010 09:11:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programing]]></category>
		<category><![CDATA[collapsible]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.ducdigital.com/?p=245</guid>
		<description><![CDATA[By default, when you use "wp_list_categories()", it will give you a structured category list with it's default mark-up. This is my own version of collapsible menu. It's really short so basically, you can modify it and add more fancy stuff. The '.children' is the children UL of your category list. The '.parentUL' is the topmost [...]]]></description>
			<content:encoded><![CDATA[<p>By default, when you use "wp_list_categories()", it will give you a structured category list with it's default mark-up. This is my own version of collapsible menu. It's really short so basically, you can modify it and add more fancy stuff.</p>
<p>The '.children' is the children UL of your category list.<br />
The '.parentUL' is the topmost parent UL class of your category list</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">  jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.children'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">hide</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  jQuery<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'.parentUL li a'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span>
    <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>e<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span> jQuery<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">parent</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">children</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'ul'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">size</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&gt;</span> <span style="color: #CC0000;">0</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
				 e.<span style="color: #660066;">preventDefault</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #009900;">&#125;</span>
			jQuery<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">parent</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">children</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'ul'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">slideToggle</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'normal'</span><span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>	<span style="color: #000066; font-weight: bold;">return</span> <span style="color: #003366; font-weight: bold;">false</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #009900;">&#125;</span>
		<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Trust me, it works!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ducdigital.com%2F2010%2F08%2F07%2Fjquery-collapsible-menu-for-wordpress%2F&amp;linkname=Jquery%20collapsible%20menu%20for%20WordPress"><img src="http://www.ducdigital.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ducdigital.com/2010/08/07/jquery-collapsible-menu-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New VBSEO License stock.</title>
		<link>http://www.ducdigital.com/2010/06/08/new-vbseo-license-stock/</link>
		<comments>http://www.ducdigital.com/2010/06/08/new-vbseo-license-stock/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 19:10:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[license]]></category>
		<category><![CDATA[vbseo]]></category>

		<guid isPermaLink="false">http://www.ducdigital.com/2010/06/08/new-vbseo-license-stock/</guid>
		<description><![CDATA[I having new stock on VBSEO License. Please contact duc [at] ducdigital.com if you have any inquiry to buy the license. Thank you very much. I will try to reply the email within 6 hours]]></description>
			<content:encoded><![CDATA[<p>I having new stock on VBSEO License. Please contact duc [at] ducdigital.com if you have any inquiry to buy the license.</p>
<p>Thank you very much.</p>
<p>I will try to reply the email within 6 hours</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ducdigital.com%2F2010%2F06%2F08%2Fnew-vbseo-license-stock%2F&amp;linkname=New%20VBSEO%20License%20stock."><img src="http://www.ducdigital.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ducdigital.com/2010/06/08/new-vbseo-license-stock/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New VBB Stock as well as IPB</title>
		<link>http://www.ducdigital.com/2010/06/05/new-vbb-stock-as-well-as-ipb/</link>
		<comments>http://www.ducdigital.com/2010/06/05/new-vbb-stock-as-well-as-ipb/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 15:10:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[invision]]></category>
		<category><![CDATA[IPB]]></category>
		<category><![CDATA[license]]></category>
		<category><![CDATA[vbulletin]]></category>

		<guid isPermaLink="false">http://www.ducdigital.com/2010/06/05/new-vbb-stock-as-well-as-ipb/</guid>
		<description><![CDATA[Hi everyone, as the time of this post, I have new stock on Vbulletin Suite License and IPB License. The price is: Vbulletin Suite -> 129$ IPB License -> 60$ Please contact me using the email duc [at] ducdigital.com if you are interest in buying license. Thank you very much]]></description>
			<content:encoded><![CDATA[<p>Hi everyone, as the time of this post, I have new stock on Vbulletin Suite License and IPB License.</p>
<p>The price is:<br />
Vbulletin Suite -> 129$<br />
IPB License -> 60$</p>
<p>Please contact me using the email duc [at] ducdigital.com if you are interest in buying license. Thank you very much</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ducdigital.com%2F2010%2F06%2F05%2Fnew-vbb-stock-as-well-as-ipb%2F&amp;linkname=New%20VBB%20Stock%20as%20well%20as%20IPB"><img src="http://www.ducdigital.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ducdigital.com/2010/06/05/new-vbb-stock-as-well-as-ipb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Out of stock on ALL Vbulletin licenses. Openning IPB sale.</title>
		<link>http://www.ducdigital.com/2010/04/20/out-of-stock-on-all-vbulletin-licenses-openning-ipb-sale/</link>
		<comments>http://www.ducdigital.com/2010/04/20/out-of-stock-on-all-vbulletin-licenses-openning-ipb-sale/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 16:11:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.ducdigital.com/2010/04/20/out-of-stock-on-all-vbulletin-licenses-openning-ipb-sale/</guid>
		<description><![CDATA[Hi folks, Current'ly I am very sorry to inform you that the Vbulletin licenses are out of stock. I forgot to update my site recently and there are a lot of requests about the Vbulletin license.. The sale will be resume on middle of May 2010. I will inform those who email me by the [...]]]></description>
			<content:encoded><![CDATA[<p>Hi folks,</p>
<p>Current'ly I am very sorry to inform you that the Vbulletin licenses are out of stock. I forgot to update my site recently and there are a lot of requests about the Vbulletin license..</p>
<p>The sale will be resume on middle of May 2010.</p>
<p>I will inform those who email me by the time I got the licenses.<br />
--------<br />
Another thing is that I will also sell <strong>IPB Standard owned license</strong><strong> (Invision Power Board) </strong>for <em><strong>69.99$ (no discount)</strong></em></p>
<p>Update and support expire September<br />
Renewal fee is 25$ / 6 month<br />
<strong>Standard owned license</strong> original price <span style="text-decoration: line-through;"><strong>149.99$</strong></span></p>
<p>If any of you want to inquire about this, please drop an email to <strong>duc [at] ducdigital .com</strong></p>
<p>Thank you very much</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ducdigital.com%2F2010%2F04%2F20%2Fout-of-stock-on-all-vbulletin-licenses-openning-ipb-sale%2F&amp;linkname=Out%20of%20stock%20on%20ALL%20Vbulletin%20licenses.%20Openning%20IPB%20sale."><img src="http://www.ducdigital.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ducdigital.com/2010/04/20/out-of-stock-on-all-vbulletin-licenses-openning-ipb-sale/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>AT&amp;T network exploit (seem like it)</title>
		<link>http://www.ducdigital.com/2010/04/13/atandt-network-js-injec/</link>
		<comments>http://www.ducdigital.com/2010/04/13/atandt-network-js-injec/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 05:51:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[AT&T]]></category>
		<category><![CDATA[INJECT]]></category>
		<category><![CDATA[JS]]></category>

		<guid isPermaLink="false">http://www.ducdigital.com/?p=235</guid>
		<description><![CDATA[http://ha.ckers.org/blog/20100412/att-evdo-js-injection/ http://jonatkinson.co.uk/http1238bmi-int-jsbmijs/ Thanks for these 2 to point out. I think AT&#038;T should change what they did since not everyone want it and this problem might lead to a bigger security issue as long as someone really own the IP which has the file on it, then they can do what ever they like to [...]]]></description>
			<content:encoded><![CDATA[<p>http://ha.ckers.org/blog/20100412/att-evdo-js-injection/</p>
<p>http://jonatkinson.co.uk/http1238bmi-int-jsbmijs/</p>
<p>Thanks for these 2 to point out. I think AT&#038;T should change what they did since not everyone want it and this problem might lead to a bigger security issue as long as someone really own the IP which has the file on it, then they can do what ever they like to your vast amount of customers...</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ducdigital.com%2F2010%2F04%2F13%2Fatandt-network-js-injec%2F&amp;linkname=AT%26%23038%3BT%20network%20exploit%20%28seem%20like%20it%29"><img src="http://www.ducdigital.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ducdigital.com/2010/04/13/atandt-network-js-injec/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBB3 and VBSEO is sold out!</title>
		<link>http://www.ducdigital.com/2010/04/05/vbb3-and-vbseo-is-sold-out/</link>
		<comments>http://www.ducdigital.com/2010/04/05/vbb3-and-vbseo-is-sold-out/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 07:57:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[vbulletin]]></category>

		<guid isPermaLink="false">http://www.ducdigital.com/?p=233</guid>
		<description><![CDATA[Thanks for your support on my site, currently the VBSEO and VBB3 is sold out, so there left the VBB4 for anyone who interested. Please email me (duc [at] ducdigital.com) if you ever have any questions for Vbulletin 4 sale. Thank you very much and best regard!]]></description>
			<content:encoded><![CDATA[<p>Thanks for your support on my site, currently the VBSEO and VBB3 is sold out, so there left the VBB4 for anyone who interested.</p>
<p>Please email me (duc [at] ducdigital.com) if you ever have any questions for Vbulletin 4 sale.</p>
<p>Thank you very much and best regard!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ducdigital.com%2F2010%2F04%2F05%2Fvbb3-and-vbseo-is-sold-out%2F&amp;linkname=VBB3%20and%20VBSEO%20is%20sold%20out%21"><img src="http://www.ducdigital.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ducdigital.com/2010/04/05/vbb3-and-vbseo-is-sold-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Up up and up. Vbulletin License for sale!</title>
		<link>http://www.ducdigital.com/2010/03/19/up-up-and-up-vbulletin-license-for-sale/</link>
		<comments>http://www.ducdigital.com/2010/03/19/up-up-and-up-vbulletin-license-for-sale/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 08:23:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[license]]></category>
		<category><![CDATA[sale]]></category>
		<category><![CDATA[vbulletin]]></category>
		<category><![CDATA[vbulletin license]]></category>

		<guid isPermaLink="false">http://www.ducdigital.com/?p=231</guid>
		<description><![CDATA[Yes, thanks for the last post, I've sold 2 Vbulletin license. Thank you for your great support. I have several license each of the ff. as of this time: VbSeo: 59.99$ vBulletin 4.0 Forum Classic owned license : $79.99 vBulletin 4.0 Publishing Suite owned license : $119.99 vBulletin License 3.x Owned license: 30$ The price [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Yes, thanks for the last post, I've sold 2 Vbulletin license. Thank you for your great support. </strong></p>
<p>I have several license each of the ff. as of this time:</p>
<p>VbSeo: 59.99$<br />
vBulletin 4.0 Forum Classic owned license : $79.99<br />
vBulletin 4.0 Publishing Suite owned license : $119.99<br />
vBulletin License 3.x Owned license: 30$</p>
<p><strong>The price is great deal and most of the licenses are more than 3 months old and eligible to transfer to your name.</strong> I also welcome bulk sale if you need more than 1 license.</p>
<p>If there are any more information or inquiry about the License or you want to buy it, I'm very welcome to receive email from you at <strong>duc [at] ducdigital.com</strong>, the respond time will be less than 6 hours (most of the time) and if not 6 hour it must be within 24 hours. </p>
<p>Thank you very much for support this sale ! <img src='http://www.ducdigital.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ducdigital.com%2F2010%2F03%2F19%2Fup-up-and-up-vbulletin-license-for-sale%2F&amp;linkname=Up%20up%20and%20up.%20Vbulletin%20License%20for%20sale%21"><img src="http://www.ducdigital.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ducdigital.com/2010/03/19/up-up-and-up-vbulletin-license-for-sale/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Open selling Vbulletin 3 4x and VbSeo license</title>
		<link>http://www.ducdigital.com/2010/03/03/open-selling-vbulletin-3-4x-and-vbseo-license/</link>
		<comments>http://www.ducdigital.com/2010/03/03/open-selling-vbulletin-3-4x-and-vbseo-license/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 10:13:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[license]]></category>
		<category><![CDATA[owned]]></category>
		<category><![CDATA[vbseo]]></category>
		<category><![CDATA[vbulletin]]></category>

		<guid isPermaLink="false">http://www.ducdigital.com/?p=229</guid>
		<description><![CDATA[hi everyone, just recently I start open sale for Vbulletin 3 and 4x owned license. These license are legit from their respective owner and can be transfer to your name. Currently, my price is VbSeo: 59.99$ vBulletin 4.0 Forum Classic owned license : $79.99 vBulletin 4.0 Publishing Suite owned license : $119.99 vBulletin License 3.x [...]]]></description>
			<content:encoded><![CDATA[<p>hi everyone, just recently I start open sale for Vbulletin 3 and 4x owned license. These license are legit from their respective owner and can be transfer to your name. </p>
<p>Currently, my price is </p>
<blockquote><p>VbSeo: 59.99$<br />
vBulletin 4.0 Forum Classic owned license : $79.99<br />
vBulletin 4.0 Publishing Suite owned license : $119.99<br />
vBulletin License 3.x Owned license: 30$</p></blockquote>
<p>If anyone who interested please email me to Duc [ at] ducdigital.com for more details. </p>
<p>We accept <strong>paypal </strong>and <strong>alertpay</strong>. </p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ducdigital.com%2F2010%2F03%2F03%2Fopen-selling-vbulletin-3-4x-and-vbseo-license%2F&amp;linkname=Open%20selling%20Vbulletin%203%204x%20and%20VbSeo%20license"><img src="http://www.ducdigital.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ducdigital.com/2010/03/03/open-selling-vbulletin-3-4x-and-vbseo-license/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automatic change DNS for Facebook</title>
		<link>http://www.ducdigital.com/2010/02/16/facebook-dns-in-vietnam/</link>
		<comments>http://www.ducdigital.com/2010/02/16/facebook-dns-in-vietnam/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 14:51:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[autoit]]></category>
		<category><![CDATA[china]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[vietnam]]></category>

		<guid isPermaLink="false">http://www.ducdigital.com/?p=226</guid>
		<description><![CDATA[For the last few month, the Vietnamese Government has issue a ban on Facebook, just like in China. My friend has take his little time to write a small bot to change DNS between openDNS, Google Public DNS and DHCP DNS. Using this program you can switch between those 3 type DNS fast. Simply just [...]]]></description>
			<content:encoded><![CDATA[<p>For the last few month, the Vietnamese Government has issue a ban on Facebook, just like in China. My friend has take his little time to write a small bot to change DNS between <a href="http://www.opendns.com/">openDNS</a>, <a href="http://code.google.com/speed/public-dns/">Google Public DNS </a> and DHCP DNS. Using this program you can switch between those 3 type DNS fast. Simply just download, run it as Administrator (if you are using Vista / Win 7) and it do the job for you. </p>
<p>Now you can surf web safer without restriction. and better yet, I recommend you buy a SSH and use it as Sock5 for safer web browse in some location.</p>
<hr />
<p>Một vài tháng trước Đảng ta đã chặn facebook và cho facebook vào 1 trong những trang "Có Nội Dung Chống Phá Nhà Nước Việt Nam". Thực sự sự việc có nhiều âm mưu đằng sau đó, như là việc sau khi nhà nước xóa sổ facebook thì zing me lại nổi lên với kiểu mạng xã hội copy/ăn theo/ăn cắp ý tưởng. Một phần khác cũng là do việc có nhiều nhóm chống phá nhà nước VN trụ tại facebook.</p>
<p>Nhưng facebook đã trở thành phương tiện liên lạc của nhiều người VN ở trong nước lẫn những du học sinh, người Việt nam ở nước ngoài, phải gọi là 1 cổng thông tin giữa VN và bạn bè trên tòan thế giới. Việc chặn lại facebook đã gây vấn đề bức xúc cho người dân VN ta.</p>
<p>Đây là chương trình tự động đổi DNS do một người bạn của Đức viết để cỏ thể tự động chuyển đổi giữa Open DNS, Google Public DNS hoặc DNS gốc của mạng bạn. Những ai ít có kinh nghiệm máy tính có thể dùng chương trình này để đổi DNS của mình một cách gọn gàng nhất.</p>
<p>Lưu ý: đối với ngưoiừ nào sử dụng Win 7 hoặc Vista, bạn phải chạy với chế độ "Run as Administrator".<br />
-> Chương trình không có gì ngoải việc chạy ipconfig để đổi lại DNS. Chương trình đựơc viết = AutoIt. Đựơc quét virus và khẳng định kô có mã bẩn.</p>
<p><strong>Source and Download: <a href="http://ducdigital.com/dns">http://ducdigital.com/dns</a></strong></p>
<p>Source code:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#NoTrayIcon
</span><span style="color: #666666; font-style: italic;">#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
</span><span style="color: #666666; font-style: italic;">#AutoIt3Wrapper_Version=Beta
</span><span style="color: #666666; font-style: italic;">#AutoIt3Wrapper_icon=facebook.ico
</span><span style="color: #666666; font-style: italic;">#AutoIt3Wrapper_Compression=4
</span><span style="color: #666666; font-style: italic;">#AutoIt3Wrapper_Res_Comment=Chương trình thay đổi DNS Sever của máy thành các loại DNS Sever khác
</span><span style="color: #666666; font-style: italic;">#AutoIt3Wrapper_Res_Description=DNS Sever Option
</span><span style="color: #666666; font-style: italic;">#AutoIt3Wrapper_Res_Fileversion=2.0.1.0
</span><span style="color: #666666; font-style: italic;">#AutoIt3Wrapper_Res_LegalCopyright=Hoàng Ðức Nghiêm (HĐN)
</span><span style="color: #666666; font-style: italic;">#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
</span>
Local <span style="color: #000088;">$Temp</span> <span style="color: #339933;">=</span> <span style="color: #339933;">@</span>TempDir<span style="color: #339933;">&amp;</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\N</span>etworkConnection.tmp&quot;</span>
&nbsp;
GUICreate<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">100</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">116</span><span style="color: #339933;">,-</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">,-</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span><span style="color: #208080;">0x00400000</span><span style="color: #009900;">&#41;</span>
<span style="color: #000088;">$ISP</span> <span style="color: #339933;">=</span> GUICtrlCreateButton<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;ISP DNS Sever&quot;</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">117</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">30</span><span style="color: #009900;">&#41;</span>
<span style="color: #000088;">$Open</span> <span style="color: #339933;">=</span> GUICtrlCreateButton<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Open DNS Sever&quot;</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">30</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">117</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">30</span><span style="color: #009900;">&#41;</span>
<span style="color: #000088;">$Google</span> <span style="color: #339933;">=</span> GUICtrlCreateButton<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Google Public DNS&quot;</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">60</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">117</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">30</span><span style="color: #009900;">&#41;</span>
&nbsp;
GUISetState<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
ToolTip<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Xin vui lòng chọn một loại DNS Sever để thay đổi&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;DNS Sever (Unknow DNS)&quot;</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span>
&nbsp;
<span style="color: #b1b100;">While</span> <span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span>
	<span style="color: #000088;">$Msg</span> <span style="color: #339933;">=</span> GUIGetMsg<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
	Select
		<span style="color: #b1b100;">Case</span> <span style="color: #000088;">$Msg</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$ISP</span>
			<span style="color: #000088;">$DNS</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;ISP DNS&quot;</span>
			<span style="color: #000088;">$DNS1</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;dhcp&quot;</span>
			<span style="color: #000088;">$DNS2</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;dhcp&quot;</span>
			ExitLoop
		<span style="color: #b1b100;">Case</span> <span style="color: #000088;">$Msg</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$Open</span>
			<span style="color: #000088;">$DNS</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;Open DNS&quot;</span>
			<span style="color: #000088;">$DNS1</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;208.67.222.222&quot;</span>
			<span style="color: #000088;">$DNS2</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;208.67.220.220&quot;</span>
			ExitLoop
		<span style="color: #b1b100;">Case</span> <span style="color: #000088;">$Msg</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$Google</span>
			<span style="color: #000088;">$DNS</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;Google Public DNS&quot;</span>
			<span style="color: #000088;">$DNS1</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;8.8.8.8&quot;</span>
			<span style="color: #000088;">$DNS2</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;8.8.4.4&quot;</span>
			ExitLoop
	EndSelect
WEnd
&nbsp;
GUIDelete<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
ToolTip<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Tạo File đệm và lấy thông tin kết nối&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;DNS Sever (&quot;</span><span style="color: #339933;">&amp;</span><span style="color: #000088;">$DNS</span><span style="color: #339933;">&amp;</span><span style="color: #0000ff;">&quot;)&quot;</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span>
_RunDOS<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;ipconfig &gt; &quot;</span><span style="color: #339933;">&amp;</span><span style="color: #000088;">$Temp</span><span style="color: #009900;">&#41;</span>
&nbsp;
<span style="color: #000088;">$Connection</span> <span style="color: #339933;">=</span> FileReadLine<span style="color: #009900;">&#40;</span><span style="color: #000088;">$Temp</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">5</span><span style="color: #009900;">&#41;</span>
<span style="color: #000088;">$Connection</span> <span style="color: #339933;">=</span> StringTrimLeft<span style="color: #009900;">&#40;</span><span style="color: #000088;">$Connection</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">17</span><span style="color: #009900;">&#41;</span>
<span style="color: #000088;">$Connection</span> <span style="color: #339933;">=</span> StringTrimRight<span style="color: #009900;">&#40;</span><span style="color: #000088;">$Connection</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span>
FileDelete<span style="color: #009900;">&#40;</span><span style="color: #000088;">$Temp</span><span style="color: #009900;">&#41;</span>
&nbsp;
ToolTip<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Thay đổi thông số của DNS Sever&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;DNS Sever (&quot;</span><span style="color: #339933;">&amp;</span><span style="color: #000088;">$DNS</span><span style="color: #339933;">&amp;</span><span style="color: #0000ff;">&quot;)&quot;</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span>
_RunDOS<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'ipconfig/flushdns'</span><span style="color: #009900;">&#41;</span>
_RunDOS<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'netsh interface ip set dns &quot;'</span><span style="color: #339933;">&amp;</span><span style="color: #000088;">$Connection</span><span style="color: #339933;">&amp;</span><span style="color: #0000ff;">'&quot; static '</span><span style="color: #339933;">&amp;</span><span style="color: #000088;">$DNS1</span><span style="color: #339933;">&amp;</span><span style="color: #0000ff;">' primary'</span><span style="color: #009900;">&#41;</span>
_RunDOS<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'netsh interface ip add dns &quot;'</span><span style="color: #339933;">&amp;</span><span style="color: #000088;">$Connection</span><span style="color: #339933;">&amp;</span><span style="color: #0000ff;">'&quot; '</span><span style="color: #339933;">&amp;</span><span style="color: #000088;">$DNS2</span><span style="color: #009900;">&#41;</span>
&nbsp;
ToolTip<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&quot;</span><span style="color: #009900;">&#41;</span>
MsgBox<span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">64</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;Đã xong&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;Thay đổi DNS Sever thành công!&quot;</span><span style="color: #339933;">&amp;@</span>CRLF<span style="color: #339933;">&amp;</span><span style="color: #0000ff;">&quot;Chúc bạn vui vẻ...  *~(^.^)~*&quot;</span><span style="color: #009900;">&#41;</span>
&nbsp;
Func _RunDOS<span style="color: #009900;">&#40;</span><span style="color: #000088;">$sCommand</span><span style="color: #009900;">&#41;</span>
	Local <span style="color: #000088;">$nResult</span> <span style="color: #339933;">=</span> RunWait<span style="color: #009900;">&#40;</span><span style="color: #339933;">@</span>ComSpec <span style="color: #339933;">&amp;</span> <span style="color: #0000ff;">&quot; /C &quot;</span> <span style="color: #339933;">&amp;</span> <span style="color: #000088;">$sCommand</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">,</span> <span style="color: #339933;">@</span>SW_HIDE<span style="color: #009900;">&#41;</span>
	<span style="color: #b1b100;">Return</span> SetError<span style="color: #009900;">&#40;</span><span style="color: #339933;">@</span>error<span style="color: #339933;">,</span> <span style="color: #339933;">@</span>extended<span style="color: #339933;">,</span> <span style="color: #000088;">$nResult</span><span style="color: #009900;">&#41;</span>
EndFunc</pre></td></tr></table></div>

<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ducdigital.com%2F2010%2F02%2F16%2Ffacebook-dns-in-vietnam%2F&amp;linkname=Automatic%20change%20DNS%20for%20Facebook"><img src="http://www.ducdigital.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ducdigital.com/2010/02/16/facebook-dns-in-vietnam/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New chrome!</title>
		<link>http://www.ducdigital.com/2010/02/01/new-chrome/</link>
		<comments>http://www.ducdigital.com/2010/02/01/new-chrome/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 03:59:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.ducdigital.com/?p=224</guid>
		<description><![CDATA[Yes, finally Google Chrome has updated accordingly to the lastest stable of Chrominium. The new version of Chrome feature plugins extension and import bookmark to google account (I really looking forward for this feature) There are some interesting plugin out there for chrome, check out: https://chrome.google.com/extensions/]]></description>
			<content:encoded><![CDATA[<p>Yes, finally Google Chrome has updated accordingly to the lastest stable of Chrominium. The new version of Chrome feature plugins extension and import bookmark to google account (I really looking forward for this feature) </p>
<p>There are some interesting plugin out there for chrome, check out: <a href="https://chrome.google.com/extensions/">https://chrome.google.com/extensions/</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ducdigital.com%2F2010%2F02%2F01%2Fnew-chrome%2F&amp;linkname=New%20chrome%21"><img src="http://www.ducdigital.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ducdigital.com/2010/02/01/new-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
