<?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>Frank Park</title>
	<atom:link href="http://www.frankpark.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.frankpark.com</link>
	<description></description>
	<lastBuildDate>Thu, 23 Jun 2011 21:17:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Gmail Piracy Protection&#8230; Fraud</title>
		<link>http://www.frankpark.com/2011/06/gmail-piracy-protection-fraud/</link>
		<comments>http://www.frankpark.com/2011/06/gmail-piracy-protection-fraud/#comments</comments>
		<pubDate>Tue, 14 Jun 2011 03:16:03 +0000</pubDate>
		<dc:creator>Frank Park</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[fraud]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[phishing]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://www.frankpark.com/?p=54</guid>
		<description><![CDATA[If you receive this email from &#8220;Google&#8221;.. Be aware, this is a scam and you should not reveal your password. Dear: Frank Park (xxxxxxxx@gmail.com), Gmail Account Security has received a request to deactivate your account. The request was received from IP address: 211.56.178.45 on 13 June 1111PM EST If you did not request that your [...]]]></description>
			<content:encoded><![CDATA[<p>If you receive this email from &#8220;Google&#8221;.. Be aware, this is a scam and you should not reveal your password. </p>
<pre>
Dear: Frank Park (xxxxxxxx@gmail.com),

Gmail Account Security has received a request to deactivate your
account. The request was received from IP address:

211.56.178.45 on 13 June 1111PM EST

If you did not request that your account be deactivated, or you
suspect another user made this request, simply reply back to
this email with your password in the message body to verify that
this request was made in error.

Your account will automatically remain active once the current
password is verified. This is the final email you will receive
before your account is terminated.

**Please note, your account cannot be recovered once deactivated.**

Sincerely,
Gmail Piracy Protection
************************************
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.frankpark.com/2011/06/gmail-piracy-protection-fraud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding out Daylight Saving Start and End Dates using MySQL Query</title>
		<link>http://www.frankpark.com/2011/03/finding-out-daylight-saving-start-and-end-dates-using-mysql-query/</link>
		<comments>http://www.frankpark.com/2011/03/finding-out-daylight-saving-start-and-end-dates-using-mysql-query/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 03:40:06 +0000</pubDate>
		<dc:creator>Frank Park</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.frankpark.com/?p=46</guid>
		<description><![CDATA[There are very few occasions where you have to purely use MySQL statement to determine if a specified date falls within the daylight saving time. Since the daylight saving time starts on the second Sunday of March and ends on the first Sunday of November, we can write such query to figure out the start [...]]]></description>
			<content:encoded><![CDATA[<p>There are very few occasions where you have to purely use MySQL statement to determine if a specified date falls within the daylight saving time. Since the daylight saving time starts on the second Sunday of March and ends on the first Sunday of November, we can write such query to figure out the start and end datetime of the boundary.</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">SELECT</span> 
  <span style="color: #000099;">CONCAT</span><span style="color: #FF00FF;">&#40;</span><span style="color: #000099;">DATE_ADD</span><span style="color: #FF00FF;">&#40;</span><span style="color: #000099;">CONCAT</span><span style="color: #FF00FF;">&#40;</span><span style="color: #000099;">YEAR</span><span style="color: #FF00FF;">&#40;</span><span style="color: #000099;">NOW</span><span style="color: #FF00FF;">&#40;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span> <span style="color: #008000;">&quot;-03-01&quot;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span> <span style="color: #CC0099; font-weight: bold;">INTERVAL</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">6</span> <span style="color: #CC0099;">-</span> <span style="color: #000099;">WEEKDAY</span><span style="color: #FF00FF;">&#40;</span><span style="color: #000099;">CONCAT</span><span style="color: #FF00FF;">&#40;</span><span style="color: #000099;">YEAR</span><span style="color: #FF00FF;">&#40;</span><span style="color: #000099;">NOW</span><span style="color: #FF00FF;">&#40;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span> <span style="color: #008000;">&quot;-03-01&quot;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #CC0099;">+</span> <span style="color: #008080;">7</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #9900FF; font-weight: bold;">DAY</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span> <span style="color: #008000;">&quot; 02:00:00&quot;</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">AS</span> dst_start<span style="color: #000033;">,</span> 
  <span style="color: #000099;">CONCAT</span><span style="color: #FF00FF;">&#40;</span><span style="color: #000099;">DATE_ADD</span><span style="color: #FF00FF;">&#40;</span><span style="color: #000099;">CONCAT</span><span style="color: #FF00FF;">&#40;</span><span style="color: #000099;">YEAR</span><span style="color: #FF00FF;">&#40;</span><span style="color: #000099;">NOW</span><span style="color: #FF00FF;">&#40;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span> <span style="color: #008000;">&quot;-11-01&quot;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span> <span style="color: #CC0099; font-weight: bold;">INTERVAL</span> <span style="color: #FF00FF;">&#40;</span><span style="color: #FF00FF;">&#40;</span><span style="color: #008080;">6</span> <span style="color: #CC0099;">-</span> <span style="color: #000099;">WEEKDAY</span><span style="color: #FF00FF;">&#40;</span><span style="color: #000099;">CONCAT</span><span style="color: #FF00FF;">&#40;</span><span style="color: #000099;">YEAR</span><span style="color: #FF00FF;">&#40;</span><span style="color: #000099;">NOW</span><span style="color: #FF00FF;">&#40;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span> <span style="color: #008000;">&quot;-11-01&quot;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #9900FF; font-weight: bold;">DAY</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span> <span style="color: #008000;">&quot; 02:00:00&quot;</span><span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">AS</span> dst_end<span style="color: #000033;">;</span></pre></div></div>

<p>With this information, you can now determine if a specific date falls between these two date. This example obviously looks at the current year, but it&#8217;s pretty easy to alter the above statement to check any year of your choosing.</p>
<p>Happy coding!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.frankpark.com/2011/03/finding-out-daylight-saving-start-and-end-dates-using-mysql-query/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco SPA30x and SPA50x Dynamic Attendant Console Call Pickup Code</title>
		<link>http://www.frankpark.com/2011/03/cisco-spa30x-and-spa50x-dynamic-attendant-console-call-pickup-code/</link>
		<comments>http://www.frankpark.com/2011/03/cisco-spa30x-and-spa50x-dynamic-attendant-console-call-pickup-code/#comments</comments>
		<pubDate>Mon, 14 Mar 2011 09:30:28 +0000</pubDate>
		<dc:creator>Frank Park</dc:creator>
				<category><![CDATA[Cisco Phones]]></category>

		<guid isPermaLink="false">http://www.frankpark.com/?p=40</guid>
		<description><![CDATA[If you are familiar with Cisco SPA300 and SPA500 series, it allows a secretary to have a BLF (Busy Lamp Field)  + CP (Call Pickup) + SD (Speed Dial) features. Although setting up BLF and SD features are very trivial given a PBX box that supports it, CP can be a bit tricky. Attendant Console [...]]]></description>
			<content:encoded><![CDATA[<p>If you are familiar with Cisco SPA300 and SPA500 series, it allows a secretary to have a BLF (Busy Lamp Field)  + CP (Call Pickup) + SD (Speed Dial) features. Although setting up BLF and SD features are very trivial given a PBX box that supports it, CP can be a bit tricky. Attendant Console Pickup Call Code parameter is available under the Attendant Console/Keys tab, but only allows you to have a static CP code for all extensions!!</p>
<p>Well.. Here&#8217;s a simple solution to dynamically assign a pickup code such that the code is followed by an extension number (ie. *88101). Let&#8217;s say Secretary&#8217;s extension is 100 and the boss&#8217;s extensions is 101. When you have a BLF+CP+SD feature turned on by entering &#8220;<em>fnc=blf+cp+sd;sub=101@$PROXY;ext=101@$PROXY;nme=101</em>&#8221; in the Extended Function field. Be sure to note that I have included <em><strong>nme </strong></em>variable. This specifies the extension number that will be appended to the call pickup code. Once you have assigned the nme variable, go to the Attendant Console/Key tab and change the Attendant Console Call Pickup Code to &#8220;*88#&#8221;. The hash mark (#) will be replaced with the value of nme.</p>
<p>Enjoy this trick!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.frankpark.com/2011/03/cisco-spa30x-and-spa50x-dynamic-attendant-console-call-pickup-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Beginning</title>
		<link>http://www.frankpark.com/2011/03/the-beginning/</link>
		<comments>http://www.frankpark.com/2011/03/the-beginning/#comments</comments>
		<pubDate>Sat, 05 Mar 2011 22:42:12 +0000</pubDate>
		<dc:creator>Frank Park</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.frankpark.com/?p=32</guid>
		<description><![CDATA[As with anything, there&#8217;s always a starting point.. Well.. Here I am! You may find my future blogs to be boring and useless, but my plans are to only post notes that I found either interesting or helpful for whatever I was trying to accomplish at the time. Feel free to contribute!]]></description>
			<content:encoded><![CDATA[<p>As with anything, there&#8217;s always a starting point.. Well.. Here I am! You may find my future blogs to be boring and useless, but my plans are to only post notes that I found either interesting or helpful for whatever I was trying to accomplish at the time. Feel free to contribute!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.frankpark.com/2011/03/the-beginning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

