<?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>The Digital Home of Brent Lee &#187; Uncategorized</title>
	<atom:link href="http://www.leeb.ca/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.leeb.ca</link>
	<description>Innovation in Technology and Learning</description>
	<lastBuildDate>Sun, 05 Feb 2012 18:34:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>A Day Made of Glass&#8230;</title>
		<link>https://www.leeb.ca/2012/02/05/a-day-made-of-glass/</link>
		<comments>https://www.leeb.ca/2012/02/05/a-day-made-of-glass/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 18:33:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://www.leeb.ca/?p=606</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://www.youtube.com/embed/jZkHpNnXLB0" frameborder="0" width="560" height="315"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>https://www.leeb.ca/2012/02/05/a-day-made-of-glass/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Teacher&#8217;s Guide to Twitter</title>
		<link>https://www.leeb.ca/2011/03/07/teachers-guide-to-twitter/</link>
		<comments>https://www.leeb.ca/2011/03/07/teachers-guide-to-twitter/#comments</comments>
		<pubDate>Mon, 07 Mar 2011 15:34:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.leeb.ca/?p=261</guid>
		<description><![CDATA[&#160;An interesting link relating to Twitter:&#160; http://onceateacher.wordpress.com/2009/02/18/a-teachers-guide-to-twitter/]]></description>
			<content:encoded><![CDATA[<p>&#160;An interesting link relating to Twitter:&#160;</p>
<p><a href="http://onceateacher.wordpress.com/2009/02/18/a-teachers-guide-to-twitter/">http://onceateacher.wordpress.com/2009/02/18/a-teachers-guide-to-twitter/</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.leeb.ca/2011/03/07/teachers-guide-to-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Database (Reset Passwords)</title>
		<link>https://www.leeb.ca/2011/01/17/mysql-database-reset-passwords/</link>
		<comments>https://www.leeb.ca/2011/01/17/mysql-database-reset-passwords/#comments</comments>
		<pubDate>Mon, 17 Jan 2011 01:00:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.leeb.ca/?p=176</guid>
		<description><![CDATA[The tutorial does seem a bit long because of all the alternate ways to kill and start the mysqld, but trust me its simple. Here’s in short what we will be going to do: Step 1: Stop mysql server process Step 2: Start mysqld with &#8211;skip-grant-tables option. Step 3: Run mysql without any parameters. Step [...]]]></description>
			<content:encoded><![CDATA[<p>The tutorial does seem a bit long because of all the alternate ways to kill and start the mysqld, but trust me its simple.</p>
<p>Here’s in short what we will be going to do:</p>
<p>Step 1: Stop mysql server process<br />
Step 2: Start mysqld with &#8211;skip-grant-tables option.<br />
Step 3: Run mysql without any parameters.<br />
Step 4: Change the root admin password (old password not required.)<br />
Step 5: Close mysql and restart mysql server.<br />
And here are the detailed instructions to reset MySQL root password:</p>
<p>The first thing you need to do is shut down mysqld if its running. In most of the linux flavor (including Ubuntu, ofcourse), you’d execute the following command to stop the mysqld:<br />
sudo /etc/init.d/mysql stop</p>
<p>This would stop mysqld. You can confirm it by the following command:</p>
<p>ps -A | grep mysql</p>
<p>If it shows any entry of mysqld, it means it is still running. You can try the following command to stop it:</p>
<p>sudo stop mysql</p>
<p>See if it has closed now, if not, you’d need to remove its entry from the init.d by using the following command and restart the computer so it doesn’t autostart:</p>
<p>sudo update-rc.d -f mysql remove</p>
<p>Now after restarting the computer, mysql should not be running you check it from the same command ie. ps -A | grep mysql</p>
<p>Now you need to again start the mysqld with &#8211;skip-grant-tables. This switch enables any client to login to mysql root without password. Use the following command to start mysqld again:<br />
sudo mysqld_safe &#8211;skip-grant-tables &amp;</p>
<p>Now type in mysql to start the client.<br />
Execute the following queries to change the password:<br />
UPDATE mysql.user SET Password=PASSWORD(‘new_password’) WHERE User=’root’;<br />
FLUSH PRIVILEGES;</p>
<p>This would change the root password to new_password. You can change it to any password of your choice.</p>
<p>Type in exit to shut down mysql.<br />
You now have to close the mysqld again. You can close the terminal, that would kill the process. If it doesn’t, just kill it. Use the following command:<br />
sudo pkill mysql*</p>
<p>That would definitely kill the mysqld and all related subprocesses.</p>
<p>Restart the mysql in normal mode. If you had removed the mysql from starting up using update-rc.d, see below for how to add it to startup scripts back again. To start mysqld execute either of the following command:<br />
sudo start mysql</p>
<p>OR</p>
<p>sudo /etc/init.d/mysql start</p>
<p>To add the mysql to startup script:<br />
sudo update-rc.d mysql defaults</p>
<p>You can now restart the computer and mysql will start automatically.</p>
<p>Source:&#160;http://www.absolutelytech.com/2010/07/01/howto-reset-mysql-root-password-on-ubuntu-when-youve-forgotten-it/</p>
]]></content:encoded>
			<wfw:commentRss>https://www.leeb.ca/2011/01/17/mysql-database-reset-passwords/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prey Project</title>
		<link>https://www.leeb.ca/2010/10/28/prey-project/</link>
		<comments>https://www.leeb.ca/2010/10/28/prey-project/#comments</comments>
		<pubDate>Thu, 28 Oct 2010 00:42:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.leeb.ca/?p=133</guid>
		<description><![CDATA[Open Source, anti-theft software: http://preyproject.com/ Prey lets you keep track of your phone or laptop at all times, and will help you find it if it ever gets lost or stolen. It&#8217;s lightweight, open source software, and free for anyone to use. And it just works.]]></description>
			<content:encoded><![CDATA[<p>Open Source, anti-theft software:</p>
<p>http://preyproject.com/</p>
<p>Prey lets you keep track of your phone or laptop at all times, and will help you find it if it ever gets lost or stolen. It&#8217;s lightweight, open source software, and free for anyone to use. And it just works.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.leeb.ca/2010/10/28/prey-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Technology Changing Lives</title>
		<link>https://www.leeb.ca/2010/10/26/technology-changing-lives/</link>
		<comments>https://www.leeb.ca/2010/10/26/technology-changing-lives/#comments</comments>
		<pubDate>Tue, 26 Oct 2010 14:08:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.leeb.ca/?p=128</guid>
		<description><![CDATA[An interesting movie speaking to the changes that Technology are making in the lives of people with sight impairments.]]></description>
			<content:encoded><![CDATA[<p>An interesting movie speaking to the changes that Technology are making in the lives of people with sight impairments.</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/9UyrAfOSaoM?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/9UyrAfOSaoM?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>https://www.leeb.ca/2010/10/26/technology-changing-lives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Classroom Evolution or&#8230;.</title>
		<link>https://www.leeb.ca/2010/10/25/123/</link>
		<comments>https://www.leeb.ca/2010/10/25/123/#comments</comments>
		<pubDate>Mon, 25 Oct 2010 22:49:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.leeb.ca/?p=123</guid>
		<description><![CDATA[An interesting video for those who wonder where our classrooms are going, and what could happen with some change. The bigger question, how can we implement these changes?]]></description>
			<content:encoded><![CDATA[<p>An interesting video for those who wonder where our classrooms are going, and what could happen with some change. The bigger question, how can we implement these changes? </p>
<p><embed src="http://c.brightcove.com/services/viewer/federated_f8/1399136188" bgcolor="#FFFFFF" flashVars="videoId=29848463001&#038;playerId=1399136188&#038;viewerSecureGatewayURL=https://console.brightcove.com/services/amfgateway&#038;servicesURL=http://services.brightcove.com/services&#038;cdnURL=http://admin.brightcove.com&#038;domain=embed&#038;autoStart=false&#038;" base="http://admin.brightcove.com" name="flashObj" width="486" height="412" seamlesstabbing="false" type="application/x-shockwave-flash" swLiveConnect="true" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed></p>
]]></content:encoded>
			<wfw:commentRss>https://www.leeb.ca/2010/10/25/123/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Booting Windows 7 from USB Stick</title>
		<link>https://www.leeb.ca/2010/09/29/booting-windows-7-from-usb-stick/</link>
		<comments>https://www.leeb.ca/2010/09/29/booting-windows-7-from-usb-stick/#comments</comments>
		<pubDate>Wed, 29 Sep 2010 05:04:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.leeb.ca/?p=96</guid>
		<description><![CDATA[This is a great resource for booting Windows 7 from a USB stick: http://maketecheasier.com/boot-and-install-windows-7-from-usb-flash-drive/2009/01/23]]></description>
			<content:encoded><![CDATA[<p>This is a great resource for booting Windows 7 from a USB stick: </p>
<p><a href="http://maketecheasier.com/boot-and-install-windows-7-from-usb-flash-drive/2009/01/23">http://maketecheasier.com/boot-and-install-windows-7-from-usb-flash-drive/2009/01/23</a></p>
]]></content:encoded>
			<wfw:commentRss>https://www.leeb.ca/2010/09/29/booting-windows-7-from-usb-stick/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mail Building Up? Mutt!</title>
		<link>https://www.leeb.ca/2010/09/07/mail-building-up-mutt/</link>
		<comments>https://www.leeb.ca/2010/09/07/mail-building-up-mutt/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 01:53:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.leeb.ca/?p=88</guid>
		<description><![CDATA[Do you sometimes login to your linux box and find 10,000 emails? Enter Mutt from Command Line &#8220;Mutt&#8221; Press &#8216;D&#8217; to &#8220;Delete messages matching&#8230;&#8221; Press &#8216;.$&#8217; for the expression Press to finish taggin all the messages Now quit and hit YES when mutt asks you to purge all messages. Ahhh&#8230; empty mailbox. Now if only [...]]]></description>
			<content:encoded><![CDATA[<p>Do you sometimes login to your linux box and find 10,000 emails? </p>
<p>Enter Mutt from Command Line &#8220;Mutt&#8221;<br />
Press &#8216;D&#8217; to &#8220;Delete messages matching&#8230;&#8221;<br />
Press &#8216;.$&#8217; for the expression<br />
Press <enter> to finish taggin all the messages<br />
Now quit and hit YES when mutt asks you to purge all messages.<br />
Ahhh&#8230; empty mailbox.  Now if only I could really do that on my regular inbox.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.leeb.ca/2010/09/07/mail-building-up-mutt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Software: Slideshare</title>
		<link>https://www.leeb.ca/2010/08/31/web-software-slideshare/</link>
		<comments>https://www.leeb.ca/2010/08/31/web-software-slideshare/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 00:37:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.leeb.ca/?p=81</guid>
		<description><![CDATA[Upload and share your PowerPoint presentations and Word documents on SlideShare. Share publicly or privately. Add audio to make a webinar.Take a tour or Start Uploading! Visit: http://www.slideshare.net/]]></description>
			<content:encoded><![CDATA[<p>Upload and share your PowerPoint presentations and Word documents on SlideShare. Share publicly or privately. Add audio to make a webinar.Take a tour or Start Uploading!</p>
<p>Visit: http://www.slideshare.net/</p>
]]></content:encoded>
			<wfw:commentRss>https://www.leeb.ca/2010/08/31/web-software-slideshare/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interesting Presentations: Effective Teaching?</title>
		<link>https://www.leeb.ca/2010/08/31/interesting-presentations-effective-teaching/</link>
		<comments>https://www.leeb.ca/2010/08/31/interesting-presentations-effective-teaching/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 00:26:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.leeb.ca/?p=72</guid>
		<description><![CDATA[My new director passed along a wonderful resource! I strongly recommend anyone in education spend 90 minutes to reflect and hear Eric&#8217;s presentation! Short Summary: Eric Mazur: &#8220;I thought I was a good teacher until I discovered my students were just memorizing information rather than learning to understand the material. Who was to blame? The [...]]]></description>
			<content:encoded><![CDATA[<p>My new director passed along a wonderful resource! I strongly recommend anyone in education spend 90 minutes to reflect and hear Eric&#8217;s presentation! </p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/WwslBPj8GgI?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/WwslBPj8GgI?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p><strong>Short Summary:</strong></p>
<p>Eric Mazur: &#8220;I thought I was a good teacher until I discovered my students were just memorizing information rather than learning to understand the material. Who was to blame? The students? The material? I will explain how I came to the agonizing conclusion that the culprit was neither of these. It was my teaching that caused students to fail! I will show how I have adjusted my approach to teaching and how it has improved my students&#8217; performance significantly.&#8221; Eric Mazur is the Balkanski Professor of Physics and Applied Physics at Harvard University. An internationally recognized scientist and researcher, he leads a vigorous research program in optical physics and supervises one of the largest research groups in the Physics Department at Harvard University.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.leeb.ca/2010/08/31/interesting-presentations-effective-teaching/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Academic Quotes!</title>
		<link>https://www.leeb.ca/2010/08/31/academic-quotes/</link>
		<comments>https://www.leeb.ca/2010/08/31/academic-quotes/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 00:22:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.leeb.ca/?p=70</guid>
		<description><![CDATA[Some interesting quotes that I captured from a conference: &#8220;It is easier to change the location of a cemetery, than to change the school curriculum&#8221; Woodrow T. Wilson &#8220;A quantity of lightweight engagements&#8221; Unknown]]></description>
			<content:encoded><![CDATA[<p>Some interesting quotes that I captured from a conference:</p>
<p>&#8220;It is easier to change the location of a cemetery, than to change the school curriculum&#8221;</p>
<p>Woodrow T. Wilson</p>
<p>&#8220;A quantity of lightweight engagements&#8221;</p>
<p>Unknown</p>
]]></content:encoded>
			<wfw:commentRss>https://www.leeb.ca/2010/08/31/academic-quotes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

