<?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>Bridge to Nova &#187; Tricks</title>
	<atom:link href="http://www.bridgetonova.com/tag/tricks/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bridgetonova.com</link>
	<description>Tech News, Tips and Tricks, Howto, Workarounds, SEO, Alexa tips.</description>
	<lastBuildDate>Fri, 23 Dec 2011 07:40:26 +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>How to disable Automatic Updates restart prompt</title>
		<link>http://www.bridgetonova.com/2011/09/how-to-disable-automatic-updates-restart-prompt.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-disable-automatic-updates-restart-prompt</link>
		<comments>http://www.bridgetonova.com/2011/09/how-to-disable-automatic-updates-restart-prompt.html#comments</comments>
		<pubDate>Wed, 21 Sep 2011 20:30:00 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[My Experience]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Win XP]]></category>
		<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://www.bridgetonova.com/2011/09/how-to-disable-automatic-updates-restart-prompt.html</guid>
		<description><![CDATA[If you are using Windows XP with Automatic Updates on, you’ll be quite familiar with the dialog box below. It becomes very annoying when you are really busy and the [...]]]></description>
			<content:encoded><![CDATA[<p>If you are using Windows XP with Automatic Updates on, you’ll be quite familiar with the dialog box below.</p>
<blockquote><p><a href="http://www.bridgetonova.com/wp-content/uploads/2011/09/automatic_updates_restart_prompt.png"><img style="border-width: 0px" src="http://www.bridgetonova.com/wp-content/uploads/2011/09/automatic_updates_restart_prompt_thumb.png" alt="automatic_updates_restart_prompt" width="404" height="134" border="0" /></a></p></blockquote>
<p>It becomes very annoying when you are really busy and the dialog box keeps on coming back. Well, finally I’ve got the easiest solution to get rid of it.</p>
<blockquote><p>Just go to Start menu –&gt; Run, type services.msc.</p></blockquote>
<p>You’ll see the following window and right-click on Automatic Updates, choose stop as follow:</p>
<blockquote><p><a href="http://www.bridgetonova.com/wp-content/uploads/2011/09/services_stop.png"><img style="border-width: 0px" src="http://www.bridgetonova.com/wp-content/uploads/2011/09/services_stop_thumb.png" alt="services_stop" width="484" height="235" border="0" /></a></p></blockquote>
<p>Right after you clicked “Stop”, the annoying &#8220;Do you want to restart your computer now?&#8221; dialog box will go away altogether with the system tray icon. Now you can focus on your work undisturbed.</p>
<p>Source : <a href="http://answers.microsoft.com/en-us/windows/forum/windows_other-windows_update/windows-update-error-80070003/09d9e8f7-9749-42db-bc09-23055be8c8ca">Microsoft Answers</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bridgetonova.com/2011/09/how-to-disable-automatic-updates-restart-prompt.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to config ubuntu/debian to boot in text mode</title>
		<link>http://www.bridgetonova.com/2011/09/how-to-config-ubuntudebian-to-boot-in-text-mode.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-config-ubuntudebian-to-boot-in-text-mode</link>
		<comments>http://www.bridgetonova.com/2011/09/how-to-config-ubuntudebian-to-boot-in-text-mode.html#comments</comments>
		<pubDate>Wed, 14 Sep 2011 01:00:00 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[boot text mode]]></category>
		<category><![CDATA[grub]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.bridgetonova.com/2011/09/how-to-config-ubuntudebian-to-boot-in-text-mode.html</guid>
		<description><![CDATA[I like Linux boxes to boot directly to terminal mode. If you’ve just moved to Ubuntu distro from Red Hat/ Fedora, you’ll think about changing the inittab. Well, bad news [...]]]></description>
			<content:encoded><![CDATA[<p>I like Linux boxes to boot directly to terminal mode. If you’ve just moved to Ubuntu distro from Red Hat/ Fedora, you’ll think about changing the inittab. Well, bad news is in Debain or any of its derivatives, runlevels 2 to 5 are the same multi-user with display GUI. So if you type, sudo init 3, nothing will happen.</p>
<p>So here is how I make Ubuntu to boot into text mode by default. The requirement for this is you have to use grub as boot loader.</p>
<p>Just edit the /etc/default/grub using any of your favourite text editor, look for the line</p>
<p><strong><span style="color: #800000">GRUB_CMDLINE_LINUX_DEFAULT=&#8221;quiet splash&#8221;</span></strong></p>
<p>Then changed it to</p>
<p><strong><span style="color: #800000">GRUB_CMDLINE_LINUX_DEFAULT=&#8221;text&#8221;</span></strong></p>
<p>The following is the screenshot for what my grub file looks like after the changes.</p>
<p><a href="http://www.bridgetonova.com/wp-content/uploads/2011/09/grub_ubuntu_screenshot1.png"><img style="border: 0px" src="http://www.bridgetonova.com/wp-content/uploads/2011/09/grub_ubuntu_screenshot_thumb1.png" alt="grub_ubuntu_screenshot" width="504" height="175" border="0" /></a></p>
<p>After that save the file and run <strong><span style="color: #800000">sudo update-grub</span></strong>. That’s it. Starting from next reboot, your ubuntu/debian variants will start in text mode.</p>
<p>Source : <a href="http://ubuntuforums.org/showthread.php?t=1483038">UbuntuForums</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bridgetonova.com/2011/09/how-to-config-ubuntudebian-to-boot-in-text-mode.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to reverse a string using sed</title>
		<link>http://www.bridgetonova.com/2011/09/how-to-reverse-a-string-using-sed.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-reverse-a-string-using-sed</link>
		<comments>http://www.bridgetonova.com/2011/09/how-to-reverse-a-string-using-sed.html#comments</comments>
		<pubDate>Tue, 13 Sep 2011 02:09:14 +0000</pubDate>
		<dc:creator>jason</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[sed]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://www.bridgetonova.com/2011/09/how-to-reverse-a-string-using-sed.html</guid>
		<description><![CDATA[I had got issue with having to reverse a string of number manually. Of course, that gave me a big headache. Thanks to Peter from Catonmat, I’ve got the following [...]]]></description>
			<content:encoded><![CDATA[<p>I had got issue with having to reverse a string of number manually. Of course, that gave me a big headache. Thanks to Peter from <a href="http://www.catonmat.net/blog/sed-one-liners-explained-part-one/">Catonmat</a>, I’ve got the following sed script.</p>
<blockquote><p><span style="color: #800000"><strong>sed &#8216;/\n/!G;s/\(.\)\(.*\n\)/&amp;\2\1/;//D;s/.//&#8217;</strong></span></p>
</blockquote>
<p>As you can imagine, this is quite complicated, but luckily he’s given nice explanation as well.</p>
<blockquote><pre></pre>
<p><span style="color: #800000"><strong>sed &#8216; </strong></span></p>
<p><span style="color: #800000"><strong>/\n/ !G </strong></span></p>
<p><span style="color: #800000"><strong>s/\(.\)\(.*\n\)/&amp;\2\1/ </strong></span></p>
<p><span style="color: #800000"><strong>//D </strong></span></p>
<p><span style="color: #800000"><strong>s/.// &#8216; </strong></span></p>
<p><span style="color: #800000"></span>The first line &#8220;/\n/ !G&#8221; appends a newline to the end of the pattern space if there was none.</p>
<p>The second line &#8220;s/\(.\)\(.*\n\)/&amp;\2\1/&#8221; is a simple s/// expression which groups the first character as \1 and all the others as \2. Then it replaces the whole matched string with &#8220;&amp;\2\1&#8243;, where &#8220;&amp;&#8221; is the whole matched text (&#8220;\1\2&#8243;). For example, if the input string is &#8220;1234&#8243; then after the s/// expression, it becomes &#8220;1234\n234\n1&#8243;.</p>
<p>The third line is &#8220;//D&#8221;. This statement is the key in this one-liner. An empty pattern // matches the last existing regex, so it&#8217;s exactly the same as: /\(.\)\(.*\n\)/D. The &#8220;D&#8221; command deletes from the start of the input till the first newline and then resumes editing with first command in script. It creates a loop. As long as /\(.\)\(.*\n\)/ is satisfied, sed will resume all previous operations. After several loops, the text in the pattern space becomes &#8220;\n4321&#8243;. Then /\(.\)\(.*\n\)/ fails and sed goes to the next command.</p>
<p>The fourth line &#8220;s/.//&#8221; removes the first character in the pattern space which is the newline char. The contents in pattern space becomes &#8220;4321&#8243; &#8212; reverse of &#8220;1234&#8243;.</p>
</blockquote>
<p>But what I want is the output to be separated by “.” aka dot character. So here’s what I come up with.</p>
<blockquote>
<p><strong><span style="color: #800000">$ echo 123456789 | sed &#8216;/\n/!G;s/\(.\)\(.*\n\)/&amp;\2.\1/;//D;s/.//&#8217;</p>
<p>.9.8.7.6.5.4.3.2.1</span></strong></p>
</blockquote>
<p>Still there’s one small issue, I don’t want dot at the start of the string. So after reading his explanation, I realize that I need to put one more “.” to be replaced at the fourth line. This is final script.</p>
<blockquote>
<p><strong><span style="color: #800000">$ echo 123456789 | sed &#8216;/\n/!G;s/\(.\)\(.*\n\)/&amp;\2.\1/;//D;s/..//&#8217;</p>
<p>9.8.7.6.5.4.3.2.1</span></strong></p>
</blockquote>
<p>So obviously, if you want “,” aka comma instead of dot, you can just substitute it. If you are curious about getting to know sed, why don’t you head over to catonmat.net. That site got so many cool sed one liners.</p>
<p>Source : <a href="http://www.catonmat.net/blog/sed-one-liners-explained-part-one/">Catonmat</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bridgetonova.com/2011/09/how-to-reverse-a-string-using-sed.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to delete every other row in excel</title>
		<link>http://www.bridgetonova.com/2009/07/how-to-delete-every-other-row-in-excel.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-delete-every-other-row-in-excel</link>
		<comments>http://www.bridgetonova.com/2009/07/how-to-delete-every-other-row-in-excel.html#comments</comments>
		<pubDate>Tue, 07 Jul 2009 10:00:08 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[delete every other row]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://www.bridgetonova.com/?p=1203</guid>
		<description><![CDATA[If you want to delete every other row in Excel, you&#8217;ll need to use the following macro. On the Tools menu, point to Macro, and then click Visual Basic Editor. [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to delete every other row in Excel, you&#8217;ll need to use the following macro.</p>
<ul>
<li>On the Tools menu, point to Macro, and then click Visual Basic Editor.</li>
<li>For Excel 2007, click Visual Basic in the Code group on the Developer tab.</li>
<li>On the Insert menu, click Module.</li>
<li>Then copy paste the following code :</li>
</ul>
<pre class="brush: plain; title: ; notranslate">Sub Delete_Every_Other_Row()

' Dimension variables.
Y = False ' Change this to True if you want to
' delete rows 1, 3, 5, and so on.
I = 1
Set xRng = Selection

' Loop once for every row in the selection.
For xCounter = 1 To xRng.Rows.Count

' If Y is True, then...
If Y = True Then

' ...delete an entire row of cells.
xRng.Cells(I).EntireRow.Delete

' Otherwise...
Else

' ...increment I by one so we can cycle through range.
I = I + 1

End If

' If Y is True, make it False; if Y is False, make it True.
Y = Not Y

Next xCounter

End Sub</pre>
<ul>
<li>Switch to the worksheet that contains the data, and then select the cell that you want to delete.</li>
<li>To run the macro, point to Macro on the Tools menu, and then click Macros. (For Excel 2007, click Macros in the Code group on the Developer tab.)</li>
<li>Select the Delete_Every_Other_Row macro, and then click Run.</li>
</ul>
<p>Hopefully, future Excel versions will have built-in functions to delete every other row.</p>
<p>Source : <a href="http://support.microsoft.com/kb/213610">Microsoft KB</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bridgetonova.com/2009/07/how-to-delete-every-other-row-in-excel.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to view feedburner subscriber counts from blogs that don&#8217;t display</title>
		<link>http://www.bridgetonova.com/2008/01/how-to-view-feedburner-subscriber-counts-from-blogs-that-dont-display.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-view-feedburner-subscriber-counts-from-blogs-that-dont-display</link>
		<comments>http://www.bridgetonova.com/2008/01/how-to-view-feedburner-subscriber-counts-from-blogs-that-dont-display.html#comments</comments>
		<pubDate>Thu, 10 Jan 2008 02:30:00 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[My Experience]]></category>
		<category><![CDATA[Online Services]]></category>
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://jasonbton.wordpress.com/2008/01/10/how-to-view-feedburner-subscriber-counts-from-blogs-that-dont-display/</guid>
		<description><![CDATA[Well, we are very curious with our competitions. Sometimes, we really want to know how much of the subscribers do they have too? For me, I haven&#8217;t publicly shown my [...]]]></description>
			<content:encoded><![CDATA[<p>Well, we are very curious with our competitions. Sometimes, we really want to know how much of the subscribers do they have too? For me, I haven&#8217;t publicly shown my feed subscriber counts yet even though I am having a quite impressive number for me.</p>
<p>Well, anyway, if you want to view the feedburner counts of the blogs that don&#8217;t display, you might be able to see it if you&#8217;re lucky. In fact, lucky here means those blog owners should have got change of mind and should be stupid too.</p>
<p>Here&#8217;s how to achieve this.</p>
<p>This is my feed address.<br />
<blockquote>http://feeds.feedburner.com/BridgeToNova</p></blockquote>
<p>If you want to see my subscriber, you should type in the address bar as follow.<br />
<blockquote>http://feeds.feedburner.com/~fc/BridgeToNova</p></blockquote>
<p>What do you see now?</p>
<p><a href="http://bp3.blogger.com/_gi_LZGbBtrU/R4Uic85xpiI/AAAAAAAAAPs/bUA7rgP5x-A/s1600-h/feedcount-not-enable.jpg"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://bp3.blogger.com/_gi_LZGbBtrU/R4Uic85xpiI/AAAAAAAAAPs/bUA7rgP5x-A/s400/feedcount-not-enable.jpg" border="0" /></a></p>
<p> I&#8217;m not lying to you. You can&#8217;t see my counts because I know this trick and I&#8217;ve already prevented from it by deactivating in my feedburner dashboard. But hey, there are a lot of bloggers out there who don&#8217;t know this and you can check their feed counts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bridgetonova.com/2008/01/how-to-view-feedburner-subscriber-counts-from-blogs-that-dont-display.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add ads code into Blogger Beta</title>
		<link>http://www.bridgetonova.com/2007/12/how-to-add-ads-code-into-blogger-beta.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-add-ads-code-into-blogger-beta</link>
		<comments>http://www.bridgetonova.com/2007/12/how-to-add-ads-code-into-blogger-beta.html#comments</comments>
		<pubDate>Fri, 21 Dec 2007 11:47:00 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[My Experience]]></category>
		<category><![CDATA[Online Services]]></category>
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://jasonbton.wordpress.com/2007/12/21/how-to-add-ads-code-into-blogger-beta/</guid>
		<description><![CDATA[If you&#8217;ve ever tried to insert the Google Adsense code directly into your Blogger XML Template as you want ads between post (not in the widget sidebar or anywhere else), [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve ever tried to insert the Google Adsense code directly into your Blogger XML Template as you want ads between post (not in the widget sidebar or anywhere else), you&#8217;ll be stunned like me when you get the following error message.</p>
<blockquote><p>Your template could not be parsed as it is not well-formed. Please make sure all XML elements are closed properly. XML error message: The processing instruction target matching &#8220;[xX][mM][lL]&#8221; is not allowed.</p></blockquote>
<p>This is because Blogger uses more strict and standardized XML. The above error simply mean the Adsense code is not standardized XML. To solve this, we need to replace all the html character such as &#8216;&lt;&#8217; with &#8216;&gt;&#8217; &#8216;&#8221;&#8216; with &#8216;&#8221;&#8216;.   Check the example below: This is original code.<br />
<blockquote><a href="http://bp1.blogger.com/_gi_LZGbBtrU/R2tW785xpUI/AAAAAAAAAN8/mof8lF_MKec/s1600-h/ads-original-html.jpg"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://bp1.blogger.com/_gi_LZGbBtrU/R2tW785xpUI/AAAAAAAAAN8/mof8lF_MKec/s400/ads-original-html.jpg" border="0" /></a></p></blockquote>
<p>This is XML standardized code:<br />
<blockquote><a href="http://bp1.blogger.com/_gi_LZGbBtrU/R2tW785xpVI/AAAAAAAAAOE/K2gJcutIOAs/s1600-h/parse-ads-xml.jpg"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://bp1.blogger.com/_gi_LZGbBtrU/R2tW785xpVI/AAAAAAAAAOE/K2gJcutIOAs/s400/parse-ads-xml.jpg" border="0" /></a></p></blockquote>
<p>You can use your text editor to replace all the HTML manually. Hey why don&#8217;t you check out <a href="http://blogcrowds.com/resources/parse_html.php">Blogcrowds HTML parser</a>. It is very easy and convenient. Be warned that changing the ads might violate the TOS of your specific ads company. So be sure to check with them to play safe.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bridgetonova.com/2007/12/how-to-add-ads-code-into-blogger-beta.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to lock computers when idle by using GPO</title>
		<link>http://www.bridgetonova.com/2007/11/how-to-lock-computers-when-idle-by-using-gpo.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-lock-computers-when-idle-by-using-gpo</link>
		<comments>http://www.bridgetonova.com/2007/11/how-to-lock-computers-when-idle-by-using-gpo.html#comments</comments>
		<pubDate>Thu, 29 Nov 2007 20:24:00 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[My Experience]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jasonbton.wordpress.com/2007/11/29/how-to-lock-computers-when-idle-by-using-gpo/</guid>
		<description><![CDATA[What I wanted to do is that, after my computer has been idle for 3 minutes, it should lock itself. How to achieve this is one of the trouble for [...]]]></description>
			<content:encoded><![CDATA[<p>What I wanted to do is that, after my computer has been idle for 3 minutes, it should lock itself. How to achieve this is one of the trouble for me for almost two days. I have been digging around the net, but no answer. I tried to find myself in GPO (Group Policy Editor), but I don&#8217;t find the option directly.</p>
<p>But many articles I read on the net pointed me that I can changed four options in GPO. But that is for screensaver. I tweak a bit to achieve what I want. Remember I have told you guys about <a href="http://www.bridgetonova.com/2007/10/how-to-lock-computer-in-remote-desktop.html">how to create shortcut to lock computer</a>. Well, I used that tweak.</p>
<p>Here are the steps that I took:</p>
<ul>
<li>First go to Start &#8211;&gt;&gt; gpedit.msc</li>
<li>Go to User Configuration &#8211;&gt;&gt; Administrative Templates &#8211;&gt;&gt; Control Panel &#8211;&gt;&gt; Display</li>
</ul>
<p><a href="http://bp0.blogger.com/_gi_LZGbBtrU/R07NUJcU-dI/AAAAAAAAALU/qot4XRQtyXE/s1600-h/gpo-path-lock-computer.jpg"><img style="display:block;text-align:center;cursor:pointer;margin:0 auto 10px;" src="http://bp0.blogger.com/_gi_LZGbBtrU/R07NUJcU-dI/AAAAAAAAALU/qot4XRQtyXE/s400/gpo-path-lock-computer.jpg" alt="" border="0" /></a></p>
<p>There are many options there, but you just need to change four of them as follow.</p>
<p><a href="http://bp0.blogger.com/_gi_LZGbBtrU/R07OBJcU-eI/AAAAAAAAALc/fpKkf00K4BQ/s1600-h/screen-saver-option.jpg"><img style="display:block;text-align:center;cursor:pointer;margin:0 auto 10px;" src="http://bp0.blogger.com/_gi_LZGbBtrU/R07OBJcU-eI/AAAAAAAAALc/fpKkf00K4BQ/s400/screen-saver-option.jpg" alt="" border="0" /></a></p>
<ul>
<li>For screen saver option, just choose Enabled.</li>
<li>For screen saver executable, choose Enabled and then type &#8220;<span style="font-style:italic;">rundll32 user32.dll,LockWorkStation</span>&#8220;</li>
<li>For password protect the screen saver, choose Enabled.</li>
<li>For screen saver timeout, choose Enabled and then type the amount of time you want to lock your computer in seconds. (For example, if you want to lock your computer after three minutes of idle time, type 180)</li>
</ul>
<p>That&#8217;s it. Next time if you&#8217;re away, you don&#8217;t have to worry about some other would invade your computer.</p>
<p><span style="font-weight:bold;color:rgb(153,0,0);">BtoN&#8217;s Tips</span> : <span style="color:rgb(51,51,51);font-style:italic;">I have tested this on Vista and should work on Windows XP too. For screen saver timeout, if I set value less than 60, it won&#8217;t work.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bridgetonova.com/2007/11/how-to-lock-computers-when-idle-by-using-gpo.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Google china can find warez</title>
		<link>http://www.bridgetonova.com/2007/11/google-china-can-find-warez.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-china-can-find-warez</link>
		<comments>http://www.bridgetonova.com/2007/11/google-china-can-find-warez.html#comments</comments>
		<pubDate>Tue, 27 Nov 2007 17:54:00 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://jasonbton.wordpress.com/2007/11/27/google-china-can-find-warez/</guid>
		<description><![CDATA[Believe it or not Google china can find many software easier than ordinary search. Seeing is believing. Let&#8217;s try now. Go to http://www.google.com/intl/zh-cn/ Type the name of the program you [...]]]></description>
			<content:encoded><![CDATA[<p>Believe it or not Google china can find many software easier than ordinary search. Seeing is believing. Let&#8217;s try now.</p>
<ul>
<li>Go to http://www.google.com/intl/zh-cn/</li>
<li>Type the name of the program you want followed by cracked download (for example : Office 2007 cracked download)</li>
<li>Then click the third button.</li>
<li>All the results will be in Chinese. Just click randomly and you can download the software you want with no waiting time and no download limit.</li>
</ul>
<p>I&#8217;m not sure downloading from Chinese site will be faster than your favourite download sites. So if this not work for you, just stick to the method whatever you used to. I&#8217;m not responsible for any of your action. This is just a tip.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bridgetonova.com/2007/11/google-china-can-find-warez.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to open docx files without Office 2007</title>
		<link>http://www.bridgetonova.com/2007/11/how-to-open-docx-files-without-office-2007.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-open-docx-files-without-office-2007</link>
		<comments>http://www.bridgetonova.com/2007/11/how-to-open-docx-files-without-office-2007.html#comments</comments>
		<pubDate>Fri, 23 Nov 2007 05:17:00 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Office 2007]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jasonbton.wordpress.com/2007/11/23/how-to-open-docx-files-without-office-2007/</guid>
		<description><![CDATA[Microsoft has introduced a new file format called the Microsoft Open Office XML Format (.docx) with their latest office suite, Office 2007. But most people are still using Office 2003. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://bp1.blogger.com/_gi_LZGbBtrU/R0W7iIlumOI/AAAAAAAAAKk/cnClT7BvF04/s1600-h/office07.jpg"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://bp1.blogger.com/_gi_LZGbBtrU/R0W7iIlumOI/AAAAAAAAAKk/cnClT7BvF04/s400/office07.jpg" border="0" /></a><br />Microsoft has introduced a new file format called the Microsoft Open Office XML Format (.docx) with their latest office suite, Office 2007. </p>
<p>But most people are still using Office 2003. The big problem is that this new format is incompatible with older Microsoft Office versions or any other Office alternatives such as Open Office or Lotus, StarOffice, NeoOffice. Before anyone blame Microsoft, they have already created a program called <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=941B3470-3AE9-4AEE-8F43-C6BB74CD1466&amp;displaylang=en">Microsoft Office Compatibility Pack for Word, Excel, and PowerPoint 2007 File Formats</a>. After you&#8217;ve downloaded this program, you can easily convert new Office format such as .docx to old Office format .doc and vice versa.</p>
<p>Or if you don&#8217;t want to install any program, you can try <a href="http://docx-converter.com/">.docx online converter</a>. Hope this advice help your incompatibility headache.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bridgetonova.com/2007/11/how-to-open-docx-files-without-office-2007.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to create physical IDE disk in VMware</title>
		<link>http://www.bridgetonova.com/2007/11/how-to-create-physical-ide-disk-in-vmware.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-create-physical-ide-disk-in-vmware</link>
		<comments>http://www.bridgetonova.com/2007/11/how-to-create-physical-ide-disk-in-vmware.html#comments</comments>
		<pubDate>Tue, 13 Nov 2007 05:49:00 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[My Experience]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jasonbton.wordpress.com/2007/11/13/how-to-create-physical-ide-disk-in-vmware/</guid>
		<description><![CDATA[Yesterday, I&#8217;ve tried to install Windows XP in VMware 6.0. I&#8217;ve tried to use physical hard disk in VMware. But every time I create, VMware won&#8217;t let me choose the [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, I&#8217;ve tried to install Windows XP in VMware 6.0. I&#8217;ve tried to use physical hard disk in VMware. But every time I create, VMware won&#8217;t let me choose the option of IDE or SCSI. Instead, it only let me select in SCSI whether I want Bus logic or LSI logic.</p>
<p>So I googled around and found out that I&#8217;ve to edit VMware hard disk configuration file manually as follows.</p>
<blockquote><p>ddb.adapterType = &#8220;ide&#8221;<br />ddb.geometry.sectors = &#8220;63&#8243;<br />ddb.geometry.heads = &#8220;16&#8243;<br />ddb.geometry.cylinders = &#8220;16383&#8243;</p></blockquote>
<p>And I delete these lines in VMware config file .vmx. </p>
<blockquote><p>scsi0.present = &#8220;TRUE&#8221;<br />scsi0.virtualDev = &#8220;lsilogic&#8221;<br />scsi0:1.present = &#8220;TRUE&#8221;<br />scsi0:1.fileName = &#8220;disk-2.vmdk&#8221;<br />scsi0:1.deviceType = &#8220;rawDisk&#8221;</p></blockquote>
<p>Your config file might not look exactly as mine. But you know what to look and how to change. Any question? You can contact me via <a href="http://www.bridgetonova.com/2005/12/contact-us.html">contact form</a> or leave a comment.</p>
<p>Reference : <a href="http://communities.vmware.com/thread/48530">VMware forum</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bridgetonova.com/2007/11/how-to-create-physical-ide-disk-in-vmware.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

