<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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" version="2.0">

<channel>
	<title>Tony Abou-Assaleh</title>
	
	<link>http://tony.abou-assaleh.net</link>
	<description>Official Website and Blog</description>
	<pubDate>Sun, 07 Sep 2008 04:20:09 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/tony-abou-assaleh" type="application/rss+xml" /><item>
		<title>Live Blog: Syntactic Movement in Statistical Translation</title>
		<link>http://tony.abou-assaleh.net/events/live-blog-syntactic-movement-in-statistical-translation</link>
		<comments>http://tony.abou-assaleh.net/events/live-blog-syntactic-movement-in-statistical-translation#comments</comments>
		<pubDate>Thu, 21 Aug 2008 14:34:30 +0000</pubDate>
		<dc:creator>taa</dc:creator>
		
		<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://tony.abou-assaleh.net/?p=43</guid>
		<description><![CDATA[This is a live blog of the Dalhousie CS seminar by Dr. Colin Cherry of Microsoft Research, Natural Language Processing Group entitles &#8220;Syntactic Movement in Statistical Translation&#8221;

11:33 - People are still arriving. Dr. Keselj is having a conversation with Dr. Cherry. Dr. Cherry said his experiments are in English and French, since he speaks a [...]]]></description>
			<content:encoded><![CDATA[<p>This is a live blog of the Dalhousie CS seminar by Dr. Colin Cherry of Microsoft Research, Natural Language Processing Group entitles &#8220;Syntactic Movement in Statistical Translation&#8221;<br />
<span id="more-43"></span><br />
11:33 - People are still arriving. Dr. Keselj is having a conversation with Dr. Cherry. Dr. Cherry said his experiments are in English and French, since he speaks a little bit of French.</p>
<p>11:35 - Dr. Keselj is introducing the speaker.</p>
<p>11:36 - Studied at Acadia, work mostly from his thesis at U. of Alberta. Trying to put linguistics back into machine translation. Adding syntactic constraints.</p>
<p>11:37 - Outline: tutorial on statistical MT, word order, syntactic cohesion. Phrasal SMT - a decoder from French to English and vice versa.</p>
<p>11:39 - Rule based translation is very common, e.g., Babble Fish in Altavista and Yahoo. Hard to fix problems without introducing new ones. A different approach is treat MT as a math problem: trans(e) = argmax_f [ P(f|e)]</p>
<p>11:41 - f and e are not well defined. Ridiculous: search over all French sentences. Instead: find all possible French sentence that can be created by breaking down and reassembling an English sentence.</p>
<p>11:42 - Need a score to evaluate the different possible sentences.</p>
<p>11:43 - Exampe: begins -&gt; debute. Existence of big collections in English and their translation in French. Available free online. Sentence alignment is easy. Word alignment within a sentence is harder, but we assume it works.</p>
<p>11:46 - tri-gram and 4-gram models for language modelling. No need for bilingual text to build these language models.</p>
<p>11:47 - Word order which to translate first affects quality. Reordering a sentence is same as travelling salesman. Factorial complexity. However, language has structure so we don&#8217;t need to examine all combinations.</p>
<p>11:49 - Represent a sentence as a dependency tree of which word describes which. Uses CFG. Subtrees are always continuous substrings (phrases). [basically POS parsing]</p>
<p>11:51 - assume that subtrees are units of thought and are language universal, i.e., preserved during translation across languages. This is called cohesion. Can be verified with word alignment in parallel text.</p>
<p>11:53 - project tree from one language to text in another language. If subtrees don&#8217;t intersect then we&#8217;re good.</p>
<p>11:54 - Fox (2002), used word alignment to validate cohesion, 90% of French-English holds. Both sides win: stats say 90% is not 100%, can&#8217;t do much; linguists say 90% is better than 80%, and it&#8217;s almost 100%.</p>
<p>11:56 - Google and Microsoft use phrasal MT, winning approach until last year. Similar to example-based MT. Idea: trust what you&#8217;ve seen people do before over any computed translation. Phrase or expression translation (hold your horses) vs. translation in context (the voting session begins tomorrow).</p>
<p>11:59 - Phrase tables from aligned text + statistics from aligned text (maximum likelihood of P(e|f) and P(f|e) )</p>
<p>12:00 - Translation process. Load all your options (different translation for each word or phrase). Translation is similar to single-player search.</p>
<p>12:02 - Use beam search, one of the favourite NLP tools.</p>
<p>12:03 - scoring states. A linear update that adds a weighted probability ( lambda log P(e|f) for each word)</p>
<p>12:05 - weights are determined by training to maximize match to some human translator. (BLEU metric). Precision with respect to a reference translation. (word count)</p>
<p>12:07 - Modifying the search to account for cohesiveness. Questions: is that translation cohesive? Not based on POS parsing or tree but on a notion of phrases.</p>
<p>12:10 - subtrees don&#8217;t match phrases because phrases cross some arcs in the tree.</p>
<p>12:12 - if intersection happens at a boundary point then we don&#8217;t care. What is a cohesion violation then? Should push the process to the decoder and send the decoder in a different direction. Detect if a subtranslation is not cohesive and do something about it.</p>
<p>12:15 - Shows an example of a &#8216;decoder-eye view&#8217;. At the end of the day, eliminating interruption in translating subtrees is equiv to eliminating violations.</p>
<p>12:18 - use soft and hard constraints. Hard: if you detect an interruption through it away. Since only 90% accurate, use soft constraints. Use interruption count as a new feature in the log linear score. Constraints change when you can use a phrase, not which phrase you can use.</p>
<p>12:20 - Lexical reordering: a data driven model by examining the bi-grams.</p>
<p>12:21 - Experiment: English to French translator, built by extending an open source system.</p>
<p>12:23 - in base line, 4/5 are cohesive already, with high BLEU score. The other 1/5 have lower BLEU score, maybe means a difficult translation.</p>
<p>12:25 - Overall, base &lt; lex &lt; coh &lt; coh+lex, where base &lt;&lt; lex in 1/5 with violations and insignificant elsewhere.</p>
<p>12:26 - results evaluated with human evaluators. They agree little except when coh helps. System produces more literal translations.</p>
<p>12:28 - conclusion: method to move blocks around as units but then translate them separately. Can be applied to named entity, collocation, etc. Non-cohesive translation means it&#8217;s a hard one for phrase-based systems.</p>
<p>12:29 - Six years in PhD. Open for questions.</p>
<p>12:30 - Mike McAllister: how do you account for adjective location differences across languages. Answer: doesn&#8217;t play with statistics and doesn&#8217;t work well with text-based approaches. Current system can be model as a finite state machine. Need a more powerful model such as CFG.</p>
<p>12:31 - Question: why the 10% exist? Answer: 5% come from &#8216;not&#8217; -&gt; &#8216;ne pas&#8217;, others include heavy paraphrasing in human translations, NLP parsers are imperfect. Question: how will it work with German where verbs move to the end? Answer: doesn&#8217;t work for German. BTW, never seen english parse trees, would be interesting to see the parse tree for &#8216;ne pas&#8217;.</p>
<p>12:37 - Question: what&#8217;s the effect of punctuation? Answer: unreliable. Can improve performance a little. Hard to train because human translators are creative. Can help by restricting moving words across commas.</p>
<p>12:40 - Question: how to handle unseen words? Answer: There are approaches based on modelling new words, currently just copy as is.</p>
<p>12:41 - Vlado Keselj: how to handle source language that are not cohesive? Answer: can&#8217;t do.</p>
<p>12:43 - Tony Abou-Assaleh: Google won competitions up to last year, who is winning now? Answer: </p>
<ul>
<li>Chinese to English: MS Asia</li>
<li>
Arabic to English: Google</li>
<li>
Unlimited Data: Google</li>
<li>
Microsoft approch: combine many systems on closed data.</li>
<li>
ISI: generally good.</li>
</ul>
<p>&#8230; a couple other questions, but blogging stops here.</p>
]]></content:encoded>
			<wfw:commentRss>http://tony.abou-assaleh.net/events/live-blog-syntactic-movement-in-statistical-translation/feed</wfw:commentRss>
		</item>
		<item>
		<title>The Simplicity of Posting on Posterous</title>
		<link>http://tony.abou-assaleh.net/reviews/the-simplicit-of-posting-on-posterous</link>
		<comments>http://tony.abou-assaleh.net/reviews/the-simplicit-of-posting-on-posterous#comments</comments>
		<pubDate>Sun, 29 Jun 2008 00:00:59 +0000</pubDate>
		<dc:creator>taa</dc:creator>
		
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://tony.abou-assaleh.net/?p=41</guid>
		<description><![CDATA[I am yet to see a publishing platform that is simpler than posterous. With a single email message containing normal text you create your personal blog and make your first post. No signup, no email commands, no hassles. It&#8217;s that unbelievably simple. I didn&#8217;t believe it when I heard, so I had to give it [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://tony.abou-assaleh.net/wp-content/uploads/2008/06/posterous-header.png"><img class="alignright size-full wp-image-42" title="Posterous" src="http://tony.abou-assaleh.net/wp-content/uploads/2008/06/posterous-header.png" alt="Posterous Image" width="75" height="35" /></a>I am yet to see a publishing platform that is simpler than posterous. With a single email message containing normal text you create your personal blog and make your first post. No signup, no email commands, no hassles. It&#8217;s that unbelievably simple. I didn&#8217;t believe it when I heard, so I had to give it a try. Check out <a title="TAA's Blog on Posterous.com" href="http://taa.posterous.com">my posterous blog</a>.<br />
<span id="more-41"></span></p>
<p>Once you have a blog on posterous, you can simply and easily change the subdomain name, title, and other site and author info. None of the info are required - fill out as much or as little as you like. It&#8217;d be interesting to see who takes over the service first: real users or spammers.</p>
<p><a title="Posterous Beats Tumblr In Simplicity" href="http://www.techcrunch.com/2008/06/28/posterous-beats-tumblr-in-simplicity/">TechCrunch</a> has more info about the company and how it compares with similar services.</p>
]]></content:encoded>
			<wfw:commentRss>http://tony.abou-assaleh.net/reviews/the-simplicit-of-posting-on-posterous/feed</wfw:commentRss>
		</item>
		<item>
		<title>Upgrading to Wordpress 2.5.1 and K2 RC6</title>
		<link>http://tony.abou-assaleh.net/web-development/upgrading-to-wordpress-251-and-k2-rc6</link>
		<comments>http://tony.abou-assaleh.net/web-development/upgrading-to-wordpress-251-and-k2-rc6#comments</comments>
		<pubDate>Sat, 28 Jun 2008 00:36:54 +0000</pubDate>
		<dc:creator>taa</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://tony.abou-assaleh.net/?p=40</guid>
		<description><![CDATA[Today I became a happier WordPress user because I managed to upgrade to WordPress 2.5.1 with a surprisingly easy process, as well as migrating to the latest K2 release. The short story: install the WordPress Automatic upgrade plugin, run it, correct failed actions, upgrade the K2, migrate footer from the previous K2, et voilà! I [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://tony.abou-assaleh.net/wp-content/uploads/2008/04/wordpress_logo.png"><img class="alignright size-full wp-image-29" title="WordPress Logo" src="http://tony.abou-assaleh.net/wp-content/uploads/2008/04/wordpress_logo.png" alt="" width="250" height="68" /></a>Today I became a happier WordPress user because I managed to upgrade to WordPress 2.5.1 with a surprisingly easy process, as well as migrating to the latest K2 release. The short story: install the WordPress Automatic upgrade plugin, run it, correct failed actions, upgrade the K2, migrate footer from the previous K2, et voilà! I am very impressed with the new admin interface of WordPress. It took a few minutes to understand where is what, but WOW! Neat, organized, and pleasant.<br />
<span id="more-40"></span><br />
When first tried to upgrade my WordPress installation, I wasn&#8217;t really sure how I would go about it. According to the <a title="Upgrading WordPress" href="http://codex.wordpress.org/Upgrading_WordPress">WordPress upgrade guide</a>, the process consists of five simple steps:</p>
<ol>
<li><strong>Backup Current Installation.</strong> Sounds pretty simple, but backing up from a hosted server, although not complicated, is not that simple either. You need to backup all your files and you need to backup all the database tables. God forbid you have more than just the WordPress installation using the same database. Trying to go through all the tables and deciding which belong to WP and which belong to other applications is unpleasant at best.</li>
<li><strong>Deactivate Plugins.</strong> No complaints here. Fairly simple.</li>
<li><strong>Download Latest WordPress.</strong> Granted, there is nothing simpler to do, save for scratching your head.</li>
<li><strong>Replace WordPress Files.</strong> I have a few custom plugins, custom themes, and some other modes. How do you replace only what needs to be replaced but not the other files? The naive way is to do it one file at a time. You can try doing it in a batch as in copy-and-pray. Actually that won&#8217;t work because you need to be careful not replace your wp-config.php file. Further, you need to copy the contents of the wp-content folder from your previous installation, but not the entire folder. This step is what kept me from upgrading earlier - too many things could go wrong. After replacing all the files, you need to visit the upgrade page so the database schema can be changed to the new one.</li>
<li><strong>Reactivate Plugins.</strong> You have to reactivate your plugins one at a time. There are no &#8220;plugin profiles&#8221; in WordPress, which would&#8217;ve allowed you to enable and disable plugins in groups.</li>
</ol>
<p>In a an <a title="My Essential Plug-Ins for WordPress Blogs" href="http://www.searchengineguide.com/david-wallace/my-essential-plugins-for-wordpress-blogs.php">article</a> mentioned in a recent Search Engine Guide newsletter, I read about this super useful almost working plugin called <a title="Wordpress Automatic Upgrade plugin - Author's Site" href="http://techie-buzz.com/wordpress-plugins/wordpress-automatic-upgrade-plugin.html">Wordpress Automatic upgrade</a>. It does what it says. I chose the semi-automatic method where I clicked &#8220;next&#8221; after every step to make sure all went smoothly. And it did, except for the last step. The plugin failed to re-enable the previously active plugins. A small incovenience compared to all the other things that went right: created backup, disabled plugins, downloaded latest WordPress, replaced all the right files and kept what should be kept.</p>
<p>Unfortunately, the copy of the <a title="Kaytwo K2 Theme for WordPress" href="http://code.google.com/p/kaytwo/">K2 theme</a> that I had was incompatible with WordPress 2.5. Particularly, the panel manager of K2 didn&#8217;t show up in the admin section. After a bit of poking around, I downloaded K2 candidate release 6 which worked like a charm after some minor tweaks. In the process, I learned a bit more about actions, created a new plugin to customize my K2 TAA theme, and made use of K2&#8217;s action hooks to add a custom footer. My next K2 upgrade - fingers crossed - will not require changing any of the K2 code.</p>
<p>The code of my K2 TAA Theme plugin is reproduce below. Feel free to use it as a basis for build your own customizations for K2 and other WordPress actions.</p>
<p><code><br />
/**<br />
* Plugin Name: K2 TAA Theme<br />
* Plugin URI: http://tony.abou-assaleh.net<br />
* Description: Support functions for the K2 TAA Theme<br />
* Author: Tony Abou-Assaleh<br />
* Author URI: http://tony.abou-assaleh.net<br />
* Version: 1.0<br />
*/<br />
function k2_taa_footer () {<br />
?&gt;<br />
&lt;p&gt;<br />
Copyright © 1997-2008 Tony Abou-Assaleh, Halifax, Nova Scotia, Canada.&lt;br /&gt;<br />
Verbatim copying and distribution of this entire article are permitted worldwide, without royalty, in any medium, provided this notice, and the copyright notice, are preserved.<br />
&lt;/p&gt;<br />
&lt;?php<br />
} // k2_taa_footer</code><code><br />
// Action calls for all functions<br />
add_action('template_footer','k2_taa_footer');</code><br />
?&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://tony.abou-assaleh.net/web-development/upgrading-to-wordpress-251-and-k2-rc6/feed</wfw:commentRss>
		</item>
		<item>
		<title>Thesis Made of Perks Coffee: Milestone in Coffee Drinking</title>
		<link>http://tony.abou-assaleh.net/events/thesis-made-of-perks-coffee-milestone-in-coffee-drinking</link>
		<comments>http://tony.abou-assaleh.net/events/thesis-made-of-perks-coffee-milestone-in-coffee-drinking#comments</comments>
		<pubDate>Fri, 27 Jun 2008 03:07:54 +0000</pubDate>
		<dc:creator>taa</dc:creator>
		
		<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://tony.abou-assaleh.net/events/thesis-made-of-perks-coffee-milestone-in-coffee-drinking</guid>
		<description><![CDATA[This week I reached a new milestone in my coffee-to-thesis conversion project. As you can see in the picture of my Perks Coffee Gold Card, I have completed stamped every cell on it. Mind you, the number of stamps doesn&#8217;t correspond exactly to the number of coffees I had: it was a mix of coffee, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://tony.abou-assaleh.net/wp-content/uploads/2008/06/perks-back-96.jpg" title="Perks Coffee Gold Card - Back"><img src="http://tony.abou-assaleh.net/wp-content/uploads/2008/06/perks-back-96.thumbnail.jpg" alt="Perks Coffee Gold Card - Back" align="right" border="0" /></a><a href="http://tony.abou-assaleh.net/wp-content/uploads/2008/06/perks-front-96.jpg" title="Perks Coffee Gold Card - Front"><img src="http://tony.abou-assaleh.net/wp-content/uploads/2008/06/perks-front-96.thumbnail.jpg" alt="Perks Coffee Gold Card - Front" align="right" border="0" /></a>This week I reached a new milestone in my coffee-to-thesis conversion project. As you can see in the picture of my <a href="http://tony.abou-assaleh.net/wp-content/uploads/2008/06/perks-front-96.jpg">Perks Coffee Gold Card</a>, I have completed stamped every cell on it. Mind you, the number of stamps doesn&#8217;t correspond exactly to the number of coffees I had: it was a mix of coffee, tea, double stamping on Fridays, multiple stamping from the pretty girl at the counter, and coffee for friends.<br />
<span id="more-38"></span><br />
The real question though is: &#8220;did the coffee turn into something useful?&#8221; and the answer is a big fat <strong>YES</strong>. The misleading free Internet that Perks provides worked really great for me. The way it works is that you are given 30 minutes of free Internet per 24 period, when it works. That&#8217;s right - it only works 2 or 3 days a week on average. As a result I was able to isolate myself from the distractions of the connected world and concentrate on turning Perks French Roast coffee into actual thesis text.</p>
<p>There are still a few lines of text missing from the thesis and a new collectible Perks Coffee Gold Card will be started soon. Stay tuned for a report on another full coffee card.</p>
]]></content:encoded>
			<wfw:commentRss>http://tony.abou-assaleh.net/events/thesis-made-of-perks-coffee-milestone-in-coffee-drinking/feed</wfw:commentRss>
		</item>
		<item>
		<title>Don’t Do For Money What You Wouldn’t Do For Free</title>
		<link>http://tony.abou-assaleh.net/misc/dont-do-for-money-what-you-wouldnt-do-for-free</link>
		<comments>http://tony.abou-assaleh.net/misc/dont-do-for-money-what-you-wouldnt-do-for-free#comments</comments>
		<pubDate>Wed, 25 Jun 2008 03:41:47 +0000</pubDate>
		<dc:creator>taa</dc:creator>
		
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://tony.abou-assaleh.net/misc/dont-do-for-money-what-you-wouldnt-do-for-free</guid>
		<description><![CDATA[During my first real off-campus consulting job, my client asked me a simple questions, &#8220;are you enjoying working on this project?&#8221; My answer was less simple:
I wouldn&#8217;t do for money what I wouldn&#8217;t do for free.
Ever before and ever since, this principle has been my guiding principle in all that I do for money. I [...]]]></description>
			<content:encoded><![CDATA[<p>During my first real off-campus consulting job, my client asked me a simple questions, &#8220;are you enjoying working on this project?&#8221; My answer was less simple:</p>
<blockquote><p>I wouldn&#8217;t do for money what I wouldn&#8217;t do for free.</p></blockquote>
<p>Ever before and ever since, this principle has been my guiding principle in all that I do for money. I wouldn&#8217;t take on a project if it wasn&#8217;t interesting enough that I wouldn&#8217;t mind doing it for free. I follow this principle in my consulting work, in my employment, and in my volunteering work. But only in the latest that I actually do it for free.</p>
<p>This principle is about loving what you do and enjoying it beyond the material reward. It is about contributing to the project and wanting it to succeed because it is interesting and valuable, not because there is a pay cheque waiting for you. And it is about selecting projects that provide you with additional benefits and rejecting projects of limited personal and professional value.<br />
<span id="more-36"></span></p>
<p>This principle does not imply in any way that one should work on the project for free. There are enough interesting projects in the world that are also worth money. Money is an important element in our everyday life and at least some of the projects one works on must have a material payout. In that sense, this principle encourages you to seek financial return for your contributions while freeing you from limiting your contributions to the exact amount of the payment. For example, you accept a project that involves developing a software component for a client. Say you have a contract with the client to pay you $2,000 for the project based on your estimate of 20 hours of work. After working on the program for 15 hours, you realize that you will not be able to complete the project to your liking during the remaining 20 hours. At this point, you have a choice to make: contribute extra hours and complete the project even though you will not be paid for the additional hours, or do less (though still within the contract specification) so you only use up the remaining 5 hours. If you followed the principle &#8220;Don&#8217;t Do For Money What You Wouldn&#8217;t Do For Free&#8221;, then this project would bring more value to you than the monetary amount. Consequently, you would choose to put extra hours, perfect the deliverable for the client, gain the added satisfaction, and build a reputation for exceeding the requirements.</p>
<p>As the example above illustrates, selecting tasks that are interesting, challenging, and provide a learning experience enables you to succeed in your work. You are more likely to succeed in this case because you have more freedom within the time and budgetary constraints imposed by the client. You are more likely to succeed because your gain from project - new experience, new skill, expanded portfolio, foot-in-the-door with client, new connections, etc &#8230; - makes this project a win-win situation whether you get paid for all of your effort or not.</p>
]]></content:encoded>
			<wfw:commentRss>http://tony.abou-assaleh.net/misc/dont-do-for-money-what-you-wouldnt-do-for-free/feed</wfw:commentRss>
		</item>
		<item>
		<title>Paradoxes without Contradiction</title>
		<link>http://tony.abou-assaleh.net/misc/paradoxes-without-contradiction</link>
		<comments>http://tony.abou-assaleh.net/misc/paradoxes-without-contradiction#comments</comments>
		<pubDate>Thu, 29 May 2008 07:27:54 +0000</pubDate>
		<dc:creator>taa</dc:creator>
		
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://tony.abou-assaleh.net/misc/paradoxes-without-contradiction</guid>
		<description><![CDATA[Darkness of the day
 and brightness of the night
Fairy tales of truth
 of the horseless knight
Sleeping before noon
 waking by midnight
Dreaming of the life
 sleeping in the light
Silence lost in screams
 of this peaceful fight

&#8211; Tony Abou-Assaleh, May 22, 2008, Halifax, NS.
]]></description>
			<content:encoded><![CDATA[<blockquote>Darkness of the day</p>
<blockquote><p> and brightness of the night</p></blockquote>
<p>Fairy tales of truth</p>
<blockquote><p> of the horseless knight</p></blockquote>
<p>Sleeping before noon</p>
<blockquote><p> waking by midnight</p></blockquote>
<p>Dreaming of the life</p>
<blockquote><p> sleeping in the light</p></blockquote>
<p>Silence lost in screams</p>
<blockquote><p> of this peaceful fight</p></blockquote>
</blockquote>
<p><em>&#8211; Tony Abou-Assaleh, May 22, 2008, Halifax, NS.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://tony.abou-assaleh.net/misc/paradoxes-without-contradiction/feed</wfw:commentRss>
		</item>
		<item>
		<title>GenieKnows Local Update: Better Map, Showtimes, and User Contributions</title>
		<link>http://tony.abou-assaleh.net/genieknows/genieknows-local-update-better-map-showtimes-and-user-contributions</link>
		<comments>http://tony.abou-assaleh.net/genieknows/genieknows-local-update-better-map-showtimes-and-user-contributions#comments</comments>
		<pubDate>Fri, 23 May 2008 07:06:12 +0000</pubDate>
		<dc:creator>taa</dc:creator>
		
		<category><![CDATA[GenieKnows]]></category>

		<guid isPermaLink="false">http://tony.abou-assaleh.net/uncategorized/genieknows-local-update-better-map-showtimes-and-user-contributions</guid>
		<description><![CDATA[This week, GenieKnows updated its Local platform with a few new features:

Map caching has been optimized, providing faster map load time
The map projections has been switched Mercator, the industry standard for online interactive maps. The streets now look more natural at zoomed-in levels.
 All Empire Theatre listings in Canada now include showtimes. Try a search [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://local.genieknows.com/" title="GenieKnows Local"><img src="http://tony.abou-assaleh.net/wp-content/uploads/2008/04/genieknowslocal-logo.gif" alt="GenieKnows Local Logo" align="right" /></a>This week, GenieKnows updated its Local platform with a few new features:</p>
<ul>
<li>Map caching has been optimized, providing faster map load time</li>
<li>The map projections has been switched Mercator, the industry standard for online interactive maps. The streets now look more natural at zoomed-in levels.</li>
<li> All Empire Theatre listings in Canada now include showtimes. Try a search for <a href="http://local.genieknows.com/listings/q-showtime+in+Toronto/" target="_blank">showtimes in Toronto</a>, or <a href="http://local.genieknows.com/listings/q-movies+in+Halifax/" target="_blank">movies in Halifax</a> to get a list of the Empire Theatres in the city, along with other relevant results.</li>
<li>All user contributed business listings and updates, as well as suggested related web sites have been included in this release.</li>
<li>Web 2.0 fever has you? Feel compelled to share a business or a results page with family and friends? It is easy to do so using the &#8217;share&#8217; menu. You can post pages on Facebook, MySpace, and StumbleUpon just to name a few.</li>
</ul>
<p>In a recent media announcement of this release, I was quoted saying:</p>
<blockquote><p> If there is a feature that you&#8217;d love to see on our Local but we don&#8217;t have it yet, let us know through the feedback link on the website. We are committed to improving our platform to better service the end users.</p></blockquote>
<p>And it is true! I take user feedback very seriously and read every single one of them. So make sure you let me know what you&#8217;d like to see in the next release. Who knows, the Genie might grant your wishes.</p>
]]></content:encoded>
			<wfw:commentRss>http://tony.abou-assaleh.net/genieknows/genieknows-local-update-better-map-showtimes-and-user-contributions/feed</wfw:commentRss>
		</item>
		<item>
		<title>GenieKnows Sponsors the Cannonball One Lap of America Race</title>
		<link>http://tony.abou-assaleh.net/driving-racing/genieknows-sponsors-the-cannonball-one-lap-of-america-race</link>
		<comments>http://tony.abou-assaleh.net/driving-racing/genieknows-sponsors-the-cannonball-one-lap-of-america-race#comments</comments>
		<pubDate>Fri, 18 Apr 2008 23:57:37 +0000</pubDate>
		<dc:creator>taa</dc:creator>
		
		<category><![CDATA[Driving &amp; Racing]]></category>

		<category><![CDATA[GenieKnows]]></category>

		<guid isPermaLink="false">http://tony.abou-assaleh.net/driving-racing/genieknows-sponsors-the-cannonball-one-lap-of-america-race</guid>
		<description><![CDATA[It took a while to get everything sorted out and in order, but now it is official. GenieKnows is sponsoring Stephen and me at this year&#8217;s Cannonball Run One Lap of America. It gets even better, GenieKnows is now an official sponsor the event. The press release came out earlier today from Mark Harper, VP [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.genieknows.com" title="GenieKnows Home Page"><img src="http://tony.abou-assaleh.net/wp-content/uploads/2008/04/genieknows-logo.gif" alt="GenieKnows Logo" align="right" height="60" width="300" /></a>It took a while to get everything sorted out and in order, but now it is official. GenieKnows is sponsoring Stephen and me at this year&#8217;s <a href="http://onelapofamerica.com" title="One Lap of America - The Official Webpage">Cannonball Run One Lap of America</a>. It gets even better, GenieKnows is now an official sponsor the event. The press release came out earlier today from Mark Harper, VP of Strategic Relations.  The press release is reproduced below.<br />
<span id="more-25"></span></p>
<blockquote><p> When Stephen Noton (Director of Search Engine Optimization with GenieKnows.com) registered himself and his <a href="http://www.451s.com/profile/forfiveone">2008 smart car</a> into the ‘One Lap of America’ race, he didn’t plan on telling anyone. “I have always be involved in cars and racing and the Cannonball was something that I wanted to do for many years” said Noton from the company offices in Halifax, Nova Scotia.</p>
<p>It wasn&#8217;t until he requested time off work that colleagues became aware of the event and Stephen’s involvement. News spread quickly around the office that Stephen was looking for a co-driver for the race. “There was an immediate buzz when the guys at work found out I was looking for a co-driver,” and Tony Abou-Assaleh (Director of Research at GenieKnows.com) quickly volunteered.</p>
<p>With two of their key employees involved in the event, it was hard for company executives to ignore the enthusiasm. “Once we understood the history, culture and nature of the ‘Cannonball One Lap of America’ race, we immediately saw the potential of promoting our new Local Search Engine,” said Barbara Miller Manning, President and CEO of GenieKnows.com. “Having Stephen involved in this event, and entering his smart car, really tied in well with our corporate mantra of &#8220;the little engine that could,&#8221; said Manning.</p>
<p>After some talks with event organizer, Brock Jr., the company not only decided to sponsor Stephen’s personal entry, but also to support the entire event as the Digital Media Sponsor.</p>
<p>“GenieKnows.com wanted to bring the local and community aspect to the One Lap of America event and decided to help start the <a href="http://www.onelapper.com">OneLapper.com</a> community website,” said Noton. This is a site where ‘One Lappers’ can get hosted blogs, upload their One Lap videos and photos and interact with the worldwide web community via this &#8220;Web 2.0&#8243; platform.</p>
<p>GenieKnows.com is a technology provider servicing millions of search engine users monthly via its focused web-search portals like GenieKnows <a href="http://local.genieknows.com" title="GenieKnows Local">Local</a>, <a href="http://games.genieknows.com" title="GenieKnows Games">Games</a> &amp; <a href="http://health.genieknows.com" title="GenieKnows Health">Health</a>. “This is a perfect way to showcase the GenieKnows Local search product to the One Lappers as a way to search, map and find services during this year’s event.”</p>
<p>The GenieKnows Local search team will be setting up special entry web pages for each of the venues during the 8-day event, which will give participants the quickest way to find that repair shop, gas station, or even the track if they get lost!</p>
<p>Stephen Noton’s 451 smart fortwo, with an engine size of 999cc, is the smallest entry in this year’s event and just like GenieKnows.com, it is the little engine that could. Follow the race online at <a href="http://www.onelapper.com">http://www.onelapper.com</a> and search like a local at GenieKnows Local - <a href="http://local.genieknows.com">http://local.genieknows.com</a></p>
<p>Mark Harper,<br />
VP Strategic Relations</p>
<p>For comments or feedback please email <a href="mailto:local.feedback@genieknows.com" title="Send email to local.feedback@genieknows.com">local.feedback@genieknows.com</a>.</p></blockquote>
<p><strong>Related Sites:</strong></p>
<ul>
<li>One Lap of America Official Website: <a href="http://onelapofamerica.com">http://onelapofamerica.com</a></li>
<li>Project Car forfiveone Page: <a href="http://www.451s.com/profile/forfiveone">http://www.451s.com/profile/forfiveone</a></li>
<li>One Lapper - One Lap of America Community Site: <a href="http://onelapper.com">http://onelapper.com</a></li>
<li>GenieKnows Local Search: <a href="http://local.genieknows.com">http://local.genieknows.com</a></li>
<li>GenieKnows Games Portal: <a href="http://games.genieknows.com">http://games.genieknows.com</a></li>
<li>GenieKnows Health Search:  <a href="http://health.genieknows.com">http://health.genieknows.com</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://tony.abou-assaleh.net/driving-racing/genieknows-sponsors-the-cannonball-one-lap-of-america-race/feed</wfw:commentRss>
		</item>
		<item>
		<title>Revolution 2008: Spinning for Life</title>
		<link>http://tony.abou-assaleh.net/events/revolution-2008-spinning-for-life</link>
		<comments>http://tony.abou-assaleh.net/events/revolution-2008-spinning-for-life#comments</comments>
		<pubDate>Thu, 17 Apr 2008 01:19:20 +0000</pubDate>
		<dc:creator>taa</dc:creator>
		
		<category><![CDATA[Events]]></category>

		<guid isPermaLink="false">http://tony.abou-assaleh.net/events/revolution-2008-spinning-for-life</guid>
		<description><![CDATA[On April 18, 2008, I will be joining many other enthusiasts from the Halifax/Dartmouth area to do a 30 minute spin on a stationary bike at the Historic Properties to raise some money for the Dartmouth General Hospital who is going to buy a CT 64 Scanner.
I invite you to join the event in person [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.revolutionhalifax.com/" title="Revolution Halifax Home Page"><img src="http://tony.abou-assaleh.net/wp-content/uploads/2008/04/revolution2008.jpg" alt="Revolution 2008 Logo" align="right" height="141" width="300" /></a>On April 18, 2008, I will be joining many other enthusiasts from the Halifax/Dartmouth area to do a 30 minute spin on a stationary bike at the Historic Properties to raise some money for the Dartmouth General Hospital who is going to buy a <a href="http://tony.abou-assaleh.net/events/revolution-2008-spinning-for-life/ct-64-scanner/" title="Image of a CT 64 Scanner">CT 64 Scanner</a>.</p>
<p>I invite you to join the event in person and show your support for the cause by sponsoring me. I suggest a minimum donation of $5, but if you donate $20 or more then you will get a tax receipt.<span id="more-18"></span></p>
<p><strong>Event Details:</strong></p>
<ul>
<li>Title: Revolution 2008: Spinning for Life!</li>
<li>Location: <a href="http://www.historicproperties.ca" title="Historic Properties Home Page">Historic Properties</a>, <a href="http://local.genieknows.com/business/canada/nova-scotia/halifax/b-22385057/" title="Historic Properties @ GenieKnows Local">1869 Upper Water Street, Halifax, NS</a></li>
<li>Date: April 18, 2008</li>
<li>Time: 10:00 AM - 6:00 PM</li>
<li>GenieWheelies Spinning Time: 5:00 PM - 5:30 PM</li>
</ul>
<p>My personal goal is to raise at least $100 and I ask for your help. To donate online, please visit:</p>
<p><a href="http://my.e2rm.com/personalPage.aspx?SID=1764952" title="Contribute to Revolution 2008">http://my.e2rm.com/personalPage.aspx?SID=1764952</a></p>
<p>or send me a message if you prefer to make a cash or cheque donation.</p>
<p>Thank you for your support!</p>
<p><strong>Update 2008-04-18:</strong> Spinning with the Genie Wheelies and other participants was a lot of fun. They must&#8217;ve had at least 100 stationary bikes there. The coaches were very energetic and up beat, and the music was lively and pumping. Collectively, our team of 7 raised $585 from 22 sponsors, exceeding our goal of $500. My personal thanks go <a href="http://flame.cs.dal.ca/~hathai/">Hathai Tanta-ngai</a> and <a href="http://katepatterson.ca/">Kate Patterson</a> for sponsoring me.</p>
]]></content:encoded>
			<wfw:commentRss>http://tony.abou-assaleh.net/events/revolution-2008-spinning-for-life/feed</wfw:commentRss>
		</item>
		<item>
		<title>My First “smart ride”</title>
		<link>http://tony.abou-assaleh.net/driving-racing/my-first-smart-ride</link>
		<comments>http://tony.abou-assaleh.net/driving-racing/my-first-smart-ride#comments</comments>
		<pubDate>Sun, 13 Apr 2008 07:06:03 +0000</pubDate>
		<dc:creator>taa</dc:creator>
		
		<category><![CDATA[Driving &amp; Racing]]></category>

		<guid isPermaLink="false">http://tony.abou-assaleh.net/uncategorized/my-first-smart-ride</guid>
		<description><![CDATA[Earlier today I had the pleasure to ride in a smart. It was my first smart ride ever. So what?, you may ask. What is so special about a smart ride? This ride was very special indeed. Not only was it a smart, but it was a smart forfiveone ride!
This car is awesome. It is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.451s.com/profile/forfiveone" title="Project Car forfiveone Blog"><img src="http://api.ning.com/files/9S0FgpFpFWYVUciWVVfAqLoV9CwTpNuMrl08oDEBCV0_/forfiveone.jpg?width=300" align="right" /></a>Earlier today I had the pleasure to ride in a smart. It was my first smart ride ever. So what?, you may ask. What is so special about a smart ride? This ride was very special indeed. Not only was it a smart, but it was a <a href="http://www.451s.com/profile/forfiveone">smart forfiveone ride</a>!</p>
<p>This car is awesome. It is so awesome that I thought it was manufactured like that. And not until the <a href="http://www.451s.com/profile/smartster">owner/dirver/creator</a> started pointing out all the different mods that I began to realize how special that ride was.<br />
<span id="more-17"></span>So much leg room and head room, way more than most economy-sized cars that I drove or rode in over the years. The <a href="http://www.451s.com/profiles/blog/show?id=1912846%3ABlogPost%3A467">custom GPS</a> looks as if it was factory installed. The mini LCD displays make it look that much more geeky and sporty at the same time.</p>
<p>I loved the <a href="http://www.451s.com/profiles/blog/show?id=1912846%3ABlogPost%3A10448">sport shocks</a> going on Halifax streets after a rough winter (well, it still is going, may even get worse). And though I didn&#8217;t get to used the add-on arm rest - it was reserved by the driver - I totally appreciated the added comfort the driver was getting.</p>
<p>Only one pickiness I can think of: what&#8217;s up with the doors requiring a double slam to close? Makes you want to kick the door every time it doesn&#8217;t close.</p>
<p><em>The original incarnation of this articles appeared at <a href="http://www.451s.com/profiles/blog/show?id=1912846%3ABlogPost%3A14254" title="My first ">451s.com</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://tony.abou-assaleh.net/driving-racing/my-first-smart-ride/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
