<?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>tech stuff &#187; network</title>
	<atom:link href="http://codytaylor.org/tag/network/feed" rel="self" type="application/rss+xml" />
	<link>http://codytaylor.org</link>
	<description>From Cody Taylor.</description>
	<lastBuildDate>Sun, 30 Oct 2011 04:15:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Reset Mysql Root Password On Linux</title>
		<link>http://codytaylor.org/2009/10/reset-mysql-root-password-on-linux.html</link>
		<comments>http://codytaylor.org/2009/10/reset-mysql-root-password-on-linux.html#comments</comments>
		<pubDate>Thu, 08 Oct 2009 01:19:03 +0000</pubDate>
		<dc:creator>Cody Taylor</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[reference]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[reset mysql root password]]></category>
		<category><![CDATA[reset password]]></category>
		<category><![CDATA[reset root password]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://codytaylor.org/?p=14294</guid>
		<description><![CDATA[If you have root access to a linux server and you don't have the root mysql password, but need it..]]></description>
			<content:encoded><![CDATA[<p>If you have root access to a linux server and you don&#8217;t have the root mysql password, but need it, then you can easily reset the root mysql password in just a few commands. These commands probably differ depending on what linux distro you use. I was using Ubuntu 9.04 (Jaunty Jackalope) when I wrote this.</p>
<p>Firstly you will want to turn the mysql service off.<br />
<pre><code>
codytaylor@server:~$ sudo /etc/init.d/mysql stop
 * Stopping MySQL database server mysqld&nbsp;&nbsp; 
</code></pre><br />
Now we restart the mysql server with the &#8217;skip-grant-tables&#8217; option which basically allows anyone to do whatever they like. It&#8217;s usually preferable to include the &#8217;skip-networking&#8217; option so that only localhost (you) have access to the naked database.<br />
<pre><code>
 codytaylor@server:~$ sudo mysqld_safe --skip-grant-tables --skip-networking &amp;
</code></pre><br />
Now all that is left is actually changing the root password. Log into the mysql monitor and change the root password.<br />
<pre><code>
codytaylor@server:~$ mysql -u root mysql
mysql&gt; UPDATE user SET Password=PASSWORD(&#039;password&#039;) WHERE User=&#039;root&#039;;
mysql&gt; FLUSH PRIVILEGES;
</code></pre><br />
Those commands will reset the root mysql password to &#8216;password&#8217;. Now you&#8217;ll probably want to restart the mysql service and have it run normally.<br />
<pre><code>
codytaylor@server:~$ sudo /etc/init.d/mysql restart
</code></pre></p>
<p>If you are using windows and you want to reset the mysql root password then check the <a href='http://dev.mysql.com/doc/refman/5.0/en/resetting-permissions.html' title='mysql documentation'>mysql documentation</a>.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcodytaylor.org%2F2009%2F10%2Freset-mysql-root-password-on-linux.html&amp;linkname=Reset%20Mysql%20Root%20Password%20On%20Linux"><img src="http://codytaylor.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://codytaylor.org/2009/10/reset-mysql-root-password-on-linux.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Stream Video To The Iphone Using Tversity</title>
		<link>http://codytaylor.org/2009/05/stream-video-to-the-iphone-using-tversity.html</link>
		<comments>http://codytaylor.org/2009/05/stream-video-to-the-iphone-using-tversity.html#comments</comments>
		<pubDate>Sun, 24 May 2009 18:43:20 +0000</pubDate>
		<dc:creator>Cody Taylor</dc:creator>
				<category><![CDATA[iphone]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[Phone]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[tv]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[xbox]]></category>
		<category><![CDATA[xbox 360]]></category>

		<guid isPermaLink="false">http://codytaylor.org/?p=14022</guid>
		<description><![CDATA[Stream Video to Iphone with Tversity

After using Tversity for quit..]]></description>
			<content:encoded><![CDATA[<p>Stream Video to Iphone with Tversity</p>
<p>After using Tversity for quite some time to stream my media to my Xbox 360 over my local network, I decided I wanted the same functionality on my iphone.<br />
This is how I did it:</p>
<p>Logged on to my wifi with my iphone and pointed safari to: 192.168.2.10:41952 which is the ip address of my tversity windows server.<br />
41952 is the port that the tversity mediaserver listens on.</p>
<p>I was then shown a nice and easy to navigate web interface to browse through all my folders.</p>
<p>After locating a basic xvid tv show I selected &#8220;Play in Media Player&#8221;.</p>
<p>The iphone loaded the media player and seemed like it was going to load the movie but then this error popped up.<br />
&#8220;This movie format is not supported&#8221;.</p>
<p>I searched and searched for a solution to this but found none so I transcoded a video file using one of the many ipod touch video converter programs and added it to my media in tversity.</p>
<p>When I browsed to this file in Tversity and clicked play it worked.<br />
It&#8217;s kinda a pain that Tversity can&#8217;t handle converting these files on the fly but it&#8217;s still useful to watch videos on my mobile</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcodytaylor.org%2F2009%2F05%2Fstream-video-to-the-iphone-using-tversity.html&amp;linkname=Stream%20Video%20To%20The%20Iphone%20Using%20Tversity"><img src="http://codytaylor.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://codytaylor.org/2009/05/stream-video-to-the-iphone-using-tversity.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lawyer challenges Mulroney&#039;s 1996 testimony during Airbus lawsuit &#8211; CBC.ca</title>
		<link>http://codytaylor.org/2009/05/lawyer-challenges-mulroneys-1996-testimony-during-airbus-lawsuit-cbcca.html</link>
		<comments>http://codytaylor.org/2009/05/lawyer-challenges-mulroneys-1996-testimony-during-airbus-lawsuit-cbcca.html#comments</comments>
		<pubDate>Thu, 14 May 2009 21:00:24 +0000</pubDate>
		<dc:creator>Cody Taylor</dc:creator>
				<category><![CDATA[technical news]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[tv]]></category>

		<guid isPermaLink="false">http://codytaylor.org/?p=13957</guid>
		<description><![CDATA[

CBC.ca


Lawyer challenges Mulroney&#39;s 1996 testimony during Airbus lawsuitCBC.caBrian Mulroney testifies at the Oliphant commission looking into business dealings between Karlheinz Schreiber and former prime minister.Mulroney in hot seat over selective answers The Canadian PressMulroney grilled for not disclosing Schreiber cash Canada.comNational Post&#160;- CTV British Columbia&#160;- Toronto Star&#160;- CBC.caall 683 news articles&#160;&#160;Langue : Français



]]></description>
			<content:encoded><![CDATA[<table border="0" width="valign=top" cellpadding="2" cellspacing="7">
<tr>
<td width="80" align="center" valign="top"><a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0i-0&amp;fd=R&amp;url=http://www.cbc.ca/canada/story/2009/05/12/mulroney-oliphant-inquiry798.html&amp;cid=1349302364&amp;ei=bYYMSujZHaa2NbmHjYMC&amp;usg=AFQjCNFrm_ZAlCxgX-FO4FXonHGv2O-XAQ"><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/fb30d_mulroney-cp-6693941.jpg" width="80" height="74" alt="" border="1" /><br />CBC.ca</a></td>
<td valign="top">
<div><img alt="" height="1" width="1"></div>
<div><a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0-0&amp;fd=R&amp;url=http://www.cbc.ca/canada/story/2009/05/14/mulroney-inquiry.html&amp;cid=1349302364&amp;ei=bYYMSujZHaa2NbmHjYMC&amp;usg=AFQjCNF-4kMsjYVcjZwigDh8jGE3JlKgew"><b>Lawyer challenges Mulroney&#39;s 1996 testimony during Airbus lawsuit</b></a><br /><b>CBC.ca</b><br />Brian Mulroney testifies at the Oliphant commission looking into business dealings between Karlheinz Schreiber and former prime minister.<br /><a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0-1&amp;fd=R&amp;url=http://www.google.com/hostednews/canadianpress/article/ALeqM5hMDyKGnMnmusSceQ_m08Q3V45INw&amp;cid=1349302364&amp;ei=bYYMSujZHaa2NbmHjYMC&amp;usg=AFQjCNEIFH-1yGoKVzeppfkOUbXBGy6j_A">Mulroney in hot seat over selective answers</a> The Canadian Press<br /><a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0-2&amp;fd=R&amp;url=http://www.canada.com/news/Mulroney%2Bgrilled%2Bdisclosing%2BSchreiber%2Bcash/1596224/story.html&amp;cid=1349302364&amp;ei=bYYMSujZHaa2NbmHjYMC&amp;usg=AFQjCNHZ2K-J3IFi9aPOsLusSwApargi4w">Mulroney grilled for not disclosing Schreiber cash</a> Canada.com<br /><a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0-3&amp;fd=R&amp;url=http://network.nationalpost.com/np/blogs/posted/archive/2009/05/14/mulroney-testimony-continues-for-third-day-at-oliphant-commission.aspx&amp;cid=1349302364&amp;ei=bYYMSujZHaa2NbmHjYMC&amp;usg=AFQjCNEAIf1nL6QrfXMCvFol3Q_VtRBP3Q">National Post</a>&nbsp;- <a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0-4&amp;fd=R&amp;url=http://www.ctv.ca/servlet/ArticleNews/story/CTVNews/20090514/Mulroney_questions_090514/20090514%3Fhub%3DCanada&amp;cid=1349302364&amp;ei=bYYMSujZHaa2NbmHjYMC&amp;usg=AFQjCNFlXKAgtD4O_zU2Q8Ckfq7lnYVHPw">CTV British Columbia</a>&nbsp;- <a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0-5&amp;fd=R&amp;url=http://www.thestar.com/News/Canada/article/634096&amp;cid=1349302364&amp;ei=bYYMSujZHaa2NbmHjYMC&amp;usg=AFQjCNG-C9L8gq-aHBWH-mRLH3KFvcj69g">Toronto Star</a>&nbsp;- <a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0-6&amp;fd=R&amp;url=http://www.cbc.ca/news/canada/politicalbytes/2009/05/itching_to_get_started.html&amp;cid=1349302364&amp;ei=bYYMSujZHaa2NbmHjYMC&amp;usg=AFQjCNEEQ_As87MSS4y_KUsTYLmRwyFA1w">CBC.ca</a><br /><a href="http://news.google.ca/news?pz=1&amp;ned=ca&amp;hl=en&amp;ncl=1349302364"><b>all 683 news articles</b></a>&nbsp;&nbsp;<a href="http://news.google.ca/news?pz=1&amp;ned=fr_ca&amp;hl=fr&amp;ncl=1302782497&amp;ct=relc_en_ca&amp;rc">Langue : Français</a></div>
</td>
</tr>
</table>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcodytaylor.org%2F2009%2F05%2Flawyer-challenges-mulroneys-1996-testimony-during-airbus-lawsuit-cbcca.html&amp;linkname=Lawyer%20challenges%20Mulroney%26%2339%3Bs%201996%20testimony%20during%20Airbus%20lawsuit%20%26%238211%3B%20CBC.ca"><img src="http://codytaylor.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://codytaylor.org/2009/05/lawyer-challenges-mulroneys-1996-testimony-during-airbus-lawsuit-cbcca.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Real sues MPAA, DVD CCA for antitrust abuse</title>
		<link>http://codytaylor.org/2009/05/real-sues-mpaa-dvd-cca-for-antitrust-abuse.html</link>
		<comments>http://codytaylor.org/2009/05/real-sues-mpaa-dvd-cca-for-antitrust-abuse.html#comments</comments>
		<pubDate>Thu, 14 May 2009 21:00:22 +0000</pubDate>
		<dc:creator>Cody Taylor</dc:creator>
				<category><![CDATA[technical news]]></category>
		<category><![CDATA[network]]></category>

		<guid isPermaLink="false">http://codytaylor.org/?p=13954</guid>
		<description><![CDATA[RealNetworks today fought back against Motion Picture Association of America (MPAA) claims that it was aiding piracy by filing counterclaims against both six studios in the MPAA and the DVD Copy Control Association. Sent through a Northern District of California court, the complaints accuse both groups of violating antitrust law by colluding&#8230;



]]></description>
			<content:encoded><![CDATA[<p>RealNetworks today fought back against Motion Picture Association of America (MPAA) claims that it was aiding piracy by filing counterclaims against both six studios in the MPAA and the DVD Copy Control Association. Sent through a Northern District of California court, the complaints accuse both groups of violating antitrust law by colluding&#8230;</p>
<p><a href="http://feedads.g.doubleclick.net/~at/gDrJbVxiZKiVi025VFMWgB4ybVs/0/da"><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/cbdab_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~at/gDrJbVxiZKiVi025VFMWgB4ybVs/1/da"><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/1a4b4_di" border="0"></img></a></p>
<p><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/1a4b4_X_XoRM8IY-Q" height="1" width="1" /></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcodytaylor.org%2F2009%2F05%2Freal-sues-mpaa-dvd-cca-for-antitrust-abuse.html&amp;linkname=Real%20sues%20MPAA%2C%20DVD%20CCA%20for%20antitrust%20abuse"><img src="http://codytaylor.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://codytaylor.org/2009/05/real-sues-mpaa-dvd-cca-for-antitrust-abuse.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Confirmed Gmail / Google App Outage</title>
		<link>http://codytaylor.org/2009/05/confirmed-gmail-google-app-outage.html</link>
		<comments>http://codytaylor.org/2009/05/confirmed-gmail-google-app-outage.html#comments</comments>
		<pubDate>Thu, 14 May 2009 21:00:09 +0000</pubDate>
		<dc:creator>Cody Taylor</dc:creator>
				<category><![CDATA[technical news]]></category>
		<category><![CDATA[data storage]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[network]]></category>

		<guid isPermaLink="false">http://codytaylor.org/?p=13942</guid>
		<description><![CDATA[mbone writes &#8220;Earlier today there was a confirmed Google outage which got a lot of attention from network operators. From a post to NANOG after everything calmed down: &#8216;Google ack&#8217;da maintenance on their core network did not go as planned-Forced traffic to one peer link that was unable to handle all the traffic. Maintenance has [...]]]></description>
			<content:encoded><![CDATA[<p>mbone writes &#8220;Earlier today there was a confirmed Google outage which got a lot of attention from network operators. From a post to NANOG after everything calmed down: &#8216;Google ack&#8217;da maintenance on their core network did not go as planned-Forced traffic to one peer link that was unable to handle all the traffic. Maintenance has been rolled back. Issue has been restored.&#8217; This is exactly what makes me nervous about cloud computing and data storage. It&#8217;s bad enough when I screw up a config and it takes down my mail, but what about when it happens to the entire globe at once?&#8221; Several readers also point to CNET&#8217;s coverage of the outage. Update: 05/14 19:25 GMT by T : CWmike adds this: &#8220;Steven J. Vaughan-Nichols writes that what may be happening is a massive DDoS attack. Based on the size of the attack that would be needed to interfere with Google, I believe that it&#8217;s quite likely to be the result of an attack from the controllers of the Windows worm, Conficker. Another theory that has been put about &mdash; that the problem was due to AT&amp;T NOC routing problems &mdash; does not appear to hold water, writes Steven.&#8221;
<p><a href="http://tech.slashdot.org/article.pl?sid=09/05/14/1822200&amp;from=rss"><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/c5fbc_1822200"></a></p>
<p><a href="http://tech.slashdot.org/article.pl?sid=09/05/14/1822200&amp;from=rss">Read more of this story</a> at Slashdot.</p>
<p><a href="http://feedads.g.doubleclick.net/~at/4CVa8MFMWYnWELvW64dDw47y8WQ/0/da"><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/c5fbc_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~at/4CVa8MFMWYnWELvW64dDw47y8WQ/1/da"><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/c5fbc_di" border="0"></img></a></p>
<p><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/c5fbc_NoKztNoSfq0" height="1" width="1" /></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcodytaylor.org%2F2009%2F05%2Fconfirmed-gmail-google-app-outage.html&amp;linkname=Confirmed%20Gmail%20%2F%20Google%20App%20Outage"><img src="http://codytaylor.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://codytaylor.org/2009/05/confirmed-gmail-google-app-outage.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vulnerability Renders MPAA/RIAA Copyright Warnings Useless</title>
		<link>http://codytaylor.org/2009/05/vulnerability-renders-mpaariaa-copyright-warnings-useless.html</link>
		<comments>http://codytaylor.org/2009/05/vulnerability-renders-mpaariaa-copyright-warnings-useless.html#comments</comments>
		<pubDate>Thu, 14 May 2009 13:00:20 +0000</pubDate>
		<dc:creator>Cody Taylor</dc:creator>
				<category><![CDATA[technical news]]></category>
		<category><![CDATA[network]]></category>

		<guid isPermaLink="false">http://codytaylor.org/?p=13928</guid>
		<description><![CDATA[In a bid to educate pirates, copyright holders hire companies such as BayTSP to track down people who share their titles on P2P networks. The alleged infringers then receive a warning and are given the opportunity to resolve the issue. However, this system is vulnerable to abuse and therefore completely useless.



]]></description>
			<content:encoded><![CDATA[<p>In a bid to educate pirates, copyright holders hire companies such as BayTSP to track down people who share their titles on P2P networks. The alleged infringers then receive a warning and are given the opportunity to resolve the issue. However, this system is vulnerable to abuse and therefore completely useless.</p>
<p><a href="http://feedads.g.doubleclick.net/~at/e8VRXzHV2Zpl719l0pFy9hmAiXc/0/da"><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/73425_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~at/e8VRXzHV2Zpl719l0pFy9hmAiXc/1/da"><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/73425_di" border="0"></img></a></p>
<p><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/73425_O3-G_hRJ8-8" height="1" width="1" /></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcodytaylor.org%2F2009%2F05%2Fvulnerability-renders-mpaariaa-copyright-warnings-useless.html&amp;linkname=Vulnerability%20Renders%20MPAA%2FRIAA%20Copyright%20Warnings%20Useless"><img src="http://codytaylor.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://codytaylor.org/2009/05/vulnerability-renders-mpaariaa-copyright-warnings-useless.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>John Ivison: Crocodile tears from Brian Mulroney &#8211; National Post</title>
		<link>http://codytaylor.org/2009/05/john-ivison-crocodile-tears-from-brian-mulroney-national-post.html</link>
		<comments>http://codytaylor.org/2009/05/john-ivison-crocodile-tears-from-brian-mulroney-national-post.html#comments</comments>
		<pubDate>Thu, 14 May 2009 05:00:20 +0000</pubDate>
		<dc:creator>Cody Taylor</dc:creator>
				<category><![CDATA[technical news]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[tv]]></category>

		<guid isPermaLink="false">http://codytaylor.org/?p=13916</guid>
		<description><![CDATA[

CTV.ca


John Ivison: Crocodile tears from Brian MulroneyNational PostThe Airbus affair clearly stirs bitter memories for Brian Mulroney. He was on the verge of tears as he discussed the eight-year RCMP investigation into whether he took kickbacks on Air Canada&#39;s 1988 purchase of Airbus planes at the Oliphant commission &#8230;Mulroney breaks down on the stand Canoe.caMulroney [...]]]></description>
			<content:encoded><![CDATA[<table border="0" width="valign=top" cellpadding="2" cellspacing="7">
<tr>
<td width="80" align="center" valign="top"><a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0i-0&amp;fd=R&amp;url=http://www.ctv.ca/servlet/ArticleNews/story/CTVNews/20090513/Schreiber_surgery_090513/20090513%3Fhub%3DTopStories&amp;cid=1349302364&amp;ei=ZaULStrZNaGkM_ySxeUG&amp;usg=AFQjCNGAos23yNzu80SPkouig3YNvxAP1w"><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/7b5de_160_cp_mulroney2_090513.jpg" width="80" height="60" alt="" border="1" /><br />CTV.ca</a></td>
<td valign="top">
<div><img alt="" height="1" width="1"></div>
<div><a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0-0&amp;fd=R&amp;url=http://network.nationalpost.com/np/blogs/fullcomment/archive/2009/05/13/john-ivison-crocodile-tears-from-brian-mulroney.aspx&amp;cid=1349302364&amp;ei=ZaULStrZNaGkM_ySxeUG&amp;usg=AFQjCNFXpaXCH9MFGDTpUS3JVjB_2oKvYQ"><b>John Ivison: Crocodile tears from Brian Mulroney</b></a><br /><b>National Post</b><br />The Airbus affair clearly stirs bitter memories for Brian Mulroney. He was on the verge of tears as he discussed the eight-year RCMP investigation into whether he took kickbacks on Air Canada&#39;s 1988 purchase of Airbus planes at the Oliphant commission <b>&#8230;</b><br /><a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0-1&amp;fd=R&amp;url=http://cnews.canoe.ca/CNEWS/Politics/2009/05/13/9445976-sun.html&amp;cid=1349302364&amp;ei=ZaULStrZNaGkM_ySxeUG&amp;usg=AFQjCNHuPjuBJ8CICXlBoC_sVDx39OArDA">Mulroney breaks down on the stand</a> Canoe.ca<br /><a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0-2&amp;fd=R&amp;url=http://www.canada.com/Mulroney%2Blists%2Binternational%2Bcontacts%2Brebut%2BSchreiber%2Btestimony/1592503/story.html&amp;cid=1349302364&amp;ei=ZaULStrZNaGkM_ySxeUG&amp;usg=AFQjCNFQgeSHn55uFy3Wje3JxlQTzTUbmw">Mulroney lists international contacts to rebut Schreiber testimony.</a> Canada.com<br /><a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0-3&amp;fd=R&amp;url=http://www.theglobeandmail.com/servlet/story/LAC.20090513.MULRONEY13ART2253/TPStory/National&amp;cid=1349302364&amp;ei=ZaULStrZNaGkM_ySxeUG&amp;usg=AFQjCNFTfAQp9xTtr5nrV3BkSsbTbUiW4A">Globe and Mail</a>&nbsp;- <a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0-4&amp;fd=R&amp;url=http://www.thestar.com/news/canada/article/633575&amp;cid=1349302364&amp;ei=ZaULStrZNaGkM_ySxeUG&amp;usg=AFQjCNE96oLua03LkObUOewtqI42qmlnPw">Toronto Star</a>&nbsp;- <a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0-5&amp;fd=R&amp;url=http://www.ctv.ca/servlet/ArticleNews/story/CTVNews/20090513/Schreiber_surgery_090513/20090513%3Fhub%3DTopStories&amp;cid=1349302364&amp;ei=ZaULStrZNaGkM_ySxeUG&amp;usg=AFQjCNGAos23yNzu80SPkouig3YNvxAP1w">CTV.ca</a>&nbsp;- <a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0-6&amp;fd=R&amp;url=http://www.cbc.ca/canada/story/2009/05/12/mulroney-oliphant-inquiry798.html&amp;cid=1349302364&amp;ei=ZaULStrZNaGkM_ySxeUG&amp;usg=AFQjCNF_lnuvx-DtHQsXTGVeHyPLgM-mew">CBC.ca</a><br /><a href="http://news.google.ca/news?pz=1&amp;ned=ca&amp;hl=en&amp;ncl=1349302364"><b>all 564 news articles</b></a>&nbsp;&nbsp;<a href="http://news.google.ca/news?pz=1&amp;ned=fr_ca&amp;hl=fr&amp;ncl=1302782497&amp;ct=relc_en_ca&amp;rc">Langue : Français</a></div>
</td>
</tr>
</table>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcodytaylor.org%2F2009%2F05%2Fjohn-ivison-crocodile-tears-from-brian-mulroney-national-post.html&amp;linkname=John%20Ivison%3A%20Crocodile%20tears%20from%20Brian%20Mulroney%20%26%238211%3B%20National%20Post"><img src="http://codytaylor.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://codytaylor.org/2009/05/john-ivison-crocodile-tears-from-brian-mulroney-national-post.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Following The Leader: Social Networks Of Schoolchildren</title>
		<link>http://codytaylor.org/2009/05/following-the-leader-social-networks-of-schoolchildren.html</link>
		<comments>http://codytaylor.org/2009/05/following-the-leader-social-networks-of-schoolchildren.html#comments</comments>
		<pubDate>Thu, 14 May 2009 05:00:16 +0000</pubDate>
		<dc:creator>Cody Taylor</dc:creator>
				<category><![CDATA[technical news]]></category>
		<category><![CDATA[network]]></category>

		<guid isPermaLink="false">http://codytaylor.org/?p=13913</guid>
		<description><![CDATA[Kids always seem to be ahead of trends, and marketers realize the importance of new products and services taking off with the younger set. A new study in the Journal of Consumer Research helps identify which children might be the trendsetters of their generation.



]]></description>
			<content:encoded><![CDATA[<p>Kids always seem to be ahead of trends, and marketers realize the importance of new products and services taking off with the younger set. A new study in the Journal of Consumer Research helps identify which children might be the trendsetters of their generation.</p>
<p><a href="http://feedads.g.doubleclick.net/~at/uPUlq4y7vOq4cICTPXW8qnKOAxg/0/da"><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/a100b_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~at/uPUlq4y7vOq4cICTPXW8qnKOAxg/1/da"><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/00411_di" border="0"></img></a></p>
<p><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/00411_l-an6fzHaTg" height="1" width="1" /></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcodytaylor.org%2F2009%2F05%2Ffollowing-the-leader-social-networks-of-schoolchildren.html&amp;linkname=Following%20The%20Leader%3A%20Social%20Networks%20Of%20Schoolchildren"><img src="http://codytaylor.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://codytaylor.org/2009/05/following-the-leader-social-networks-of-schoolchildren.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tearful Mulroney recalls pain of RCMP letter &#8211; Toronto Star</title>
		<link>http://codytaylor.org/2009/05/tearful-mulroney-recalls-pain-of-rcmp-letter-toronto-star.html</link>
		<comments>http://codytaylor.org/2009/05/tearful-mulroney-recalls-pain-of-rcmp-letter-toronto-star.html#comments</comments>
		<pubDate>Wed, 13 May 2009 17:00:27 +0000</pubDate>
		<dc:creator>Cody Taylor</dc:creator>
				<category><![CDATA[technical news]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[tv]]></category>

		<guid isPermaLink="false">http://codytaylor.org/?p=13873</guid>
		<description><![CDATA[

CBC.ca


Tearful Mulroney recalls pain of RCMP letterToronto StarOTTAWA–Brian Mulroney broke down in tears on the witness stand today as he recalled the personal devastation he suffered when news broke in 1995 that the RCMP considered him a suspect in the Airbus fraud case.Mulroney lists international contacts to rebut Schreiber testimony Ottawa CitizenSchreiber in hospital after [...]]]></description>
			<content:encoded><![CDATA[<table border="0" width="valign=top" cellpadding="2" cellspacing="7">
<tr>
<td width="80" align="center" valign="top"><a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0i-0&amp;fd=R&amp;url=http://www.cbc.ca/canada/story/2009/05/12/mulroney-oliphant-inquiry798.html&amp;cid=1349302364&amp;ei=rPwKSsydJpvqMPjmqN4G&amp;usg=AFQjCNEn5bq37zVoIjIh3_v2Ej8K9cwlqQ"><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/2dbfe_mulroney-cp-6693941.jpg" width="80" height="74" alt="" border="1" /><br />CBC.ca</a></td>
<td valign="top">
<div><img alt="" height="1" width="1"></div>
<div><a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0-0&amp;fd=R&amp;url=http://www.thestar.com/news/canada/article/633575&amp;cid=1349302364&amp;ei=rPwKSsydJpvqMPjmqN4G&amp;usg=AFQjCNFhgPc2hw-waZSKsm5jCUYzfW1xOw"><b>Tearful Mulroney recalls pain of RCMP letter</b></a><br /><b>Toronto Star</b><br />OTTAWA–Brian Mulroney broke down in tears on the witness stand today as he recalled the personal devastation he suffered when news broke in 1995 that the RCMP considered him a suspect in the Airbus fraud case.<br /><a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0-1&amp;fd=R&amp;url=http://www.ottawacitizen.com/Mulroney%2Blists%2Binternational%2Bcontacts%2Brebut%2BSchreiber%2Btestimony/1592234/story.html&amp;cid=1349302364&amp;ei=rPwKSsydJpvqMPjmqN4G&amp;usg=AFQjCNHW7R1lTq3Rw28VXnveiLae_L2Z8g">Mulroney lists international contacts to rebut Schreiber testimony</a> Ottawa Citizen<br /><a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0-2&amp;fd=R&amp;url=http://www.edmontonsun.com/news/canada/2009/05/13/9443696.html&amp;cid=1349302364&amp;ei=rPwKSsydJpvqMPjmqN4G&amp;usg=AFQjCNF-LHwbxXsRzi08DLlmL2eT-p-XGQ">Schreiber in hospital after gall bladder surgery</a> Edmonton Sun<br /><a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0-3&amp;fd=R&amp;url=http://www.ctv.ca/servlet/ArticleNews/story/CTVNews/20090513/Schreiber_surgery_090513/20090513%3Fhub%3DTopStories&amp;cid=1349302364&amp;ei=rPwKSsydJpvqMPjmqN4G&amp;usg=AFQjCNGXDgxz-5Zv2X54sCpf5_lyiP_sUw">CTV.ca</a>&nbsp;- <a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0-4&amp;fd=R&amp;url=http://www.citynews.ca/news/news_34543.aspx&amp;cid=1349302364&amp;ei=rPwKSsydJpvqMPjmqN4G&amp;usg=AFQjCNE3NRvGJKJfQnyfyijwr8wWdKMlqg">CityNews</a>&nbsp;- <a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0-5&amp;fd=R&amp;url=http://network.nationalpost.com/np/blogs/posted/archive/2009/05/13/live-from-the-oliphant-commission-day-two-of-brian-mulroney-s-testimony.aspx&amp;cid=1349302364&amp;ei=rPwKSsydJpvqMPjmqN4G&amp;usg=AFQjCNHAnyvN4kbCSL4zd24AuBCnJ4AaXQ">National Post</a>&nbsp;- <a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/0-6&amp;fd=R&amp;url=http://www2.macleans.ca/2009/05/13/brians-song-day-one/&amp;cid=1349302364&amp;ei=rPwKSsydJpvqMPjmqN4G&amp;usg=AFQjCNEbOqr9RgYZBaEqa4J5q8V01JCelA">Macleans.ca</a><br /><a href="http://news.google.ca/news?pz=1&amp;ned=ca&amp;hl=en&amp;ncl=1349302364"><b>all 495 news articles</b></a>&nbsp;&nbsp;<a href="http://news.google.ca/news?pz=1&amp;ned=fr_ca&amp;hl=fr&amp;ncl=1302782497&amp;ct=relc_en_ca&amp;rc">Langue : Français</a></div>
</td>
</tr>
</table>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcodytaylor.org%2F2009%2F05%2Ftearful-mulroney-recalls-pain-of-rcmp-letter-toronto-star.html&amp;linkname=Tearful%20Mulroney%20recalls%20pain%20of%20RCMP%20letter%20%26%238211%3B%20Toronto%20Star"><img src="http://codytaylor.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://codytaylor.org/2009/05/tearful-mulroney-recalls-pain-of-rcmp-letter-toronto-star.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Schreiber recovering after gall bladder surgery &#8211; CTV.ca</title>
		<link>http://codytaylor.org/2009/05/schreiber-recovering-after-gall-bladder-surgery-ctvca.html</link>
		<comments>http://codytaylor.org/2009/05/schreiber-recovering-after-gall-bladder-surgery-ctvca.html#comments</comments>
		<pubDate>Wed, 13 May 2009 13:00:15 +0000</pubDate>
		<dc:creator>Cody Taylor</dc:creator>
				<category><![CDATA[technical news]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[tv]]></category>

		<guid isPermaLink="false">http://codytaylor.org/?p=13860</guid>
		<description><![CDATA[

CBC.ca


Schreiber recovering after gall bladder surgeryCTV.caKarlheinz Schreiber is recovering in hospital Wednesday after having surgery to remove his gall bladder. The  German-Canadian businessman was taken straight to hospital from the Oliphant inquiry Tuesday, where former prime minister Brian Mulroney was &#8230;Schreiber recovering in hospital following gall bladder surgery CBC.caApologetic Mulroney regrets poor record-keeping Globe [...]]]></description>
			<content:encoded><![CDATA[<table border="0" width="valign=top" cellpadding="2" cellspacing="7">
<tr>
<td width="80" align="center" valign="top"><a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/1i-0&amp;fd=R&amp;url=http://www.cbc.ca/canada/story/2009/05/12/schreiber-surgery012.html&amp;cid=1349302364&amp;ei=YcQKSqyRGKGkM8aU2eYG&amp;usg=AFQjCNEkoF1gCseuCT04-sOoPFWX4EItpA"><img src="http://www.codytaylor.org/wp-content/plugins/wp-o-matic/cache/35d63_schreiber-cp-895109.jpg" width="54" height="80" alt="" border="1" /><br />CBC.ca</a></td>
<td valign="top">
<div><img alt="" height="1" width="1"></div>
<div><a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/1-0&amp;fd=R&amp;url=http://www.ctv.ca/servlet/ArticleNews/story/CTVNews/20090513/Schreiber_surgery_090513/20090513%3Fhub%3DTopStories&amp;cid=1349302364&amp;ei=YcQKSqyRGKGkM8aU2eYG&amp;usg=AFQjCNFPpNjQo-PPc97G_wGJ81PW9QLvcg"><b>Schreiber recovering after gall bladder surgery</b></a><br /><b>CTV.ca</b><br />Karlheinz Schreiber is recovering in hospital Wednesday after having surgery to remove his gall bladder. The  German-Canadian businessman was taken straight to hospital from the Oliphant inquiry Tuesday, where former prime minister Brian Mulroney was <b>&#8230;</b><br /><a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/1-1&amp;fd=R&amp;url=http://www.cbc.ca/canada/story/2009/05/13/schreiber-surgery-ottawa-recovering469.html&amp;cid=1349302364&amp;ei=YcQKSqyRGKGkM8aU2eYG&amp;usg=AFQjCNHUjiuBIoB0QTHYPHrQfSgrinaRyA">Schreiber recovering in hospital following gall bladder surgery</a> CBC.ca<br /><a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/1-2&amp;fd=R&amp;url=http://www.theglobeandmail.com/servlet/story/LAC.20090513.MULRONEY13ART2253/TPStory/National&amp;cid=1349302364&amp;ei=YcQKSqyRGKGkM8aU2eYG&amp;usg=AFQjCNF23WJhWOeqy48ycmlOwkaMOUxULA">Apologetic Mulroney regrets poor record-keeping</a> Globe and Mail<br /><a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/1-3&amp;fd=R&amp;url=http://network.nationalpost.com/np/blogs/posted/archive/2009/05/13/live-from-the-oliphant-commission-day-two-of-brian-mulroney-s-testimony.aspx&amp;cid=1349302364&amp;ei=YcQKSqyRGKGkM8aU2eYG&amp;usg=AFQjCNHhj-41_AxRQJEhX-iXqBK97HoIwg">National Post</a>&nbsp;- <a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/1-4&amp;fd=R&amp;url=http://www.canada.com/Cash%2Bdeal%2Ballegations%2Bpreposterous%2BMulroney/1591518/story.html&amp;cid=1349302364&amp;ei=YcQKSqyRGKGkM8aU2eYG&amp;usg=AFQjCNGZ4vrDzz0AemZqEXbyWx1YyPcTNQ">Canada.com</a>&nbsp;- <a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/1-5&amp;fd=R&amp;url=http://www.google.com/hostednews/canadianpress/article/ALeqM5ie-7SS9VGvXIua3xwPu1DL4hPCgQ&amp;cid=1349302364&amp;ei=YcQKSqyRGKGkM8aU2eYG&amp;usg=AFQjCNHb8y7EiXb_TSeRLutbHxcODOQ_Nw">The Canadian Press</a>&nbsp;- <a href="http://news.google.ca/news/url?sa=T&amp;ct=ca/1-6&amp;fd=R&amp;url=http://www.theglobeandmail.com/servlet/story/LAC.20090513.MULRONEYHARPER13ART22312/TPStory/National&amp;cid=1349302364&amp;ei=YcQKSqyRGKGkM8aU2eYG&amp;usg=AFQjCNEe4EHtwBSLUoCyetWNsZw3gaYY_w">Globe and Mail</a><br /><a href="http://news.google.ca/news?pz=1&amp;ned=ca&amp;hl=en&amp;ncl=1349302364"><b>all 429 news articles</b></a>&nbsp;&nbsp;<a href="http://news.google.ca/news?pz=1&amp;ned=fr_ca&amp;hl=fr&amp;ncl=1302782497&amp;ct=relc_en_ca&amp;rc">Langue : Français</a></div>
</td>
</tr>
</table>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fcodytaylor.org%2F2009%2F05%2Fschreiber-recovering-after-gall-bladder-surgery-ctvca.html&amp;linkname=Schreiber%20recovering%20after%20gall%20bladder%20surgery%20%26%238211%3B%20CTV.ca"><img src="http://codytaylor.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://codytaylor.org/2009/05/schreiber-recovering-after-gall-bladder-surgery-ctvca.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

