<?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>PJB &#187; how to</title>
	<atom:link href="http://www.pjbacolod.com/tag/how-to/feed" rel="self" type="application/rss+xml" />
	<link>http://www.pjbacolod.com</link>
	<description>PJB: TALES OF A TECH SHARK</description>
	<lastBuildDate>Thu, 02 Feb 2012 18:10:42 +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 call a batch file from within another batch file</title>
		<link>http://www.pjbacolod.com/2010/11/how-to-call-a-batch-file-from-within-another-batch-file.html</link>
		<comments>http://www.pjbacolod.com/2010/11/how-to-call-a-batch-file-from-within-another-batch-file.html#comments</comments>
		<pubDate>Thu, 04 Nov 2010 08:38:46 +0000</pubDate>
		<dc:creator>PJ</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.pjbacolod.com/?p=905</guid>
		<description><![CDATA[
No related posts.]]></description>
			<content:encoded><![CDATA[<p>Have you tried running an external batch file from within a batch file or script, only to find out that the original batch file script prematurely terminates as soon as the external batch script is executed?</p>
<p>For example:</p>
<p>Let&#8217;s say we have a main script called <strong><em>&#8220;mainscript.bat&#8221;</em></strong> and two external scripts called <strong><em>&#8220;external1.bat&#8221;</em></strong> and <strong><em>&#8220;external2.bat&#8221;</em></strong>, with <em>&#8220;mainscript.bat&#8221;</em> having the following lines:</p>
<blockquote><p>@echo off<br />
c:\testscripts\external1.bat<br />
c:\testscripts\external2.bat</p></blockquote>
<p>When you try to run the script, you&#8217;ll notice that <em>external1.bat</em> will run but <em>external2.bat</em> won&#8217;t. This is because <em>external1.bat</em> (the called script) won&#8217;t pass the control back to <em>mainscript.bat</em> (the calling script) &#8212; which means it won&#8217;t get to run <em>external2.bat</em>.</p>
<p>In order to pass the control back to the calling script, you need to use the <em>&#8220;CALL&#8221;</em> command.</p>
<p>Here&#8217;s a simple fix for <em>mainscript.bat</em>:</p>
<blockquote><p>@echo off<br />
CALL c:\testscripts\external1.bat<br />
CALL c:\testscripts\external2.bat</p></blockquote>
<p>When you run <em>mainscript.bat</em>,  it will call (run) <em>external1.bat</em>. When <em>external1.bat</em> finishes, it will pass the control back to <em>mainscript.bat</em>. Which will then process the next line on the script &#8212; in this case, it will call (run) <em>external2.bat</em> &#8212; and so on.</p>
<img src="http://www.pjbacolod.com/?ak_action=api_record_view&id=905&type=feed" alt="" /><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pjbacolod.com/2010/11/how-to-call-a-batch-file-from-within-another-batch-file.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to enable telnet on Windows 7</title>
		<link>http://www.pjbacolod.com/2009/11/how-to-enable-telnet-n-windows-7.html</link>
		<comments>http://www.pjbacolod.com/2009/11/how-to-enable-telnet-n-windows-7.html#comments</comments>
		<pubDate>Fri, 06 Nov 2009 18:22:17 +0000</pubDate>
		<dc:creator>PJ</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.pjbacolod.com/?p=751</guid>
		<description><![CDATA[The telnet command is disabled by default in Windows 7. But you can easily enable it using the following steps: 1. Open the Windows 7 Control Panel (Start &#62; Control [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>The <strong>telnet</strong> command is disabled by default in Windows 7. But you can easily enable it using the following steps:</p>
<p>1. Open the Windows 7 Control Panel (Start &gt; Control Panel)</p>
<div id="attachment_752" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.pjbacolod.com/wp-content/uploads/2009/11/scrn-01.jpg"><img class="size-medium wp-image-752" title="Windows 7 Control Panel" src="http://www.pjbacolod.com/wp-content/uploads/2009/11/scrn-01-300x223.jpg" alt="Windows 7 Control Panel" width="300" height="223" /></a><p class="wp-caption-text">Windows 7 Control Panel</p></div>
<p>2. Click on the <strong><em>&#8220;Programs&#8221;</em></strong> link.</p>
<div id="attachment_753" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.pjbacolod.com/wp-content/uploads/2009/11/scrn-02.jpg"><img class="size-medium wp-image-753" title="Windows 7 Control Panel - Programs" src="http://www.pjbacolod.com/wp-content/uploads/2009/11/scrn-02-300x223.jpg" alt="Windows 7 Control Panel - Programs" width="300" height="223" /></a><p class="wp-caption-text">Windows 7 Control Panel - Programs</p></div>
<p>3. Under the <strong>&#8220;Programs and Features&#8221;</strong> setting, click on <strong><em>&#8220;Turn Windows features on or off&#8221;</em></strong> link.</p>
<div id="attachment_754" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.pjbacolod.com/wp-content/uploads/2009/11/scrn-03.jpg"><img class="size-medium wp-image-754" title="Windows 7 Control Panel - Turn Windows features on or off" src="http://www.pjbacolod.com/wp-content/uploads/2009/11/scrn-03-300x262.jpg" alt="Windows 7 Control Panel - Turn Windows features on or off" width="300" height="262" /></a><p class="wp-caption-text">Windows 7 Control Panel - Turn Windows features on or off</p></div>
<p>4. Tick the <strong><em>&#8220;Telnet Client&#8221;</em></strong> selection box. Wait for Windows 7 to install and enable the selected feature.</p>
<div id="attachment_755" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.pjbacolod.com/wp-content/uploads/2009/11/scrn-04-01.jpg"><img class="size-medium wp-image-755" title="Wait..." src="http://www.pjbacolod.com/wp-content/uploads/2009/11/scrn-04-01-300x152.jpg" alt="Wait..." width="300" height="152" /></a><p class="wp-caption-text">Wait...</p></div>
<p>5. Done! You should now be able to run the &#8220;telnet&#8221; command on the Windows 7 command prompt.</p>
<div id="attachment_756" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.pjbacolod.com/wp-content/uploads/2009/11/scrn-05.jpg"><img class="size-medium wp-image-756" title="Windows 7 telnet command" src="http://www.pjbacolod.com/wp-content/uploads/2009/11/scrn-05-300x151.jpg" alt="Windows 7 telnet command" width="300" height="151" /></a><p class="wp-caption-text">Windows 7 telnet command</p></div>
<img src="http://www.pjbacolod.com/?ak_action=api_record_view&id=751&type=feed" alt="" /><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pjbacolod.com/2009/11/how-to-enable-telnet-n-windows-7.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to solve MS Outlook Error: &#8220;Cannot start Microsoft Outlook. Cannot open the Outlook window.&#8221;</title>
		<link>http://www.pjbacolod.com/2009/10/how-to-solve-ms-outlook-error-cannot-start-microsoft-outlook-cannot-open-the-outlook-window.html</link>
		<comments>http://www.pjbacolod.com/2009/10/how-to-solve-ms-outlook-error-cannot-start-microsoft-outlook-cannot-open-the-outlook-window.html#comments</comments>
		<pubDate>Fri, 16 Oct 2009 10:41:02 +0000</pubDate>
		<dc:creator>PJ</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[ms office]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.pjbacolod.com/?p=670</guid>
		<description><![CDATA[If you cannot open Microsoft Outlook 2007 and get the following error when opening Microsoft Outlook 2007: &#8220;Cannot start Microsoft Outlook. Cannot open the Outlook window.&#8221; after previously being able [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>If you cannot open Microsoft Outlook 2007 and get the following error when opening Microsoft Outlook 2007: &#8220;Cannot start Microsoft Outlook. Cannot open the Outlook window.&#8221; after previously being able to open it, then you might want to try the following:</p>
<p>Go to Start &gt; Run and type the following: &#8220;<strong>outlook.exe /resetnavpane</strong>&#8221; (without the quotation marks) and press Enter.</p>
<p>This should fix the problem.</p>
<p>The &#8220;<strong><em>/resetnavpane</em></strong>&#8221; Outlook command switch clears and regenerates the MS Outlook navigation pane for the current profile.</p>
<img src="http://www.pjbacolod.com/?ak_action=api_record_view&id=670&type=feed" alt="" /><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pjbacolod.com/2009/10/how-to-solve-ms-outlook-error-cannot-start-microsoft-outlook-cannot-open-the-outlook-window.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>CA Audit &#8211; How to add an audit node group</title>
		<link>http://www.pjbacolod.com/2009/06/ca-audit-how-to-add-an-audit-node-group.html</link>
		<comments>http://www.pjbacolod.com/2009/06/ca-audit-how-to-add-an-audit-node-group.html#comments</comments>
		<pubDate>Sat, 06 Jun 2009 02:59:15 +0000</pubDate>
		<dc:creator>PJ</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[ca]]></category>
		<category><![CDATA[ca audit]]></category>
		<category><![CDATA[ca scc]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[walkthrough]]></category>

		<guid isPermaLink="false">http://www.pjbacolod.com/?p=619</guid>
		<description><![CDATA[In CA Audit,  formerly eTrust Audit, you can group your audit nodes (or audit clients) into logical groups depending on the audit events that are to be monitored. You can [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>In CA Audit,  formerly eTrust Audit, you can group your audit nodes (or audit clients) into logical groups depending on the audit events that are to be monitored.</p>
<p>You can also group audit nodes based on geographical and physical location, workgroup or domain, and you can also group them based on the audit recorder (iRecorder) agent.</p>
<p>Some of the common iRecorder agents are the Windows NT Log iRecorder, Microsoft ISA iRecorder, and the Microsoft Exchange iRecorder.</p>
<p>The following steps show how to add an audit node group to CA Audit:</p>
<p>1. Open the CA Audit Policy Manager and click on &#8220;Audit Nodes&#8221;</p>
<p><a href="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide6.jpg"><img class="size-medium wp-image-623 alignnone" title="slide6" src="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide6-300x225.jpg" alt="slide6" width="300" height="225" /></a></p>
<p>2. To add a new group, right-click on &#8220;Targets&#8221; and select &#8220;New Group&#8221;.</p>
<p><a href="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide4.jpg"><img class="size-medium wp-image-621 alignnone" title="slide4" src="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide4-300x225.jpg" alt="slide4" width="300" height="225" /></a></p>
<p>3. <strong>Configure the group name.</strong> Key in the desired name for the Audit Node (AN) group. You can optionally add a short description for the AN group. Click &#8220;OK&#8221; to save and close. The newly created AN group will be added to the &#8220;Targets&#8221; list.</p>
<p><a href="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide5.jpg"><img class="size-medium wp-image-622 alignnone" title="slide5" src="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide5-300x225.jpg" alt="slide5" width="300" height="225" /></a></p>
<p><a href="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide6.jpg"><img class="size-medium wp-image-623 alignnone" title="slide6" src="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide6-300x225.jpg" alt="slide6" width="300" height="225" /></a></p>
<p>4. Associate an Audit Node (AN) Type to the newly created group.</p>
<p><a href="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide7.jpg"><img class="size-medium wp-image-624 alignnone" title="slide7" src="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide7-300x225.jpg" alt="slide7" width="300" height="225" /></a></p>
<p><a href="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide8.jpg"><img class="size-medium wp-image-625 alignnone" title="slide8" src="http://www.pjbacolod.com/wp-content/uploads/2009/06/slide8-300x225.jpg" alt="slide8" width="300" height="225" /></a></p>
<img src="http://www.pjbacolod.com/?ak_action=api_record_view&id=619&type=feed" alt="" /><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pjbacolod.com/2009/06/ca-audit-how-to-add-an-audit-node-group.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to configure Windows Active Directory logon scripts</title>
		<link>http://www.pjbacolod.com/2009/06/how-to-configure-windows-active-directory-logon-scripts.html</link>
		<comments>http://www.pjbacolod.com/2009/06/how-to-configure-windows-active-directory-logon-scripts.html#comments</comments>
		<pubDate>Fri, 05 Jun 2009 09:18:33 +0000</pubDate>
		<dc:creator>PJ</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[active directory]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.pjbacolod.com/?p=613</guid>
		<description><![CDATA[There are instances when you need to run a script or program every time a user logs into your Windows network. One way to automate this is to configure and [...]
Related posts:<ol>
<li><a href='http://www.pjbacolod.com/2010/11/how-to-call-a-batch-file-from-within-another-batch-file.html' rel='bookmark' title='How to call a batch file from within another batch file'>How to call a batch file from within another batch file</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>There are instances when you need to run a script or program every time a user logs into your Windows network. One way to automate this is to configure and assign a Windows logon script to a particular user or group account.</p>
<p>Enabling Windows logon scripts is a two-stage process. The first stage is to create the script itself, and the second stage is to assign the logon script to a domain user (or group) account.</p>
<p><strong>I.	Where to save the logon script:</strong></p>
<ol>
<li>Create your logon script and save it in the appropriate format (Example: logon.bat, logon.vbs).</li>
<li>Go to your domain controller and copy the script into the <strong>%SystemRoot%\SYSVOL\Sysvol\DomainName\Scripts</strong> local folder (Ex. C:\WINDOWS\sysvol\sysvol\ENTIIS.COM\SCRIPTS).</li>
</ol>
<p>This folder corresponds to the domain controller’s NETLOGON network share folder.</p>
<p>This makes the script accessible over the network via the <strong>\\ServerName\Netlogon</strong> network share folder.</p>
<p><a href="http://www.pjbacolod.com/wp-content/uploads/2009/06/screenshot-01.jpg"><img class="size-medium wp-image-614 alignnone" title="screenshot-01" src="http://www.pjbacolod.com/wp-content/uploads/2009/06/screenshot-01-300x226.jpg" alt="screenshot-01" width="300" height="226" /></a></p>
<p><strong>To summarize:</strong><br />
If your domain controller’s name “DC01”, and if you have a script named “logon.bat”, which is saved on DC01’s “C:\WINDOWS\sysvol\sysvol\ENTIIS.COM\SCRIPTS” folder, then you can access the script over the network by going to the “\\DC01\netlogon“ network share folder, or by simply running \\DC01\netlogon\logon.bat.</p>
<p class="MsoListParagraphCxSpFirst"><strong><span lang="FIL-PH"><span>II.<span> </span></span></span></strong><strong><span lang="FIL-PH">How to assign a logon script to a user or group:</span></strong></p>
<p class="MsoListParagraphCxSpMiddle"><span><span lang="FIL-PH"><span>1.<span> </span></span></span></span><span><span lang="FIL-PH">First, open &#8220;Active Directory Users and Computers&#8221; on the domain controller.</span></span></p>
<p class="MsoListParagraphCxSpMiddle"><span><span lang="FIL-PH"><a href="http://www.pjbacolod.com/wp-content/uploads/2009/06/logonscript4.jpg"><img class="size-medium wp-image-616 alignnone" title="Active Directory Users and Computers" src="http://www.pjbacolod.com/wp-content/uploads/2009/06/logonscript4-211x300.jpg" alt="Active Directory Users and Computers" width="211" height="300" /></a><br />
</span></span>
</p>
<p class="MsoNormal"><span lang="FIL-PH"><span>2.<span> </span></span></span><span><span lang="FIL-PH">Now right click on the user you want to have the logon script and select the properties menu.</span></span></p>
<p class="MsoListParagraphCxSpFirst"><span lang="FIL-PH"><span>A properties dialog like the one shown below will appear. Select the &#8216;Profile&#8217; Tab</span><br />
</span>
</p>
<p class="MsoListParagraphCxSpMiddle">By default, if no exact network path is given, as shown in Figure 3, above, Active Directory will assume that the user profile logon script will be at the <strong>%SystemRoot%\SYSVOL\Sysvol\DomainName\Scripts</strong> folder.</p>
<p class="MsoListParagraphCxSpMiddle"><span lang="FIL-PH"><span>3.<span> </span></span></span><span lang="FIL-PH">Click <strong>Apply</strong>.</span></p>
<p class="MsoListParagraphCxSpLast"><span lang="FIL-PH"><span>4.<span> </span></span></span><span lang="FIL-PH">Click <strong>OK</strong>.</span></p>
<p class="MsoNormal"><span lang="FIL-PH">Once configured, the logon script will run (on the local machine where the user logged in) every time the user logs into the network using the corresponding account.</span></p>
<p class="MsoNormal"><span lang="FIL-PH">Note: You have to check if the user account used to log into the local machine has the appropriate rights to run or execute programs.</span></p>
<img src="http://www.pjbacolod.com/?ak_action=api_record_view&id=613&type=feed" alt="" /><p>Related posts:<ol>
<li><a href='http://www.pjbacolod.com/2010/11/how-to-call-a-batch-file-from-within-another-batch-file.html' rel='bookmark' title='How to call a batch file from within another batch file'>How to call a batch file from within another batch file</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.pjbacolod.com/2009/06/how-to-configure-windows-active-directory-logon-scripts.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to replace a car bulb like a mechanic</title>
		<link>http://www.pjbacolod.com/2007/11/tales-of-auto-shark-newbie-no-more.html</link>
		<comments>http://www.pjbacolod.com/2007/11/tales-of-auto-shark-newbie-no-more.html#comments</comments>
		<pubDate>Tue, 20 Nov 2007 13:31:00 +0000</pubDate>
		<dc:creator>PJ</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Tongue-in-cheek]]></category>
		<category><![CDATA[how to]]></category>

		<guid isPermaLink="false">http://www.pjbacolod.com/?p=136</guid>
		<description><![CDATA[After weeks of trying to make do with only one functional car headlight, I&#8217;ve finally been able to replace the defective bulb by myself! And I never knew that replacing [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow" href="http://bp0.blogger.com/_CzN_j0kFVp0/R0Lm1HdQSKI/AAAAAAAAATc/lIgd8-NmJIY/s1600-h/headlight_bulb.jpg" target="_blank"><img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer" src="http://bp0.blogger.com/_CzN_j0kFVp0/R0Lm1HdQSKI/AAAAAAAAATc/lIgd8-NmJIY/s200/headlight_bulb.jpg" border="0" alt="" /></a>After weeks of trying to make do with only one functional car headlight, I&#8217;ve finally been able to replace the defective bulb by myself! And I never knew that replacing it would be very easy! Ha!</p>
<p>I&#8217;ve been trying to figure out when to squeeze in a bulb replacement schedule with our car shop but failed to do so for quite some time because of our hectic work schedule and family commitments.</p>
<p>As an IT consultant, I&#8217;ve been very confident when it comes to tinkering with complicated server and IT infrastructure systems, but the helpless newbie in me prevails when it comes to fixing my own car.</p>
<p>And so after finally buying a new pair of headlamps for <em>&#8220;Puti&#8221;</em> I finally tried my luck on the thing.</p>
<p><a rel="nofollow" href="http://bp1.blogger.com/_CzN_j0kFVp0/R0LnAXdQSLI/AAAAAAAAATk/pW48vYGAjPA/s1600-h/headlight_bulb02.jpg" target="_blank"><img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer" src="http://bp1.blogger.com/_CzN_j0kFVp0/R0LnAXdQSLI/AAAAAAAAATk/pW48vYGAjPA/s200/headlight_bulb02.jpg" border="0" alt="" /></a>After reading the car manual, I realized that replacing the bulb wasn&#8217;t that complicated. And so when it came to actually doing it, it was easy as pie, and I couldn&#8217;t believe why it took me that long to do the dang thing myself.</p>
<p>It was just a matter of opening the hood, finding the lamp&#8217;s location, removing the power source connector, removing the rubber gasket holding the bulb, unlocking the bulb clamp, removing the defective bulb, putting in the new one, putting everything back in reverse order, and viola! you&#8217;re done!</p>
<p>Now the only thing left to do is to replace the other good headlight, since the new one that I placed was way brighter. Heheh. :)</p>
<p>Cheers!</p>
<img src="http://www.pjbacolod.com/?ak_action=api_record_view&id=136&type=feed" alt="" /><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pjbacolod.com/2007/11/tales-of-auto-shark-newbie-no-more.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to drive in one piece in Manila</title>
		<link>http://www.pjbacolod.com/2007/02/how-to-drive-in-one-piece-in-manila.html</link>
		<comments>http://www.pjbacolod.com/2007/02/how-to-drive-in-one-piece-in-manila.html#comments</comments>
		<pubDate>Sat, 10 Feb 2007 18:06:00 +0000</pubDate>
		<dc:creator>PJ</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Tongue-in-cheek]]></category>
		<category><![CDATA[driving]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[manila]]></category>
		<category><![CDATA[rant]]></category>

		<guid isPermaLink="false">http://www.pjbacolod.com/?p=56</guid>
		<description><![CDATA[In my previous blog post, I listed 5 tips on how to survive driving in Makati City. While these focus more on how to avoid law enforcement traps, another driving [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>In my previous blog post, I listed <a href="http://www.pjbacolod.com/2007/02/5-tips-on-how-to-survive-driving-in.html" target="_blank">5 tips on how to survive driving in Makati City</a>. While these focus more on how to avoid law enforcement traps, another driving survival guide that&#8217;s worth blogging about is how to survive while driving along with Manila&#8217;s general driving public.</p>
<p>I&#8217;ve had my share of accidents and judgment errors while driving in and around Manila, and these are some of the more helpful points that I believe you should remember in order to avoid being cited more than just a traffic violation ticket.</p>
<p>So how does one survive Manila&#8217;s rough and tumble, drag racing, demolition derby attuned roads? Here&#8217;s how:</p>
<p><strong>1. The Game of Chicken <em>(or Why It&#8217;s Better to be a Chicken Than to be a Statistic)</em></strong></p>
<p>There are a lot of reckless drivers and road hogs throughout the metropolis. And it is inevitable that you&#8217;ll end up playing a <a href="http://en.wikipedia.org/wiki/Chicken_(game)" target="_blank" rel="nofollow">game of chicken</a> with some stupid, zero skill driver at some point in time. Now if you&#8217;ve taken driver&#8217;s ed class or the <a href="http://www.lto.gov.ph/" target="_blank" rel="nofollow">Land Transportation Office (LTO)</a> license exams, then you&#8217;ll probably know that the best way to deal with these kinds of drivers is to simply give way. There&#8217;s no point in risking your life, or your passengers&#8217; lives for that matter to some idiot who probably doesn&#8217;t know his left from his right, let alone how to use the car brakes.</p>
<p><strong>2. Size Matters <em>(or Would You Want to Go Head On With A Bus?)</em></strong></p>
<p>When driving in bus-filled roads, such as <a href="http://en.wikipedia.org/wiki/EDSA" target="_blank" rel="nofollow">EDSA</a>, it&#8217;s essential to note that &#8220;Size Matters&#8221;. Simply put: You should never piss off bus drivers, especially during peak traffic hours. If you do, then you&#8217;ll most likely end up in the sidewalk frantically trying to wrestle for control of your car while trying to evade incoming pedestrians just because the bus driver decided to play a game of chicken (see Tip #1 above)!</p>
<p>Just imagine the damage a fully-laden passenger bus can do to your car if you happen to be sideswiped by it. An ounce of prevention is indeed better than a pound of cure.</p>
<p><strong>3. Lane Markings are Not Enough <em>(or Whoah! Lay Off on the Gas Pedal Dude, This Ain&#8217;t No Drag Strip!)</em></strong></p>
<p>Manila&#8217;s main roads have an unnatural tendency to go from being four lanes wide and all of a sudden narrowing down to two lanes. Imagine yourself cruising along at about a hundred kilometers per hour (60 mph) only to break and swerve real hard because of an unexpected road bottleneck up ahead! How government engineers planned the roads to be this way without having any foresight completely boggles the mind.</p>
<p>And so, it really pays if you always stay alert and watch out for the driving behavior of the cars in front of you. If you see them collectively break or swerve, then there&#8217;s probably a road anomaly up ahead. Again, you must remember Tips #1 and #2 above, because this is what will most likely happen in case of a &#8220;narrowing road&#8221; or &#8220;road bottleneck&#8221; scenario.</p>
<p><strong>4. The Turn Signal Deficiency Syndrome <em>(or &#8220;Did He Just Make a Lane Change Signal? No? BANG! I Though So!)</em></strong></p>
<p>In my experience, approximately only 2 in every 10 Filipino drivers that I encounter on the road know how to make a turn signal prior to executing a turn or a lane change. And half of that, roughly 1 in 10, usually engage their turn signals a split second before doing the actual turn or lane change! I&#8217;ve mentioned this in a previous <a href="http://www.pjbacolod.com/2007/01/its-bird-its-plane-no-its-flying-car.html">post</a>.</p>
<p>This can be very frustrating for the educated and disciplined driver. Driver&#8217;s ed usually teach you to observe signal lights, as this is a clear indication of the expected path a car in front of you will take. With this driving aspect or discipline missing in most Manila drivers, then you&#8217;ll wind up observing Tips #1 and #2 above, again!</p>
<p>There are a lot of other driving nuisances that a driver can face while driving in Manila, or in the Philippines in general. But the four scenarios above are probably the most prevalent. But to sum it all up, the best tip that can be offered is that every driver should practice defensive driving. This is one driving technique that will make you an above average driver, no, a great driver.</p>
<p>Are there other driving pitfalls that should be included in this list? Please feel free to add to it.</p>
<img src="http://www.pjbacolod.com/?ak_action=api_record_view&id=56&type=feed" alt="" /><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pjbacolod.com/2007/02/how-to-drive-in-one-piece-in-manila.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>5 tips on how to survive driving in Makati City</title>
		<link>http://www.pjbacolod.com/2007/02/5-tips-on-how-to-survive-driving-in.html</link>
		<comments>http://www.pjbacolod.com/2007/02/5-tips-on-how-to-survive-driving-in.html#comments</comments>
		<pubDate>Tue, 06 Feb 2007 13:47:00 +0000</pubDate>
		<dc:creator>PJ</dc:creator>
				<category><![CDATA[Tongue-in-cheek]]></category>
		<category><![CDATA[driving]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[Lists]]></category>
		<category><![CDATA[makati]]></category>

		<guid isPermaLink="false">http://www.pjbacolod.com/?p=54</guid>
		<description><![CDATA[Have you ever driven in the &#8220;country&#8221; that is Makati City? Of the major cities in the Philippines, Makati has probably one of the most stringent rules when it comes [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>Have you ever driven in the <em>&#8220;country&#8221;</em> that is <a href="http://en.wikipedia.org/wiki/Makati_City" target="_blank" rel="nofollow">Makati City</a>?</p>
<p>Of the major cities in the Philippines, Makati has probably one of the most stringent rules when it comes to managing vehicular traffic (aside from <a href="http://mysubic.blogspot.com" target="_blank" rel="nofollow">Subic</a>, which is not a city, so it doesn&#8217;t count). Most drivers passing through this city&#8217;s streets have stories to share of finding themselves being at odds with the city&#8217;s (sometimes overzealous) traffic enforcers, which oftentimes lead to being at the receiving end of a traffic citation ticket.</p>
<p>You can just imagine the headaches and hassles that Makati driving can bring to the life of the everyday, law abiding <a href="http://en.wikipedia.org/wiki/Juan_dela_Cruz" target="_blank" rel="nofollow"><em>&#8220;Juan dela Cruz&#8221;</em></a>.</p>
<p>So here are five driving lessons and tips that <strong>might</strong> save you from the long arm of the law, Makati style.<br />
<span><br />
<strong>1. Know Where, When and How to Park.</strong> </span></p>
<p><em>Where?</em> Streets that allow parking usually have parking slot pavement markings painted along its stretch. And as a general rule, sidewalk curbs painted white are for general parking use, yellow curbs are usually reserved for business establishments, and red curbs are no parking zones. Parking in front of fire hydrants is also a big no-no. Always check for Parking or No Parking signs or verify it with the city parking attendants.</p>
<p><em>When?</em> Some streets allow extended parking only at certain times of the day. During business hours (usually from 7AM to 5PM), most street parking areas allow cars to be parked for a maximum of 3 hours. On the other hand, some streets offer free parking after 5PM. So it&#8217;s always good to check out the Parking Signs nearby.</p>
<p><em>How?</em> There is a correct way to park when parallel parking is allowed on a street. Your car should generally face the same direction as that of the street lane&#8217;s traffic. If you&#8217;re caught parallel parking with your car&#8217;s front facing traffic, then have at least a thousand bucks ready because you&#8217;ll most likely end up claiming your towed car at the city pound (usually at Yakal Street).</p>
<p>To be on the safe side, it&#8217;s always best to park in a paid-parking lot.</p>
<p><strong>2. Figure Out the &#8220;One Way&#8221; Labyrinth Riddle</strong></p>
<p>This is what Makati is known for, the &#8220;One Way / Two Way&#8221; riddle. Always read the street traffic direction signs usually found at both ends of a street, or at the corner of each intersection. Be aware that some streets permit two-way traffic on weekends or holidays.</p>
<p><strong>3. Obey All Traffic Signs</strong></p>
<p>If a sign says &#8220;No Right Turn on Red Signal&#8221; then do as it says. These are traffic &#8220;honey pots&#8221; where Makati&#8217;s MAPSA (the city&#8217;s traffic enforcement group) people make a heyday. You&#8217;ll find these traffic zealots usually &#8216;hiding&#8217; around the corner, ready to spring to action to apprehend the unsuspecting driver.</p>
<p><strong>4. Buckle Up. Seatbelts Save Lives (Among other things). </strong></p>
<p>Buckling up not only saves lives, it also saves you from unnecessarily spending your hard earned cash as fine for not putting seat belts on. MAPSA people have eyes trained to watch for signs of &#8216;passenger seatbelt underutilization&#8217;.</p>
<p><strong>5. Remember Your License Plate &#8220;Number or Color Code&#8221; Day.</strong></p>
<p>This is one traffic rule that makes the city seem more like an autonomous country. Makati does not follow the usual <a href="http://en.wikipedia.org/wiki/Metro_Manila" target="_blank" rel="nofollow">National Capital Region (NCR)</a> Vehicle Reduction Program schedule, otherwise known as the vehicle Number Coding Scheme.</p>
<p>Vehicles with plates ending in a certain number are not allowed on main roads on certain days. The number code days are:</p>
<p>Monday: Plates ending in 1 and 2<br />
Tuesday: Plates ending in 3 and 4<br />
Wednesday: Plates ending in 5 and 6<br />
Thursday: Plates ending in 7 and 8<br />
Friday: Plates ending in 9 and 0</p>
<p>Most NCR cities and municipalities enforce the bans on the following specified hours: 7AM to 10AM and from 3PM to 7PM. In Makati&#8217;s case, bans are enforced from 7AM to 7PM. So you better watch out. Oh, and make sure your watch works just so you&#8217;ll now what time of day it is. :)</p>
<p>The five survival tips above cover traffic regulations. How to survive while driving along with Manila&#8217;s general driving public is a different story.</p>
<p>&#8212;&#8211;<br />
Related Blog Entries:<br />
<a href="http://www.pjbacolod.com/2007/10/7-ways-to-avoid-road-rage-part-1.html">7 Ways to Avoid Road Rage &#8211; Part 1</a><br />
<a href="http://www.pjbacolod.com/2007/10/7-ways-to-avoid-road-rage-part-2.html">7 Ways to Avoid Road Rage &#8211; Part 2</a></p>
<img src="http://www.pjbacolod.com/?ak_action=api_record_view&id=54&type=feed" alt="" /><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pjbacolod.com/2007/02/5-tips-on-how-to-survive-driving-in.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to avoid sore throat at work and be productive</title>
		<link>http://www.pjbacolod.com/2007/01/sore-throat-blues.html</link>
		<comments>http://www.pjbacolod.com/2007/01/sore-throat-blues.html#comments</comments>
		<pubDate>Wed, 31 Jan 2007 08:35:00 +0000</pubDate>
		<dc:creator>PJ</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.pjbacolod.com/?p=48</guid>
		<description><![CDATA[Have you ever had any lingering sore throat problems? It&#8217;s possible that your workplace environment could be the culprit. One of the key issues a company has to tackle to [...]
No related posts.]]></description>
			<content:encoded><![CDATA[<p>Have you ever had any lingering sore throat problems? It&#8217;s possible that your workplace environment could be the culprit.</p>
<p>One of the key issues a company has to tackle to help improve overall workforce health and productivity is to provide them with a workplace conducive for work. This equates to providing good work environment ergonomics and comfortable environmental working conditions.</p>
<p>If you work in nigh-freezing conditions then apparently, too much exposure to the super-cool air conditioning exhaust can be detrimental to your health. Even taking the proverbial &#8220;apple a day&#8221; would have been futile.</p>
<p>So how do you prevent sickness? It should be fairly easy. For example, it&#8217;s always a good idea to have additional pieces of clothing handy, such as jackets, in your workspace. And it wouldn&#8217;t hurt if you get out, stretch, have a hot cup of coffee or tea, or even smoke (although this can lead to a different health problem altogether) if you feel it gets too cold. But the best thing that you can probably do is to approach management and inform them of the situation. Any good employer should be able to come up with a solution, and if they don&#8217;t, then it&#8217;s a sign for you to seek employment elsewhere, since you&#8217;re probably working for the wrong people anyway.</p>
<p>Some companies have a Productivity Infrastructure plan that aims to improve overall employee wellbeing and productivity. It&#8217;s a testament that these companies value its employees above all else.</p>
<img src="http://www.pjbacolod.com/?ak_action=api_record_view&id=48&type=feed" alt="" /><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.pjbacolod.com/2007/01/sore-throat-blues.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

