<?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>battis.net &#187; Educational Technology</title>
	<atom:link href="http://battis.net/category/teaching/educational-technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://battis.net</link>
	<description>...and I&#039;m all out of bubble gum.</description>
	<lastBuildDate>Sun, 08 Aug 2010 12:00:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>GeekTool/AppleScript Display of Desktop Picture Info</title>
		<link>http://battis.net/2010/06/04/geektoolapplescript-display-of-desktop-picture-info/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=geektoolapplescript-display-of-desktop-picture-info</link>
		<comments>http://battis.net/2010/06/04/geektoolapplescript-display-of-desktop-picture-info/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 17:34:21 +0000</pubDate>
		<dc:creator>Seth Battis</dc:creator>
				<category><![CDATA[Educational Technology]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[Bwana]]></category>
		<category><![CDATA[CLI (Command Line Interface)]]></category>
		<category><![CDATA[defaults]]></category>
		<category><![CDATA[GeekTool]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[mdls]]></category>
		<category><![CDATA[metadata]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[Snow Leopard (Mac OS X 10.6)]]></category>
		<category><![CDATA[Spotlight]]></category>
		<category><![CDATA[xargs]]></category>

		<guid isPermaLink="false">http://battis.net/?p=583</guid>
		<description><![CDATA[So&#8230; I am the world&#8217;s biggest dork. I don&#8217;t dispute it. And when I get stressed out, my inner librarian comes out, and comes out big. I have a large folder of desktop wallpaper that I rotate through with some regularity (every five minutes or so). They all come from the web. And I project

<hr/><h6>Related posts</h6><ol><li><a href='http://battis.net/2008/10/25/synergy-on-os-x/' rel='bookmark' title='Permanent Link: Synergy on OS X'>Synergy on OS X</a></li>
<li><a href='http://battis.net/2010/02/14/flickr-filename-to-url-converter/' rel='bookmark' title='Permanent Link: Flickr Filename to URL Converter'>Flickr Filename to URL Converter</a></li>
<li><a href='http://battis.net/2009/11/22/convert-word-processing-files-to-pdf/' rel='bookmark' title='Permanent Link: Convert Word Processing Files to PDF'>Convert Word Processing Files to PDF</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>So&#8230; I am the world&#8217;s biggest dork. I don&#8217;t dispute it. And when I get stressed out, <a href="http://www.imdb.com/title/tt0412915/">my inner librarian</a> comes out, and comes out big.</p>
<p>I have a large folder of desktop wallpaper that I rotate through with some regularity (every five minutes or so). They all come from <a href="http://pipes.yahoo.com/pipes/pipe.info?_id=qHIQTNfJ2xGjjxOmjwtvUw">the web</a>. And I project my desktop with some regularity. Which means that I get asked about where my desktop photo comes from pretty often (a few times a week). And I teach about media literacy, intellectual property and citation. Which means that I want to give credit where credit is due.</p>
<p>A few years ago, I started actually adding the URL of the page that I had downloaded an image from as its Finder Get Info comment. And then, in one of the Leopards, Apple started including this metadata in the Spotlight database for all downloaded files, too. Which means that, if I know the name of the image on the desktop right now, I can look up the URL that I got it from. That&#8217;s a big if.</p>
<p>I spent a little while last night tinkering, and came up with the following command that gets me the name of the currently displayed desktop wallpaper:</p>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">defaults read ~/Library/Preferences/com.apple.desktop | grep 'LastName' | tail -n 1 | grep '[^&quot;]*\.[^&quot;]*' -o</pre></div></div>

<p>This extracts the final <em>LastName</em> entry out of the com.apple.desktop.plist file and pulls just the file name out of it. Then, because I knew that I actually want the URL that I stored in the Get Info comments field, I extended this to the following:</p>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">cd ~/Pictures/Wallpapers/Single\ Display/; defaults read ~/Library/Preferences/com.apple.desktop | grep 'LastName' | tail -n 1 | grep '[^&quot;]*\.[^&quot;]*' -o | xargs mdls -name kMDItemFinderComment | grep 'http[^&quot;]*' -oi</pre></div></div>

<p>You&#8217;ll note that I assumed that all my wallpaper comes from a specific folder (~/Pictures/Wallpapers/Single Display/) &#8212; but this information could also be extracted from com.apple.desktop.plist (run the defaults command without the grepping to see what I mean &#8212; look for <em>ChangePath</em>). The big breakthrough for me was realizing that I needed to use <code>xargs</code> to extract meaning from the result of my grepping, which was presented to <code>mdls</code> with a newline at the end &#8212; <code>xargs</code> then runs <code>mdls</code> on all of the one lines of resulting output.</p>
<p>In the end, I presented the output of each of those shell scripts as overlays on my desktop (using GeekTool) and I wrapped all of this into a little AppleScript that opens the web page from whence my desktop image comes:</p>

<div class="wp_syntax"><div class="code"><pre class="applescript" style="font-family:monospace;"><span style="color: #0066ff;">do shell script</span> <span style="color: #009900;">&quot;cd ~/Pictures/Wallpapers/Single<span style="color: #000000; font-weight: bold;">\\</span> Display/; defaults read ~/Library/Preferences/com.apple.desktop | grep 'LastName' | tail -n 1 | grep '[^<span style="color: #000000; font-weight: bold;">\&quot;</span>]*<span style="color: #000000; font-weight: bold;">\\</span>.[^<span style="color: #000000; font-weight: bold;">\&quot;</span>]*' -o | xargs mdls -name kMDItemFinderComment | grep 'http[^<span style="color: #000000; font-weight: bold;">\&quot;</span>]*' -oi | xargs open&quot;</span></pre></div></div>

<p>The real addition is that I use the xargs to pass the URL to open, which opens the URL in the default browser.</p>
<p>In all of this, it is worth noting that <a href="http://www.bruji.com/bwana/">Bwana</a> has been enormously useful. As was <a href="http://macdevcenter.com/pub/a/mac/2006/01/04/mdfind.html?page=1">this article from O&#8217;Reilly</a> on using Spotlight from the command line and <a href="http://www.cocoadev.com/index.pl?WorkingWithUserDefaults">this page on the defaults command</a>.</p>


<hr/><h6>Related posts</h6><ol><li><a href='http://battis.net/2008/10/25/synergy-on-os-x/' rel='bookmark' title='Permanent Link: Synergy on OS X'>Synergy on OS X</a></li>
<li><a href='http://battis.net/2010/02/14/flickr-filename-to-url-converter/' rel='bookmark' title='Permanent Link: Flickr Filename to URL Converter'>Flickr Filename to URL Converter</a></li>
<li><a href='http://battis.net/2009/11/22/convert-word-processing-files-to-pdf/' rel='bookmark' title='Permanent Link: Convert Word Processing Files to PDF'>Convert Word Processing Files to PDF</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://battis.net/2010/06/04/geektoolapplescript-display-of-desktop-picture-info/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free-style Online Learning</title>
		<link>http://battis.net/2010/05/13/free-style-online-learning/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=free-style-online-learning</link>
		<comments>http://battis.net/2010/05/13/free-style-online-learning/#comments</comments>
		<pubDate>Thu, 13 May 2010 15:29:58 +0000</pubDate>
		<dc:creator>Seth Battis</dc:creator>
				<category><![CDATA["Tech Tips" Column]]></category>
		<category><![CDATA[lecture]]></category>
		<category><![CDATA[Merlin Mann]]></category>
		<category><![CDATA[pedagogy]]></category>
		<category><![CDATA[resource]]></category>
		<category><![CDATA[Williams College]]></category>

		<guid isPermaLink="false">http://battis.net/?p=575</guid>
		<description><![CDATA[One of my responsibilities at Jewish Day School is to write a weekly &#8220;tech tips&#8221; column for the online faculty news. This is one such tip. Even as the end-of-year to-do lists are approaching critical overload, I find that one of the joys of the spring is the contemplation of what I will be working

<hr/><h6>Related posts</h6><ol><li><a href='http://battis.net/2010/02/12/iteach-reenforcing-hands-on-learning-with-video/' rel='bookmark' title='Permanent Link: iTeach: Reenforcing Hands-On Learning with Video'>iTeach: Reenforcing Hands-On Learning with Video</a></li>
<li><a href='http://battis.net/2007/12/28/learning-geography-by-getting-lost/' rel='bookmark' title='Permanent Link: Learning Geography by Getting Lost'>Learning Geography by Getting Lost</a></li>
<li><a href='http://battis.net/2008/03/13/project-fatigue/' rel='bookmark' title='Permanent Link: Project Fatigue'>Project Fatigue</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><em>One of my responsibilities at Jewish Day School is to write a weekly <a href="http://battis.net/category/teaching/educational-technology/tech-tips/">&#8220;tech tips&#8221; column</a></em><em> for the online faculty news. This is one such tip.</em></p>
<p>Even as the end-of-year to-do lists are approaching critical overload, I find that one of the joys of the spring is the contemplation of what I will be working on next year. Not so much in a &#8220;next year I&#8217;ll do this <em>all</em> differently&#8221; kind of snit, but with more of a &#8220;year in review&#8221; focus: spring and graduation makes me sentimental and reminiscent.</p>
<p>With that in mind, in the past week I have come across two interesting resources both for teaching in general and for thinking about our work as &#8220;knowledge workers&#8221; in the 21st century (to infinity and beyond!). First, Merlin Mann discusses how we do (or do not) allocate our time and attention to getting our projects done. Thoughtful, provocative and entertaining stuff. Second, Williams College&#8217;s <a href="http://pet.williams.edu/"><span style="text-decoration: none;">Project for Effective Teaching</span></a> has gone online with a truly exciting, provocative array of professorial reflections and questions around specific aspects of classrooms and teaching and learning. Enjoy!</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/QwRrpCWTiOY&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/QwRrpCWTiOY&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a href="http://pet.williams.edu/"><img class="size-medium wp-image-576 alignnone" title="Project for Effective Teaching" src="http://battis.net/blog/wp-content/uploads/2010/05/Project-for-Effective-Teaching-300x253.png" alt="" width="300" height="253" /></a></p>
<p>How, you might ask, do videos like these fall into my hands? I follow-up on the sources of interesting articles that I see. And then on the sources of those sources: I like to find where the ideas are swimming around raw and unfettered. I do this by following <a href="https://www.google.com/reader/bundle/user%2F07011335451660152632%2Fbundle%2FBlogs%20on%20Education">a boat-load of interesting &#8220;edu-bloggers&#8221;</a>, by following (and engaging with) <a href="http://twitter.com/TeachPaperless/educationpln">other teachers on Twitter</a>, and by doing <em>a lot</em> of <a href="https://www.google.com/reader/shared/user%2F07011335451660152632%2Flabel%2Ffor%20academic%20computing">skimming</a>.</p>


<hr/><h6>Related posts</h6><ol><li><a href='http://battis.net/2010/02/12/iteach-reenforcing-hands-on-learning-with-video/' rel='bookmark' title='Permanent Link: iTeach: Reenforcing Hands-On Learning with Video'>iTeach: Reenforcing Hands-On Learning with Video</a></li>
<li><a href='http://battis.net/2007/12/28/learning-geography-by-getting-lost/' rel='bookmark' title='Permanent Link: Learning Geography by Getting Lost'>Learning Geography by Getting Lost</a></li>
<li><a href='http://battis.net/2008/03/13/project-fatigue/' rel='bookmark' title='Permanent Link: Project Fatigue'>Project Fatigue</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://battis.net/2010/05/13/free-style-online-learning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerPoint makes us D-U-M-Dumb</title>
		<link>http://battis.net/2010/05/06/powerpoint-makes-us-d-u-m-dumb/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=powerpoint-makes-us-d-u-m-dumb</link>
		<comments>http://battis.net/2010/05/06/powerpoint-makes-us-d-u-m-dumb/#comments</comments>
		<pubDate>Thu, 06 May 2010 23:19:47 +0000</pubDate>
		<dc:creator>Seth Battis</dc:creator>
				<category><![CDATA["Tech Tips" Column]]></category>
		<category><![CDATA[Afghanistan]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[Edward Tufte]]></category>
		<category><![CDATA[Merlin Mann]]></category>
		<category><![CDATA[Microsoft PowerPoint]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[public speaking]]></category>
		<category><![CDATA[Stanley McChrystal]]></category>

		<guid isPermaLink="false">http://battis.net/?p=562</guid>
		<description><![CDATA[One of my responsibilities at Jewish Day School is to write a weekly &#8220;tech tips&#8221; column for the online faculty news. This is one such tip. As we head down the homestretch of May and June, more and more students (and teachers) are experiencing siyyum for their coursework, either as final papers or presentations or

<hr/><h6>Related posts</h6><ol><li><a href='http://battis.net/2010/05/06/powerpoint-tips/' rel='bookmark' title='Permanent Link: PowerPoint Tips'>PowerPoint Tips</a></li>
<li><a href='http://battis.net/2009/09/24/fixing-powerpoint-2008-exports/' rel='bookmark' title='Permanent Link: Fixing PowerPoint 2008 Web Exports'>Fixing PowerPoint 2008 Web Exports</a></li>
<li><a href='http://battis.net/2009/12/10/the-lazyweb-is-failing-me/' rel='bookmark' title='Permanent Link: The #lazyweb is failing me&#8230;'>The #lazyweb is failing me&#8230;</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><em>One of my responsibilities at Jewish Day School is to write a weekly <a href="http://battis.net/category/teaching/educational-technology/tech-tips/">&#8220;tech tips&#8221; column</a></em><em> for the online faculty news. This is one such tip.</em></p>
<p>As we head down the homestretch of May and June, more and more students (and teachers) are experiencing siyyum for their coursework, either as final papers or presentations or projects. Projects and papers are delightfully straight-forward and easy to facilitate and grade&#8230; at least, when compared to presentations, which have the added benefit of being a potential exercise in goodwill and patience to sit through.</p>
<p>The first hurdle our students have to get over is the technology itself &#8212; bringing together all the disparate elements of their presentation into one place and time. A few years ago, I wrote up <a href="http://battis.net/2010/05/06/powerpoint-tips/">a cheat sheet of tips</a> that help to avoid the most common student pitfalls. I have not run into technical problems with student PowerPoints since I started giving them this handout (I kid you not).</p>
<p>In general, a good presentation has to nail not just the content and technology, but also visuals and public speaking. And this is the hardest thing to do right. For adults, even. Experts have started to decry PowerPoint as not just problematic, but actively destructive when it comes to communicating information and especially nuance clearly.</p>
<blockquote><p>Gen. Stanley A. McChrystal, the leader of American and NATO forces in Afghanistan, was shown a PowerPoint slide in Kabul last summer that was meant to portray the complexity of American military strategy, but looked more like a bowl of spaghetti.</p>
<p>&#8220;When we understand that slide, we&#8217;ll have won the war,&#8221; General McChrystal dryly remarked, one of his advisers recalled, as the room erupted in laughter.</p>
<p style="text-align: right;"><a href="http://www.nytimes.com/2010/04/27/world/27powerpoint.html?no_interstitial">New York Times, April 26, 2010</a></p>
</blockquote>
<p>Shifting the focus from a PowerPoint document to the holistic presentation will further the student&#8217;s ability to communicate complex ideas &#8212; a key skill in today&#8217;s (or any day&#8217;s) world. Some further reading that is both informative and motivational on that front:</p>
<ul>
<li><a href="http://www.merlinmann.com"></a>Merlin Mann talks about <a href="http://www.43folders.com/2007/08/23/better-presentations">&#8220;How [he] made his presentations a little better&#8221;</a> (know this: he was pretty good to begin with)</li>
<li><a href="http://www.businessweek.com"></a>Business Week breaks down how to <a href="http://www.businessweek.com/smallbiz/content/jan2008/sb20080125_269732.htm">&#8220;Deliver a presentation like Steve Jobs&#8221;</a> (the inimitable CEO of Apple)</li>
<li><a href="http://www.edwardtufte.com/tufte/index">Edward Tufte</a> (the master of information presentation &#8212; and notorious PowerPoint-hater) examines <a href="http://www.edwardtufte.com/bboard/q-and-a-fetch-msg?msg_id=0001yB&amp;topic_id=1">how to get the absolute most out of PowerPoint (or not)</a></li>
</ul>


<hr/><h6>Related posts</h6><ol><li><a href='http://battis.net/2010/05/06/powerpoint-tips/' rel='bookmark' title='Permanent Link: PowerPoint Tips'>PowerPoint Tips</a></li>
<li><a href='http://battis.net/2009/09/24/fixing-powerpoint-2008-exports/' rel='bookmark' title='Permanent Link: Fixing PowerPoint 2008 Web Exports'>Fixing PowerPoint 2008 Web Exports</a></li>
<li><a href='http://battis.net/2009/12/10/the-lazyweb-is-failing-me/' rel='bookmark' title='Permanent Link: The #lazyweb is failing me&#8230;'>The #lazyweb is failing me&#8230;</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://battis.net/2010/05/06/powerpoint-makes-us-d-u-m-dumb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerPoint Tips</title>
		<link>http://battis.net/2010/05/06/powerpoint-tips/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=powerpoint-tips</link>
		<comments>http://battis.net/2010/05/06/powerpoint-tips/#comments</comments>
		<pubDate>Thu, 06 May 2010 23:18:47 +0000</pubDate>
		<dc:creator>Seth Battis</dc:creator>
				<category><![CDATA["Tech Tips" Column]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[Microsoft PowerPoint]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[troubleshoot]]></category>

		<guid isPermaLink="false">http://battis.net/?p=565</guid>
		<description><![CDATA[One of my responsibilities at Jewish Day School is to write a weekly &#8220;tech tips&#8221; column for the online faculty news. This is one such tip. Making Things Run Smoothly Make sure that you always insert pictures into your presentation using the Insert Picture command from the Insert menu. Do not copy and paste pictures

<hr/><h6>Related posts</h6><ol><li><a href='http://battis.net/2010/05/06/powerpoint-makes-us-d-u-m-dumb/' rel='bookmark' title='Permanent Link: PowerPoint makes us D-U-M-Dumb'>PowerPoint makes us D-U-M-Dumb</a></li>
<li><a href='http://battis.net/2009/09/24/fixing-powerpoint-2008-exports/' rel='bookmark' title='Permanent Link: Fixing PowerPoint 2008 Web Exports'>Fixing PowerPoint 2008 Web Exports</a></li>
<li><a href='http://battis.net/2009/12/10/the-lazyweb-is-failing-me/' rel='bookmark' title='Permanent Link: The #lazyweb is failing me&#8230;'>The #lazyweb is failing me&#8230;</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><em>One of my responsibilities at Jewish Day School is to write a weekly <a href="http://battis.net/category/teaching/educational-technology/tech-tips/">&#8220;tech tips&#8221; column</a></em><em> for the online faculty news. This is one such tip.</em></p>
<h4><span style="font-weight: normal;">Making Things Run Smoothly</span></h4>
<ul>
<li><strong>Make sure that you always insert pictures into your presentation using the Insert Picture command from the Insert menu.</strong> Do not copy and paste pictures into your presentation. For arcane reasons, copy and pasting pictures can make your PowerPoint fail to display your pictures on other computers.</li>
<li><strong>Keep a folder of all of the pictures and video that you add to your PowerPoint.</strong> Just in case you need to re-insert it (for example, if you messed up on following the tip above).</li>
<li><strong>Video is not embedded in PowerPoint, pictures are – share Zip files.</strong> That is, you can insert pictures into a PowerPoint presentation and send the presentation to someone else and they can see the pictures but you cannot insert video, send the presentation to someone else, and expect them to see the video. PowerPoint creates a link to the video instead. To get around this, if you are going to use video, put your presentation and your video files in a folder together, then insert the video. When you are ready to share your presentation, right-click on the folder and Send To &gt; Compress or Zip Archive and send out the Zip file instead. Your recipient can unzip the archive and will have the presentation and the video.</li>
</ul>
<h4><span style="font-weight: normal;">Making Things Look Pretty</span></h4>
<ul>
<li><strong>Black text on a white background</strong> is not traditional by accident. It’s easy to read. Think carefully before trying a novel color combination.</li>
<li><strong>One picture per slide</strong> lets you show the picture big, in all its glory. Multiple pictures per slide lets you compare pictures. Think about which it is you want to be doing (and remember that postage stamps are hard to see!).</li>
<li>Don’t stretch your pictures. You can scale your pictures proportionately by holding down the Shift key when you drag the grab boxes on the corners of the picture. This will make sure that the picture doesn’t get distorted.</li>
<li><strong>Use text judiciously.</strong> This one is complicated: you don’t want to have too much text on a slide because it will get small and hard to read. You don’t want to put your script on the slide, because then you’ll be reading from the slide, which is deathly dull (unless, maybe, you’re Morgan Freeman). But you do want to present text that will support your arguments and highlight important ideas. And you do want to present quotations that are illuminating. One rule of thumb is the “six by six” rule: no more than six words per bullet point, no more than six bullet points per slide. This is totally artificial and you should violate it as needed&#8230; but remember it and what it is really urging: don’t overwhelm your audience with text!</li>
<li><strong>Less is more.</strong> This is true of almost everything involved in PowerPoint, but particularly when it comes to animation and sound effects. They have a campy appeal, and can sometimes underscore a point you’re trying to make. But you ain’t Spielberg and PowerPoint ain’t ILM, so don’t go trying to put in gratuitous special effects just to make your PowerPoint more appealing. Your research and ideas should be the focus, not your ability to make car crash sound effects.</li>
</ul>


<hr/><h6>Related posts</h6><ol><li><a href='http://battis.net/2010/05/06/powerpoint-makes-us-d-u-m-dumb/' rel='bookmark' title='Permanent Link: PowerPoint makes us D-U-M-Dumb'>PowerPoint makes us D-U-M-Dumb</a></li>
<li><a href='http://battis.net/2009/09/24/fixing-powerpoint-2008-exports/' rel='bookmark' title='Permanent Link: Fixing PowerPoint 2008 Web Exports'>Fixing PowerPoint 2008 Web Exports</a></li>
<li><a href='http://battis.net/2009/12/10/the-lazyweb-is-failing-me/' rel='bookmark' title='Permanent Link: The #lazyweb is failing me&#8230;'>The #lazyweb is failing me&#8230;</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://battis.net/2010/05/06/powerpoint-tips/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Category Shortcode</title>
		<link>http://battis.net/2010/04/23/category-shortcode/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=category-shortcode</link>
		<comments>http://battis.net/2010/04/23/category-shortcode/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 15:22:15 +0000</pubDate>
		<dc:creator>Seth Battis</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[Category Shortcode]]></category>
		<category><![CDATA[Category Shortcode 1.0]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[shortcode]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://battis.net/?p=544</guid>
		<description><![CDATA[I just slapped together a very quick plugin for a teacher&#8217;s blog that adds a [category] shortcode to WordPress. Basically, it just passes through all of the attributes of the shortcode as parameters to wp_list_categories(), allowing the user to embed a list of blog categories in any page, post or widget. This feels like something

<hr/><h6>Related posts</h6><ol><li><a href='http://battis.net/2010/05/18/wordpress-%c2%b5-testing-setup/' rel='bookmark' title='Permanent Link: WordPress µ Testing Setup'>WordPress µ Testing Setup</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I just slapped together a very quick plugin for a teacher&#8217;s blog that adds a [category] shortcode to WordPress. Basically, it just passes through all of the attributes of the shortcode as parameters to <a href="http://codex.wordpress.org/Template_Tags/wp_list_categories">wp_list_categories()</a>, allowing the user to embed a list of blog categories in any page, post or widget. This feels like something that should already exist (but I couldn&#8217;t find it).</p>
<p><a href="http://battis.net/blog/wp-content/uploads/2010/04/category_shortcode.php_.zip">category_shortcode.php</a></p>


<hr/><h6>Related posts</h6><ol><li><a href='http://battis.net/2010/05/18/wordpress-%c2%b5-testing-setup/' rel='bookmark' title='Permanent Link: WordPress µ Testing Setup'>WordPress µ Testing Setup</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://battis.net/2010/04/23/category-shortcode/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Feed Me!</title>
		<link>http://battis.net/2010/04/22/feed-me/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=feed-me</link>
		<comments>http://battis.net/2010/04/22/feed-me/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 18:27:09 +0000</pubDate>
		<dc:creator>Seth Battis</dc:creator>
				<category><![CDATA["Tech Tips" Column]]></category>
		<category><![CDATA[Bizarro]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Common Craft]]></category>
		<category><![CDATA[Dave Barry]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[Google Reader]]></category>
		<category><![CDATA[iGoogle]]></category>
		<category><![CDATA[RSS (Really Simple Syndication)]]></category>
		<category><![CDATA[subscribe]]></category>
		<category><![CDATA[syndicate]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://battis.net/?p=536</guid>
		<description><![CDATA[One of my responsibilities at Jewish Day School is to write a weekly &#8220;tech tips&#8221; column for the online faculty news. This is one such tip. One of the oft-touted features of social media, blogs, and news sites is RSS feeds. The phrase &#8220;subscribe to my feed for updates&#8221; probably connotes some twenty-something layabout in

<hr/><h6>Related posts</h6><ol><li><a href='http://battis.net/2010/05/18/creating-rss-feeds-in-firstclass/' rel='bookmark' title='Permanent Link: Creating RSS Feeds in FirstClass'>Creating RSS Feeds in FirstClass</a></li>
<li><a href='http://battis.net/2009/08/31/the-internet-tubes-and-yahoo-pipes/' rel='bookmark' title='Permanent Link: The Internet Tubes (and Yahoo Pipes)'>The Internet Tubes (and Yahoo Pipes)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><em>One of my responsibilities at Jewish Day School is to write a weekly <a href="http://battis.net/category/teaching/educational-technology/tech-tips/">&#8220;tech tips&#8221; column</a></em><em> for the online faculty news. This is one such tip.</em></p>
<p><em></em>One of the oft-touted features of social media, blogs, and news sites is RSS feeds. The phrase &#8220;subscribe to my feed for updates&#8221; probably connotes some twenty-something layabout in a coffee shop, but, in fact, RSS feeds are enormously useful to grown-ups (like thee and me) for managing large (vast, huge) amounts of information.</p>
<p>First, RSS stands for <strong>R</strong>eally <strong>S</strong>imple <strong>S</strong>yndication. In this case, we&#8217;re using syndication in the same sense as a newspaper syndicate (not a crime syndicate &#8212; there&#8217;s <a href="http://www.limewire.com/">different software</a> for that): suppose <a href="http://www.miamiherald.com/dave_barry/">Dave Barry writes for the Miami Herald</a> and the <a href="http://www.kingfeatures.com/features/comics/bizarro/about.htm">San Francisco Chronicle carries the Bizarro cartoon</a>. How is it that we open the LA Times and see both of these in our paper? The newspaper syndicates distribute all of the updates to Dave Barry&#8217;s column and Bizarro just prior to the newspaper going to press each night.</p>
<p>RSS, really simple syndication, is a newspaper syndicate for the rest of us: we can subscribe to the RSS feeds on web sites for updates from that web site, and use a feed reader (<a href="http://www.google.com/reader/">Google Reader</a>, <a href="http://www.newsgator.com/individuals/netnewswire/">Newsgator</a>, <a href="http://bloglines.com">Bloglines</a>, <a href="http://www.google.com/ig">iGoogle</a>, etc.) to present all of these updated feeds to us in one place. Common Craft has a short (brisk, even) video explaining this:</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/0klgLsSxGsU&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/0klgLsSxGsU&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>All of the blogs on our school blog server have RSS feeds. In fact, you can subscribe to updates from a particular category on a blog, or to updated comments on a particular post on a blog, if you want. Major newspapers provide lists of RSS feeds for their articles.</p>
<p>As a voracious newshound myself (I used to read two, three and sometimes four newspapers in a morning), I&#8217;m finding that &#8212; with RSS feeds &#8212; I no longer even open a physical paper. Instead, <a href="http://battis.net/link/AcademicComputingFeed">all of my information</a> comes through Google Reader subscriptions to blog and newspaper feeds. About 5,000 updates a week.</p>
<p>For more plain English explanations of web technology, check out <a href="http://www.youtube.com/profile?user=leelefever">Common Craft&#8217;s YouTube channel</a>.</p>


<hr/><h6>Related posts</h6><ol><li><a href='http://battis.net/2010/05/18/creating-rss-feeds-in-firstclass/' rel='bookmark' title='Permanent Link: Creating RSS Feeds in FirstClass'>Creating RSS Feeds in FirstClass</a></li>
<li><a href='http://battis.net/2009/08/31/the-internet-tubes-and-yahoo-pipes/' rel='bookmark' title='Permanent Link: The Internet Tubes (and Yahoo Pipes)'>The Internet Tubes (and Yahoo Pipes)</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://battis.net/2010/04/22/feed-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Whining to Protect My Copyright</title>
		<link>http://battis.net/2010/04/16/whining-to-protect-my-copyright/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=whining-to-protect-my-copyright</link>
		<comments>http://battis.net/2010/04/16/whining-to-protect-my-copyright/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 22:15:55 +0000</pubDate>
		<dc:creator>Seth Battis</dc:creator>
				<category><![CDATA[Ouroboros]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[copyright]]></category>
		<category><![CDATA[Creative Commons]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Houston Chronicle]]></category>
		<category><![CDATA[intellectual property]]></category>
		<category><![CDATA[legal]]></category>

		<guid isPermaLink="false">http://battis.net/?p=517</guid>
		<description><![CDATA[A while back, I noticed that the Houston Chronicle had ripped off one of my Flickr photos for their web site. They had credited me, but had used my photo in a way that violated its non-commericial Creative Commons license. I posted about it, and didn&#8217;t have much hope that I&#8217;d ever get anything resembling

<hr/><h6>Related posts</h6><ol><li><a href='http://battis.net/2010/02/11/thoughtful-resolution-of-intellectual-property-appropriation/' rel='bookmark' title='Permanent Link: Thoughtful Resolution of Intellectual Property Appropriation'>Thoughtful Resolution of Intellectual Property Appropriation</a></li>
<li><a href='http://battis.net/2010/02/08/theft-of-my-intellectual-property/' rel='bookmark' title='Permanent Link: Theft of My Intellectual Property'>Theft of My Intellectual Property</a></li>
<li><a href='http://battis.net/2010/02/14/flickr-filename-to-url-converter/' rel='bookmark' title='Permanent Link: Flickr Filename to URL Converter'>Flickr Filename to URL Converter</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://battis.net/2010/02/08/theft-of-my-intellectual-property/trackback/">A while back</a>, I noticed that the Houston Chronicle had ripped off <a href="http://www.flickr.com/photos/battis/83659978/">one of my Flickr photos</a> for their web site. They had credited me, but had used my photo in a way that violated its <a href="http://creativecommons.org/licenses/by-nc-sa/2.0/deed.en">non-commericial Creative Commons license</a>. I posted about it, and didn&#8217;t have much hope that I&#8217;d ever get anything resembling satisfaction. It&#8217;s been resolved, or as resolved as it ever will be. I&#8217;ve been meaning to post something about it, but have been waiting&#8230; really, waiting and hoping that something else would unfold to make me feel better about how it had gone. In the end, <a href="http://battis.net/2010/02/11/thoughtful-resolution-of-intellectual-property-appropriation/trackback/">I got connected with Dean Betz</a>, the Chron.com Director of Content, and he told me:</p>
<blockquote><p>It&#8217;s no surprise what I found; a well-intentioned producer, hoping to help illustrate an interesting story but not sufficiently trained in the appropriate use of Flickr, used your image not licensed for commercial use on our clearly commercial Web site.</p>
<p>That&#8217;s partly my fault in not giving better direction to our staff on Creative Commons. We&#8217;ve used this as a &#8220;teaching moment&#8221; to improve our training to staffers, and I very much appreciate your pointing this out.</p>
<p>We&#8217;ve removed that photo from our site, but by way of remedy, I&#8217;d like to offer to pay you our standard one-use fee of [none of your dang business] per image. I&#8217;d like suggest that I post a followup message to your blog with my mea culpa on not giving sufficient direction to our producers on Flickr and Creative Commons, and that we&#8217;ve taken remedies to close the gap.</p></blockquote>
<p>I had been not anticipated much in the way of a response at all from the Chronicle, so this was all a pleasant surprise:</p>
<blockquote><p>I’m a little guy and they’re pretty big. I can get up on my hind legs and complain. But I doubt they’ll pay attention to me. And besides, this particular violation of my rights is relevant to the world (and, really, me) for only the next few hours, until this cycles off their front page. And then it’s just something that happened that’s easy for them (and me) to ignore.</p></blockquote>
<p>In the end, it took a bunch of follow-ups with Dean (Gmail counds 18 emails in that thread, back-and-forth), several versions of an invoice, and just plain a lot of patience, but I got a (token) payment for the use of my image, a vague promise that some education had happened in the newsroom, and no deeper explanation than what I posted from Dean above. I appreciate the payment. I appreciate the promise that education was happening&#8230; but the work to get all that was, in the end, much more than it was really worth.</p>
<p>I think that all of this goes to highlight the difficulty of working with intellectual property law in general: there&#8217;s a huge imbalance in terms of the amount of effort required for small fry like me and a major publisher to track down and combat the theft of their work. Nothing that the Chronicle asked of me in return for payment was excessive (it was all normal stuff that outside contractors have to do if they want to get paid by a corporation &#8212; but I feel like a sucker now that they have my social security number), but every additional effort that I had to make to obtain redress was increasingly less worthwhile for me. If I had to do this regularly, I would be the world&#8217;s grumpiest human being. There ain&#8217;t no such thing as a free lunch, and, it turns out (and I had already known this intellectually), there&#8217;s no such thing as redress without real effort (and now I really <em>get</em> it). Nobody&#8217;s gonna make it right to you unless you hold their feet to the fire. And I was dealing with nice people who meant well at a decently reputable company; it was still a hassle.</p>
<p>Would I raise my tiny fists and shout into the whirlwind in vain again in a similar situation? Probably. And I&#8217;ve got some new thoughts on how to do it &#8212; next time I can shortcut some of the email back and forth by just leading off with an attached invoice. And an invoice for an amount that I think is fair (now that I have something resembling a ballpark figure: more than the Chronicle paid me). But I hate how whiny and bitchy it makes me feel. Having the fact that I&#8217;m the little guy rammed home makes me feel even littler than before.</p>


<hr/><h6>Related posts</h6><ol><li><a href='http://battis.net/2010/02/11/thoughtful-resolution-of-intellectual-property-appropriation/' rel='bookmark' title='Permanent Link: Thoughtful Resolution of Intellectual Property Appropriation'>Thoughtful Resolution of Intellectual Property Appropriation</a></li>
<li><a href='http://battis.net/2010/02/08/theft-of-my-intellectual-property/' rel='bookmark' title='Permanent Link: Theft of My Intellectual Property'>Theft of My Intellectual Property</a></li>
<li><a href='http://battis.net/2010/02/14/flickr-filename-to-url-converter/' rel='bookmark' title='Permanent Link: Flickr Filename to URL Converter'>Flickr Filename to URL Converter</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://battis.net/2010/04/16/whining-to-protect-my-copyright/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Pre-Pesach Stupid Pet Tricks</title>
		<link>http://battis.net/2010/03/25/pre-pesach-stupid-pet-tricks/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=pre-pesach-stupid-pet-tricks</link>
		<comments>http://battis.net/2010/03/25/pre-pesach-stupid-pet-tricks/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 16:42:35 +0000</pubDate>
		<dc:creator>Seth Battis</dc:creator>
				<category><![CDATA["Tech Tips" Column]]></category>

		<guid isPermaLink="false">http://battis.net/?p=512</guid>
		<description><![CDATA[One of my responsibilities at Jewish Day School is to write a weekly &#8220;tech tips&#8221; column for the online faculty news. This is one such tip. When I was a summer camp assistant director, back in the day, my least favorite task was to field &#8220;dead or alive&#8221; phone calls &#8212; those phone calls where

<hr/><h6>No related posts.</h6>]]></description>
			<content:encoded><![CDATA[<p><em>One of my responsibilities at Jewish Day School is to write a weekly <a href="http://battis.net/category/teaching/educational-technology/tech-tips/">&#8220;tech tips&#8221; column</a></em><em> for the online faculty news. This is one such tip.</em></p>
<p>When I was a summer camp assistant director, back in the day, my least favorite task was to field &#8220;dead or alive&#8221; phone calls &#8212; those phone calls where parents were inquiring whether Junior, who had not written home in the past month, was still alive or not&#8230; with, perhaps, some suggestion that &#8220;not&#8221; would be more acceptable than &#8220;not writing home.&#8221;</p>
<p>Knowing that we&#8217;re all headed off campus for Pesach, now is a good time to set up a vacation auto-response on our email, hopefully staving off any potential &#8220;alive or dead&#8221; inquiries about us.</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/x93Mz463THg&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/x93Mz463THg&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Also, I want to share the coolest trick that I&#8217;ve learned in FirstClass in the last week: Calendar Punch-Through &#8212; layering multiple calendars on top of each other, so that you can see all the events at the same time. Watch the video to see what I mean. It&#8217;s rad. Or, at least, gnarly.</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/ZV3LWrKl2Hg&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ZV3LWrKl2Hg&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>The bonus: I maintain a feed of recent internet posts on teaching and technology. This is the filtered version of what I read: I slave so that you can benefit. These are articles that I think are in some way interesting or informative about teaching, or teaching with technology, or generally existing as a teacher in the early 21st century. It&#8217;s a fascinating mish-mash.</p>
<p><a href="http://battis.net/link/AcademicComputingFeed">http://battis.net/link/AcademicComputingFeed</a></p>
<p>And thank you all for your feedback on last week&#8217;s blog &#8220;explanation&#8221; &#8212; a more polished, finished version will be ready after Tiyulim Week!</p>


<hr/><h6>No related posts.</h6>]]></content:encoded>
			<wfw:commentRss>http://battis.net/2010/03/25/pre-pesach-stupid-pet-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Things Work: Blogs</title>
		<link>http://battis.net/2010/03/18/how-things-work-blogs/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=how-things-work-blogs</link>
		<comments>http://battis.net/2010/03/18/how-things-work-blogs/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 05:57:41 +0000</pubDate>
		<dc:creator>Seth Battis</dc:creator>
				<category><![CDATA["Tech Tips" Column]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[concept]]></category>
		<category><![CDATA[in progress]]></category>
		<category><![CDATA[rough cut]]></category>
		<category><![CDATA[rough draft]]></category>
		<category><![CDATA[unfinished]]></category>

		<guid isPermaLink="false">http://battis.net/?p=482</guid>
		<description><![CDATA[One of my responsibilities at Jewish Day School is to write a weekly &#8220;tech tips&#8221; column for the online faculty news. This is one such tip. As teachers, we instinctually know how to use a lot of the tools that come our way: pen, paper, whiteboard, textbook. These all have self-evident uses. Not only do

<hr/><h6>Related posts</h6><ol><li><a href='http://battis.net/2009/11/22/blogs-as-portfolios/' rel='bookmark' title='Permanent Link: Blogs as Portfolios'>Blogs as Portfolios</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><em>One of my responsibilities at Jewish Day School is to write a weekly <a href="http://battis.net/category/teaching/educational-technology/tech-tips/">&#8220;tech tips&#8221; column</a></em><em> for the online faculty news. This is one such tip.</em></p>
<p>As teachers, we instinctually know how to use a lot of the tools that come our way: pen, paper, whiteboard, textbook. These all have self-evident uses. Not only do we understand how to use these tools, but we can think creatively about their purpose, and how they might be used to teach, challenge and push our students.</p>
<p>Where this gets a bit sticky is when we&#8217;re presented with a tool that we aren&#8217;t quite sure how to use, or what it&#8217;s purpose might be. To this end, I&#8217;ve been thinking about ways to explaining some of the technology that we&#8217;ve been talking about this year at its conceptual level: not what it&#8217;s for, but simply how does it work? (Perhaps this is residue of reading too much David Macaulay in my mispent youth.) Once we grok the working of a tool, then we can start to think about the purpose to which we might put it.</p>
<p>This week, what I share with you is not a finished thought, but a rough cut of the first half of a video explaining how blogs work. This is the work of an afternoon &#8212; not a polished product in any way shape or form. And I would be delighted (nay, indebted) to you for feedback on this proto-explanation. Does it makes sense? Does it help you to think about a blog as a device? What would make it better?</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/aIReOSB__L4&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/aIReOSB__L4&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>


<hr/><h6>Related posts</h6><ol><li><a href='http://battis.net/2009/11/22/blogs-as-portfolios/' rel='bookmark' title='Permanent Link: Blogs as Portfolios'>Blogs as Portfolios</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://battis.net/2010/03/18/how-things-work-blogs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Things Better than Email Attachments</title>
		<link>http://battis.net/2010/03/11/10-things-better-than-email-attachments/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=10-things-better-than-email-attachments</link>
		<comments>http://battis.net/2010/03/11/10-things-better-than-email-attachments/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 05:51:22 +0000</pubDate>
		<dc:creator>Seth Battis</dc:creator>
				<category><![CDATA["Tech Tips" Column]]></category>
		<category><![CDATA[annotation]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[editing]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[FirstClass]]></category>
		<category><![CDATA[Google Docs]]></category>
		<category><![CDATA[Project Gutenberg]]></category>
		<category><![CDATA[purpose]]></category>

		<guid isPermaLink="false">http://battis.net/?p=464</guid>
		<description><![CDATA[One of my responsibilities at Jewish Day School is to write a weekly &#8220;tech tips&#8221; column for the online faculty news. This is one such tip (and it is, again, a bit FirstClass-centric, focused on some of our internal systems &#8212; we&#8217;re running a WPMU blog server and a MindTouch DekiWiki). We won&#8217;t rehearse all

<hr/><h6>Related posts</h6><ol><li><a href='http://battis.net/2009/11/22/developing-an-expert-plan/' rel='bookmark' title='Permanent Link: Developing an &#8220;Expert Plan&#8221;'>Developing an &#8220;Expert Plan&#8221;</a></li>
<li><a href='http://battis.net/2009/11/22/wikis-for-documentation/' rel='bookmark' title='Permanent Link: Wikis for Documentation'>Wikis for Documentation</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><em>One of my responsibilities at Jewish Day School is to write a weekly <a href="http://battis.net/category/teaching/educational-technology/tech-tips/">&#8220;tech tips&#8221; column</a></em><em> for the online faculty news. This is one such tip (and it is, again, a bit FirstClass-centric, focused on some of our internal systems &#8212; we&#8217;re running a <a href="http://mu.wordpress.org/">WPMU blog server</a> and a <a href="http://www.mindtouch.com/">MindTouch DekiWiki</a>).</em></p>
<p>We won&#8217;t rehearse all of the problems with email attachments here (Can I open that file? What happened to my disk quota!? Which version was it?) Instead, let us focus on things that improve the experience. In fact, here&#8217;s a short video Top Ten list:</p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/5kP1e4DbNng&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/5kP1e4DbNng&#038;fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h4>Links from the video</h4>
<ul>
<li><strong>Convenience:</strong> <a href="http://www.yousendit.com">YouSendIt.com</a> (and <a href="http://www.literatureandlatte.com/scrivener.html">Scrivener</a>, a fun writing application)</li>
<li><strong>Collaboration:</strong> Wikis (specifically the <a href="http://battis.net/2009/11/22/developing-an-expert-plan/trackback/">Laptop Leaders</a>)</li>
<li><strong>Focus:</strong> Blogs (specifically the Digital Portfolios PLN &#8212; Seth, [and his colleagues] can help you set up your own)</li>
<li><strong>Reach Out:</strong> <a href="http://docs.google.com">Google Docs</a> (and Spreadsheets, Presentations, and more&#8230;)</li>
<li><strong>Brevity:</strong> <a href="http://www.gutenberg.org/etext/25717">The History Of The Decline And Fall Of The Roman Empire by Edward Gibbon</a></li>
</ul>


<hr/><h6>Related posts</h6><ol><li><a href='http://battis.net/2009/11/22/developing-an-expert-plan/' rel='bookmark' title='Permanent Link: Developing an &#8220;Expert Plan&#8221;'>Developing an &#8220;Expert Plan&#8221;</a></li>
<li><a href='http://battis.net/2009/11/22/wikis-for-documentation/' rel='bookmark' title='Permanent Link: Wikis for Documentation'>Wikis for Documentation</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://battis.net/2010/03/11/10-things-better-than-email-attachments/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
