<?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>Dan Morella</title>
	<atom:link href="http://www.danmorella.com/wordpress/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.danmorella.com/wordpress</link>
	<description></description>
	<lastBuildDate>Wed, 28 Mar 2012 02:14:02 +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>Python Edge Detect</title>
		<link>http://www.danmorella.com/wordpress/?p=471</link>
		<comments>http://www.danmorella.com/wordpress/?p=471#comments</comments>
		<pubDate>Fri, 02 Mar 2012 14:41:12 +0000</pubDate>
		<dc:creator>Dan Morella</dc:creator>
				<category><![CDATA[2012]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.danmorella.com/wordpress/?p=471</guid>
		<description><![CDATA[I&#8217;ve been hearing about Python for a few years now, but I haven&#8217;t had an opportunity (or motivation) to really dive in and learn it.  However, last week after a business pitch from my aunt, I wanted to play around &#8230; <a href="http://www.danmorella.com/wordpress/?p=471">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been hearing about Python for a few years now, but I haven&#8217;t had an opportunity (or motivation) to really dive in and learn it.  However, last week after a business pitch from my aunt, I wanted to play around with edge detection to see if it might solve the problem she presented.  This also seemed like an ideal opportunity to give Python a shot.  In the end, I am very happy with Python, but less so with my edge detector.</p>
<p>I started out by reading up on the Canny Edge Detect algorithm.  There are lots of sources of information, but the best outline seems to be on Wikipedia. <a href="http://en.wikipedia.org/wiki/Canny_edge_detector">http://en.wikipedia.org/wiki/Canny_edge_detector</a></p>
<p>For testing I just used a couple of the images that come with the windows install.<br />
<a href="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/01_flowers.jpg"><img class="alignnone size-medium wp-image-473" title="01_flowers" src="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/01_flowers-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>The first step is to blur the image so only the really prominent edges will be detected and hopefully any noise will be eliminated.  You can do this by convolving your image with a small filter matrix.  Wow, look at all the fancy terminology.  Essentially what this meant to me was that every pixel in your image needs to be blended with the pixels around it.  You can either go out one layer with a 3&#215;3 matrix or 2 layers with a 5&#215;5 matrix.  You can go bigger, but the the information I found seems to suggest that it is not necessary.  The matrix basically tells you how much weight each of the surrounding pixels should have on the new pixel color you are generating.  So the pixel you are looking at should have the biggest weight.  The first layer of pixels around it should have a slightly lower weight.  And if you go further out, each layer should have smaller weight then the one before it.  The picture below gives a visual representation of this idea.  There is a mathmatical theory for figuring out what those percentages should actually be, but you can probably find better explanations of it elsewhere.<br />
<a href="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/matrixExample.jpg"><img class="alignnone size-full wp-image-495" title="matrixExample" src="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/matrixExample.jpg" alt="" width="300" height="300" /></a></p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/02_flowers_gaussianEnd.jpg"><img class="alignnone size-medium wp-image-474" title="02_flowers_gaussianEnd" src="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/02_flowers_gaussianEnd-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>Next, gray scaling the image helps in the calculation of what is actually an edge.  Instead of trying to calculate if the pixel at point X is a different RGB color than a pixel at point Y, you can simply use the gray scale intensity to make the comparison.  This drops you from a 3 value to 3 value comparison to a 1 value to 1 value.<br />
<a href="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/03_flowers_grayscaleEnd.jpg"><img class="alignnone size-medium wp-image-475" title="03_flowers_grayscaleEnd" src="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/03_flowers_grayscaleEnd-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>Although to a human eye, edge detection is a very simple process, it is not so easy for a computer.  We have to perform a couple different passes to determine what is actually an edge and what is not.  I chose the Sobel operator which returns potential edges in the horizontal and vertical direction.<br />
<a href="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/05_flowers_sobel_2_End.jpg"><img class="alignnone size-medium wp-image-477" title="05_flowers_sobel_2_End" src="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/05_flowers_sobel_2_End-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/04_flowers_sobel_1_End.jpg"><img class="alignnone size-medium wp-image-476" title="04_flowers_sobel_1_End" src="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/04_flowers_sobel_1_End-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>These images can be combined and some additional math performed to find the direction of each edge that was detected.<br />
<a href="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/06_flowers_edgeMapEnd.jpg"><img class="alignnone size-medium wp-image-478" title="06_flowers_edgeMapEnd" src="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/06_flowers_edgeMapEnd-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>Using non-maximum suppression and tracing edges with thresholds can lead to some very good results.  However, in my case, I wasn&#8217;t as happy with the final products as I was hoping.<br />
<a href="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/07_flowers_finalEdgeMap.jpg"><img class="alignnone size-medium wp-image-479" title="07_flowers_finalEdgeMap" src="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/07_flowers_finalEdgeMap-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/40_flowers_edgeMapEnd.jpg"><img class="alignnone size-medium wp-image-472" title="40_flowers_edgeMapEnd" src="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/40_flowers_edgeMapEnd-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/41_flowers_finalEdgeMap.jpg"><img class="alignnone size-medium wp-image-498" title="41_flowers_finalEdgeMap" src="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/41_flowers_finalEdgeMap-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>I used some additional images to see what kind of results my algorithm would produce on different types of pictures.<br />
<a href="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/10_sunset.jpg"><img class="alignnone size-medium wp-image-480" title="10_sunset" src="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/10_sunset-300x225.jpg" alt="" width="180" height="135" /></a> <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/11_sunset_sobel_1_End.jpg"><img class="alignnone size-medium wp-image-481" title="11_sunset_sobel_1_End" src="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/11_sunset_sobel_1_End-300x225.jpg" alt="" width="180" height="135" /></a></p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/12_sunset_sobel_2_End.jpg"><img class="alignnone size-medium wp-image-482" title="12_sunset_sobel_2_End" src="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/12_sunset_sobel_2_End-300x225.jpg" alt="" width="180" height="135" /></a> <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/14_sunset_finalEdgeMap.jpg"><img class="alignnone size-medium wp-image-484" title="14_sunset_finalEdgeMap" src="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/14_sunset_finalEdgeMap-300x225.jpg" alt="" width="180" height="135" /></a></p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/15_sunset_finalEdgeMap.jpg"><img class="alignnone size-medium wp-image-485" title="15_sunset_finalEdgeMap" src="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/15_sunset_finalEdgeMap-300x225.jpg" alt="" width="180" height="135" /></a></p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/20_bike.jpg"><img class="alignnone size-medium wp-image-486" title="20_bike" src="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/20_bike-300x225.jpg" alt="" width="180" height="135" /></a> <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/21_bike_directionEnd.jpg"><img class="alignnone size-medium wp-image-487" title="21_bike_directionEnd" src="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/21_bike_directionEnd-300x225.jpg" alt="" width="180" height="135" /></a></p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/22_bike_edgeMapEnd.jpg"><img class="alignnone size-medium wp-image-488" title="22_bike_edgeMapEnd" src="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/22_bike_edgeMapEnd-300x225.jpg" alt="" width="180" height="135" /></a> <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/23_bike_finalEdgeMap.jpg"><img class="alignnone size-medium wp-image-489" title="23_bike_finalEdgeMap" src="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/23_bike_finalEdgeMap-300x225.jpg" alt="" width="180" height="135" /></a></p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/30_gear.jpg"><img class="alignnone size-medium wp-image-490" title="30_gear" src="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/30_gear-300x225.jpg" alt="" width="180" height="135" /></a> <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/31_gear_edgeMapEnd.jpg"><img class="alignnone size-medium wp-image-491" title="31_gear_edgeMapEnd" src="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/31_gear_edgeMapEnd-300x225.jpg" alt="" width="180" height="135" /></a></p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/32_gear_finalEdgeMap.jpg"><img class="alignnone size-medium wp-image-492" title="32_gear_finalEdgeMap" src="http://www.danmorella.com/wordpress/wp-content/uploads/2012/03/32_gear_finalEdgeMap-300x225.jpg" alt="" width="180" height="135" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danmorella.com/wordpress/?feed=rss2&#038;p=471</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Academic Success Center Tutor Tracking</title>
		<link>http://www.danmorella.com/wordpress/?p=452</link>
		<comments>http://www.danmorella.com/wordpress/?p=452#comments</comments>
		<pubDate>Mon, 19 Sep 2011 19:13:51 +0000</pubDate>
		<dc:creator>Dan Morella</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Numara Footprints]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.danmorella.com/wordpress/?p=452</guid>
		<description><![CDATA[In 2009, the Academic Success Center (ASC) at Clemson University requested a workspace in CCIT&#8217;s Numara Footprints implementation (Numara Software). This request began as a student run project for a computer science course (CPSC 491) at Clemson University taught by &#8230; <a href="http://www.danmorella.com/wordpress/?p=452">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In 2009, the Academic Success Center (ASC) at Clemson University requested a workspace in CCIT&#8217;s Numara Footprints implementation (<a href="http://www.numarasoftware.com">Numara Software</a>). This request began as a student run project for a computer science course (CPSC 491) at Clemson University taught by <a href="http://people.clemson.edu/~JONES1/">Jim Jones</a>. ASC wanted a place where they could track tutor courses offered and which students were attending. During the semester, a workspace was designed and implemented. However, at the end of the semester, the workspace was unusable for ASC.</p>
<p>I was brought in to modify the Footprints workspace and create a front end that tutors could use to input new tutor sessions and record the attendees. In the end, the front end became the primary tool used by the ASC and Footprints was providing nothing more than a database structure for the application. In September 2011, I modified the front end to use an independent set of MySQL tables and Footprints was no longer required.</p>
<p>The application allows an administrator to create locations where tutor sessions can occur. This information can be used later on when reports are generated.</p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/locations_01.png"><img class="alignnone size-medium wp-image-464" style="border-width: 2px; border-color: black; border-style: solid;" title="locations_01" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/locations_01-300x233.png" alt="" width="300" height="233" /></a> <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/locations_02.png"><img class="alignnone size-medium wp-image-465" style="border-width: 2px; border-color: black; border-style: solid;" title="locations_02" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/locations_02-300x137.png" alt="" width="300" height="137" /></a></p>
<p>At the beginning of each semester an administrator needs to upload a list of Tutors and the sessions they are qualified to teach.</p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/coursesLeaders_01.png"><img class="alignnone size-medium wp-image-453" style="border-width: 2px; border-color: black; border-style: solid;" title="coursesLeaders_01" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/coursesLeaders_01-300x247.png" alt="" width="300" height="247" /></a> <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/coursesLeaders_02.png"><img class="alignnone size-medium wp-image-454" style="border-width: 2px; border-color: black; border-style: solid;" title="coursesLeaders_02" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/coursesLeaders_02-300x267.png" alt="" width="300" height="267" /></a></p>
<p>Then a full listing of all the student body and the courses they are enrolled in is uploaded.</p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/students_01.png"><img class="alignnone size-medium wp-image-455" style="border-width: 2px; border-color: black; border-style: solid;" title="students_01" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/students_01-277x300.png" alt="" width="277" height="300" /></a> <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/students_02.png"><img class="alignnone size-medium wp-image-456" style="border-width: 2px; border-color: black; border-style: solid;" title="students_02" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/students_02-300x137.png" alt="" width="300" height="137" /></a></p>
<p>After the tutors and students have been loaded, each individual tutor can log in and create tutor sessions and list the enrollment.</p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/newSession_01.png"><img class="alignnone size-medium wp-image-457" style="border-width: 2px; border-color: black; border-style: solid;" title="newSession_01" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/newSession_01-300x232.png" alt="" width="300" height="232" /></a> <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/newSession_02.png"><img class="alignnone size-medium wp-image-458" style="border-width: 2px; border-color: black; border-style: solid;" title="newSession_02" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/newSession_02-263x300.png" alt="" width="263" height="300" /></a></p>
<p>If a student is not enrolled in the course the tutor is teaching, they can add the student manually.</p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/newSession_03.png"><img class="alignnone size-medium wp-image-459" style="border-width: 2px; border-color: black; border-style: solid;" title="newSession_03" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/newSession_03-268x300.png" alt="" width="268" height="300" /></a> <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/newSession_04.png"><img class="alignnone size-medium wp-image-460" style="border-width: 2px; border-color: black; border-style: solid;" title="newSession_04" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/newSession_04-263x300.png" alt="" width="263" height="300" /></a></p>
<p>After saving the course, the tutor will receive notification if it was successful or if an error occurred.</p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/newSession_05.png"><img class="alignnone size-medium wp-image-461" style="border-width: 2px; border-color: black; border-style: solid;" title="newSession_05" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/newSession_05-300x143.png" alt="" width="300" height="143" /></a></p>
<p>The Footprints implementation provided a more robust set of session editing functionality, but the ASC office never used the Footprints interface, so some simple session editing capabilities are available in the front end.</p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/editSession_01.png"><img class="alignnone size-medium wp-image-462" style="border-width: 2px; border-color: black; border-style: solid;" title="editSession_01" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/editSession_01-300x207.png" alt="" width="300" height="207" /></a> <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/editSession_02.png"><img class="alignnone size-medium wp-image-463" style="border-width: 2px; border-color: black; border-style: solid;" title="editSession_02" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/editSession_02-300x214.png" alt="" width="300" height="214" /></a></p>
<p>The final piece of the ASC system is a reporting tool which allows a straight data dump by date, or more detailed reports. All the data is exported to a CSV file for Excel. This allows the administrators to manipulate the data in a tool that they are comfortable with and allows for easy distribution of those reports to people who are not familiar with the ASC tutor tracking application.</p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/reporting_01.png"><img class="alignnone size-medium wp-image-466" style="border-width: 2px; border-color: black; border-style: solid;" title="reporting_01" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/reporting_01-300x170.png" alt="" width="300" height="170" /></a> <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/reporting_02.png"><img class="alignnone size-medium wp-image-467" style="border-width: 2px; border-color: black; border-style: solid;" title="reporting_02" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/reporting_02-300x201.png" alt="" width="300" height="201" /></a><br />
<a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/reporting_03.png"><img class="alignnone size-medium wp-image-468" style="border-width: 2px; border-color: black; border-style: solid;" title="reporting_03" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/reporting_03-300x286.png" alt="" width="300" height="286" /></a> <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/reporting_04.png"><img class="alignnone size-medium wp-image-469" style="border-width: 2px; border-color: black; border-style: solid;" title="reporting_04" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/reporting_04-300x189.png" alt="" width="300" height="189" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danmorella.com/wordpress/?feed=rss2&#038;p=452</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Queue System</title>
		<link>http://www.danmorella.com/wordpress/?p=418</link>
		<comments>http://www.danmorella.com/wordpress/?p=418#comments</comments>
		<pubDate>Mon, 19 Sep 2011 15:45:06 +0000</pubDate>
		<dc:creator>Dan Morella</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.danmorella.com/wordpress/?p=418</guid>
		<description><![CDATA[For the past three years, I have been working on and perfecting a customer queuing system. The original concept was developed as a response to our customers standing in line at the CCIT Support Center. At the beginning of each &#8230; <a href="http://www.danmorella.com/wordpress/?p=418">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/banner.png"><img class="aligncenter size-medium wp-image-439" style="border-width: 2px; border-color: black; border-style: solid;" title="banner" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/banner.png" alt="" width="550" height="484" /></a></p>
<p>For the past three years, I have been working on and perfecting a customer queuing system. The original concept was developed as a response to our customers standing in line at the CCIT Support Center. At the beginning of each fall and spring semester, we would have students lined up out the door as our small help desk staff of 5 &#8211; 6 people tried to handle all the issues using a first come first serve model. The customers would get upset because they would stand in line forever, even for a simple plot pickup or password reset. Our staff were not being utilized efficiently because each person on the desk needed to have a very broad skill set in order to handle anything the next customer might need, from software issues to plot pickups.</p>
<p>Taking a cue (no pun intended) from the Department of Motor Vehicles, we decided a queuing system where a user would take a number and be helped by the next available agent trained in their specific need was the best solution. At first the queuing system simply accepted the user&#8217;s name, a reason for their visit, and asked them to have a seat. We installed chairs and couches, which were really well received by the customers. With the new information, we were able to generate reports on how long users were waiting, being assisted at the desk, and what type of issues they were visiting for.</p>
<p>The reporting information helped us streamline and soon we had express lines opened for requests that took under two minutes and users were flying through the support center. We went from customers waiting in line for an hour or more, to averaging under 10 minutes per customer. The queue system was expanded to include new options like integration with our ticketing system for more accurate ticketing and reporting, multiple desk locations for our satellite help desks around campus, and alerts to supervisors (visual and audible) when waits exceed specified amounts. The queue screen displayed to customers in our waiting area now includes a news crawler section that keeps them entertained and informed while they wait.</p>
<p>The system was developed using a combination of PHP, HTML, CSS, JavaScript (with AJAX), and Java. I have included some screenshots below.</p>
<p>The <strong>Sign In Screen</strong> can be displayed on one screen horizontally or vertically, or it can be displayed on a series of screens for more complicated sign in processes.</p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/signin_01.png"><img class="alignnone size-medium wp-image-427" style="border-width: 2px; border-color: black; border-style: solid;" title="signin_01" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/signin_01-300x137.png" alt="" width="300" height="137" /></a> <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/signin_02.png"><img class="alignnone size-medium wp-image-428" style="border-width: 2px; border-color: black; border-style: solid;" title="signin_02" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/signin_02-300x293.png" alt="" width="300" height="293" /></a><br />
<a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/signin_03.png"><img class="alignnone size-medium wp-image-429" style="border-width: 2px; border-color: black; border-style: solid;" title="signin_03" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/signin_03-300x207.png" alt="" width="200" /></a><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/signin_04.png"><img class="alignnone size-medium wp-image-430" style="border-width: 2px; border-color: black; border-style: solid;" title="signin_04" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/signin_04-300x154.png" alt="" width="200" height="154" /></a><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/signin_05.png"><img class="alignnone size-medium wp-image-431" style="border-width: 2px; border-color: black; border-style: solid;" title="signin_05" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/signin_05-300x126.png" alt="" width="200" /></a></p>
<p>The <strong>Queue Screen</strong> displays the current queue for customers and some helpful information.</p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/queue_01.png"><img class="alignnone size-medium wp-image-425" style="border-width: 2px; border-color: black; border-style: solid;" title="queue_01" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/queue_01-300x204.png" alt="" width="300" height="204" /></a> <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/queue_02.png"><img class="alignnone size-medium wp-image-426" style="border-width: 2px; border-color: black; border-style: solid;" title="queue_02" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/queue_02-300x204.png" alt="" width="300" height="204" /></a></p>
<p>The <strong>Agent Screen</strong> allows agents to assist customers, complete customers, and interact with their ticketing system tickets.</p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/agent_01.png"><img class="alignnone size-medium wp-image-423" style="border-width: 2px; border-color: black; border-style: solid;" title="agent_01" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/agent_01-300x151.png" alt="" width="300" height="151" /></a> <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/agent_02.png"><img class="alignnone size-medium wp-image-424" style="border-width: 2px; border-color: black; border-style: solid;" title="agent_02" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/agent_02-300x222.png" alt="" width="300" height="222" /></a></p>
<p>The <strong>Supervisor Screen</strong> allows supervisors to monitor the current activity and receive alerts from the queue system.</p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/supervisor_01.png"><img class="alignnone size-medium wp-image-437" style="border-width: 2px; border-color: black; border-style: solid;" title="supervisor_01" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/supervisor_01-300x171.png" alt="" width="300" height="171" /></a></p>
<p>The <strong>Admin Screen</strong> allows administrators to create new locations, configure those locations, define reasons for a customer visit, and report on activity.</p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/admin_04.png"><img class="alignnone size-medium wp-image-422" style="border-width: 2px; border-color: black; border-style: solid;" title="admin_04" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/admin_04-300x149.png" alt="" width="300" height="149" /></a> <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/admin_01.png"><img class="alignnone size-medium wp-image-419" style="border-width: 2px; border-color: black; border-style: solid;" title="admin_01" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/admin_01-300x277.png" alt="" width="300" height="277" /></a><br />
<a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/admin_02.png"><img class="alignnone size-medium wp-image-420" style="border-width: 2px; border-color: black; border-style: solid;" title="admin_02" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/admin_02-300x113.png" alt="" width="300" height="113" /></a><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/admin_03.png"><img class="alignnone size-medium wp-image-421" style="border-width: 2px; border-color: black; border-style: solid;" title="admin_03" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/admin_03-300x289.png" alt="" width="300" height="289" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danmorella.com/wordpress/?feed=rss2&#038;p=418</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2011 Spiderman Wall Jump</title>
		<link>http://www.danmorella.com/wordpress/?p=415</link>
		<comments>http://www.danmorella.com/wordpress/?p=415#comments</comments>
		<pubDate>Fri, 16 Sep 2011 17:38:19 +0000</pubDate>
		<dc:creator>Dan Morella</dc:creator>
				<category><![CDATA[2011]]></category>
		<category><![CDATA[Animation]]></category>
		<category><![CDATA[Autodesk Maya]]></category>
		<category><![CDATA[Film]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.danmorella.com/wordpress/?p=415</guid>
		<description><![CDATA[The day I started learning to animate with Maya, I&#8217;ve wanted to work with Spiderman. I&#8217;ve finally done it. I downloaded a free rig from Creative Crash and jumped right in.]]></description>
			<content:encoded><![CDATA[<p>The day I started learning to animate with Maya, I&#8217;ve wanted to work with Spiderman.  I&#8217;ve finally done it.  I downloaded a free rig from <a href='http://www.creativecrash.com/maya/downloads/character-rigs/c/spider-man'>Creative Crash</a> and jumped right in.<br />
<script src="http://www.danmorella.com/media/johndyer/build/jquery.js"></script><script src="http://www.danmorella.com/media/johndyer/build/mediaelement-and-player.min.js"></script>
<link rel="stylesheet" href="http://www.danmorella.com/media/johndyer/build/mediaelementplayer.min.css" /><video width="640" height="360" id="2011_Spiderman_WallJump" poster="http://www.danmorella.com/media/Jellyfish.jpg" controls="controls" preload="none">	<!-- MP4 source must come first for iOS -->	<source type="video/mp4" src="http://www.danmorella.com/media/2011_Spiderman_WallJump.mp4" />	<!-- WebM for Firefox 4 and Opera -->	<source type="video/webm" src="http://www.danmorella.com/media/2011_Spiderman_WallJump.webm" />	<!-- Fallback flash player for no-HTML5 browsers with JavaScript turned off -->	<object width="640" height="360" type="application/x-shockwave-flash" data="http://www.danmorella.com/media/johndyer/build/flashmediaelement.swf"><param name="movie" value="http://www.danmorella.com/media/johndyer/build/flashmediaelement.swf" /><param name="flashvars" value="controls=true&amp;file=http://www.danmorella.com/media/2011_Spiderman_WallJump.mp4" />		<!-- Image fall back for non-HTML5 browser with JavaScript turned off and no Flash player installed -->		<img src="http://www.danmorella.com/media/Jellyfish.jpg" width="640" height="360" alt="Here we are" title="No video playback capabilities" />	</object></video><br /><strong>Download Video:</strong><br />MP4 Format:	<a href="http://www.danmorella.com/media/2011_Spiderman_WallJump.mp4">"MP4"</a><br />WEBM Format:	<a href="http://www.danmorella.com/media/2011_Spiderman_WallJump.webm">"WebM"</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danmorella.com/wordpress/?feed=rss2&#038;p=415</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2009 Pirate Maze (Nintendo DS)</title>
		<link>http://www.danmorella.com/wordpress/?p=395</link>
		<comments>http://www.danmorella.com/wordpress/?p=395#comments</comments>
		<pubDate>Tue, 13 Sep 2011 12:44:46 +0000</pubDate>
		<dc:creator>Dan Morella</dc:creator>
				<category><![CDATA[2009]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[Year]]></category>

		<guid isPermaLink="false">http://www.danmorella.com/wordpress/?p=395</guid>
		<description><![CDATA[In 2009, I took an Educational Gaming class with Dr. Brian Malloy (http://cs.clemson.edu/~MALLOY/). Our goal was to create games that had an educational component for the Nintendo DS. My final project was a maze with brain teasers or puzzles mixed &#8230; <a href="http://www.danmorella.com/wordpress/?p=395">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In 2009, I took an Educational Gaming class with Dr. Brian Malloy (<a href="http://cs.clemson.edu/~MALLOY/">http://cs.clemson.edu/~MALLOY/</a>). Our goal was to create games that had an educational component for the Nintendo DS. My final project was a maze with brain teasers or puzzles mixed in. I decided to theme it around pirates and treasure hunting. You begin the game as a scuba diver searching for a lost treasure. As you make your way through the maze, your way is barred by booby traps that require the correct combination to move on. Each trap has some clues to their solution which must have been left by someone who came before. Let&#8217;s hope they didn&#8217;t find the treasure or this is all for nothing!</p>
<p>The game can be run on most any computer if you download an NDS emulator (<a href="http://en.wikipedia.org/wiki/Nintendo_DS_emulation">http://en.wikipedia.org/wiki/Nintendo_DS_emulation</a>). I recommend No$GBA because that is what I tested the game in. Not all the features work on a computer (like sound and saving), but if you actually decide to load the rom on an a Nintendo DS it will work as expected. I&#8217;ve included some screenshots and the NDS rom file.</p>
<p><a href='http://www.danmorella.com/media/2009_PirateMaze.nds'>2009_PirateMaze.nds</a></p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/01_homeScreen.png"><img class="alignnone size-medium wp-image-397" title="01_homeScreen" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/01_homeScreen-200x300.png" alt="" width="200" height="300" /></a>  <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/02_credits.png"><img class="alignnone size-medium wp-image-398" title="02_credits" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/02_credits-200x300.png" alt="" width="200" height="300" /></a>  <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/03_scores.png"><img class="alignnone size-medium wp-image-399" title="03_scores" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/03_scores-200x300.png" alt="" width="200" height="300" /></a></p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/04_gameplay.png"><img class="alignnone size-medium wp-image-400" title="04_gameplay" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/04_gameplay-200x300.png" alt="" width="200" height="300" /></a>  <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/05_gameplay.png"><img class="alignnone size-medium wp-image-401" title="05_gameplay" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/05_gameplay-200x300.png" alt="" width="200" height="300" /></a>  <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/11_gameplay.png"><img class="alignnone size-medium wp-image-407" title="11_gameplay" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/11_gameplay-200x300.png" alt="" width="200" height="300" /></a></p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/07_puzzle.png"><img class="alignnone size-medium wp-image-403" title="07_puzzle" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/07_puzzle-200x300.png" alt="" width="200" height="300" /></a>  <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/09_puzzle.png"><img class="alignnone size-medium wp-image-405" title="09_puzzle" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/09_puzzle-200x300.png" alt="" width="200" height="300" /></a>  <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/13_puzzle.png"><img class="alignnone size-medium wp-image-409" title="13_puzzle" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/13_puzzle-200x300.png" alt="" width="200" height="300" /></a></p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/14_gameplay.png"><img class="alignnone size-medium wp-image-410" title="14_gameplay" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/14_gameplay-200x300.png" alt="" width="200" height="300" /></a>  <a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/15_scores.png"><img class="alignnone size-medium wp-image-411" title="15_scores" src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/09/15_scores-200x300.png" alt="" width="200" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danmorella.com/wordpress/?feed=rss2&#038;p=395</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Lighting Blog</title>
		<link>http://www.danmorella.com/wordpress/?p=392</link>
		<comments>http://www.danmorella.com/wordpress/?p=392#comments</comments>
		<pubDate>Mon, 05 Sep 2011 12:21:50 +0000</pubDate>
		<dc:creator>Dan Morella</dc:creator>
				<category><![CDATA[2010]]></category>
		<category><![CDATA[Animation]]></category>
		<category><![CDATA[Live Action]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[School]]></category>

		<guid isPermaLink="false">http://www.danmorella.com/wordpress/?p=392</guid>
		<description><![CDATA[In the spring semester of 2010, I took a stage lighting class with Tony Penna. One of the requirements was to create a lighting blog where we analyzed the lighting in photos. http://www.danmorella.com/blog/. It was an enjoyable exercise and if &#8230; <a href="http://www.danmorella.com/wordpress/?p=392">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.danmorella.com/blog/images/20100114001040_2008_the_dark_knight_002.jpg'><br />
In the spring semester of 2010, I took a stage lighting class with <a href='http://www.clemson.edu/PerfArts/faculty/Penna.php'>Tony Penna</a>.  One of the requirements was to create a lighting blog where we analyzed the lighting in photos.  <a href='http://www.danmorella.com/blog/'>http://www.danmorella.com/blog/</a>.  It was an enjoyable exercise and if nothing else, I have amassed a large collection of really good images!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danmorella.com/wordpress/?feed=rss2&#038;p=392</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smuftastic!</title>
		<link>http://www.danmorella.com/wordpress/?p=293</link>
		<comments>http://www.danmorella.com/wordpress/?p=293#comments</comments>
		<pubDate>Sat, 20 Aug 2011 00:45:23 +0000</pubDate>
		<dc:creator>Dan Morella</dc:creator>
				<category><![CDATA[2011]]></category>
		<category><![CDATA[Adobe Photoshop Express]]></category>
		<category><![CDATA[Art]]></category>
		<category><![CDATA[Compositing]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Taptrix Brushes]]></category>
		<category><![CDATA[Year]]></category>

		<guid isPermaLink="false">http://www.danmorella.com/wordpress/?p=293</guid>
		<description><![CDATA[I have The Smurfs game for my iPhone. I hear it&#8217;s just like Farmville, but I&#8217;ve never played Farmville, so I can&#8217;t say for sure. Anyway, when you get far enough in the game you can purchase Vanity Smurf. If &#8230; <a href="http://www.danmorella.com/wordpress/?p=293">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/08/20110827-104540.jpg"><img src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/08/20110827-104540.jpg" alt="20110827-104540.jpg" class="alignnone size-full" width='300' /></a><br />
<br />
I have The Smurfs game for my iPhone.  I hear it&#8217;s just like Farmville, but I&#8217;ve never played Farmville, so I can&#8217;t say for sure.  Anyway, when you get far enough in the game you can purchase Vanity Smurf.  If you click on Vanity Smurf he lets you take a picture of yourself and add a Smurf hat and word bubble.  So I did just that.</p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/08/20110819-082845.jpg"><img src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/08/20110819-082845.jpg" alt="20110819-082845.jpg" class="alignnone size-full" width='300' /></a><br />
<br />
After taking the photo, I used Photoshop Express on the iPhone to tint the photo blue.</p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/08/20110819-083235.jpg"><img src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/08/20110819-083235.jpg" alt="20110819-083235.jpg" class="alignnone size-full" width='300' /></a><br />
<br />
Because I only wanted my skin to be blue, I opened the original picture in Brushes on the bottom layer.  Then I dropped the blue tinted picture on the next layer up and carefully erased everything that wasn&#8217;t skin to reveal the original image.</p>
<p><a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/08/20110819-083619.jpg"><img src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/08/20110819-083619.jpg" alt="20110819-083619.jpg" class="alignnone size-full" width='300' /></a><br />
<br />
Finally, I used the painting tools in Brushes to black out my teeth and add a cute tongue, because Smurfs don&#8217;t seem to have teeth.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danmorella.com/wordpress/?feed=rss2&#038;p=293</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>John from Nebraska</title>
		<link>http://www.danmorella.com/wordpress/?p=285</link>
		<comments>http://www.danmorella.com/wordpress/?p=285#comments</comments>
		<pubDate>Fri, 12 Aug 2011 20:48:05 +0000</pubDate>
		<dc:creator>Dan Morella</dc:creator>
				<category><![CDATA[Funny]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.danmorella.com/wordpress/?p=285</guid>
		<description><![CDATA[This is so good, I had to post it. I literally didn&#8217;t have a choice. Click HERE only if you don&#8217;t get it. See the original http://failbook.failblog.org/2011/08/11/funny-facebook-fails-john-from-nebraska/]]></description>
			<content:encoded><![CDATA[<p>This is so good, I had to post it.  I literally didn&#8217;t have a choice.<br />
<br />
<a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/08/20110812-043847.jpg"><img src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/08/20110812-043847.jpg" alt="20110812-043847.jpg" class="alignnone size-full" /></a><br />
<br />
<a href="http://www.danmorella.com/wordpress/wp-content/uploads/2011/08/20110812-043831.jpg"><img src="http://www.danmorella.com/wordpress/wp-content/uploads/2011/08/20110812-043831.jpg" alt="20110812-043831.jpg" class="alignnone size-full" /></a></p>
<p>Click <a href='http://en.wikipedia.org/wiki/Rickrolling'>HERE</a> only if you don&#8217;t get it.<br />
<br />
See the original <a href='http://failbook.failblog.org/2011/08/11/funny-facebook-fails-john-from-nebraska/'>http://failbook.failblog.org/2011/08/11/funny-facebook-fails-john-from-nebraska/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danmorella.com/wordpress/?feed=rss2&#038;p=285</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2000 Skate Saber</title>
		<link>http://www.danmorella.com/wordpress/?p=280</link>
		<comments>http://www.danmorella.com/wordpress/?p=280#comments</comments>
		<pubDate>Wed, 03 Aug 2011 00:08:34 +0000</pubDate>
		<dc:creator>Dan Morella</dc:creator>
				<category><![CDATA[2000]]></category>
		<category><![CDATA[Compositing]]></category>
		<category><![CDATA[Live Action]]></category>

		<guid isPermaLink="false">http://www.danmorella.com/wordpress/?p=280</guid>
		<description><![CDATA[Fresh out of high school and sitting in my freshman dorm, I decided to attempt a light saber. Only problem was I didn&#8217;t have a video camera, and I didn&#8217;t have any footage, so I found something else. Also, I &#8230; <a href="http://www.danmorella.com/wordpress/?p=280">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Fresh out of high school and sitting in my freshman dorm, I decided to attempt a light saber.  Only problem was I didn&#8217;t have a video camera, and I didn&#8217;t have any footage, so I found something else.  Also, I was kind of a fan of Triple H or as he was then known The Game.  Has anyone seen that movie The Chaperone.  I actually enjoyed it.<br />
<script src="http://www.danmorella.com/media/johndyer/build/jquery.js"></script><script src="http://www.danmorella.com/media/johndyer/build/mediaelement-and-player.min.js"></script>
<link rel="stylesheet" href="http://www.danmorella.com/media/johndyer/build/mediaelementplayer.min.css" /><video width="640" height="360" id="2000_SkateSaber" poster="http://www.danmorella.com/media/Jellyfish.jpg" controls="controls" preload="none">	<!-- MP4 source must come first for iOS -->	<source type="video/mp4" src="http://www.danmorella.com/media/2000_SkateSaber.mp4" />	<!-- WebM for Firefox 4 and Opera -->	<source type="video/webm" src="http://www.danmorella.com/media/2000_SkateSaber.webm" />	<!-- Fallback flash player for no-HTML5 browsers with JavaScript turned off -->	<object width="640" height="360" type="application/x-shockwave-flash" data="http://www.danmorella.com/media/johndyer/build/flashmediaelement.swf"><param name="movie" value="http://www.danmorella.com/media/johndyer/build/flashmediaelement.swf" /><param name="flashvars" value="controls=true&amp;file=http://www.danmorella.com/media/2000_SkateSaber.mp4" />		<!-- Image fall back for non-HTML5 browser with JavaScript turned off and no Flash player installed -->		<img src="http://www.danmorella.com/media/Jellyfish.jpg" width="640" height="360" alt="Here we are" title="No video playback capabilities" />	</object></video><br /><strong>Download Video:</strong><br />MP4 Format:	<a href="http://www.danmorella.com/media/2000_SkateSaber.mp4">"MP4"</a><br />WEBM Format:	<a href="http://www.danmorella.com/media/2000_SkateSaber.webm">"WebM"</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danmorella.com/wordpress/?feed=rss2&#038;p=280</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2005 Take It To the Hoop</title>
		<link>http://www.danmorella.com/wordpress/?p=278</link>
		<comments>http://www.danmorella.com/wordpress/?p=278#comments</comments>
		<pubDate>Wed, 03 Aug 2011 00:04:38 +0000</pubDate>
		<dc:creator>Dan Morella</dc:creator>
				<category><![CDATA[2005]]></category>
		<category><![CDATA[Film]]></category>
		<category><![CDATA[Live Action]]></category>

		<guid isPermaLink="false">http://www.danmorella.com/wordpress/?p=278</guid>
		<description><![CDATA[I created this for some film festival. Unfortunately, it didn&#8217;t get in. Am I surprised?]]></description>
			<content:encoded><![CDATA[<p>I created this for some film festival.  Unfortunately, it didn&#8217;t get in.  Am I surprised?<br />
<script src="http://www.danmorella.com/media/johndyer/build/jquery.js"></script><script src="http://www.danmorella.com/media/johndyer/build/mediaelement-and-player.min.js"></script>
<link rel="stylesheet" href="http://www.danmorella.com/media/johndyer/build/mediaelementplayer.min.css" /><video width="640" height="360" id="2005_TakeItToTheHoop" poster="http://www.danmorella.com/media/Jellyfish.jpg" controls="controls" preload="none">	<!-- MP4 source must come first for iOS -->	<source type="video/mp4" src="http://www.danmorella.com/media/2005_TakeItToTheHoop.mp4" />	<!-- WebM for Firefox 4 and Opera -->	<source type="video/webm" src="http://www.danmorella.com/media/2005_TakeItToTheHoop.webm" />	<!-- Fallback flash player for no-HTML5 browsers with JavaScript turned off -->	<object width="640" height="360" type="application/x-shockwave-flash" data="http://www.danmorella.com/media/johndyer/build/flashmediaelement.swf"><param name="movie" value="http://www.danmorella.com/media/johndyer/build/flashmediaelement.swf" /><param name="flashvars" value="controls=true&amp;file=http://www.danmorella.com/media/2005_TakeItToTheHoop.mp4" />		<!-- Image fall back for non-HTML5 browser with JavaScript turned off and no Flash player installed -->		<img src="http://www.danmorella.com/media/Jellyfish.jpg" width="640" height="360" alt="Here we are" title="No video playback capabilities" />	</object></video><br /><strong>Download Video:</strong><br />MP4 Format:	<a href="http://www.danmorella.com/media/2005_TakeItToTheHoop.mp4">"MP4"</a><br />WEBM Format:	<a href="http://www.danmorella.com/media/2005_TakeItToTheHoop.webm">"WebM"</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danmorella.com/wordpress/?feed=rss2&#038;p=278</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

