<?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>More than a maths teacher &#187; 3. Teacherhacker</title>
	<atom:link href="http://www.morethanmaths.com/teacher/category/3-teacherhacker/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.morethanmaths.com/teacher</link>
	<description>My adventures in maths teaching</description>
	<lastBuildDate>Sun, 05 Feb 2012 22:17:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>In The (Learning) Zone</title>
		<link>http://www.morethanmaths.com/teacher/2011/04/22/in-the-learning-zone/</link>
		<comments>http://www.morethanmaths.com/teacher/2011/04/22/in-the-learning-zone/#comments</comments>
		<pubDate>Fri, 22 Apr 2011 16:28:55 +0000</pubDate>
		<dc:creator>Lois Lindemann</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.morethanmaths.com/teacher/?p=653</guid>
		<description><![CDATA[<p>I’ve been doing some more work on MoreThanMaths.com over the last couple of days. It was high time that I added some content to the Learning Zone. In the process of doing this I learned something. How appropriate.</p> <p>Anyway, having spent a bit of time grappling with the wonders of combing Flash and WordPress, [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve been doing some more work on MoreThanMaths.com over the last couple of days. It was high time that I added some content to the Learning Zone. In the process of doing this I learned something. How appropriate.</p>
<p>Anyway, having spent a bit of time grappling with the wonders of combing Flash and WordPress, I thought I’d share what I’ve discovered:</p>
<h4>1. Embedding Flash files in a WordPress site</h4>
<p>I’ve been doing this for a while (<a href="http://www.morethanmaths.com/fun/puzzles/squarecoins/">here&rsquo;s an example</a>) and I’ve found the easiest way is to use a good plugin. </p>
<p>I recommend <a href="http://wordpress.org/extend/plugins/swfobj/">SwfObj</a> &#8211; it’s reliable and really easy to use. I usually add some code to my posts/pages, eg:</p>
<blockquote><div class="code">&#91;swfobj src=&quot;http://www.morethanmaths.com/mtm-content/puzzles/coins-01-triangle-to-square.swf&quot; height=&quot;450&quot; width=&quot;600&quot;]</div>
</blockquote>
<p>Alternatively, I can use the link that the plugin adds to the WordPress dashboard. When writing a post or page, just look for an icon with a little <em>f</em>. It’s sitting next to the other media upload icons. Click it and follow the instructions. It’s easy!</p>
<p>  <center> <img src="http://www.morethanmaths.com/teacher/wp-content/uploads/2011/04/SwfObj-on-dashboard.gif" width="600" height="178" /> </center>
<p>There are two functions from the SwfObj plugin that I don’t use. </p>
<p><strong>- Alignment</strong></p>
<p>I find it easier to align the movie by placing the code inside center tags:</p>
<blockquote><div class="code">&lt;center&gt;      <br />&#91;swfobj src=&quot;http://www.morethanmaths.com/mtm-content/puzzles/coins-01-triangle-to-square.swf&quot; height=&quot;450&quot; width=&quot;600&quot;]      <br />&lt;/center&gt;</div>
</blockquote>
<p><strong>- Full screen view</strong></p>
<p>I offer a hyperlink to a full screen version of the file rather than using the built in function (<a href="http://www.morethanmaths.com/learn/measureisland/">example on this page</a>). This makes it easier for anyone who wants to grab a copy of the movie (eg to embed in a flipchart file for an interactive whiteboard), or who wants to hyperlink straight to it.</p>
<p>Incidentally, if you are going to do this, make sure that your Flash movies don’t have things going on offstage – otherwise they will show up! Many of my movies do have things going on offstage, but before publishing I cover these with a ‘curtain’ – actually a big white rectangle with a hole that shows the stage. Yes, I could deal with this by setting opacity on a webpage, but that won’t help if someone downloads the individual file.</p>
<h4>2. Linking one Flash movie to another</h4>
<p>Some of my resources aren’t single Flash files, they are too big for that. For example, <a href="http://www.morethanmaths.com/learn/measureisland/">Measure Island</a> is made from a set of Flash files: one for the introduction, one for the map, one for the flea circus activity etc. They are linked together using Actionscript commands within the Flash files. This command is used to load the flea circus:</p>
<blockquote><div class="code">_root.loadMovie(&quot;ruler_flea_circus.swf&quot;);</div>
</blockquote>
<p>After trying to get this to work with WordPress, I learned that this doesn’t work quite as I expected. I knew that the <code>loadmovie</code> command was a relative link. I was surprised to learn that it doesn’t point at the folder/directory that contains the Flash movie; instead it defaults to the folder/directory that holds the webpage that the movie is on. </p>
<p>My old site consisted of static html pages, with the relevant Flash files held in the same folders, so that wasn’t a problem. On my WordPress site, it was an issue, because the ‘folder’ containing the page doesn’t exist as such on a database driven site.</p>
<p>I tried lots of things before realising that the solution was easy! </p>
<p>I tried putting an absolute link in my <code>loadmovie</code> commands. The result was crashing Flasherama. Not pretty. Not recommended. </p>
<p>I discovered the base command on Adobe’s page listing <a href="http://kb2.adobe.com/cps/127/tn_12701.html">Flash OBJECT and EMBED tag attributes</a></p>
<blockquote><p><code>base</code> -. or <em>[base directory]</em> or <em>[URL]</em>. Specifies the base directory or URL used to resolve all relative path statements in the Flash Player movie. This attribute is helpful when your Flash Player movies are kept in a different directory from your other files.</p>
</blockquote>
<p>I failed at using this in various ways before eventually deciding to try a base command with SwfObj. There is no mention that this is supported on the <a href="http://orangesplotch.com/blog/swfobj/">plugin’s page</a>, but the plugin does use the SWF Object 2.2 library and I was getting desperate&#8230;</p>
<blockquote><div class="code">&#91;swfobj src=&quot;http://www.morethanmaths.com/mtm-content/measureisland/mi_intro.swf&quot;&lt;/a&gt; height=&quot;450&quot; width=&quot;600&quot; base=&quot;http://www.morethanmaths.com/mtm-content/measureisland/&quot; &#93;</div>
</blockquote>
<p>It worked perfectly! Now when a user clicks on a link in my Flash movie, it looks in my <code>www.morethanmaths.com/mtm-content/measureisland/</code> folder for the Flash file. No crashing, no gnashing of teeth. You can <a href="http://www.morethanmaths.com/learn/measureisland/">see the results here</a>.</p>
<p>As I said, I recommend <a href="http://wordpress.org/extend/plugins/swfobj/">SwfObj</a> &#8211; it’s reliable and really easy to use. And it does even more than it says on the tin!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.morethanmaths.com/teacher/2011/04/22/in-the-learning-zone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Homer&#8217;s first quote</title>
		<link>http://www.morethanmaths.com/teacher/2011/02/21/homers-first-quote/</link>
		<comments>http://www.morethanmaths.com/teacher/2011/02/21/homers-first-quote/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 15:33:48 +0000</pubDate>
		<dc:creator>Lois Lindemann</dc:creator>
				<category><![CDATA[3. Teacherhacker]]></category>
		<category><![CDATA[displays]]></category>

		<guid isPermaLink="false">http://www.morethanmaths.com/teacher/2011/02/21/homers-first-quote/</guid>
		<description><![CDATA[<p>I still seem to be unpacking school stuff. I moved schools last September, so yes, this is a sign that I have way too much stuff. Operation Own Less Stuff has been going on for a while now, the end is not yet in sight.</p> <p>Anyway, I just unearthed Homer Simpson. Sky TV sent [...]]]></description>
			<content:encoded><![CDATA[<p>I still seem to be unpacking school stuff. I moved schools last September, so yes, this is a sign that I have way too much stuff. Operation Own Less Stuff has been going on for a while now, the end is not yet in sight.</p>
<p>Anyway, I just unearthed Homer Simpson. Sky TV sent me several fold out flyers featuring Homer, so I cut one out, had him laminated and stuck him on my classroom wall. Last year I printed out key words and quotes in speech bubbles/callouts and made a mini display. Homer offered us a different word or bit of wisdom every week or so. </p>
<p>Think I might start again with this one: </p>
<blockquote><p>&quot;The human mind has never invented a labour-saving machine equal to algebra.&quot; </p>
<p align="right">[Anon]</p>
</blockquote>
<p>via <a href="https://twitter.com/intmath/status/33889592591650816">Murray Bourne (@intmath) on Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.morethanmaths.com/teacher/2011/02/21/homers-first-quote/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mouse Mischief &#8211; technical difficulties</title>
		<link>http://www.morethanmaths.com/teacher/2011/02/19/mouse-mischief-technical-difficulties/</link>
		<comments>http://www.morethanmaths.com/teacher/2011/02/19/mouse-mischief-technical-difficulties/#comments</comments>
		<pubDate>Sat, 19 Feb 2011 17:28:03 +0000</pubDate>
		<dc:creator>Lois Lindemann</dc:creator>
				<category><![CDATA[3. Teacherhacker]]></category>
		<category><![CDATA[classroom tools]]></category>
		<category><![CDATA[Mouse Mischief]]></category>

		<guid isPermaLink="false">http://www.morethanmaths.com/teacher/2011/02/19/mouse-mischief-technical-difficulties/</guid>
		<description><![CDATA[<p>A class full of children looking excited at the appearance of mice (so far so good), then a problem: the PowerPoint that had worked perfectly the last time I used it simply didn’t run with multiple mice. The slides loaded, but no dialog box offering a multiple mouse set up.</p> <p>Result: a class full [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Inside the Microsoft Arc Mouse by blakespot" href="http://www.flickr.com/photos/blakespot/2982481098/"><img style="margin: 0px 10px 10px 0px; float: left" alt="broken mouse" src="http://farm4.static.flickr.com/3142/2982481098_6dd5befdd4_m_d.jpg" width="240" height="180" /></a>A class full of children looking excited at the appearance of mice (so far so good), then a problem: the PowerPoint that had worked perfectly the last time I used it simply didn’t run with multiple mice. The slides loaded, but no dialog box offering a multiple mouse set up.</p>
<p>Result: a class full of children looking a bit miffed. Not quite what I’d hoped for. (My own fault – should’ve tested it first!)</p>
<p>The problem seems to be a conflict between plugins. A quick Google revealed that SMART’s ink-aware layer is a common culprit, but I wasn’t using that. I had just downloaded a trial version of Articulate, which might be where the conflict is occurring – but I haven’t used this particular laptop for running presentations for a while, so who knows? Could easily be something else.</p>
<p>I’m fortunate to have two laptops &#8211; my own and one provided by school. Mouse Mischief is still working fine for content creation on my own laptop, but I’ll stick to using the school machine for use in lessons. It’s running Windows 7, so copes with more mice anyway. </p>
<p>The moral of the story: if Mouse Mischief stops working, try uninstalling any new or recently updated PowerPoint plugins. </p>
<p><em>Photo: </em><a href="http://www.flickr.com/photos/blakespot/2982481098/"><em>Inside the Microsoft Arc Mouse by blakespot on Flickr</em></a><em>. Used under Creative Commons Licence.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.morethanmaths.com/teacher/2011/02/19/mouse-mischief-technical-difficulties/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mouse Mischief: For A Few Mice More</title>
		<link>http://www.morethanmaths.com/teacher/2010/10/17/mouse-mischief-for-a-few-mice-more/</link>
		<comments>http://www.morethanmaths.com/teacher/2010/10/17/mouse-mischief-for-a-few-mice-more/#comments</comments>
		<pubDate>Sun, 17 Oct 2010 08:00:00 +0000</pubDate>
		<dc:creator>Lois Lindemann</dc:creator>
				<category><![CDATA[3. Teacherhacker]]></category>
		<category><![CDATA[classroom tools]]></category>
		<category><![CDATA[teacher tools]]></category>
		<category><![CDATA[interactive]]></category>
		<category><![CDATA[Mouse Mischief]]></category>
		<category><![CDATA[PowerPoint]]></category>

		<guid isPermaLink="false">http://www.morethanmaths.com/teacher/2010/10/17/mouse-mischief-for-a-few-mice-more/</guid>
		<description><![CDATA[<p>My move to my new school brought a temporary interruption to my Mouse Mischief experiment, but I’m up and running again. It has been by far the most popular tool I’ve used this year. (Last year it came second only to lessons using iPod Touches, but we don’t have any of those at my [...]]]></description>
			<content:encoded><![CDATA[<p>My move to my new school brought a temporary interruption to <a href="http://www.morethanmaths.com/teacher/2010/05/29/making-mischief/">my Mouse Mischief experiment</a>, but I’m up and running again. It has been by far the most popular tool I’ve used this year. (Last year it came second only to lessons using iPod Touches, but we don’t have any of those at my new school!)</p>
<p>I thought I’d share a few thoughts about some of the practicalities of using Mouse Mischief effectively in the classroom.</p>
<p>I’ve found these strategies quite helpful:</p>
<p><strong>1. Make sure the teacher stays in control: </strong></p>
<ul>
<li>NEVER give out the students’ mice until you’ve set up the teacher’s mouse. </li>
<li>At the end of the presentation, unplug the students’ mice BEFORE exiting the slideshow. </li>
</ul>
<p><strong>2. Push the limits</strong></p>
<p>The Microsoft website states that <a href="http://www.microsoft.com/uk/multipoint/mouse-mischief/download.aspx">machines running Windows XP can run approximately five mice</a>. I tried five mice, found they worked fine, then tried six, then seven…</p>
<p>My XP machine will run Mouse Mischief with eight student mice and one teacher mouse, but I think it is reaching its limit. Eight is fine for my current school – it fits the natural groupings without lots of furniture re-arrangement, but ideally I’d like to end up with one mouse per pair of students. Now I have my new school laptop (which runs Windows 7), I’ll be trying even more mice!</p>
<p><strong>3. Consider how you want to start the presentation</strong></p>
<p>Like many teachers, I move rooms from time to time, so sometimes I can set up a presentation in advance, sometimes I have to set it up during the lesson.</p>
<p><strong>a. In advance</strong></p>
<p>If I’m setting up in advance, I try to start the slide show and click to activate all the student mice before the students arrive. By the time the lesson begins,&#160; the first slide is already on the screen. If I’m planning to have a ‘Do Now’ task on the first slide, this works well because the students can start work as soon as they arrived and they aren’t distracted by the mice until we reach the stage when we need them. Obviously the students still need to know which mouse is theirs, so I include a drawing slide with the heading ‘Take a few moments to work out which cursor is yours’. By the time I’ve finished giving out the mice, the students have worked that out and are ready to move on.</p>
<p>There’s <a href="http://dl.dropbox.com/u/588647/algebra/solve-one-step-equations.pptx">an example of a PowerPoint that I used in this way here</a>. It was used with a foundation set who were learning to solve one step equations. (If you want to reuse the activity, you’ll find <a href="http://dl.dropbox.com/u/588647/algebra/one-step-equations-THOAN-cards.docx">the cards that go with it here</a>.)</p>
<p><strong>b. During the lesson</strong></p>
<p>If I’m setting up in the lesson, I make sure that the students have something that they can work on independently for a few minutes while I set up. It doesn’t take very long, but there are quite a few steps: I have to switch on the projector, connect my laptop, plug in and switch on the mice and finally start the slideshow. Once I have reached the stage where I’ve set up the teacher’s mouse, I give the students their mice and let them click to activate them.</p>
<p><strong>4. Learn the keyboard shortcuts</strong></p>
<p>The keyboard shortcuts are really useful. If you have a wireless keyboard I’d recommend using it, then you can move around the room instead of being stuck next to your PC.</p>
<ul>
<li>left/right arrows: previous/next slide </li>
<li>up arrow: show results (very useful if one group is mucking about – once they’ve lost their vote a couple of times, that seems to stop); clicking the up arrow a second time will hide the results – useful if you need to go back to discuss a question that the students didn’t understand</li>
<li>down arrow: hide/show student mice </li>
<li>f10: reset the slide, so everyone answers again (useful when students head for the wrong answer and want another attempt) </li>
<li>f9: start the timer (this is a bit inflexible: you get one minute and as far as I can tell, there is no way to change this. I don’t really use this feature.) </li>
<li>Alt+f4: end the show </li>
</ul>
<p><strong>5. Build in thinking time</strong></p>
<p>I used Mouse Mischief with a top set Y8 class who were learning to multiply with fractions and mixed numbers. [<a href="http://dl.dropbox.com/u/588647/number/multiply-fractions-mixed-nos-pizzas.pptx">PowerPoint file is here</a>]. They really enjoyed it – which, given the subject matter, shows just how motivating it is! </p>
<p>At the start of the session, we spent some time working out how to multiply fractions. They had some whiteboards with pizzas (actually, the ‘whiteboards’ are printouts of <a href="http://dl.dropbox.com/u/588647/number/pizza-whiteboards.docx">this document</a>, slipped inside plastic wallets – which we wrote on with a dry wipe marker), so the first few slides were just copies of those images which we used to discuss how to do the questions. </p>
<p>Then came the practice, followed by an extension to mixed numbers. I decided to use Mouse Mischief for this. These questions need thinking time, so I revealed each slide (right arrow) and immediately hid the student mice (down arrow). They worked in groups to work out the answers using mini-whiteboards. Once I could see that groups were reaching conclusions, I refreshed the slide (f10) so they could answer. I could have simply revealed the mice again, but I wanted to make sure that no-one had the chance to register an answer before they had worked it out.</p>
<p><strong>6. Use the results for AfL, or to start a debate</strong></p>
<p>As soon as the last student has clicked an answer (or as soon as I decide they have had long enough and press the up arrow), a graphic showing how many chose each response appears. If there’s a correct answer, this is a really powerful assessment for learning tool. I can see immediately which questions we need to stop and discuss. If there’s no correct answer, it can stimulate debate. I asked Y10 to select which method they used to solve a problem, we then discussed the relative merits of each one.</p>
<p>&#160;</p>
<p>&#160;</p>
<p>I’m still learning how to use Mouse Mischief effectively, so if you have any suggestions or advice, I’d be happy to hear it. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.morethanmaths.com/teacher/2010/10/17/mouse-mischief-for-a-few-mice-more/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Making Mischief</title>
		<link>http://www.morethanmaths.com/teacher/2010/05/29/making-mischief/</link>
		<comments>http://www.morethanmaths.com/teacher/2010/05/29/making-mischief/#comments</comments>
		<pubDate>Sat, 29 May 2010 18:42:10 +0000</pubDate>
		<dc:creator>Lois Lindemann</dc:creator>
				<category><![CDATA[3. Teacherhacker]]></category>
		<category><![CDATA[classroom tools]]></category>
		<category><![CDATA[interactive]]></category>
		<category><![CDATA[Mouse Mischief]]></category>
		<category><![CDATA[PowerPoint]]></category>

		<guid isPermaLink="false">http://www.morethanmaths.com/teacher/2010/05/29/making-mischief/</guid>
		<description><![CDATA[<p>My students and I been trying out Mouse Mischief in our lessons over the last couple of weeks. It’s great – I never knew PowerPoint could be so much fun!</p> <p>First things first: what is Mouse Mischief? It’s a free add in for PowerPoint 2007 or 2010 which allows you to connect multiple mice [...]]]></description>
			<content:encoded><![CDATA[<p>My students and I been trying out Mouse Mischief in our lessons over the last couple of weeks. It’s great – I never knew PowerPoint could be so much fun!</p>
<p>First things first: what is Mouse Mischief? It’s a free add in for PowerPoint 2007 or 2010 which allows you to connect multiple mice to one PC, rather like a voting system. My school already has a voting system that works with PowerPoint, so why have I been so totally won over by Mouse Mischief?</p>
<p><strong>1. It’s really easy to use.</strong> </p>
<p>Once the software has been downloaded from the <a href="www.microsoft.com/multipoint/mouse-mischief/">Mouse Mischief homepage</a> and installed, an extra tab appears in PowerPoint:</p>
<p> <center>
<p><a href="http://www.morethanmaths.com/teacher/wp-content/uploads/2010/05/multimousetab.png"><img title="multimousetab" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="141" alt="multimousetab" src="http://www.morethanmaths.com/teacher/wp-content/uploads/2010/05/multimousetab_thumb.png" width="448" border="0" /></a> </p>
<p> </center>
<p>The Multiple-Mouse tab is very easy to use, it’s simply a matter of clicking the buttons. Anyone who can use PowerPoint should be able to do this without any trouble at all, but you will find lots of advice and step-by-step instructions on Microsoft’s <a href="www.microsoft.com/multipoint/mouse-mischief/">Mouse Mischief site</a> – actually, the site is really helpful, I think they’ve done a really good job on this. </p>
<p>Making an interactive presentation is pretty intuitive: start by adding a new slide, then decide to leave it as a normal slide (which won’t show multiple mice – useful for learning objectives, teaching points etc), or make it interactive. Interactive slides can offer a choice of yes or no, or they can be multiple choice (with 2-10 answers) or even a drawing slide. Setting the correct answer on a multiple choice is mater of two clicks. I really like the fact that once I’ve assigned a correct answer I can see a big tick on the screen, so I’m unlikely to make a mistake (when I’m using the presentation with students, the green tick only appears once they have all answered).</p>
<p> <center>
<p><a href="http://www.morethanmaths.com/teacher/wp-content/uploads/2010/05/colourprisms.png"><img title="colour-prisms" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="155" alt="colour-prisms" src="http://www.morethanmaths.com/teacher/wp-content/uploads/2010/05/colourprisms_thumb.png" width="244" border="0" /></a> <a href="http://www.morethanmaths.com/teacher/wp-content/uploads/2010/05/volumecuboid.png"><img title="volume-cuboid" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="155" alt="volume-cuboid" src="http://www.morethanmaths.com/teacher/wp-content/uploads/2010/05/volumecuboid_thumb.png" width="244" border="0" /></a> <a href="http://www.morethanmaths.com/teacher/wp-content/uploads/2010/05/volumeanswered.png"><img title="volume-answered" style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="155" alt="volume-answered" src="http://www.morethanmaths.com/teacher/wp-content/uploads/2010/05/volumeanswered_thumb.png" width="244" border="0" /></a> </p>
<p> </center>
<p>Mouse Mischief also easy to use in the classroom, in fact it’s some of the little details that have really won me over:</p>
<ul>
<li>the teacher’s mouse/keyboard is always in control </li>
<li>the multiple mice only appear on the interactive slides </li>
<li>I can hide the students mice with a single key stroke (down arrow) and switch them back on once I’m ready – great if I want to build in some thinking time, or make sure that the students understand a key word or phrase before they answer </li>
<li>the students get one attempt at answering each question (unless the teacher refreshes the slide) </li>
<li>as soon as students have answered, their cursor disappears – this is such a nice, practical feature, I love it! </li>
<li>the students get feedback about which mouse was the first to select the correct answer, which really encourages them to join in promptly </li>
</ul>
<p><strong>2. It’s amazingly popular&#160; with students</strong></p>
<p>There’s a really cheesy video on the Mouse Mischief You Tube channel. Just take a look: students who are so bored that they’ve turned the film into a dull, old black and white movie are magically transformed into thrilled and enthused Technicolor learners. </p>
<p> <center>
<p><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/TrsCatpI62A&amp;hl=en_GB&amp;fs=1&amp;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/TrsCatpI62A&amp;hl=en_GB&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object></p>
<p> </center>
<p>“Pfft,&quot; I thought to myself. Then I had to do a little mental climb down as I watched my Y7 class undergo a similar transformation. They love it.</p>
<p><strong>3. It’s a really useful Assessment for Learning tool</strong></p>
<p>As soon as the last student has clicked an answer, the results appear: I can see how many opted for each choice and the students can see which choice was correct. One click hides this, so we can go back to the slide and discuss problems if we need to.</p>
<p><strong>4. It’s reliable</strong></p>
<p>Our current voting system has been a bit glitchy, especially since I upgraded to Office 2007. A frozen screen doesn’t help the lesson along. So far I’ve only used Mouse Mischief with seven mice, but it has behaved itself perfectly.</p>
<p><strong>5. It’s cheap</strong></p>
<p>The Mouse Mischief add-in is free. (I know PowerPoint isn’t free, but like many teachers, I already had that installed.) I purchased six cheap wireless mice (just £5 each). They aren’t great, but they’ve done the job. I already had a powered USB hub. Six mice is enough – I just divided my bigger classes into teams. Then I realised that I could plug in my wired mouse and give it to a team sitting at the front. That works well &#8211; even with a class of 32.</p>
<p>The number of mice is limited (about five for machines running Windows XP SP3, about 25 for Vista or Windows 7), but even 25(ish) good quality mice will be a lot cheaper than a voting system. My small set of mice will be heading to my new school with me in September, but I’m hoping to have persuaded my current school that it’s worth making a very modest investment in some hardware to allow even the least tech-minded teacher to create interactive lessons.</p>
<p><strong>OK, so what are the drawbacks?</strong></p>
<p>There aren’t many to be honest, but these are the main ones:</p>
<ol>
<li>Mouse Mischief doesn’t work with transitions or animations. This isn’t something I make&#160; lot of use of, but it would have been better to know that before I spent ages animating a set of cubes to show how to work out volume. </li>
<li>I’m not certain about the drawing slides. They could work really well, but the classes I’ve used this with have simply gone crazy with the mice and scribbled everywhere. </li>
<li>It’s not easy to tell which mouse belongs to which student. I’m thinking of taking some screenshots of the different cursors so that I can print and laminate them, then get students to collect the appropriate one and put it on their desk where I can see it. However, the classes that I’ve used this with have quickly got used to it and been pretty sensible with the mice, so I may not bother. </li>
<li>There isn’t any sort of record to show who got each question correct; something that is possible with our existing voting system. On the other hand, I use this data only rarely – and only when I’ve got a small enough class that they have one voting handset each. Easy solution &#8211; I can continue to use the voting system when I want the data, but I’ll use Mouse Mischief – which is easier to set up and more fun to use – if I don’t need the data at the end. </li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.morethanmaths.com/teacher/2010/05/29/making-mischief/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Is this the world&#8217;s cheapest interactive whiteboard?</title>
		<link>http://www.morethanmaths.com/teacher/2010/05/20/is-this-the-worlds-cheapest-interactive-whiteboard/</link>
		<comments>http://www.morethanmaths.com/teacher/2010/05/20/is-this-the-worlds-cheapest-interactive-whiteboard/#comments</comments>
		<pubDate>Thu, 20 May 2010 21:03:00 +0000</pubDate>
		<dc:creator>Lois Lindemann</dc:creator>
				<category><![CDATA[3. Teacherhacker]]></category>
		<category><![CDATA[classroom tools]]></category>

		<guid isPermaLink="false">http://www.morethanmaths.com/teacher/2010/05/20/is-this-the-worlds-cheapest-interactive-whiteboard/</guid>
		<description><![CDATA[<p></p> <p>How much is an interactive whiteboard? How about £5? In fact, for that price, you can have an easily portable interactive whiteboard. Interested?</p> <p>Actually, I’m cheating a little: I’m assuming that you already have a classroom with a projector and either a laptop or desktop computer (which is the case in almost every [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Cheesy Catand Mouse Pic by fozzeee" href="http://www.flickr.com/photos/fozzeee/4084880001/"><img style="float: left; margin: 0px 10px 10px 0px" height="240" alt="Cheesy Catand Mouse Pic" src="http://farm3.static.flickr.com/2432/4084880001_5c1061c837_m_d.jpg" width="194" /></a></p>
<p>How much is an interactive whiteboard? How about £5? In fact, for that price, you can have an easily portable interactive whiteboard. Interested?</p>
<p>Actually, I’m cheating a little: I’m assuming that you already have a classroom with a projector and either a laptop or desktop computer (which is the case in almost every classroom in my school). If you have, then you just need to add one cheap and cheerful wireless mouse. </p>
<p>I bought a few mice to try out Mouse Mischief (which is brilliant &#8211; I’ll post about that later), but then I realized that even one wireless mouse could be a pretty useful teaching tool that allows students to interact with any program. I just pass the wireless mouse to a student and they can use it to interact with whatever is on the board: that could be selecting answers; completing drag and drop tasks; playing educational games or doing anything else that the touch surface on an interactive whiteboard would allow.</p>
<p>I’ve tried this with several classes and it’s worked brilliantly—students pass the mouse to one another with less disruption than when they come out to the whiteboard. Since the students aren’t standing in front of the whiteboard there are no issues with shadows or other class members being unable to see. Some students who are extremely reluctant to come out to the board will happily use the mouse from their seat. </p>
<p>Only one student can use the mouse at a time – but since most interactive whiteboards can only be used by student at a time, that’s not really a great disadvantage.</p>
<p>As a teacher, I can easily take back control at any time—all I have to do is unplug the receiver for the wireless mouse.</p>
<p>I’m sure I’m not the first person to think of this—in fact I can’t believe this idea has only just occurred to me—but it’s been a really effective way to involve students. I’m sure I’ll be doing this a lot in future. In fact I have a strong suspicion that I may have rendered my very expensive SMARTboard redundant. Mind you, there are no SMARTboards at the school where I’m working from September. I’ll just take my £5 mouse.</p>
<p>&#160;</p>
<p><em>Photo: <a href="http://www.flickr.com/photos/fozzeee/4084880001/">Cheesy Catand Mouse Pic by fozzeee on Flickr</a>. Used under Creative Commons Licence.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.morethanmaths.com/teacher/2010/05/20/is-this-the-worlds-cheapest-interactive-whiteboard/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Using Rollover Images</title>
		<link>http://www.morethanmaths.com/teacher/2009/12/28/using-rollover-imags/</link>
		<comments>http://www.morethanmaths.com/teacher/2009/12/28/using-rollover-imags/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 09:00:47 +0000</pubDate>
		<dc:creator>Lois Lindemann</dc:creator>
				<category><![CDATA[1. Learning and Teaching]]></category>
		<category><![CDATA[3. Teacherhacker]]></category>
		<category><![CDATA[e-learning]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[rollover]]></category>

		<guid isPermaLink="false">http://www.morethanmaths.com/teacher/?p=418</guid>
		<description><![CDATA[<p>Yesterday I wrote about creating rollover images in WordPress. This is all very nice, but what&#8217;s the point?</p> 1. Engagement <p>Last term I sat with some students and asked them to show me things that they liked on various websites. There was no agreement whatsoever about preferred colour schemes, design styles or layouts, but [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I wrote about <a href="http://www.morethanmaths.com/teacher/2009/12/27/creating-rollover-images-in-wordpress/">creating rollover images in WordPress</a>. This is all very nice, but what&#8217;s the point?</p>
<h4>1. Engagement</h4>
<p>Last term I sat with some students and asked them to show me things that they liked on various websites. There was no agreement whatsoever about preferred colour schemes, design styles or layouts, but almost everyone liked games, videos and interactive content. I am reliably informed that buttons which change when the mouse is rolled over them are &#8216;cool&#8217;.</p>
<p>If a set of buttons with rollover effects will encourage students to access the site I&#8217;ve set up for them, then it&#8217;s worth doing. (Yes I know, it&#8217;ll take much more than that, but it&#8217;s still worth it.)</p>
<h4>2. Simple interactive content</h4>
<p>Once you&#8217;veset up the use of rollover effects for the first time, it makes it possible to put some simple interactive content into web pages or posts in a class blog. Here&#8217;s a few examples:</p>
<p><strong>Flashcards:</strong></p>
<div id="hoverlink">
<div align="center"><a><img style="margin: 0px 10px 10px 0px;" src="http://www.morethanmaths.com/teacher/sample-files/2009/12/cat.gif" border="0" alt="cat" width="250" height="120" /></a><a><img style="margin: 0px 10px 10px 0px;" src="http://www.morethanmaths.com/teacher/sample-files/2009/12/cow.gif" border="0" alt="cow" width="250" height="120" /></a></div>
</div>
<p>I&#8217;m going to ask Y10 to make some of these for the perimeter/area/volume formulae that they need to learn for their exam in January.</p>
<p><strong>Revision prompts:</strong></p>
<div align="center">Can you name the sides in this triangle?<br />
(Roll your mouse over the image to see the answer.)</div>
<div id="hoverlink">
<div align="center"><a><img style="margin: 0px 10px 10px 0px;" src="http://www.morethanmaths.com/teacher/sample-files/2009/12/triangle.gif" border="0" alt="Triangle" width="300" height="200" /></a></div>
</div>
<p><strong>Giving information or clues:</strong></p>
<div align="center">In a flowerpot in my garden I found 3 slugs, 2 spiders and 4 beetles.<br />
How many legs were there altogether in the flowerpot?</div>
<div id="hoverlink">
<div align="center">
<table id="AutoNumber2" style="border-collapse: collapse" border="0" cellspacing="0" cellpadding="0" width="27%" bordercolor="#111111">
<tbody>
<tr>
<td width="20%"><a><img src="http://old.morethanmaths.com/egg/Images/spider.gif" border="0" alt="Spider" width="72" height="79" /></a></td>
<td width="45%"><img src="http://old.morethanmaths.com/egg/Images/flowerpot.gif" border="0" alt="Flowerpot" width="188" height="161" /></td>
</tr>
<tr>
<td width="20%"></td>
<td width="45%">
<p align="right"><a><img src="http://old.morethanmaths.com/egg/Images/slug.gif" border="0" alt="Slug" width="116" height="50" /></a></p>
</td>
</tr>
<tr>
<td width="20%"></td>
<td width="45%"><a><img src="http://old.morethanmaths.com/egg/Images/beetle2.gif" border="0" alt="Beetle" width="66" height="53" /></a></td>
</tr>
</tbody>
</table>
</div>
</div>
<p>Any more suggestions?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.morethanmaths.com/teacher/2009/12/28/using-rollover-imags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Rollover Images in WordPress</title>
		<link>http://www.morethanmaths.com/teacher/2009/12/27/creating-rollover-images-in-wordpress/</link>
		<comments>http://www.morethanmaths.com/teacher/2009/12/27/creating-rollover-images-in-wordpress/#comments</comments>
		<pubDate>Sun, 27 Dec 2009 11:04:55 +0000</pubDate>
		<dc:creator>Lois Lindemann</dc:creator>
				<category><![CDATA[3. Teacherhacker]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[rollover]]></category>

		<guid isPermaLink="false">http://www.morethanmaths.com/teacher/?p=355</guid>
		<description><![CDATA[<p>My student website is long overdue for a major revamp. I decided to rebuild the site using WordPress, which is going well, but some of the things I want to do are not automatically built in, so I thought I&#8217;d try to write some very simple guides as I work out how to do [...]]]></description>
			<content:encoded><![CDATA[<p>My student website is long overdue for a major revamp. I decided to rebuild the site using WordPress, which is going well, but some of the things I want to do are not automatically built in, so I thought I&#8217;d try to write some <em>very</em> simple guides as I work out how to do things.</p>
<p>My students all seem to like rollover images, so I wanted to incorporate them. Here&#8217;s how I did it:</p>
<h4>You will need:</h4>
<p>- A self-hosted WordPress blog. This simply will not work for a blog that is hosted on <a href="http://wordpress.com/" target="_blank">WordPress.com</a>, because this process requires Javascript, which is <a href="http://en.support.wordpress.com/code/" target="_blank">not allowed on WordPress.com blogs</a>. (That&#8217;s one of the many reasons I opted to go for the self-hosted option.)<br />
- A folder somewhere on the web to hold your images.<br />
- A text editor, such as Notepad.</p>
<h4>Step One &#8211; Create some images</h4>
<p>You will need two images &#8211; the basic image that will appear at first and the image that will replace it when the user hovers their mouse over. Obviously these images should be the same size! I created <code>gifs</code>, but <code>pngs</code> will also work. You will need to stick to one format, don&#8217;t use a mixture of file types.</p>
<p>Your rollover image needs to have the same name as the basic image, but with an ending such as <code>_over</code> added at the end: e.g. <code>my-image.gif</code> and <code>my-image_over.gif</code></p>
<p>Once you have finished, upload your images to the web. You must save the two images in the same folder.</p>
<h4>Step Two &#8211; Create and upload a Javascript file</h4>
<p>Actually, no knowledge of Javascript is required here, because <a href="http://www.atlantajones.com/2007/09/27/easy-reusable-image-rollovers-with-jquery/" target="_blank">Atlanta Jones has created and shared a tutorial and a script that works perfectly</a>. If you have created <code>gif</code> files and used the <code>_over</code> ending on your file names, you can simply download and use this file: <a href="http://www.morethanmaths.com/teacher/sample-files/2009/12/rollover.js">rollover.js</a>. Alternatively you can copy and paste this script into a text editor (<strong>NOT</strong> MS Word &#8211; I used notepad) and save it as <code>rollover.js</code>:</p>
<blockquote>
<div class="code">
<pre>jQuery(function($) {
$(document).ready(function() {

		// Preload all rollovers
		$("#hoverlink img").each(function() {
			// Set the original src
			rollsrc = $(this).attr("src");
			rollON = rollsrc.replace(/.gif$/ig,"_over.gif");
			$("&lt;img&gt;").attr("src", rollON);
		});

		// Navigation rollovers
		$("#hoverlink a").mouseover(function(){
			imgsrc = $(this).children("img").attr("src");
			matches = imgsrc.match(/_over/);

			// don't do the rollover if state is already ON
			if (!matches) {
			imgsrcON = imgsrc.replace(/.gif$/ig,"_over.gif"); // strip off extension
			$(this).children("img").attr("src", imgsrcON);
			}

		});
		$("#hoverlink a").mouseout(function(){
			$(this).children("img").attr("src", imgsrc);
		});

	});
});</pre>
</div>
</blockquote>
<p>If you have changed filetypes or endings, you will need to edit the script with your text editor to change anything that says <code>.gif</code> to <code>.png</code>, or anything that says <code>_over</code> to match the ending you used on your file names.</p>
<p>The script tells WordPress to pre-load your rollover images and what to do when the mouse is rolled over and off. It is dependent on a tag called <code>hoverlink</code> (I made that name up, you can change it if you want). We&#8217;ll use this tag in step four.</p>
<p>Once you have your Javascript file, you need to upload it. It needs to go in the root folder for the theme that you are using in Wordress. You will end up with a file at <code>/wp-content/themes/whateveryourthemeiscalled/rollover.js</code></p>
<h4>Step Three &#8211; tell WordPress to use the file that you just created</h4>
<p>The good news is that WordPress comes bundled with JQuery, so all you have to do is tell it to use it. Even beter, <a href="http://www.frodesigns.com/2009/07/jquery-in-wordpress/" target="_blank">Brian at frodesigns.com has kindly shared the code</a> that is needed.</p>
<p>You will need to edit your <code>header.php</code> file, find this by clicking on <code>Appearance</code>, then <code>Editor</code>. First find the <code>&lt;head&gt;</code> tag. <strong>NB</strong> in some themes the the <code>&lt;head&gt;</code> tag may not look exactly like that, so you may need to look for something like this: <code>&lt;head with-some-extra-code-here&gt;</code>.<br />
Once you&#8217;ve found the <code>&lt;head&gt;</code> tag, copy and paste this code directly under it:</p>
<blockquote>
<div class="code">
<pre>    &lt;?php
       wp_enqueue_script('jquery');
       wp_enqueue_script('jquery-core-ui');
       wp_enqueue_script('jquery-tabs-ui');
       wp_enqueue_script('hoverlink', get_bloginfo('template_directory').'/rollover.js');
       wp_head();
    ?&gt;</pre>
</div>
</blockquote>
<p>You can see the penultimate line directs WordPress to the jQuery code for the image rollover effect that we are creating. It also refers to the <code>hoverlink</code> tag that we&#8217;ll use in the next step.</p>
<h4>Step Four &#8211; putting your images into a post or page</h4>
<p>Now you can actually put your images into a post or page. The last bit of technical trickery is to put your images inside a section tagged <code>"hoverlink"</code>. To do this, use the html editor to create your page or post, rather than the visual editor.</p>
<p>This is the code that I used to create the image at the end of this post:</p>
<blockquote><p><code><br />
<span style="color: #666666;">&lt;div id="hoverlink"&gt;<br />
&lt;a href="<span style="color: #0000ff;">http://www.morethanmaths.com/teacher</span><span style="color: #666666;">"&gt;&lt;img src="</span><span style="color: #0000ff;">http://www.morethanmaths.com/teacher/sample-files/2009/12/my-avatar.gif</span><span style="color: #666666;">" border="0" alt="<span style="color: #0000ff;">My Avatar</span><span style="color: #666666;">" width="</span><span style="color: #0000ff;">220</span><span style="color: #666666;">" height="</span><span style="color: #0000ff;">220</span><span style="color: #666666;">" /&gt;&lt;/a&gt;&lt;/div&gt;</span><br />
</span></span></code></p></blockquote>
<p>You can see that the code relating to the image is contained inside two tags: <code>&lt;div id="hoverlink"&gt;</code> and <code>&lt;/div&gt;</code>. Obviously you will need to change the highlighted sections to match your own choice of hyperlink, image location and size.</p>
<p>Want a rollover image that isn&#8217;t hyperlinked? No problem:</p>
<blockquote><p><code><br />
<span style="color: #666666;">&lt;div id="hoverlink"&gt;<br />
&lt;a&gt;&lt;img src="</span><span style="color: #0000ff;">http://www.morethanmaths.com/teacher/sample-files/2009/12/my-avatar.gif</span><span style="color: #666666;">" border="0" alt="<span style="color: #0000ff;">My Avatar</span><span style="color: #666666;">" width="</span><span style="color: #0000ff;">220</span><span style="color: #666666;">" height="</span><span style="color: #0000ff;">220</span><span style="color: #666666;">" /&gt;&lt;/a&gt;&lt;/div&gt;</span><br />
</span></code></p></blockquote>
<p>Want your rollover image in a sidebar? Add a text widget and put the code into that. WordPress will recognise the code and display the image with the rollover effect enabled.</p>
<h4>Here&#8217;s the finished product:</h4>
<div id="hoverlink"><a href="http://www.morethanmaths.com/teacher"><img src="http://www.morethanmaths.com/teacher/sample-files/2009/12/my-avatar.gif" border="0" alt="My Avatar" width="220" height="220" /></a></div>
<p>There&#8217;s also an example of a rollover image in the sidebar of this blog, try rolling your mouse over the juggler to see it action &#8211; it&#8217;s a fairly subtle effect this time.</p>
<p>I&#8217;m not a Javascript expert &#8211; in fact I know next to nothing &#8211; but I got this working with little more than copy and paste. I&#8217;ve tried this with WordPress 3.0, 2.9 and 2.8.6, using the Atahualpa and the Default themes. I tested the finished product in Firefox, Chrome and Internet Explorer. As far as I can tell, it&#8217;s working perfectly.</p>
<p>&nbsp;</p>
<p><strong>Update:</strong> <a href="http://www.morethanmaths.com/teacher/2009/12/27/creating-rollover-images-in-wordpress/comment-page-1/#comment-9900">Drew left a really useful comment</a> explaining how to get this to work if you are using a child theme:</p>
<p>&#8220;I was having a problem getting the rollovers to work. The problem was I am using a theme that is a CHILD theme of another (Graph Paper Press): the Parent theme (Modularity) is installed first and the Child theme (On Assignment) is then installed and activated. The .JS file needs to be uploaded to the PARENT theme (Modularity); it does not work if only uploaded to the in-use child theme.&#8221;</p>
<p>&nbsp;</p>
<p><strong>Update 2:</strong> I&#8217;ve done several theme upgrades without problems, but after a recent upgrade on one of my sites I found that I had to do some repair work. If the rollover effects stop working, it&#8217;s worth checking that the <code>rollover.js</code> script is still there and the code after the <code>&lt;head></code> tag is still there. Mine got deleted <img src='http://www.morethanmaths.com/teacher/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<p><strong>Update 3:</strong> John left a comment about getting this to work with tables and has shared his code. Thanks John! </p>
<p><code>&lt;div id="hoverlink"><br />
&lt;table><br />
	&lt;tr><br />
		&lt;td>&lt;a href="">&lt;img src="MY IMG URL" border="0" alt="My Avatar" width="150" height="220" />&lt;/a>&lt;/td><br />
		&lt;td>&lt;a href="">&lt;img src="MY IMG URL" border="0" alt="My Avatar" width="150" height="220" />&lt;/a>&lt;/td><br />
		&lt;td>&lt;a href="">&lt;img src="MY IMG URL" border="0" alt="My Avatar" width="150" height="220" />&lt;/a>&lt;/td><br />
	&lt;/tr><br />
	&lt;tr><br />
		&lt;td>&lt;a href="">&lt;img src="MY IMG URL" border="0" alt="My Avatar" width="150" height="220" />&lt;/a>&lt;/td><br />
		&lt;td>&lt;a href="">&lt;img src="MY IMG URL" border="0" alt="My Avatar" width="150" height="220" />&lt;/a>&lt;/td><br />
		&lt;td>&lt;a href="">&lt;img src="MY IMG URL" border="0" alt="My Avatar" width="150" height="220" />&lt;/a>&lt;/td><br />
	&lt;/tr><br />
&lt;/table><br />
&lt;/div></code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.morethanmaths.com/teacher/2009/12/27/creating-rollover-images-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>#movemeon &#8211; making sure I remember</title>
		<link>http://www.morethanmaths.com/teacher/2009/12/06/movemeon-making-sure-i-remember/</link>
		<comments>http://www.morethanmaths.com/teacher/2009/12/06/movemeon-making-sure-i-remember/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 12:15:50 +0000</pubDate>
		<dc:creator>Lois Lindemann</dc:creator>
				<category><![CDATA[3. Teacherhacker]]></category>
		<category><![CDATA[hints and tips]]></category>
		<category><![CDATA[#movemeon]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.morethanmaths.com/teacher/?p=331</guid>
		<description><![CDATA[<p>I am absolutely brilliant at forgetting things. I specialise in it. As a child I had a fantastic memory, but I suspect that these days I simply deal with far too much information to hold it all in my head. Consequently I make a lot of lists!</p> <p>Recently Doug Belshaw set the ball rolling [...]]]></description>
			<content:encoded><![CDATA[<p>I am absolutely brilliant at forgetting things. I specialise in it. As a child I had a fantastic memory, but I suspect that these days I simply deal with far too much information to hold it all in my head. Consequently I make a lot of lists!</p>
<p>Recently <a href="http://dougbelshaw.com/blog/2009/11/19/movemeon-a-suggestion/">Doug Belshaw set the ball rolling</a> for a collaborative effort by educators to share hints and tips using <a href="http://www.twitter.com/">Twitter</a> and the #movemeon <a href="http://www.techforluddites.com/2009/02/the-twitter-hash-tag-what-is-it-and-how-do-you-use-it.html">hashtag</a>. The result is <a href="http://twapperkeeper.com/movemeon/?limit=1000">an amazing collection of ideas</a>: some familiar, some new. There were lots of ideas that made me think,  <em>&#8216;I&#8217;ve got to try that&#8217;</em>, or<em> &#8216;I used to do that &#8211; why did I stop?&#8217;</em></p>
<p>But as I said, I forget stuff &#8211; and just because something is a great idea, it doesn&#8217;t necessarily mean that it will stick in my cluttered memory. So I&#8217;ve created some reminders, in the form of a set of header images which appear here and on my planner.  (Of course, if you&#8217;re reading this on a feed you won&#8217;t have seen the header image, in which case you might like to click through and take a look.)</p>
<p>The header images combine <a href="http://www.blog.spoongraphics.co.uk/freebies/8-free-cute-and-simple-twitter-bird-vector-graphics">Chris Spooner&#8217;s bird graphics</a> with a selection of <a href="http://twapperkeeper.com/movemeon/?limit=1000">tweets from the #movemeon collaboration</a>. So far there are 10 (and counting) great ideas that I&#8217;ll see on a regular basis. Let&#8217;s see how many of them I put into action.</p>
<p>If you would like copies of these images, feel free to help yourself:</p>
<p><a href="http://dl.dropbox.com/u/588647/movemeon-gif.zip">Set of 10 in gif format [zipped folder]</a><br />
The same <a href="http://dl.dropbox.com/u/588647/movemeon-png.zip">set of 10 in png format [zipped folder]</a> &#8211; larger files, but more easily edited</p>
]]></content:encoded>
			<wfw:commentRss>http://www.morethanmaths.com/teacher/2009/12/06/movemeon-making-sure-i-remember/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Impermanent</title>
		<link>http://www.morethanmaths.com/teacher/2009/11/18/impermanent/</link>
		<comments>http://www.morethanmaths.com/teacher/2009/11/18/impermanent/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 20:47:42 +0000</pubDate>
		<dc:creator>Lois Lindemann</dc:creator>
				<category><![CDATA[3. Teacherhacker]]></category>
		<category><![CDATA[hints and tips]]></category>
		<category><![CDATA[board markers]]></category>
		<category><![CDATA[whiteboard]]></category>

		<guid isPermaLink="false">http://morethanmaths.wordpress.com/?p=252</guid>
		<description><![CDATA[<p>A few weeks ago I came across instructions about how to get rid of permanent marker from your whiteboard. (Scribble all over it straight away with the dry wipe marker that you *should* have used, then wipe it off.)</p> <p>Pffft, I thought. Who writes on their whiteboard with permanent marker?</p> <p>That would be me [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks ago I came across instructions about how to get rid of permanent marker from your whiteboard. (Scribble all over it straight away with the dry wipe marker that you *should* have used, then wipe it off.)</p>
<p>Pffft, I thought. Who writes on their whiteboard with permanent marker?</p>
<p>That would be me apparently. Even after noticing how similar looking Sharpies and our new board pens are. And after making a mental note not to get them muddled up. Oops.</p>
<p>Anyway, the cleaning method works very nicely.</p>
<p>Phew.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.morethanmaths.com/teacher/2009/11/18/impermanent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

