<?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>Bluetonic Technologies</title>
	<atom:link href="http://bluetonic.ca/feed/" rel="self" type="application/rss+xml" />
	<link>http://bluetonic.ca</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Thu, 26 Jan 2012 05:27:35 +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>WordPress Permalinks web.config File Creation when there is a Permissions Error</title>
		<link>http://bluetonic.ca/2012/01/26/wordpress-permalinks-web-config-file-creation-when-there-is-a-permissions-error/</link>
		<comments>http://bluetonic.ca/2012/01/26/wordpress-permalinks-web-config-file-creation-when-there-is-a-permissions-error/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 05:24:54 +0000</pubDate>
		<dc:creator>blue</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Web Programming]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://bluetonic.ca/?p=35</guid>
		<description><![CDATA[When attempting to enable permalinks in Wordprss, you may come across the following message at the top of the settings-permalinks page after selecting a common settings style: You should update your web.config now Followed by this message below the &#8216;Save &#8230; <a href="http://bluetonic.ca/2012/01/26/wordpress-permalinks-web-config-file-creation-when-there-is-a-permissions-error/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>When attempting to enable permalinks in Wordprss, you may come across the following message at the top of the settings-permalinks page after selecting a common settings style:</p>
<blockquote><p>You should update your web.config now</p></blockquote>
<p>Followed by this message below the &#8216;Save Changes&#8217; button:</p>
<blockquote><p>If the root directory of your site were <a href="http://codex.wordpress.org/Changing_File_Permissions">writable</a>, we could do this automatically, but it isn’t so this is the url rewrite rule you should have in your <code>web.config</code> file. Create a new file, called <code>web.config</code> in the root directory of your site. Click in the field and press CTRL + a to select all. Then insert this code into the <code>web.config</code> file.</p></blockquote>
<p>All this means is that the root directory for your site is not writable, and WordPress has just attempted unsuccessfully to create the new file called web.config. This is a good thing, and means that the root folder permissions on your server are at a more secure setting.</p>
<p>To get permalinks working, follow the steps outlined above or:</p>
<ol>
<li>Open notepad (windows)</li>
<li>Copy and paste the code block from WordPress into the new notepad document</li>
<li>Click File -&gt; Save</li>
<li>Select &#8216;All Files (*.*) from the Save as type drop-down menu</li>
<li>Type in &#8216;web.config&#8217; and remove the .txt</li>
<li>FTP this file to the root folder</li>
</ol>
<p>One last thing, click on &#8216;Save Changes&#8217; in WordPress after selecting the type of permalinks you want. A Second message will appear:</p>
<blockquote><p>If your <code>web.config</code> file were <a href="http://codex.wordpress.org/Changing_File_Permissions">writable</a>, we could do this automatically, but it isn’t so this is the url rewrite rule you should have in your <code>web.config</code> file. Click in the field and press <kbd>CTRL + a</kbd> to select all. Then insert this rule inside of the <code>/&lt;configuration&gt;/&lt;system.webServer&gt;/&lt;rewrite&gt;/&lt;rules&gt;</code> element in <code>web.config</code> file.</p></blockquote>
<p>Ignore this message, permalinks will already be working. Visit you blog and click on a post heading to see the permalinks in action!</p>
<p>This is current as of WordPress 3.3.1.</p>
]]></content:encoded>
			<wfw:commentRss>http://bluetonic.ca/2012/01/26/wordpress-permalinks-web-config-file-creation-when-there-is-a-permissions-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to properly apply Mobile Browser Telephone Number Detection</title>
		<link>http://bluetonic.ca/2012/01/25/how-to-properly-apply-mobile-browser-telephone-number-detection/</link>
		<comments>http://bluetonic.ca/2012/01/25/how-to-properly-apply-mobile-browser-telephone-number-detection/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 02:27:36 +0000</pubDate>
		<dc:creator>blue</dc:creator>
				<category><![CDATA[Blackberry Browser]]></category>
		<category><![CDATA[HTML Tags]]></category>
		<category><![CDATA[Mobile Browser Tips]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Web Browsers]]></category>
		<category><![CDATA[Web Programming]]></category>

		<guid isPermaLink="false">http://bluetonic.ca/?p=19</guid>
		<description><![CDATA[While building a mobile browser website today, I came across a strange problem on my iPhone. I was building a real estate website which had the clients phone number on the page, and it had listing addresses which if they &#8230; <a href="http://bluetonic.ca/2012/01/25/how-to-properly-apply-mobile-browser-telephone-number-detection/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>While building a mobile browser website today, I came across a strange problem on my iPhone. I was building a real estate website which had the clients phone number on the page, and it had listing addresses which if they were of the right length (7 or more digits) Safari was converting them to phone number links.</p>
<p>Here is the original code, first is the telephone number, second is the address:</p>
<pre name="code" class="html">&lt;div id="call-portrait"&gt;555-123-4567&lt;/div&gt;

&lt;p&gt;111-1234 Main Street Vancouver, BC&lt;/p&gt;</pre>
<p>A quick search for how to disable telephone number detection in mobile browsers offered me the following meta-tags (first one is for iOS/iPhone, second is for Blackberry):</p>
<pre name="code" class="html">
<meta name="format-detection" content="telephone=no">
<meta http-equiv="x-rim-auto-match" content="none">
</pre>
<p>After I applied this code addresses were no longer links, but neither was the clients&#8217; telephone number. Further searching turned up an HTML method of inserting telephone numbers into code that I was not aware of which is similar to the mailto format:</p>
<pre name="code" class="html">
<a href="tel:555-123-4567">555-123-4567</a>
</pre>
<p>So wrapping text or an image inside to that tag turns the telephone number into a usable link. The one drawback, not that it seems to be a real problem as there are already telephone number harvesters out there, is that this method provides a more efficient way for said harvesters to obtain phone numbers from your website.</p>
<p>Sources:</p>
<p><a title="Click to call links" href="http://www.mobilexweb.com/blog/click-to-call-links-mobile-browsers" target="_blank">http://www.mobilexweb.com/blog/click-to-call-links-mobile-browsers</a></p>
<p><a title="iPhone phone links reference" href="http://developer.apple.com/library/ios/#featuredarticles/iPhoneURLScheme_Reference/Articles/PhoneLinks.html" target="_blank">http://developer.apple.com/library/ios/#featuredarticles/iPhoneURLScheme_Reference/Articles/PhoneLinks.html</a></p>
<p><a title="Risks of using the a href tel:" href="http://mobiforge.com/forum/starting/dotmobi-best-practices/risks-using-a-hreftelxxxxx-links-0" target="_blank">http://mobiforge.com/forum/starting/dotmobi-best-practices/risks-using-a-hreftelxxxxx-links-0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bluetonic.ca/2012/01/25/how-to-properly-apply-mobile-browser-telephone-number-detection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Annoying Beep Sound from Laptop after Wakeup from Sleep</title>
		<link>http://bluetonic.ca/2011/12/17/annoying-beep-sound-from-laptop-after-wakeup-from-sleep/</link>
		<comments>http://bluetonic.ca/2011/12/17/annoying-beep-sound-from-laptop-after-wakeup-from-sleep/#comments</comments>
		<pubDate>Sat, 17 Dec 2011 20:37:42 +0000</pubDate>
		<dc:creator>blue</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[OS]]></category>

		<guid isPermaLink="false">http://bluetonic.ca/?p=11</guid>
		<description><![CDATA[Every time my laptop would wake up from sleeping an annoying beeping, high pitched tone or squeal would sound whenever a sound played. This happened when clicking between pages or menus, watching a youtube video and eve)n during the shutdown &#8230; <a href="http://bluetonic.ca/2011/12/17/annoying-beep-sound-from-laptop-after-wakeup-from-sleep/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Every time my laptop would wake up from sleeping an annoying beeping, high pitched tone or squeal would sound whenever a sound played. This happened when clicking between pages or menus, watching a youtube video and eve)n during the shutdown music.</p>
<p>For a while I just avoided letting the laptop go to sleep, rather I would just put in the effort to shut it down instead of walking away and letting it put itself to sleep.</p>
<p>Being the type that is always looking to make life easier, I decided to search for a fix. Google basically turned up empty. There was a fix that involved device manager -&gt; non-plug and play drivers (view -&gt; show hidden devices), and changing the properties for the &#8216;beep&#8217; <a title="Link Here" href="http://www.online-tech-tips.com/windows-7/disable-the-internal-speaker-system-beep-in-windows-7/" target="_blank">link here</a>. There was also a few brand specific fixes, but nothing worked.</p>
<p>About ready to give up hope, I decided that there must be a simple solution to this annoyance which must be built into Windows or my Asus laptop&#8217;s hardware for a reason. Well it took about 5 clicks and it was fixed. Here&#8217;s the solution:</p>
<p>Control Panel -&gt; Sound -&gt; Playback tab -&gt; Right-Click Speakers -&gt; Advanced tab -&gt; Default Format drop-down -&gt; selected a higher rate like 24 bit, 44100 Hz (Studio Quality)</p>
<p>Clicked on test = annoying beeping high pitched sound gone!</p>
<p><a href="http://bluetonic.ca/wp-content/uploads/2011/12/speaker-properties.png"><img class="alignnone size-full wp-image-14" title="speaker-properties" src="http://bluetonic.ca/wp-content/uploads/2011/12/speaker-properties.png" alt="" width="830" height="462" /></a></p>
<p>This is the third time I have come across frequencies playing a roll in squealing sounds from computers or monitors, so this is obviously something that should be investigated.</p>
<p>Hope this helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://bluetonic.ca/2011/12/17/annoying-beep-sound-from-laptop-after-wakeup-from-sleep/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

