<?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>binaryfactory.ca &#187; Misc</title>
	<atom:link href="http://blog.binaryfactory.ca/category/misc/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.binaryfactory.ca</link>
	<description>..by Guillaume Ross</description>
	<lastBuildDate>Thu, 11 Aug 2011 21:47:39 +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>I don&#8217;t need backups because I have RAID</title>
		<link>http://blog.binaryfactory.ca/2011/03/i-dont-need-backups-because-i-have-raid/</link>
		<comments>http://blog.binaryfactory.ca/2011/03/i-dont-need-backups-because-i-have-raid/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 11:08:04 +0000</pubDate>
		<dc:creator>Guillaume</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://blog.binaryfactory.ca/?p=480</guid>
		<description><![CDATA[Next time you hear someone say that, send them to my latest built-in-three-minutes website: Is not a backup dot Info]]></description>
			<content:encoded><![CDATA[<p>Next time you hear someone say that, send them to my latest built-in-three-minutes website:<br />
<a href="http://isnotabackup.info">Is not a backup dot Info</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binaryfactory.ca/2011/03/i-dont-need-backups-because-i-have-raid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to package Firefox extensions for Global installs</title>
		<link>http://blog.binaryfactory.ca/2010/04/how-to-package-firefox-extensions-for-global-installs/</link>
		<comments>http://blog.binaryfactory.ca/2010/04/how-to-package-firefox-extensions-for-global-installs/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 00:44:48 +0000</pubDate>
		<dc:creator>Guillaume</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Deploy]]></category>
		<category><![CDATA[Enterprise]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Push]]></category>

		<guid isPermaLink="false">http://blog.binaryfactory.ca/?p=419</guid>
		<description><![CDATA[Firefox extensions are distributed in XPI packages (pronounced zippy). XPI packages are in reality just a ZIP file with a standard file and folder structure in it. Two types of add-on installations can be performed : Per-user, and per-workstation (Global). Typically, extensions are installed per-user, especially if the user is not a local administrator on [...]]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">Firefox extensions are distributed in XPI packages (pronounced zippy).</div>
<div id="_mcePaste">XPI packages are in reality just a ZIP file with a standard file and folder structure in it.</div>
<div id="_mcePaste">Two types of add-on installations can be performed : Per-user, and per-workstation (Global). Typically, extensions are installed per-user, especially if the user is not a local administrator on his workstation.</div>
<div id="_mcePaste">However, there may be cases where a global installation is preferred: a standard extension would need to be installed multiple times for every user of a shared workstation. It would also be harder to push extensions out to users instead of machines.</div>
<div id="_mcePaste">Here is how to create install a firefox extension globally in a way that can easily be packaged  with anything that allows running batch files. The same information can easily be used to create clean MSI packages as well, using WiX or anything else, just put the files in the right location and set the proper registry keys. It would probably be more reliable to do it with an MSI than batch files.</div>
<div></div>
<div id="_mcePaste"><strong>1) Obtain the XPI package</strong></div>
<div><strong><br />
</strong></div>
<div id="_mcePaste"><strong>2) Unzip the XPI package</strong></div>
<div><strong><br />
</strong></div>
<div id="_mcePaste"><strong>3) Open the install.rdf file in the package.</strong></div>
<div><strong><br />
</strong></div>
<div id="_mcePaste">We need to identify the &#8220;ID&#8221; of the package. Look for something similar to this:</div>
<blockquote>
<div id="_mcePaste">&lt;em:id&gt;Blah blah&lt;/em:id&gt;</div>
</blockquote>
<div id="_mcePaste">The ID contained in the EM:ID anchors may be a name or a GUID. Note it down.</div>
<div></div>
<div id="_mcePaste"><strong>4) Create a registry import file</strong></div>
<div id="_mcePaste"></div>
<div>Create a .reg file.</div>
<div id="_mcePaste">This will be used to tell Firefox where to look for the new globally installed extension. This can be anywhere you want as long as the user that will open firefox has read access to it.</div>
<blockquote>
<div id="_mcePaste">Windows Registry Editor Version 5.00</div>
<div id="_mcePaste">[HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Firefox\Extensions]</div>
<div id="_mcePaste">&#8220;em-id-of-extension&#8221;=&#8221;C:\\Program Files\\Mozilla Firefox\\PathToExtension&#8221;</div>
</blockquote>
<div id="_mcePaste"><strong>5) Create a registry import file for uninstallation</strong></div>
<div id="_mcePaste"></div>
<div>This file needs to be identicaly to the above, but with a minus instead of the path to the extension. This simply deletes the string we created before.</div>
<blockquote>
<div id="_mcePaste">Windows Registry Editor Version 5.00</div>
<div id="_mcePaste">[HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Firefox\Extensions]</div>
<div id="_mcePaste">&#8220;em-id-of-extension&#8221;=-</div>
</blockquote>
<div id="_mcePaste"><strong>6) Create a batch file for installation</strong></div>
<div><strong><br />
</strong></div>
<div id="_mcePaste">This batch file simply needs to copy the files to the location you specified in your .reg file, and then run regedit /s regfile.reg to import the registry changes.</div>
<div></div>
<div id="_mcePaste"><strong>7) Create a batch file for uninstallation</strong></div>
<div></div>
<div id="_mcePaste">This batch file simply deletes the directory containing your extension and runs regedit /s on the uninstallation regfile.</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.binaryfactory.ca/2010/04/how-to-package-firefox-extensions-for-global-installs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online Payment &#124; SAAQ</title>
		<link>http://blog.binaryfactory.ca/2010/03/online-payment-saaq/</link>
		<comments>http://blog.binaryfactory.ca/2010/03/online-payment-saaq/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 22:36:17 +0000</pubDate>
		<dc:creator>Guillaume</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Banking]]></category>
		<category><![CDATA[Government]]></category>
		<category><![CDATA[Stupid]]></category>

		<guid isPermaLink="false">http://blog.binaryfactory.ca/?p=405</guid>
		<description><![CDATA[Online Payment &#124; SAAQ. Did I wake up in 1995, or is the SAAQ restricting my choices to two banks in Quebec? I can renew my license plates online with a credit card, but for some reason, they seem to want to force me to either waste paper and a stamp, or to go to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.saaq.gouv.qc.ca/en/services/online_payment.php">Online Payment | SAAQ</a>.</p>
<p>Did I wake up in 1995, or is the SAAQ restricting my choices to two banks in Quebec?</p>
<p>I can renew my license plates online with a credit card, but for some reason, they seem to want to force me to either waste paper and a stamp, or to go to their location to pay.</p>
<p>And yes, paying at <em>their location</em> will cost you an extra $3 on top of that $86/year driver&#8217;s license.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binaryfactory.ca/2010/03/online-payment-saaq/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lacie Tech Support doesn&#8217;t know what a share is</title>
		<link>http://blog.binaryfactory.ca/2009/09/lacie-tech-support-doesnt-know-what-a-share-is/</link>
		<comments>http://blog.binaryfactory.ca/2009/09/lacie-tech-support-doesnt-know-what-a-share-is/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 01:26:37 +0000</pubDate>
		<dc:creator>Guillaume</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Amusing]]></category>
		<category><![CDATA[Funny]]></category>
		<category><![CDATA[Lacie]]></category>
		<category><![CDATA[Stupid]]></category>
		<category><![CDATA[Support]]></category>

		<guid isPermaLink="false">http://blog.binaryfactory.ca/?p=354</guid>
		<description><![CDATA[I recently got a Lacie D2 network drive. It has been working pretty well, I&#8217;m using it for SMB share, AFP share, time machine and to share movies and music to my ps3. I own a copy of Office that is the download-able version. It is basically a selft-extracting exe that then runs a setup. [...]]]></description>
			<content:encoded><![CDATA[<p>I recently got a Lacie D2 network drive. It has been working pretty well, I&#8217;m using it for SMB share, AFP share, time machine and to share movies and music to my ps3.</p>
<p>I own a copy of Office that is the download-able version. It is basically a selft-extracting exe that then runs a setup.</p>
<p>I had it stored in a SMB share on the Lacie drive. I ran it. The setup crashed. Then, AFP crashed on my NAS. Rebooting it made things worse. AFP wouldn&#8217;t start. Bonjour wouldn&#8217;t start. Not long after, SMB wouldn&#8217;t start.<br />
Logfiles seemed to indicate that the system&#8217;s drive was full. I presume the system is stored on Flash storage in the NAS itself.</p>
<p>I contacted Lacie support. They could only instruct me to reset the unit to factory settings. At least, no data was lost.<br />
I then asked if it could be related in any way to me running a setup file directly from the share, expecting them to tell me there is a known issue when reading a file and writing a lot at the same time or something similar..<br />
Instead, I got this reply:</p>
<p><strong>Tech Support dude. </strong></p>
<div><img src="https://www.lacie.com/img/star_on.gif" alt="" /> <img src="https://www.lacie.com/img/star.gif" alt="" /> <img src="https://www.lacie.com/img/star.gif" alt="" /> <img src="https://www.lacie.com/img/star.gif" alt="" /> <img src="https://www.lacie.com/img/star.gif" alt="" /></div>
<p><span>Makes no sense</span><br />
<span style="color: #999999;">Posted: September 3, 2009 @ 7:23 AM</span></p>
<p>It was related to running the .exe file on the drive.  The file is proprietary to an OS such as XP, Vista, or Mac OS X.  Running the file on a non-conforming OS is going to create severe havoc and other issues.  I am glad the reset resolved the issue.</p>
<p>Regards,</p>
<p>Tech support dude</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binaryfactory.ca/2009/09/lacie-tech-support-doesnt-know-what-a-share-is/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Companies I hate and love.</title>
		<link>http://blog.binaryfactory.ca/2009/08/companies-i-hate-and-love/</link>
		<comments>http://blog.binaryfactory.ca/2009/08/companies-i-hate-and-love/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 23:11:33 +0000</pubDate>
		<dc:creator>Guillaume</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Bad]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Good]]></category>
		<category><![CDATA[Review]]></category>

		<guid isPermaLink="false">http://blog.binaryfactory.ca/?p=326</guid>
		<description><![CDATA[This is a post that will get updated as I get shafted by incredibly poor service from companies, or stellar service. 1) Bell&#8230; ok now you know the first section is the NEGATIVE one. Throttling, DNS Hijacking, Saying they are coming to fix my dry-loop DSL between 5 and 9pm and not showing up (I [...]]]></description>
			<content:encoded><![CDATA[<p>This is a post that will get updated as I get shafted by incredibly poor service from companies, or stellar service.</p>
<p>1) <strong>Bell</strong>&#8230; ok now you know the first section is the NEGATIVE one.</p>
<p>Throttling, DNS Hijacking, Saying they are coming to fix my dry-loop DSL between 5 and 9pm and not showing up (I have an ADSL through Teksavvy).</p>
<p>2) <strong>Micro-Boutique</strong> (at dix30)<br />
Some of the worst service I&#8217;ve ever seen in a computer store. I&#8217;d rather get a Mac at Futureshop than there. Took over 30minutes of arguing over a 35$ rubber iPod case that plain didn&#8217;t fit properly. They didn&#8217;t want to take it back because I had used the screen protector (which you have to install before you put the case on). They couldn&#8217;t replace it as the WHOLE BATCH was messed up (iSkin), yet refused to reimburse me for about 30minutes.<br />
When I informed the employee that the case was badly molded, and that I had read on some forums that other people had issues with it, I was told that &#8220;This is plain FALSE, we sold a lot of them and they&#8217;re FINE&#8221;.<br />
Thanks for saying I&#8217;m a liar before even checking it out.</p>
<p>Oh, also, when the iPhone 3g was released, they told me, 3 times in a row, that they would ABSOLUTELY have cases for it TOMORROW. </p>
<p>Just bought a Macbook ..from the Apple store.</p>
<p>3) <strong>Mobilia</strong><br />
Great furniture, crappy service. My couch has been late for about 2 weeks now, which is not that bad of an issue. What&#8217;s bad is I went there two times, to told that the manager would call me the next day. He never did.</p>
<p>Oh, and apparently they ordered only 2 couches but sold 3, so someone is getting the shaft.</p>
<p>http://www.bbb.org/kitchener/business-reviews/furniture-retail/mobilia-thomasville-in-pointe-claire-qc-1034196#ratingdetails</p>
<p>Their awesome BBB rating seems to show I&#8217;m not the only one having issues with them.</p>
<p>I was going to get more furniture to match the couch I got from there if I ever receive it, but it&#8217;ll have to be somewhere else.</p>
<p><strong>Now, the good ones!</strong></p>
<p>1) <strong>Teksavvy</strong><br />
Even though they have to go through Bell&#8217;s ADSL network to provide customers with service, they always answer prompty and try their best to fix your problem. It&#8217;s sad Bell&#8217;s bad service is hurting them, and I hope Bell is forced into playing fair.</p>
<p>2) <strong>Zaino Canada</strong><br />
The best products to polish a car, and it ships out so fast I got the stuff the second day after I ordered. Twice.</p>
<p><em>More to come&#8230;</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binaryfactory.ca/2009/08/companies-i-hate-and-love/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OS X 10.5.8 Problems with Firefox</title>
		<link>http://blog.binaryfactory.ca/2009/08/os-x-10-5-8-problems-with-firefox/</link>
		<comments>http://blog.binaryfactory.ca/2009/08/os-x-10-5-8-problems-with-firefox/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 21:53:35 +0000</pubDate>
		<dc:creator>Guillaume</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://blog.binaryfactory.ca/?p=324</guid>
		<description><![CDATA[I have just upgraded my Macbook pro to 10.5.8. I didn&#8217;t use the combo update for two reasons: 1) My ADSL is totally messed up, waiting for Bell to fix it, so 700+megs is insane for an update 2) I figured that since my OS X install was about a WEEK OLD that it could [...]]]></description>
			<content:encoded><![CDATA[<p>I have just upgraded my Macbook pro to 10.5.8.</p>
<p>I didn&#8217;t use the combo update for two reasons:</p>
<p>1) My ADSL is totally messed up, waiting for Bell to fix it, so 700+megs is insane for an update<br />
2) I figured that since my OS X install was about a WEEK OLD that it could handle updates easily.</p>
<p>The install went fine, I rebooted.. and now I can&#8217;t even launch Firefox 3.5 !</p>
<p>Update: I rebooted a second time, and now Firefox seems to work fine. My spotlight index appears to be wiped, which I assume is normal.</p>
<p>Weird.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binaryfactory.ca/2009/08/os-x-10-5-8-problems-with-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weird book themes</title>
		<link>http://blog.binaryfactory.ca/2009/07/weird-book-themes/</link>
		<comments>http://blog.binaryfactory.ca/2009/07/weird-book-themes/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 14:33:11 +0000</pubDate>
		<dc:creator>Guillaume</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Amusing]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[Funny]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://blog.binaryfactory.ca/?p=302</guid>
		<description><![CDATA[How can people be looking for so many Unix books yet&#8230; The first one here isn&#8217;t unix related at all!]]></description>
			<content:encoded><![CDATA[<p>How can people be looking for so many Unix books yet&#8230; The first one here isn&#8217;t unix related at all!</p>
<p><a href="http://blog.binaryfactory.ca/wp-content/uploads/2009/07/l_790_741_97E1CC78-516C-4DAF-BC62-0441D43C40D6.jpeg"><img src="http://blog.binaryfactory.ca/wp-content/uploads/2009/07/l_790_741_97E1CC78-516C-4DAF-BC62-0441D43C40D6.jpeg" alt="" width="300" height="281" class="alignnone size-full wp-image-364" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binaryfactory.ca/2009/07/weird-book-themes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Useful error messages. Or not</title>
		<link>http://blog.binaryfactory.ca/2009/07/useful-error-messages-or-not/</link>
		<comments>http://blog.binaryfactory.ca/2009/07/useful-error-messages-or-not/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 18:42:59 +0000</pubDate>
		<dc:creator>Guillaume</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Adobe sucks]]></category>
		<category><![CDATA[Amusing]]></category>
		<category><![CDATA[Funny]]></category>
		<category><![CDATA[Stupid]]></category>

		<guid isPermaLink="false">http://blog.binaryfactory.ca/?p=300</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.binaryfactory.ca/wp-content/uploads/2009/07/l_504_359_49120F6D-5B63-4A54-A3B3-3C940EAFC223.jpeg"><img src="http://blog.binaryfactory.ca/wp-content/uploads/2009/07/l_504_359_49120F6D-5B63-4A54-A3B3-3C940EAFC223.jpeg" alt="" width="300" height="213" class="alignnone size-full wp-image-364" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binaryfactory.ca/2009/07/useful-error-messages-or-not/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Funny Graffiti</title>
		<link>http://blog.binaryfactory.ca/2009/04/funny-graffiti/</link>
		<comments>http://blog.binaryfactory.ca/2009/04/funny-graffiti/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 15:58:00 +0000</pubDate>
		<dc:creator>Guillaume</dc:creator>
				<category><![CDATA[Comic]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Amusing]]></category>
		<category><![CDATA[Graffiti]]></category>

		<guid isPermaLink="false">http://blog.binaryfactory.ca/?p=281</guid>
		<description><![CDATA[Why would someone write “Wood Killer” …on a plywood board? Perhaps because they have to cut down trees to build the condos? &#160;]]></description>
			<content:encoded><![CDATA[<p>Why would someone write “Wood Killer” …on a plywood board? Perhaps because they have to cut down trees to build the condos?</p>
<p>&#160;</p>
<p><a href="http://blog.binaryfactory.ca/wp-content/uploads/2009/04/photo.jpg"><img title="photo" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="804" alt="photo" src="http://blog.binaryfactory.ca/wp-content/uploads/2009/04/photo-thumb.jpg" width="604" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binaryfactory.ca/2009/04/funny-graffiti/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to sync Outlook on your PC, iCal, Pocket Informant on the iPhone and still get alarms</title>
		<link>http://blog.binaryfactory.ca/2009/03/how-to-sync-outlook-on-your-pc-ical-pocket-informant-on-the-iphone-and-still-get-alarms/</link>
		<comments>http://blog.binaryfactory.ca/2009/03/how-to-sync-outlook-on-your-pc-ical-pocket-informant-on-the-iphone-and-still-get-alarms/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 17:08:07 +0000</pubDate>
		<dc:creator>Guillaume</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://blog.binaryfactory.ca/?p=276</guid>
		<description><![CDATA[Pocket Informant is a wonderful tool on Windows Mobile, and an iPhone version was just released. It doesn’t have all the same bells and whistles (yet), and suffers from the heavy restrictions and lack of functionality in the iPhone OS version 2. Two particularily annoying restrictions are the fact that it can’t sync with the [...]]]></description>
			<content:encoded><![CDATA[<p>Pocket Informant is a wonderful tool on Windows Mobile, and an iPhone version was just released. It doesn’t have all the same bells and whistles (yet), and suffers from the heavy restrictions and lack of functionality in the iPhone OS version 2.</p>
<p>Two particularily annoying restrictions are the fact that it can’t sync with the iPhone’s calendar, which would’ve made it easy to sync with your desktop, and it can’t ring alarms if the app isn’t on. And to think that a decade ago, Pilot 1000s could ring even while the device was off…</p>
<p>To be able to sync my iPhone Pocket Informant to my work Calendar (Outlook) and home Calendar (iCal), and to retain alarms, I use this scheme:</p>
<p><a href="http://blog.binaryfactory.ca/wp-content/uploads/2009/03/image2.png"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="image" src="http://blog.binaryfactory.ca/wp-content/uploads/2009/03/image-thumb2.png" border="0" alt="image" width="580" height="343" /></a></p>
<p>Here is what you will need to do, and in what order.</p>
<p>1. Open a <a href="http://www.google.com/calendar" target="_blank">Google Calendar</a> account. It should be noted that this is stored on Google’s servers, so this solution may not be the best if you treat your calendar info as super private or if it contains confidential information. It might also be a very bad idea if you schedule crimes using your iPhone. Read the privacy policy.</p>
<p>2. Backup your iCal and Outlook calendars, or really any other application you will sync with Google Calendar. The calendar will get wiped from your iPhone so make sure that the info is already somewhere else.</p>
<p>3. Download and install the <a href="http://dl.google.com/googlecalendarsync/GoogleCalendarSync_Installer.exe" target="_blank">Google Calendar Sync</a> tool. The options are very straightforward:</p>
<p><a href="http://blog.binaryfactory.ca/wp-content/uploads/2009/03/image3.png"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="image" src="http://blog.binaryfactory.ca/wp-content/uploads/2009/03/image-thumb3.png" border="0" alt="image" width="498" height="530" /></a></p>
<p>Enter your Google credentials, and set the sync to 2 way. Test the synchronisation, verify that your Google Calendar now reflects what is in your Outlook calendar.</p>
<p>4. Download and install the <a href="http://code.google.com/p/calaboration/downloads/list" target="_blank">Google Calaboration Utility to Configure Google Calendar as CalDAV Calendars in iCal</a> . Again, the options are pretty straightforward, though the first sync will get the data from Google to your iCal in a new calendar. You will to create new appointments in the proper calendar. I’m no big iCal user, I barely use it in fact, so you may know a way of merging your calendars. Test creating an appointment, see if it got created on the Google Calendar, and then force a sync in Outlook and see if it made it there.</p>
<p>5. <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=302503702&amp;mt=8" target="_blank">Buy</a>, download and install Pocket Informant on your iPhone. Under <strong>Settings / Sync / Google Calendar</strong>, set the Sync to Active, enter your credentials, and force a sync. See if everything is now in Pocket Informant.</p>
<p>6. Disable calendar sync in iTunes. <strong></strong></p>
<p>7. On  your iPhone, follow <a href="http://www.google.com/support/mobile/bin/answer.py?answer=138740&amp;topic=14252" target="_blank">these instructions</a> that explain how to setup your Google Calendar to sync over the ActiveSync (Exchange) protocol. This will <strong>wipe any calendar info from your iphone.</strong> Force a Sync, check if your iPhone calendar got updated. This will give you alarms !</p>
<p>8. <strong>Bonus option</strong> for <strong>jailbroken</strong> phones: Install Lock Calendar , available in Cydia, to display calendar info on the lock screen.</p>
<p><a href="http://blog.binaryfactory.ca/wp-content/uploads/2009/03/image4.png"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="From Outlook.." src="http://blog.binaryfactory.ca/wp-content/uploads/2009/03/image-thumb4.png" border="0" alt="From Outlook.." width="644" height="127" /></a></p>
<p><a href="http://blog.binaryfactory.ca/wp-content/uploads/2009/03/image5.png"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="From Google Calendar..." src="http://blog.binaryfactory.ca/wp-content/uploads/2009/03/image-thumb5.png" border="0" alt="From Google Calendar..." width="644" height="79" /></a></p>
<p><a href="http://blog.binaryfactory.ca/wp-content/uploads/2009/03/image6.png"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="image" src="http://blog.binaryfactory.ca/wp-content/uploads/2009/03/image-thumb6.png" border="0" alt="image" width="244" height="185" /></a> <a href="http://blog.binaryfactory.ca/wp-content/uploads/2009/03/image7.png"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="image" src="http://blog.binaryfactory.ca/wp-content/uploads/2009/03/image-thumb7.png" border="0" alt="image" width="171" height="244" /></a></p>
<p>You now have a decent calendaring solution for your iPhone, hopefully, some of these steps will be redundant with version 3 of the OS and future Pocket Informant release.</p>
<p><strong>Known issues:</strong></p>
<p>There is obviously a pretty long delay until all parts are up to date. I set the sync on my iPhone to 30minutes (I don’t use push), and to my outlook to 30 minutes, so if I’m not lucky it can take quite a while to be everywhere.</p>
<p>Items added from Pocket Informant with “Alerts” don’t seem to sync properly to Google, and therefore doesn’t get synched back into the iPhone calendar properly. So for now, until a workaround is found (there are quite a few different alert types in PI, maybe one of them works), you’re better off creating items that need alerts somewhere else.</p>
<p>Pocket Informant’s sync is not super reliable right now, should be improved soon.</p>
<p><strong>ToDo:</strong></p>
<p>You can use the same process with a ToodleDo account. I myself simply use Toodledo with the Firefox sidebar, and sync my Toodledo account to Pocket Informant and the Toodledo app for iPhone (Great value, by the way).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binaryfactory.ca/2009/03/how-to-sync-outlook-on-your-pc-ical-pocket-informant-on-the-iphone-and-still-get-alarms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

