<?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>Indirecthit &#187; Well.ca</title>
	<atom:link href="http://www.indirecthit.com/category/wellca/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.indirecthit.com</link>
	<description>A Discussion on PHP, AJAX and Other Web Tools with a bit of startup talk</description>
	<lastBuildDate>Tue, 02 Mar 2010 14:34:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Trademarks &amp; Google Adwords</title>
		<link>http://www.indirecthit.com/2008/04/17/trademarks-google-adwords/</link>
		<comments>http://www.indirecthit.com/2008/04/17/trademarks-google-adwords/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 20:12:20 +0000</pubDate>
		<dc:creator>clong</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Well.ca]]></category>
		<category><![CDATA[adwords]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[rant]]></category>

		<guid isPermaLink="false">http://www.indirecthit.com/?p=26</guid>
		<description><![CDATA[We just started a new Adwords campaign at Well.ca, we&#8217;re trying to build in some intelligence and simplify the management of the Adwords. I was looking over our campaign today and noticed a trademark error. See screenshot. Apparently, the word &#8220;Platinum&#8221; is trademarked.

I did a quick search on the Canadian Intellectual Property Office and found [...]]]></description>
			<content:encoded><![CDATA[<p>We just started a new Adwords campaign at <a href="http://www.well.ca" class="ubernym uttJustLink" onmouseover="domTT_activate(this, event, 'content', 'An online health store, the place I work.','caption', 'Well.ca' );">Well.ca</a>, we&#8217;re trying to build in some intelligence and simplify the management of the Adwords. I was looking over our campaign today and noticed a trademark error. See screenshot. Apparently, the word &#8220;Platinum&#8221; is trademarked.</p>
<p><a href="http://www.indirecthit.com/wp-content/uploads/2008/04/adwords.png"><img class="aligncenter size-full wp-image-27" style="vertical-align: middle; margin-left: 92px; margin-right: 92px;" title="adwords" src="http://www.indirecthit.com/wp-content/uploads/2008/04/adwords.png" alt="" width="400" height="136" /></a></p>
<p>I did a quick search on the <a href="http://strategis.ic.gc.ca/app/cipo/trademarks/search/tmSearch.do?language=eng">Canadian Intellectual Property Office</a> and found 6 trademarks JUST for the word Platinum. There might be more, the search tools at CIPO are not the greatest. The trademarks were such things as vodka, electric lamps, portable walls, and pet shampoo. I had no idea trademarks worked this way, I have to do some reading tonight.</p>
<p>It is interesting how Google has a very all or nothing approach to the trademarks. This isn&#8217;t the first one we&#8217;ve had problems with, but all the others are what I thought as valid trademarks (brand name, product name). Now you know why you&#8217;ll never see Platinum in a Google Adword.</p>]]></content:encoded>
			<wfw:commentRss>http://www.indirecthit.com/2008/04/17/trademarks-google-adwords/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Finding Rural Postal Codes in Canada</title>
		<link>http://www.indirecthit.com/2008/03/28/finding-rural-postal-codes-in-canada/</link>
		<comments>http://www.indirecthit.com/2008/03/28/finding-rural-postal-codes-in-canada/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 13:57:09 +0000</pubDate>
		<dc:creator>clong</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Well.ca]]></category>

		<guid isPermaLink="false">http://www.indirecthit.com/2008/03/28/finding-rural-postal-codes-in-canada/</guid>
		<description><![CDATA[Yesterday, Alex, who handles marketing at Well.ca, asked for a list of top 50 rural customers in Canada. &#8220;Easy!&#8221; was my reply, then I thought about it. How to do it? Maybe if I get a list from Canadapost with all the postal codes and their population density I can use that. Maybe I can [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, Alex, who handles marketing at <a href="http://www.well.ca" class="ubernym uttJustLink" onmouseover="domTT_activate(this, event, 'content', 'An online health store, the place I work.','caption', 'Well.ca' );">Well.ca</a>, asked for a list of top 50 rural customers in Canada. &#8220;Easy!&#8221; was my reply, then I thought about it. How to do it? Maybe if I get a list from Canadapost with all the postal codes and their population density I can use that. Maybe I can write up some crazy application to determine it based on the number of cities/towns that share the postal code.</p>
<p>And then, just for the hell of it, I checked Wikipedia&#8217;s article on <a href="http://en.wikipedia.org/wiki/Canadian_postal_code">Postal Codes</a>&#8230;then the problem just became easier. According to the Wikipedia article, the first number in the postal code represents if the postal region is rural or urban. If the number is 0 (N0G2J3), the postal region is a rural area. If the number is anything else, 1-9, the postal region is an urban area. With this I wrote up a quick regular expression (^[a-zA-Z]{1}[0]{1}[a-zA-Z 0-9]+) and used the power of MySQLs regular expressions (have to remember MySQL can search w/ regular expressions) to write up a query to determine the top 50 rural customers. Easy!</p>
<p>Random fact: Wikipedia has all possible postal region codes (first 3 digits of the postal code) and their corresponding city/region. I wonder who took the time&#8230;<a href="http://en.wikipedia.org/wiki/Category:Postal_codes_in_Canada">The article is here.</a></p>
<p>Random fact II: The only provinces to have more then one letter as the first letter in a postal code is Quebec and Ontario. All the others have a specific letter to determine the province/territory. <a href="http://en.wikipedia.org/wiki/List_of_postal_codes_in_Canada">The map is here.</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.indirecthit.com/2008/03/28/finding-rural-postal-codes-in-canada/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Rules for Startups</title>
		<link>http://www.indirecthit.com/2008/03/09/rules-for-startups/</link>
		<comments>http://www.indirecthit.com/2008/03/09/rules-for-startups/#comments</comments>
		<pubDate>Mon, 10 Mar 2008 01:53:00 +0000</pubDate>
		<dc:creator>clong</dc:creator>
				<category><![CDATA[Startups]]></category>
		<category><![CDATA[Well.ca]]></category>

		<guid isPermaLink="false">http://www.indirecthit.com/2008/03/09/rules-for-startups/</guid>
		<description><![CDATA[Recently a few posts have been popping up on the Web about &#8220;Rules for Startups&#8221;. What&#8217;s really neat about these posts are they are written by successful entrepreneurs, they explain their reasoning behind each rule. It&#8217;s quite an insight to see why some companies do the things they do.
Some of the rules written by one [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.indirecthit.com/2008/03/09/rules-for-startups/rules/" rel="attachment wp-att-14" title="Rules"><img src="http://www.indirecthit.com/wp-content/uploads/2008/03/13529817_6129d1f901_o.jpg" alt="Rules" align="left" /></a>Recently a few posts have been popping up on the Web about &#8220;Rules for Startups&#8221;. What&#8217;s really neat about these posts are they are written by successful entrepreneurs, they explain their reasoning behind each rule. It&#8217;s quite an insight to see why some companies do the things they do.</p>
<p>Some of the rules written by one person are in conflict with some written by another person, kind of leads me to believe that these rules are not what makes a successful startup. Still, I find the points and reasoning interesting, there is also some interesting conversation in the comments.</p>
<p><span id="more-13"></span></p>
<ul>
<li>The one that started it all, written by Jason McCabe Calacanis (CEO of Mahalo.com) &#8212; <a href="http://www.calacanis.com/2008/03/07/how-to-save-money-running-a-startup-17-really-good-tips/">How to save money running a startup (17 really good tips)</a></li>
<li>A reply by Pat Phelan (President of Cubic Telecom) &#8212; <a href="http://patphelan.net/jason-calacanis-tell-us-how-to-save-money/">Jason Calacanis tell us how to save money</a></li>
<li>37Signals made a post about <a href="http://www.37signals.com/svn/posts/902-fire-the-workaholics">Firing the Workaholics</a>, they also made a post earlier this month about <a href="http://www.37signals.com/svn/posts/893-workplace-experiments">Workplace Experiments</a> (go 4 day work weeks!)<a href="http://www.37signals.com/svn/posts/902-fire-the-workaholics"><br />
</a></li>
<li>Mark Cuban (owner of the Dallas Mavericks and has paid over 1.5 million in fines to the NBA) posted a <a href="http://www.blogmaverick.com/2008/03/09/my-rules-for-startups">few of his rules for startups</a> (he doesn&#8217;t like the espresso machine idea, darn!)</li>
</ul>
<p>At <a href="http://www.well.ca" class="ubernym uttJustLink" onmouseover="domTT_activate(this, event, 'content', 'An online health store, the place I work.','caption', 'Well.ca' );">Well.ca</a>, we&#8217;re trying some stuff to make our office the best it can be. Examples are:</p>
<ul>
<li>Open space &#8212; We have a huge open space as our office. At times this doesn&#8217;t work the greatest, I might be in the middle of a problem and be interrupted only to lose my train of thought. However everyone can keep in touch with the pulse of the company and knows what is happening as it happens, a huge benefit with a company so small.</li>
<li>French toast breakfasts &#8212; <a href="http://aliasaria.ca/blog/" class="ubernym uttJustLink" onmouseover="domTT_activate(this, event, 'content', 'The founder &amp; CEO of Well.ca','caption', 'Ali Asaria' );">Ali</a>, our CEO &amp; founder, is starting to become famous for his french toast. We might not talk work during these breakfasts, but we can discuss everything else and grow as a team with a common goal.</li>
<li>Everything on the table &#8212; <a href="http://aliasaria.ca/blog/" class="ubernym uttJustLink" onmouseover="domTT_activate(this, event, 'content', 'The founder &amp; CEO of Well.ca','caption', 'Ali Asaria' );">Ali</a> is awesome about keeping everyone up to date and informed on what&#8217;s happening with <a href="http://www.well.ca" class="ubernym uttJustLink" onmouseover="domTT_activate(this, event, 'content', 'An online health store, the place I work.','caption', 'Well.ca' );">Well.ca</a>. There isn&#8217;t once that I&#8217;ve felt in the dark, and I know for me that means that I feel even more a part of <a href="http://www.well.ca" class="ubernym uttJustLink" onmouseover="domTT_activate(this, event, 'content', 'An online health store, the place I work.','caption', 'Well.ca' );">Well.ca</a></li>
</ul>
<p>That&#8217;s just a few of my observations about <a href="http://www.well.ca" class="ubernym uttJustLink" onmouseover="domTT_activate(this, event, 'content', 'An online health store, the place I work.','caption', 'Well.ca' );">Well.ca</a>. Hopefully I&#8217;ll get <a href="http://aliasaria.ca/blog/" class="ubernym uttJustLink" onmouseover="domTT_activate(this, event, 'content', 'The founder &amp; CEO of Well.ca','caption', 'Ali Asaria' );">Ali</a> to comment on some of these and maybe come up with some of his own.</p>]]></content:encoded>
			<wfw:commentRss>http://www.indirecthit.com/2008/03/09/rules-for-startups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Office Party &amp; Recipes</title>
		<link>http://www.indirecthit.com/2007/11/22/office-party-recipes/</link>
		<comments>http://www.indirecthit.com/2007/11/22/office-party-recipes/#comments</comments>
		<pubDate>Thu, 22 Nov 2007 16:27:34 +0000</pubDate>
		<dc:creator>clong</dc:creator>
				<category><![CDATA[Food]]></category>
		<category><![CDATA[Well.ca]]></category>
		<category><![CDATA[brownies]]></category>
		<category><![CDATA[party]]></category>
		<category><![CDATA[pecans]]></category>

		<guid isPermaLink="false">http://www.indirecthit.com/2007/11/22/office-party-recipes/</guid>
		<description><![CDATA[Well.ca had our &#8220;New Office Party&#8221; last night. I must say, it was a great success. We had just the right amount of food (or too little and people went hungry and didn&#8217;t complain&#8230;), the music was amazing (we had a live local band, it was the perfect ambient music), and a lot of our [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.well.ca" class="ubernym uttJustLink" onmouseover="domTT_activate(this, event, 'content', 'An online health store, the place I work.','caption', 'Well.ca' );">Well.ca</a> had our &#8220;New Office Party&#8221; last night. I must say, it was a great success. We had just the right amount of food (or too little and people went hungry and didn&#8217;t complain&#8230;), the music was amazing (we had a live local band, it was the perfect ambient music), and a lot of our friends and people who have helped us were there as well.</p>
<p>I&#8217;m really looking forward to moving into our new office, it&#8217;s a really awesome space. Since I&#8217;m a foodie, I love the fact that we have a full kitchen (a gas stove, BBQ, oven, fridge, and about 4 dozen huge drawers and other various storage). Time to bake instead of work.</p>
<p>I had a lot of people comment on the brownies and pecans I made for the party last night. Because of the amount of compliments I received I decided to post the two recipes. Unfortunately, I can&#8217;t say that I created these on my own, I found them both on the internet on some great food sites. For the brownies, I do like to add some variations: different kinds of nuts, Kahlua, Bailey&#8217;s, and coffee.</p>
<p><span id="more-10"></span></p>
<p><strong>Dark Chocolate Brownies</strong> <em>(warning: may cause incredible sugar highs)</em></p>
<p><em>Source: http://www.scharffenberger.com/re0102.asp</em></p>
<ul>
<li>6 oz bittersweet chocolate</li>
<li>3/4 cup butter</li>
<li>1 1/2 cup sugar</li>
<li>3 eggs</li>
<li>1 tsp vanilla</li>
<li>1 cup flour</li>
<li>Optional: nuts, Bailey&#8217;s, Kahlua, coffee/espresso powder</li>
</ul>
<ol>
<li>Preheat oven to 325`F</li>
<li>Melt the chocolate and butter in a double boiler (a bowl placed over a simmering pot of water). Or microwave the chocolate and butter for 45 seconds then stir and, if needed, microwave it again in 15 second increments.</li>
<li>Stir in the sugar until mixed.</li>
<li>In a separate dish, lightly beat the eggs and vanilla together.</li>
<li>Add the vanilla and eggs to the chocolate mixture. You may need to use a folding action to get the eggs to mix in.</li>
<li>At this point, you can add the optional ingredients if you desire.</li>
<li>Mix in the flour.</li>
<li>Pour into a greased pan and cook in the oven for approximately 30-35 minutes or until a toothpick comes up with crumbs (not batter).</li>
</ol>
<p><strong>Candied Pecans</strong></p>
<p><em>Source: http://www.slashfood.com/2006/10/24/candied-pecans-easy-and-addictive/</em></p>
<ul>
<li>2 1/2 cup raw pecans</li>
<li>1 egg white, lightly beaten</li>
<li>1/4 cup sugar</li>
<li>2 tsp cinnamon</li>
<li>1/2 tsp allspice</li>
<li>1/2 tsp salt (I generally skip this, up to you)</li>
</ul>
<ol>
<li>Preheat oven to 300`F.</li>
<li>Stir the pecans and egg white together.</li>
<li>In a small bowl or dish, stir the sugar, cinnamon, salt(optional), and allspice.</li>
<li>Pour the sugar mixture over the nuts and stir until well coated.</li>
<li>Spread nuts over a baking sheet lined with parchment paper.</li>
<li>Bake for 30 minutes.</li>
<li>When the nuts are cool, break them apart and serve. They can be stored at room temperature in a airtight container.</li>
</ol>
<p>Good luck!</p>]]></content:encoded>
			<wfw:commentRss>http://www.indirecthit.com/2007/11/22/office-party-recipes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
