<?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>Geoffrey Anderson</title>
	<atom:link href="http://www.geoffreyanderson.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.geoffreyanderson.net</link>
	<description></description>
	<lastBuildDate>Thu, 02 Jun 2011 16:18:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Deploy image files to Amazon Web Services</title>
		<link>http://www.geoffreyanderson.net/blog/2011/06/02/deploy-image-files-to-amazon-web-services/</link>
		<comments>http://www.geoffreyanderson.net/blog/2011/06/02/deploy-image-files-to-amazon-web-services/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 16:08:19 +0000</pubDate>
		<dc:creator>Geoff</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[RIT]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[aws]]></category>
		<category><![CDATA[aws ec2]]></category>
		<category><![CDATA[aws s3]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.geoffreyanderson.net/?p=40</guid>
		<description><![CDATA[Just pushed a copy of the script I&#8217;ve been working on for a couple weeks to github. The goal of the script is to push an image file containing an operating system to Amazon&#8217;s Web Services Elastic Compute Cloud so you can run the image through Amazon&#8217;s service. A lot of the development of this&#8230;]]></description>
			<content:encoded><![CDATA[<p>Just pushed a copy of the script I&#8217;ve been working on for a couple weeks to <a href="http://github.com">github</a>.  The goal of the script is to push an image file containing an operating system to Amazon&#8217;s Web Services Elastic Compute Cloud so you can run the image through Amazon&#8217;s service.  A lot of the development of this was based around existing documentation and blogs written by many other posters, so I finally synthesized all this information into a &#8220;simple&#8221; BASH shell script that automates the process.  Take a look at it at the following link!</p>
<p><a href="https://github.com/geoffreyanderson/linuxImage2AWS-EBS">https://github.com/geoffreyanderson/linuxImage2AWS-EBS</a></p>
<p>I&#8217;ll be sure to beef this entry up a little more about what information I referenced to develop the script and probably more on its use!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geoffreyanderson.net/blog/2011/06/02/deploy-image-files-to-amazon-web-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XSL to extract DOCX comments into plain text</title>
		<link>http://www.geoffreyanderson.net/blog/2011/04/25/xsl-to-extract-docx-comments-into-plain-text/</link>
		<comments>http://www.geoffreyanderson.net/blog/2011/04/25/xsl-to-extract-docx-comments-into-plain-text/#comments</comments>
		<pubDate>Mon, 25 Apr 2011 23:29:05 +0000</pubDate>
		<dc:creator>Geoff</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[latex]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[xsl]]></category>
		<category><![CDATA[docx]]></category>
		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://www.geoffreyanderson.net/?p=38</guid>
		<description><![CDATA[So..this was an impromptu project I slapped together in about 20 minutes to extract comments out of a DOCX file. I ended up doing this because I stored answers to lab questions as comments in a DOCX and one of the graders I work with needed the comments in plain text&#8230;.so I recalled the XSL&#8230;]]></description>
			<content:encoded><![CDATA[<p>So..this was an impromptu project I slapped together in about 20 minutes to extract comments out of a DOCX file.  I ended up doing this because I stored answers to lab questions as comments in a DOCX and one of the graders I work with needed the comments in plain text&#8230;.so I recalled the XSL for converting DOCX to LaTeX from my <a href="http://www.geoffreyanderson.net/blog/2011/03/24/convert-docx-to-latex/">last post</a> and wrote up a new stylesheet to extract comments.  Hereeee it is!<br />
<code></p>
<pre>
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot;
    xmlns:xd=&quot;http://www.oxygenxml.com/ns/doc/xsl&quot; version=&quot;1.0&quot;
    xmlns:w=&quot;http://schemas.openxmlformats.org/wordprocessingml/2006/main&quot;&gt;
    &lt;xd:doc scope=&quot;stylesheet&quot;&gt;
        &lt;xd:desc&gt;
            &lt;xd:p&gt;&lt;xd:b&gt;Created on:&lt;/xd:b&gt; Apr 25, 2011&lt;/xd:p&gt;
            &lt;xd:p&gt;&lt;xd:b&gt;Author:&lt;/xd:b&gt; Geoffrey Anderson&lt;/xd:p&gt;
            &lt;xd:p&gt;&lt;xd:b&gt;E-mail:&lt;/xd:b&gt; geoff@geoffreyanderson.net&lt;/xd:p&gt;
            &lt;xd:p&gt;&lt;xd:b&gt;Website:&lt;/xd:b&gt; http://geoffreyanderson.net&lt;/xd:p&gt;
        &lt;/xd:desc&gt;
    &lt;/xd:doc&gt;

    &lt;xsl:variable name=&quot;newline&quot;&gt;
        &lt;xsl:text&gt;
        &lt;/xsl:text&gt;
    &lt;/xsl:variable&gt;
    &lt;xsl:template match=&quot;/&quot;&gt;
        &lt;xsl:for-each select=&quot;/w:comments/w:comment&quot;&gt;
################
# Comment #&lt;xsl:number value=&quot;position()&quot; format=&quot;1&quot;/&gt; #
################
&lt;xsl:for-each select=&quot;w:p&quot;&gt;
&lt;xsl:value-of select=&quot;$newline&quot; /&gt;
&lt;xsl:for-each select=&quot;w:r&quot;&gt;
&lt;xsl:value-of select=&quot;w:t&quot;/&gt;
&lt;/xsl:for-each&gt;
&lt;/xsl:for-each&gt;

----

&lt;/xsl:for-each&gt;
    &lt;/xsl:template&gt;
&lt;/xsl:stylesheet&gt;
</pre>
<p></code><br />
The bad indenting is intentional so that you get output without weird tabbing/formatting.  To use this (under Ubuntu, at least) simply unzip the DOCX file:<br />
<code></p>
<pre>
$ unzip someWordDoc.docx -d someWordDocDir/
</pre>
<p></code><br />
And run the above XSL against the comments.xml file under the &#8220;word&#8221; directory:<br />
<code></p>
<pre>
$ xsltproc convertDocxCommentsToPlainText.xsl someWordDocDir/word/comments.xml
</pre>
<p></code><br />
By doing this, you&#8217;ll get output similar to the following:<br />
<code></p>
<pre>
################
# Comment #1   #
################

        text of the first comment

----

################
# Comment #2   #
################

        text of the second comment

----
</pre>
<p></code><br />
Cheers!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geoffreyanderson.net/blog/2011/04/25/xsl-to-extract-docx-comments-into-plain-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert Docx to LaTeX!</title>
		<link>http://www.geoffreyanderson.net/blog/2011/03/24/convert-docx-to-latex/</link>
		<comments>http://www.geoffreyanderson.net/blog/2011/03/24/convert-docx-to-latex/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 22:34:00 +0000</pubDate>
		<dc:creator>Geoff</dc:creator>
				<category><![CDATA[computing]]></category>
		<category><![CDATA[latex]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[xsl]]></category>
		<category><![CDATA[docx]]></category>

		<guid isPermaLink="false">http://www.geoffreyanderson.net/?p=35</guid>
		<description><![CDATA[Just stumbled across an interesting link that has info on converting a Microsoft Docx file into a latex file! Harri Kiiskinen over at http://pastcounts.wordpress.com/ wrote up an XSL stylesheet that can match elements in Microsofts OOXML format and print out the latex formatting. The actual information on doing this all is located here: http://pastcounts.wordpress.com/2011/03/22/using-xsl-to-convert-docx-to-latex/ First,&#8230;]]></description>
			<content:encoded><![CDATA[<p>Just stumbled across an interesting link that has info on converting a Microsoft Docx file into a latex file!  Harri Kiiskinen over at <a href="http://pastcounts.wordpress.com/">http://pastcounts.wordpress.com/</a> wrote up an XSL stylesheet that can match elements in Microsofts OOXML format and print out the latex formatting.</p>
<p>The actual information on doing this all is located here: <a href="http://pastcounts.wordpress.com/2011/03/22/using-xsl-to-convert-docx-to-latex/">http://pastcounts.wordpress.com/2011/03/22/using-xsl-to-convert-docx-to-latex/</a></p>
<blockquote><p>
First, you need to break open the .docx file. It basically is a simple zipped archive, so an ‘unzip testdoc.docx’ should do the trick; you’ll end up with several files and sub-directories, of which only the directory called ‘word’ is necessary for this test.</p>
<p>Second, here’s the XSL transformation to save in a file:<br />
<code><br />
&lt;?xml version=&quot;1.0&quot;?&gt;<br />
&lt;xsl:stylesheet version=&quot;1.0&quot; xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot;<br />
 xmlns:w=&quot;http://schemas.openxmlformats.org/wordprocessingml/2006/main&quot;&gt;</p>
<p>&lt;xsl:template match=&quot;/w:document&quot;&gt;<br />
\documentclass{article}<br />
&lt;xsl:apply-templates/&gt;<br />
&lt;/xsl:template&gt;</p>
<p>&lt;xsl:template match=&quot;w:body&quot;&gt;<br />
\begin{document}<br />
&lt;xsl:apply-templates/&gt;<br />
\end{document}<br />
&lt;/xsl:template&gt;</p>
<p>&lt;xsl:template match=&quot;w:p&quot;&gt;<br />
&lt;xsl:apply-templates/&gt;&lt;xsl:if test=&quot;position()!=last()&quot;&gt;&lt;xsl:text&gt;</p>
<p>&lt;/xsl:text&gt;&lt;/xsl:if&gt;<br />
&lt;/xsl:template&gt;</p>
<p>&lt;xsl:template match=&quot;w:r&quot;&gt;<br />
 &lt;xsl:if test=&quot;w:footnoteReference&quot;&gt;&lt;xsl:text&gt;\footnote{&lt;/xsl:text&gt;<br />
 &lt;xsl:call-template name=&quot;footnote&quot;&gt;<br />
 &lt;xsl:with-param name=&quot;fid&quot;&gt;&lt;xsl:value-of select=&quot;//@w:id&quot;/&gt;&lt;/xsl:with-param&gt;<br />
 &lt;/xsl:call-template&gt;<br />
 &lt;xsl:text&gt;}&lt;/xsl:text&gt;<br />
 &lt;/xsl:if&gt;<br />
 &lt;xsl:if test=&quot;w:rPr/w:b&quot;&gt;&lt;xsl:text&gt;\textbf{&lt;/xsl:text&gt;&lt;/xsl:if&gt;<br />
 &lt;xsl:call-template name=&quot;pastb&quot;/&gt;<br />
 &lt;xsl:if test=&quot;w:rPr/w:b&quot;&gt;&lt;xsl:text&gt;}&lt;/xsl:text&gt;&lt;/xsl:if&gt;<br />
&lt;/xsl:template&gt;</p>
<p>&lt;xsl:template name=&quot;pastb&quot;&gt;<br />
 &lt;xsl:if test=&quot;w:rPr/w:i&quot;&gt;&lt;xsl:text&gt;\textit{&lt;/xsl:text&gt;&lt;/xsl:if&gt;<br />
 &lt;xsl:call-template name=&quot;pasti&quot;/&gt;<br />
 &lt;xsl:if test=&quot;w:rPr/w:i&quot;&gt;&lt;xsl:text&gt;}&lt;/xsl:text&gt;&lt;/xsl:if&gt;<br />
&lt;/xsl:template&gt;</p>
<p>&lt;xsl:template name=&quot;pasti&quot;&gt;<br />
 &lt;xsl:apply-templates select=&quot;w:t&quot;/&gt;<br />
&lt;/xsl:template&gt;</p>
<p>&lt;xsl:template name=&quot;footnote&quot;&gt;<br />
 &lt;xsl:param name=&quot;fid&quot;/&gt;<br />
 &lt;xsl:apply-templates select=&quot;document('footnotes.xml')/w:footnotes/w:footnote[@w:id=$fid]&quot;/&gt;<br />
&lt;/xsl:template&gt;</p>
<p>&lt;xsl:template match=&quot;//w:footnote&quot;&gt;<br />
 &lt;xsl:apply-templates select=&quot;w:p&quot;/&gt;<br />
&lt;/xsl:template&gt;</p>
<p>&lt;/xsl:stylesheet&gt;<br />
</code><br />
You can save that in a file called docxtolatex.xsl in the ‘word’ directory. Then, in that directory, run ‘xsltproc docxtolatex.xsl document.xml’, and you’ll have your screen full of the document, in LaTeX markup.</p>
<p>You’ll notice, that this XSLT only converts bold, italics and footnotes. But then again, that’s what I often only need to convert…
</p>
</blockquote>
<p>So yea..I&#8217;ll definitely use this to convert some word docs I have that I&#8217;ve been wanting to push into latex format.  I also think I might do some additional research into tweaking this XSL so that *.docx files could potentially be converted to LaTeX, in their entirety! <img src='http://www.geoffreyanderson.net/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Also &#8212; in order to successfully post a copy of the XSL stylesheet above, I found myself needing a script to safely escape all the xml entities&#8230;.if you&#8217;re interested, here&#8217;s that script I just slapped together for doing this:<br />
<code></p>
<pre>
#!/usr/bin/env php
&lt;?php
$handle = @fopen($argv[1], &quot;r&quot;);
if ($handle) {
    while (($buffer = fgets($handle, 4096)) !== false) {
        echo htmlentities($buffer);
    }
    if (!feof($handle)) {
        echo &quot;Error: unexpected fgets() fail\n&quot;;
    }
    fclose($handle);
}
?&gt;
</pre>
<p></code></p>
<p>Simply copy the above script into a php file, make it executable, and then run it with an input file as an argument and it&#8217;ll spit out whatever XML input you give it the encoded version of the markup. <img src='http://www.geoffreyanderson.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.geoffreyanderson.net/blog/2011/03/24/convert-docx-to-latex/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My xmonad.hs</title>
		<link>http://www.geoffreyanderson.net/blog/2011/03/13/my-xmonad-hs/</link>
		<comments>http://www.geoffreyanderson.net/blog/2011/03/13/my-xmonad-hs/#comments</comments>
		<pubDate>Sun, 13 Mar 2011 19:26:32 +0000</pubDate>
		<dc:creator>Geoff</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[tiling window manager]]></category>
		<category><![CDATA[window manager]]></category>
		<category><![CDATA[xmonad]]></category>

		<guid isPermaLink="false">http://www.geoffreyanderson.net/?p=34</guid>
		<description><![CDATA[Seeing as I haven&#8217;t written in awhile&#8230;I figured I&#8217;d at least drop a link to my xmonad.hs file that I&#8217;ve put together for my own setup. For those of you who don&#8217;t know what XMonad is, it&#8217;s a tiling window manager. You should check it out! I&#8217;ve been meaning to write a more meaningful post&#8230;]]></description>
			<content:encoded><![CDATA[<p>Seeing as I haven&#8217;t written in awhile&#8230;I figured I&#8217;d at least drop a link to my <a href="http://geoffreyanderson.net/files/xmonad.hs">xmonad.hs</a> file that I&#8217;ve put together for my own setup.  For those of you who don&#8217;t know what <a href="http://xmonad.org/">XMonad</a> is, it&#8217;s a tiling window manager.  You should <a href="http://xmonad.org/">check it out</a>!</p>
<p>I&#8217;ve been meaning to write a more meaningful post on how put together my current XMonad setup and what not.  Perhaps in the near future!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geoffreyanderson.net/blog/2011/03/13/my-xmonad-hs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Busy busy busy and new sites!</title>
		<link>http://www.geoffreyanderson.net/blog/2010/12/13/busy-busy-busy-and-new-sites/</link>
		<comments>http://www.geoffreyanderson.net/blog/2010/12/13/busy-busy-busy-and-new-sites/#comments</comments>
		<pubDate>Mon, 13 Dec 2010 16:52:22 +0000</pubDate>
		<dc:creator>Geoff</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[RIT]]></category>

		<guid isPermaLink="false">http://www.geoffreyanderson.net/?p=25</guid>
		<description><![CDATA[Well&#8230;I don&#8217;t have a lot of time to pour into this post unfortunately, but I have just enough time to mention that I&#8217;m still plowing through my capstone proposal so I can finally start working on my final project for my masters degree. You can get a glance at my work on the proposal here&#8230;]]></description>
			<content:encoded><![CDATA[<p>Well&#8230;I don&#8217;t have a lot of time to pour into this post unfortunately, but I have just enough time to mention that I&#8217;m still plowing through my capstone proposal so I can finally start working on my final project for my masters degree.</p>
<p>You can get a glance at my work on the proposal here &#8211;&gt; <a href="http://capstone.geoffreyanderson.net/" target="_blank">http://capstone.geoffreyanderson.net/</a></p>
<p>As for the other site, I finally got my partner to start designing a better portfolio site for her work.  We set up a basic sub-domain for her here &#8211;&gt; <a href="http://cullenillustration.geoffreyanderson.net/" target="_blank">http://cullenillustration.geoffreyanderson.net/</a></p>
<p>Check out her stuff, pretty good art!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geoffreyanderson.net/blog/2010/12/13/busy-busy-busy-and-new-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I miss halloween hockey</title>
		<link>http://www.geoffreyanderson.net/blog/2010/10/29/i-miss-halloween-hockey-2/</link>
		<comments>http://www.geoffreyanderson.net/blog/2010/10/29/i-miss-halloween-hockey-2/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 22:46:46 +0000</pubDate>
		<dc:creator>Geoff</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[RIT]]></category>
		<category><![CDATA[halloween]]></category>
		<category><![CDATA[hockey]]></category>

		<guid isPermaLink="false">http://www.geoffreyanderson.net/blog/2010/10/29/i-miss-halloween-hockey-2/</guid>
		<description><![CDATA[For this reason&#8230; RIT Hockey on Halloween!]]></description>
			<content:encoded><![CDATA[<p>For this reason&#8230;</p>
<p><a href="http://www.youtube.com/watch?v=bi_zKrExnwo">RIT Hockey on Halloween!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.geoffreyanderson.net/blog/2010/10/29/i-miss-halloween-hockey-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome back to RIT!</title>
		<link>http://www.geoffreyanderson.net/blog/2010/09/08/welcome-back-to-rit/</link>
		<comments>http://www.geoffreyanderson.net/blog/2010/09/08/welcome-back-to-rit/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 13:47:52 +0000</pubDate>
		<dc:creator>Geoff</dc:creator>
				<category><![CDATA[personal]]></category>
		<category><![CDATA[RIT]]></category>
		<category><![CDATA[capstone]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[homework]]></category>
		<category><![CDATA[IST]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.geoffreyanderson.net/?p=24</guid>
		<description><![CDATA[Well, RIT&#8217;s officially alive and classes are back on track and going full swing.  I decided that there&#8217;s plenty of time in a day for me to do various kinds of work: working on my capstone, finishing my last online class, TA&#8217;ing Fundamentals of DBMS Architecture (and seeing the coursework I&#8217;ve created get used!), working&#8230;]]></description>
			<content:encoded><![CDATA[<p>Well, RIT&#8217;s officially alive and classes are back on track and going full swing.  I decided that there&#8217;s plenty of time in a day for me to do various kinds of work: working on my capstone, finishing my last online class, TA&#8217;ing Fundamentals of DBMS Architecture (and seeing the coursework I&#8217;ve created get used!), working on the databases for various other classes, and sitting in on a class or two!</p>
<p>Phew, it all seems like so much, yet I&#8217;m still finding that I&#8217;ve got an awful lot of free time (y&#8217;know&#8230;since I don&#8217;t have 16 hours worth of <strong>real</strong> classes..).  Suffice to say, I&#8217;m excited for all the things I&#8217;ll get to work on this year, and especially getting to spend a lot more time with my partner now that we&#8217;ve moved in together at the <a title="Province Apartments!" href="http://rochester.livetheprovince.com/" target="_blank">new apartments across from campus</a>!</p>
<p>So, to break down everything I&#8217;m working on this school term (and year):</p>
<ul>
<li>Need to (start and) finish my capstone proposal for a potential course in Business Intelligence that could be offered in the IST department at RIT</li>
<li>Want an &#8216;A&#8217; in <a href="https://register.rit.edu/courseSchedule/4002821" target="_blank">Data Architecture and Management</a> &#8212; I should probably get started on the paper we have due next week <img src='http://www.geoffreyanderson.net/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </li>
<li>I need to create some more in-class exercises for the <a href="https://register.rit.edu/courseSchedule/4002485" target="_blank">Database course</a> I&#8217;m TA&#8217;ing so our students can get a better grasp of the material.  This is also because the course format changed to a &#8220;studio style&#8221; class (students meet 3x a week for 2 hours) from it&#8217;s old lecture format (1.5 hour lecture 2x a week and a 2 hour lab 1x a week).  I also need to get the new coursework to our <a href="http://www.ist.rit.edu/?q=node/109" target="_blank">database tutors</a> for this year. <img src='http://www.geoffreyanderson.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li>I need to rebuild the virtual machine for our <a href="https://register.rit.edu/courseSchedule/4002774" target="_blank">Information Assurance</a> course at some point and also tweak the database for our <a href="https://register.rit.edu/courseSchedule/4002787" target="_blank">Database Performance and Tuning</a> class.</li>
<li>Try and keep up with the homework <a href="http://www.ist.rit.edu/~acjvks/542/assignments.php" target="_blank">assignments</a> for <a href="https://register.rit.edu/courseSchedule/4002542" target="_blank">Native Mobile Application Development</a> (since I&#8217;m &#8220;sitting in&#8221; and not auditing/registered for the class)</li>
</ul>
<p>Beyond that, I&#8217;ll try to snap some pictures of the changes happening around campus to share!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geoffreyanderson.net/blog/2010/09/08/welcome-back-to-rit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing college freshmen to FOSS and the FOSS community</title>
		<link>http://www.geoffreyanderson.net/blog/2010/07/08/introducing-college-freshmen-to-foss-and-the-foss-community/</link>
		<comments>http://www.geoffreyanderson.net/blog/2010/07/08/introducing-college-freshmen-to-foss-and-the-foss-community/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 17:54:13 +0000</pubDate>
		<dc:creator>Geoff</dc:creator>
				<category><![CDATA[teaching open source]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[posse]]></category>
		<category><![CDATA[RIT]]></category>
		<category><![CDATA[rit posse]]></category>
		<category><![CDATA[teachingopensource]]></category>

		<guid isPermaLink="false">http://www.geoffreyanderson.net/?p=20</guid>
		<description><![CDATA[I&#8217;ve been toying with the notion of encouraging faculty that teach our &#8220;welcome to the IT major&#8221; courses to include information on FOSS and the FOSS community.  Specifically, I&#8217;d like to see students exposed to IRC, blogs, wikis, etc., earlier on so that they can tap into the wealth of knowledge available out there and&#8230;]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been toying with the notion of encouraging faculty that teach our &#8220;welcome to the IT major&#8221; courses to include information on FOSS and the FOSS community.  Specifically, I&#8217;d like to see students exposed to IRC, blogs, wikis, etc., earlier on so that they can tap into the wealth of knowledge available out there and (hopefully) give back to the community.</p>
<p>I discussed this idea with some folks from TOS and they&#8217;re all for it.  Unfortunately, after discussing it with a professor in the IST department here (at RIT), he opened my eyes to the flip-side of what may occur when pushing students to access these resources: the &#8220;cheating&#8221; aspect.  This certainly poses a challenge because, as I was talking to <a href="http://blog.melchua.com/" target="_blank">Mel</a> about this, I was able to clarify that there are some hardships that students need to go through in academia to genuinely grasp some of the material they need to learn.  Having access to the various FOSS resources, like IRC, may allow them to skip the hardship that would detriment the learning process.  The example I made was how in our Computer Science department, students need to code different data structures by hand while students in Information Sciences and Technology department don&#8217;t need to code data structures by hand.  Being an IT student myself, I still don&#8217;t necessarily know which data structure might be best for certain situations (regardless of how much I&#8217;ve read up on them), while some of my friends who went through the CS curriculum know it like the back of their hand.  My point is that directing freshmen to access to different FOSS resources might cause them to skip the &#8216;hardship&#8217; of learning how something genuinely works.</p>
<p>The primary solution I see to this conundrum would be introducing students to the FOSS resources and community later on in their academic career. (say&#8230;sophomore or junior year).  The reason I feel this would be more effective is because students have gone through the initial learning experiences/hardships and may be a little more independent when solving problems without automatically falling back on the community as a crutch.  I feel that this would also allow them to be more effective in giving back to the community.</p>
<p><a href="http://blog.melchua.com/" target="_blank">Mel</a> pointed out that by having students blog about their experiences with an academic hardship and how they fell back on the community may also be a solution, but I still feel there might be some loss in the educational value of some content if students are readily able to fall back on a community resource to solve their problem.</p>
<p>Thoughts?  Please comment and give me feedback!  I&#8217;m hoping to get some other perspectives and thoughts on this so I can find the best way to help the FOSS community and resources penetrate into our curriculum earlier.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geoffreyanderson.net/blog/2010/07/08/introducing-college-freshmen-to-foss-and-the-foss-community/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Back to the grind</title>
		<link>http://www.geoffreyanderson.net/blog/2010/07/01/back-to-the-grind/</link>
		<comments>http://www.geoffreyanderson.net/blog/2010/07/01/back-to-the-grind/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 15:31:25 +0000</pubDate>
		<dc:creator>Geoff</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[RIT]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.geoffreyanderson.net/?p=16</guid>
		<description><![CDATA[Well, back to working crazy hours this week to make up for my short excursion in Pittsburgh (I&#8217;m hoping to write about this at a later date!). So, working 40 hours in 3 days is a little exhausting, but it&#8217;s pretty nice to have a dedicated amount of time to concentrate on work stuff. Presently,&#8230;]]></description>
			<content:encoded><![CDATA[<p>Well, back to working crazy hours this week to make up for my short excursion in Pittsburgh (I&#8217;m hoping to write about this at a later date!).  So, working 40 hours in 3 days is a little exhausting, but it&#8217;s pretty nice to have a dedicated amount of time to concentrate on work stuff.</p>
<p>Presently, I just finished annotating some content for the DBMS Fundamentals class (which I&#8217;ll go back and flesh out more at some point!).  Now I&#8217;ve moved to preparing a wiki for a class in the Fall quarter, and I&#8217;m really excited that the professor of the course was receptive to trying this new approach (using a wiki!) for the class.  I&#8217;m still grappling with the best way to organize some of the information, but as of now, I&#8217;m preparing the wiki to help introduce students to wiki&#8217;ing and using collaborative tools like Etherpad and *crosses fingers* IRC.</p>
<p>Anyway, I should get back to work, so I&#8217;ll just leave this here for now!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geoffreyanderson.net/blog/2010/07/01/back-to-the-grind/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RIT POSSE Day 3</title>
		<link>http://www.geoffreyanderson.net/blog/2010/06/17/rit-posse-day-3/</link>
		<comments>http://www.geoffreyanderson.net/blog/2010/06/17/rit-posse-day-3/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 12:34:02 +0000</pubDate>
		<dc:creator>Geoff</dc:creator>
				<category><![CDATA[sugar]]></category>
		<category><![CDATA[teaching open source]]></category>

		<guid isPermaLink="false">http://www.geoffreyanderson.net/?p=14</guid>
		<description><![CDATA[So Wednesday was a lot more interactive and seemed to really pick up with getting into the tools that students would need to learn in order to become fully immersed in helping out the open source community. The first thing we started on that I thought was very important was the &#8220;Rose-Bud-Thorn review&#8221; that Chris&#8230;]]></description>
			<content:encoded><![CDATA[<p>So Wednesday was a lot more interactive and seemed to really pick up with getting into the tools that students would need to learn in order to become fully immersed in helping out the open source community.</p>
<p>The first thing we started on that I thought was very important was the &#8220;Rose-Bud-Thorn review&#8221; that Chris had us all do.  It allowed everyone in the group to express their opinions on the week thus far and, more importantly, provide feedback for Chris and Mel on how they could help improve POSSE for other people.  Next up was a hefty walkthrough of the Bugzilla interface, which I found to be particularly interesting (seeing as I&#8217;ve previously used Trac <img src='http://www.geoffreyanderson.net/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ).  It was also interesting to interview with some students during our lunch hour so that we could all try to shed light on our perspective of Open Source and how we feel it could be integrated in the classroom.</p>
<p>Beyond that, we broke off into project groups and I found myself talking with Luke an awful lot about python (&lt;3) before we started working on the <a href="http://git.sugarlabs.org/projects/measure">Measure activity</a>.</p>
<p>Ohhhh the Measure activity&#8230;.:P  We ended up debugging issues that were already &#8220;resolved&#8221; though&#8230;they weren&#8217;t marked &#8220;resolved&#8221; on the bug tracker.  Anyhow, it got us to better grasp how the code for an activity works and after a little more bug hacking, personally, I lost interest in measure because I wasn&#8217;t sure what else I&#8217;d be able to contribute.  That&#8217;s when I decided to help out a student debug <a href="http://bugs.sugarlabs.org/ticket/581">his work</a> on the <a href="http://git.sugarlabs.org/projects/irc">IRC activity</a> and well&#8230;I got about 2 hours deep into that and still got some work to do today <img src='http://www.geoffreyanderson.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Also&#8230;dinner tonight&#8230;mmmmmmmmmmmmm</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geoffreyanderson.net/blog/2010/06/17/rit-posse-day-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

