<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">

    <channel>
    
    <title>Paul May | Articles, Projects, Experiments.</title>
    <link>http://paulmay.org</link>
    <description>A feed of the latest stuff from across my blog.</description>
    <dc:language>en-us</dc:language>
    <dc:creator>webmail@paulmay.org</dc:creator>
    <dc:rights>Copyright </dc:rights>
    <admin:generatorAgent rdf:resource="http://expressionengine.com/" />
    

    <item>
      <title><![CDATA[Nature of Code: Creatures]]></title>
      <link>http://paulmay.org/articles/nature-of-code-creatures/</link>
      <guid>http://paulmay.org/articles/nature-of-code-creatures/#When:03:18:27Z</guid>
    <description>
        <![CDATA[
            My final project for Nature of Code; a landscape of food and danger inhabited by different species of artificial creatures. <p><a href="http://www.flickr.com/photos/paulmmay/6967228282/" title="Starting Point by paulmmay, on Flickr"><img src="http://farm8.staticflickr.com/7111/6967228282_5743d1a1a8_c.jpg" class="flickr" alt="Starting Point"></a>
</p><h3>Goals, Concept</h3><p>
I was really fascinated by the examples of artificial agents we worked through in the Nature of Code class; there is just something incredibly fun about being able to create pseudo-lifelike behaviour in software. </p>

<p>My goal for this project was to improve my understanding of <a href="http://www.red3d.com/cwr/steer/" title="Reynolds' steering behaviours">Reynolds&#8217; steering behaviours</a> and <a href="http://www.shiffman.net/teaching/nature/ga/" title="genetic algorithms">genetic algorithms</a> by designing a &#8220;landscape&#8221; inhabited by different species of creatures. In this landscape the creatures seek food, feed, flee from danger, reproduce, age and die.&nbsp; (The full proposal for the project <a href="http://paulmay.org/blog/nature-of-code-final-project-proposal/" title="is over here">is over here</a>).</p>

<h3>The Landscape</h3><p>
<a href="http://www.flickr.com/photos/paulmmay/7113306833/" title="Food Resources Regrown, Tiny Population by paulmmay, on Flickr"><img src="http://farm8.staticflickr.com/7228/7113306833_c63757d3d1_c.jpg" class="flickr" alt="Food Resources Regrown, Tiny Population"></a><br />
The landscape inhabited by the creatures contains a number of food-sources and threats. </p>

<p><b>Food-sources</b> are indicated by green circles, and as the creatures deplete these food sources they shrink, disappear and then regrow slowly. </p>

<p><b>Threats</b> are indicated by smaller red circles. Unlike food sources, these threats never deplete. If a creature comes too close, they are injured - proximity to the threat reduces the amount of energy that a creature has. </p>

<p>The creatures<b> retain a memory of food sources and threats</b>; these are indicated by the green and red icons that are displayed next to each creature. (This visual indication of creatures&#8217; memory was one of the most useful things I made for the project - much more useful and immediate than print-line statements.)</p>

<h3>The Creatures</h3><p>
<a href="http://www.flickr.com/photos/paulmmay/6987651766/" title="Creatures - Reproduction by paulmmay, on Flickr"><img src="http://farm9.staticflickr.com/8156/6987651766_9d08fd7449_c.jpg" class="flickr" alt="Creatures - Reproduction"></a><br />
The creatures have attributes and exhibit behaviours that help them survive:
</p><ul>
<li><strong>Energy/Life</strong>: The creatures are created with a finite amount of energy that is depleted when they move and over time. To replenish their energy supplies they must consume food. </li>
<li><strong>Seeking</strong>: The creatures will wander around the landscape at random until they find an object that interests them; at which point they will move towards that object.</li>
<li><strong>Vision</strong>: When the creatures are within a short distance of an object they can tell if it is food or a threat.</li>
<li><strong>Fleeing</strong>: The creature can move quickly away from threats.</li>
<li><strong>Feeding</strong>: The creature can arrive at a food source and consume it; the food source is depleted and the creature&#8217;s energy level increases.</li>
<li><strong>Reproduction</strong>: If the creature has sufficient energy and is close to another creature of its species, it has a chance of reproducing.</li>
<li><strong>Memory</strong>: Each creature can remember the food sources and threats it encounters in the landscape.</li>
</ul><p>
All of these behaviours are triggered depending on scenario the creature finds itself in; if it&#8217;s near an object, it will move towards it to examine it more closely and then feed/flee depending on what that object is. If the creature is near a potential mate, then a fitness algorithm will decide whether or not a new creature should be created etc.</p>

<h3>Video</h3><p>
This video shows the version of the project I presented in class, with a couple of small tweaks. In the video you&#8217;ll see three species searching for food and encountering threats. From time to time two creatures of the same species will encounter one another and a new creature will be produced. To make the new creatures easier to see a grey circle is drawn around them for the first 10 seconds of their life. A higher resolution version of the video can be <a href="https://vimeo.com/41397044" title="downloaded from Vimeo">downloaded from Vimeo</a>.
</p><iframe src="http://player.vimeo.com/video/41397044?color=f0d000" class="flickr" width="700" height="420" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>

<h3>Further Improvements</h3><p>
There are lots of ways in which this project could be improved upon. I will definitely improve the genetic algorithm that is used when new creatures are created. At the moment there is no mutation, so the results are predictable and the fitness of the creatures doesn&#8217;t improve across generations. </p>

<p>As I said in my original <a href="http://paulmay.org/blog/nature-of-code-final-project-proposal/" title="proposal">proposal</a>, I think it would also be great to tie some aspects of the landscape to information from the real world. Creatures could behave differently depending on the time of day, or they could respond to weather conditions. Food sources could regrow more quickly depending on weather etc. </p>

<h3>Documentation</h3><p>
All of the code from the project is <a href="https://github.com/paulmmay/Nature-of-Code" title="available on github">available on github</a>; just clone it to your computer and then open the sketch in Processing. The code is reasonably well commented. <a href="http://www.flickr.com/photos/paulmmay/sets/72157629123328271/" title="Screenshots are available on Flickr">Screenshots are available on Flickr</a> and there are several <a href="https://vimeo.com/album/1923090" title="work-in-progress videos on Vimeo">work-in-progress videos on Vimeo</a>. 
</p>
        ]]>
    </description>          
      <dc:date>2012-05-02T04:18:27+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Nature of Code: Showreel]]></title>
      <link>http://paulmay.org/articles/nature-of-code-showreel/</link>
      <guid>http://paulmay.org/articles/nature-of-code-showreel/#When:03:01:40Z</guid>
    <description>
        <![CDATA[
            A very short video showing some of the experiments and projects I did this semester in the Nature of Code class at ITP. <iframe src="http://player.vimeo.com/video/41395087?color=f0d000" class="flickr" width="700" height="394" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>

<p>You can <a href="https://vimeo.com/41395087" title="download a much higher quality version">download a much higher quality version</a> of the video over on Vimeo. The code for all the experiments and projects shown in the video is <a href="https://github.com/paulmmay/Nature-of-Code" title="available over on github">available over on github</a>.
</p>
        ]]>
    </description>          
      <dc:date>2012-05-02T04:01:40+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Snippet]]></title>
      <link>http://paulmay.org/articles/snippet/</link>
      <guid>http://paulmay.org/articles/snippet/#When:17:49:37Z</guid>
    <description>
        <![CDATA[
            Something that doesn't belong where I wrote it, and so is going to live here.<p>What I do believe is that we are still quite a long way away from having a shared and robust set of tools that can be applied to the creation of experiences that sit between the digital and the physical. The gap between our intention and what we end up making is still very wide - in saying this I&#8217;m thinking specifically about the ways in which creative teams come together to collaborate, the tools we use to map out our intentions, the hardware/software we use to try to express those intentions, the  hardware/software we use to foster genuine interactivity between people, the ways in which we share and improve the things that we do. It seems as though only the most exceptional among us get to jump the gap between intention and fidelity of outcome.</p>

<p>We have a long way to go before we can start a project knowing that we&#8217;ll be able to focus on the needs of people and not on overcoming obstacles.
</p>
        ]]>
    </description>          
      <dc:date>2012-04-22T18:49:37+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Nature of Code: Final Project Proposal]]></title>
      <link>http://paulmay.org/articles/nature-of-code-final-project-proposal/</link>
      <guid>http://paulmay.org/articles/nature-of-code-final-project-proposal/#When:15:42:46Z</guid>
    <description>
        <![CDATA[
            As my final project for Nature of Code I'm going to continue my experiments with Reynolds steering behaviours to create a pseudo-natural landscape of foraging creatures.<h3>Summary</h3><p>
I&#8217;ve had a lot of fun lately programming little creatures to <a href="http://paulmay.org/blog/nature-of-code-reynolds-steering/" title="display life-like behaviours like finding food, wandering, fleeing threats">display life-like behaviours like finding food, wandering, fleeing threats</a>. There is just something weirdly compelling about tweaking and shaping the way the creatures behave. </p>

<p>I&#8217;m going to continue this work. I&#8217;ll create a landscape populated by a number of different species of creature who exhibit different behaviours. They&#8217;ll be born, search for food, follow each other, flee from each other, seek shelter, reproduce and die. I&#8217;d like the creatures to have some sense of time and memory - things will happen depending on their age, and they&#8217;ll be able to store information about their interactions. This information will inform their decision making. </p>

<p>If I get time I may tie some of the attributes of the world to data from the real world; maybe some real weather data to inform weather in the world. Having any sort of direct communication between our world and the world of the creatures isn&#8217;t something I&#8217;m certain that I want to pursue; we&#8217;ll see. </p>

<h3>The Creatures</h3><p>
<a href="http://www.flickr.com/photos/paulmmay/6891472446/" title="01_creature_attributes by paulmmay, on Flickr"><img src="http://farm7.staticflickr.com/6058/6891472446_5f735793ca_b.jpg" class="flickr" alt="01_creature_attributes"></a><br />
The creatures will have some basic capabilities; abilities to walk, run, consume food, follow others.&nbsp; </p>

<p><a href="http://www.flickr.com/photos/paulmmay/7037567511/" title="02_creature_desires by paulmmay, on Flickr"><img src="http://farm8.staticflickr.com/7137/7037567511_b734a1807e_b.jpg" class="flickr" alt="02_creature_desires"></a><br />
The creatures will want for things, they&#8217;ll seek food, find a mate, flee from predators.</p>

<p><a href="http://www.flickr.com/photos/paulmmay/7037566717/" title="04_herds by paulmmay, on Flickr"><img src="http://farm7.staticflickr.com/6091/7037566717_5e5995b9a3_b.jpg" class="flickr" alt="04_herds"></a><br />
They creatures will organise themselves into groups based on their attributes.</p>

<p><a href="http://www.flickr.com/photos/paulmmay/7037566183/" title="06_time by paulmmay, on Flickr"><img src="http://farm8.staticflickr.com/7040/7037566183_fa787bd434_b.jpg"  class="flickr"  alt="06_time"></a><br />
The passage of time will influence the creatures&#8217; behaviour; during the day they will range far and wide energetically. At night they will seek shelter and stay close to one another.</p>

<h3>Landscape</h3><p>
<a href="http://www.flickr.com/photos/paulmmay/6891473726/" title="05_island by paulmmay, on Flickr"><img src="http://farm7.staticflickr.com/6105/6891473726_956904b16c_b.jpg" class="flickr" alt="05_island"></a><br />
The creatures will roam around on a landscape, probably an island of some sort - a space with natural boundaries.</p>

<p><a href="http://www.flickr.com/photos/paulmmay/6891471134/" title="03_textures by paulmmay, on Flickr"><img src="http://farm7.staticflickr.com/6117/6891471134_d7c19da143_b.jpg" class="flickr" alt="03_textures"></a><br />
The island will have some natural textures or types of terrain and the creatures will interact with these textures - feeding on them, avoid them etc.
</p>
        ]]>
    </description>          
      <dc:date>2012-04-04T16:42:46+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Thesis Week 10: Entering Final Phase]]></title>
      <link>http://paulmay.org/articles/thesis-week-10-entering-final-phase/</link>
      <guid>http://paulmay.org/articles/thesis-week-10-entering-final-phase/#When:17:37:19Z</guid>
    <description>
        <![CDATA[
            I'm entering the final 4 week phase of my project; wrapping up. <p>This week I <b>completed functional work on the prototype web application</b> related to my thesis; the app is now feature-complete (it does everything I identified as being critical to the delivery of the service to patients). The final piece of the puzzle was the implementation of a daily text message sent to a patient&#8217;s phone with feedback on the previous day&#8217;s exercise and encouragement to be active. This is what is sometimes called a &#8220;<a href="http://www.behaviormodel.org/triggers.html" title="hot trigger">hot trigger</a>&#8221; in persuasive systems design.&nbsp; </p>

<p>On Monday I <b>presented the project to my Thesis classmates</b> at ITP. I essentially summarised the background to the project, the different phases I had worked through and the results to date. The response was very positive. I&#8217;m proud of where I&#8217;ve managed to get to in 10 weeks, and I&#8217;ve learned a huge amount about my own design process. </p>

<h3>Next Steps</h3>

<p>I&#8217;m resisting the urge to add new things to the web application, and instead I&#8217;m focusing on <b>making the interface a little more intuitive</b> - and generally tidying up some bits and pieces. </p>

<p>On Tuesday of next week <b>I present the project to senior staff at Memorial Sloan-Kettering</b> for feedback and discussion. I&#8217;ll document what they have to say, and will try to implement any suggestions they have that can be done within the week. Anything that can&#8217;t be done within the week will have to persist into a subsequent project or phase, or taken as a requirement/idea for work they do in the future.
</p>
        ]]>
    </description>          
      <dc:date>2012-04-01T18:37:19+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Nature of Code: Reynolds Steering]]></title>
      <link>http://paulmay.org/articles/nature-of-code-reynolds-steering/</link>
      <guid>http://paulmay.org/articles/nature-of-code-reynolds-steering/#When:13:56:02Z</guid>
    <description>
        <![CDATA[
            This week for my Nature of Code class I'm doing a few experiments with Reynolds steering in Processing. <h3>Experiment 1 - Investigating</h3><p>
<a href="http://www.flickr.com/photos/paulmmay/7020882139/" title="Seek Object by paulmmay, on Flickr"><img src="http://farm8.staticflickr.com/7131/7020882139_8bded64c06_b.jpg" class="flickr" alt="Seek Object"></a></p>

<p>In this first experiment I wanted to create a &#8220;creature&#8221; that would wander an area. If the creature smells something, it goes to investigate. Once it gets within visual range it approaches cautiously. Once it gets very close and can see what exactly the &#8220;something&#8221; is it can make a decision to eat or run away.</p>
<p>I&#8217;m about half way through with this - the creature is wandering, sensing a far off object and going to investigate. I have to implement the cautious approach and fleeing.</p>
<p>The code for this simple experiment is on <a href="https://github.com/paulmmay/Nature-of-Code/tree/master/noc_steering" title="GitHub">GitHub</a> and is almost entirely based on Dan Shiffman&#8217;s <a href="https://github.com/shiffman/The-Nature-of-Code" title="examples">examples</a> of Reynolds steering behaviours in Processing.</p>

<h3>Experiment 2 - Fleeing, Memory</h3>
<iframe src="http://player.vimeo.com/video/39315771" class="flickr" width="700" height="394" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe><p>
<a href="http://www.flickr.com/photos/paulmmay/7021774343/" title="food-1465 by paulmmay, on Flickr"><img src="http://farm7.staticflickr.com/6031/7021774343_e46405d6a0_b.jpg" class="flickr" alt="food-1465"></a></p>

<p>In this next version the creatures are roaming a habitat. If they get within smelling distance of an interesting object, they go to investigate. If the object is a threat they run away quickly, retaining a memory of that object. The next time they come within smelling distance of that object they flee without going to take a closer look. You&#8217;ll see in the image that some creatures roaming the habitat have a little red circle in their &#8220;memory&#8221; denoting knowledge of a threatening object. </p>

<p>Next, I&#8217;ll introduce a second type of interesting object - food - that the creatures can feed upon, deplete and then leave. It might also be interesting to have the creatures share knowledge of threates with one another - but that&#8217;ll have to wait for version 4. I&#8217;m riffing on this for the rest of the day I think</p>
<h3>Experiment 3 - Depleting a Foodsource</h3>
<iframe src="http://player.vimeo.com/video/39315772" class="flickr" width="700" height="393" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe><p>
<a href="http://www.flickr.com/photos/paulmmay/6876189206/" title="Depleting Foodsource by paulmmay, on Flickr"><img src="http://farm7.staticflickr.com/6034/6876189206_c6100159df_b.jpg" class="flickr" alt="Depleting Foodsource"></a><br />
In this experiment the creatures are gravitating to a foodsource. As they feed, the foodsource is depleted. The more creatures who arrive to feed, the faster the foodsource is depleted. <br />
<a href="http://www.flickr.com/photos/paulmmay/6876189246/" title="Foodsource Depleted by paulmmay, on Flickr"><img src="http://farm7.staticflickr.com/6106/6876189246_2cda242341_b.jpg" class="flickr" alt="Foodsource Depleted"></a>
</p><p>When the foodsource is depleted, the creatures continue to wander. </p>
        ]]>
    </description>          
      <dc:date>2012-03-27T14:56:02+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Thesis Week 9: Prototyping Coming to a Close]]></title>
      <link>http://paulmay.org/articles/thesis-week-9-prototyping-coming-to-a-close/</link>
      <guid>http://paulmay.org/articles/thesis-week-9-prototyping-coming-to-a-close/#When:02:02:33Z</guid>
    <description>
        <![CDATA[
            I'm getting to the end of my prototyping phase; here's how I've been getting on this week. <p>I made great progress this week; it feels as though I am over the hump with my project. The web app at the centre of my proposed activity/exercise service for MSKCC is now functionally complete - save for a few tweaks. It&#8217;s absolutely a minimal viable product, it does just enough to be useful and act as a platform for criticism and testing. (It has been very hard to resist the urge to add more features).</p>

<p>A web application is not a service. Even though I&#8217;ve built this with real people in mind, people I met and interviewed during my research, I still have to put in place other things that would be necessary for this to be adopted as a real service - a timeline, coaching/training material for staff, help documentation etc. </p>

<p>I also have to establish exactly what hurdles exist that would need to be overcome before the service would launch - such as further testing, a security audit etc. At the end of the day it&#8217;s highly likely that for this to be used in a real context, with patients, an experienced developer would need to help out - but that is perfectly fine as far as I&#8217;m concerned. </p>

<p>So, I&#8217;m moving into a final phase - finishing out the look and feel of the web application, making supporting materials and writing up. </p>

<p>And like that, it&#8217;ll be Summer. 
</p>
        ]]>
    </description>          
      <dc:date>2012-03-26T03:02:33+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Thesis Week 8: Notifications, Nudges, Progress]]></title>
      <link>http://paulmay.org/articles/thesis-week-8-notifications-nudges-progress/</link>
      <guid>http://paulmay.org/articles/thesis-week-8-notifications-nudges-progress/#When:12:57:58Z</guid>
    <description>
        <![CDATA[
            A solid week of little improvements to the practical part of my thesis project - the end is in sight. <p>I spent this week working to close the loop between people using Activity App; my little extension of the FitBit service. I built on a dashboard for clinicians to see patient activity/progress as well as e-mail and SMS notifications to patients to offer encouragement and feedback. I am getting to a point now where the app is functionally useful. </p>

<p>As I&#8217;ve been developing I&#8217;ve been testing the app on myself, and now two other volunteers - two members of staff from MSKCC have been wearing FitBits for the last week. They subscribed to the Activity App allowing administrators to see their progress, offer feedback etc. Having real data coming in has been incredibly useful. </p>

<p>In other news, I&#8217;ve been working with the hospital to see how this type of service could be useful after the end of my thesis - there are positive signs that my project could be included in a clinical protocol (the set of rules, procedures that govern a clinical trial on a particular patient population) which would allow me to roll it out to some bone marrow transplant recipients, gather data and then improve the system. </p>

<p>The next major milestone for me is the 4th of April when I present the working prototype of the service and supporting materials to medical and administrative staff at the hospital. After this milestone I&#8217;ll be moving into a tweaks phase and working almost exclusively on documentation, forward-planning.
</p>
        ]]>
    </description>          
      <dc:date>2012-03-20T13:57:58+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Thesis Week 7: A Mixed Bag]]></title>
      <link>http://paulmay.org/articles/thesis-week-7-mixed-bag/</link>
      <guid>http://paulmay.org/articles/thesis-week-7-mixed-bag/#When:01:30:12Z</guid>
    <description>
        <![CDATA[
            A so-so week of prototyping and noodling, sneezing and spluttering.<p>I spent the start of the week getting back up to speed after a weekend in Chicago seeing my brother and his wife, Amy. That trip was a much needed break, but when I got home I realised that I was getting sick, and the rest of the week kind of went downhill from there. It&#8217;s just a cold, but it has kind of knocked the stuffing out of me. I managed to make some progress on the project, which is good - but certainly not a week where what I have now looks significantly better than what I had last week.</p>

<p>Aside from being sick this week, I also started to feel a bit jaded by the grind of the solo, semester-long project. Working on solo projects is usually right up my street, but I&#8217;ve been too distant from my friends at ITP, and this has added to the normal challenges of working alone. At the half-way point of the semester I have time to adjust and re-connect; I just need to make sure that I do. </p>

<p>A tricky week.</p>

<p>
</p>
        ]]>
    </description>          
      <dc:date>2012-03-11T02:30:12+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Illuminating Data: Visualizing the Information that Moves Our World]]></title>
      <link>http://paulmay.org/articles/illuminating-data-visualizing-the-information-that-moves-our-world/</link>
      <guid>http://paulmay.org/articles/illuminating-data-visualizing-the-information-that-moves-our-world/#When:17:54:29Z</guid>
    <description>
        <![CDATA[
            I'm proud to announce that <a href="http://paulmay.org/blog/from-over-here" title="one of my projects">one of my projects</a> will feature in the show <a href="http://tcnjartgallery.pages.tcnj.edu/2012/03/01/illuminating-data-visualizing-the-information-that-moves-our-world/">Illuminating Data: Visualizing the Information that Moves Our World</a> at The College of New Jersey Art Gallery. <p>The show runs from the 14th of March to the 18th of April and will also feature work by Jer Thorp, Marius Watz and others. I am looking forward to it. <br />
<img src = "http://paulmay.org/images/uploads/illum-data.jpg" alt="flier for the Illuminating Data show" class="flickr" />
</p>
        ]]>
    </description>          
      <dc:date>2012-03-03T18:54:29+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Thesis Week 6: Prototyping, Patient Interview]]></title>
      <link>http://paulmay.org/articles/thesis-week-6-prototyping-patient-interview/</link>
      <guid>http://paulmay.org/articles/thesis-week-6-prototyping-patient-interview/#When:15:22:37Z</guid>
    <description>
        <![CDATA[
            This week I worked mostly the web portion of the project; a dashboard for clinicians to assess patients' level of activity; but progress hasn't been lightning-fast. <p>In the last two weeks I&#8217;ve moved from the research and concept phase of my thesis into a prototyping phase. It&#8217;s been a pretty quick turnaround and now I&#8217;m into the guts of <a href="http://paulmay.org/blog/thesis-week-5-concepting-prototyping/" title=" building a useful rehabilitation tool">building a useful rehabilitation tool</a> based on the needs of patients and staff at Sloan-Kettering. </p>

<p>Right now my focus is on building a simple web application that will allow patients to get a sense of their physical activity and monitor modest goals, while giving clinicians some oversight. I&#8217;m building the application using Sinatra. I&#8217;ve had some great help from <a href="http://skli.se/" title="Steven Klise">Steven Klise</a>, and I am slowly - ever so slowly - making progress. I&#8217;m successfully pulling data in from the FitBit API and storing it against a local user record. This is all I really wanted to achieve in the first few weeks. I now need to move on and implement the more specific pieces of the puzzle - a persuasive feedback system that draws clinicians and patients together with positive effect. </p>

<p>As I work on this phase I&#8217;ve been getting drawing on the insight from the research phase to keep me on track, and I also had the pleasure of interviewing one of the hospital&#8217;s patients this week. We talked about his treatment experience and about the challenge of maintaining physical condition, and he had some encouraging feedback on my project. </p>

<p>The next couple of weeks are really crucial; there&#8217;s so much to do - but I am feeling pretty positive (if a tad overwhelmed).</p>



<p>
</p>
        ]]>
    </description>          
      <dc:date>2012-03-03T16:22:37+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Jetsom: Progress]]></title>
      <link>http://paulmay.org/articles/jetsom-progress/</link>
      <guid>http://paulmay.org/articles/jetsom-progress/#When:04:16:39Z</guid>
    <description>
        <![CDATA[
            A quick update on my Nature of Code midterm project.<p>Jetsom is a physics-directed representation of the ephemera I find around my home. I&#8217;m just getting started with it, and have been starting to build up a set of data - scanned images and accompanying information. So, let&#8217;s say it&#8217;s a theatre ticket - I have scanned the ticket, and stored information like the address of the theatre and the price of a ticket in a database.</p>

<p>Once I had a simple test dataset I started to build the usual internal machinery of a sketch like this - functions to get the data and parse it into objects. I&#8217;ve had very little time to make the visual rendering step anything more than a Box2D hello world.</p>

<p><a href="http://www.flickr.com/photos/paulmmay/6945528483/" title="Jetsom by paulmmay, on Flickr"><img src="http://farm8.staticflickr.com/7190/6945528483_ae098106bc_b.jpg" class="flickr" alt="a screenshot of jetsom - a series of rectancles sitting on a surface"></a></p>

<p>At the moment the processing sketch is loading information from a database. For each row of the data set an object is created and a corresponding image is loaded into it. Each image is analyzed to find its size and average colour. This information is used to inform the creation of Box2D elements, and then the object is placed into the Box2D world. The objects appear and are directed down with the force of gravity, coming to rest on a surface. </p>

<p><a href="http://www.flickr.com/photos/paulmmay/6945565681/" title="Jetsom by paulmmay, on Flickr"><img src="http://farm8.staticflickr.com/7039/6945565681_fcc363309b_b.jpg" class="flickr" alt="a series of rectangles sitting on a surface"></a></p>

<p>It&#8217;s super simple for now. I will probably not be using Box2D after I hand in the mid-term; I&#8217;m interested in getting away from the literal representation of the pieces of ephemera - when I have more time I&#8217;ll decide exactly what that means. I&#8217;m drawn to the idea that this junk is like leaf litter, or layers of time. </p>

<p>We shall see.</p>


        ]]>
    </description>          
      <dc:date>2012-03-02T05:16:39+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Jetsom: Design Inspiration]]></title>
      <link>http://paulmay.org/articles/jetsom-design-inspiration/</link>
      <guid>http://paulmay.org/articles/jetsom-design-inspiration/#When:15:59:14Z</guid>
    <description>
        <![CDATA[
            A growing collage of images and links related to my Nature of Code project <em>Jetsom</em>.<p>I&#8217;m building a visualization of ephemera and little items I&#8217;ve deliberately or inadvertently gathered in the last few years. I am quite a long way away from thinking about aesthetics, but this stuff resonates with me and may inform the rest of the project. </p>

<h3>Accretion</h3><p>
<a href="http://en.wikipedia.org/wiki/Katamari_Damacy"><img class="flickr" src="http://paulmay.org/images/uploads/katamari.jpg" alt="katamari" /></a>
</p><p>Karamari Damacy - The quite bonkers game where you control a giant rolling ball that collects things as it moves. </p>

<p><a href="http://www.nature.com/nature/journal/v473/n7348/fig_tab/473460a_F1.html">Planetary accretion</a> - In astrophysics, accretion is the growth of a body through the gravitation attraction of other matter.</p>

<h3>Geology</h3><p>
<a href="http://www.wired.com/wiredscience/2010/09/the-nature-of-time-in-the-geologic-record/"><img src="http://paulmay.org/images/uploads/strata.jpg" class="flickr"/></a><br />
<a class="smaller" href="http://www.flickr.com/photos/66176388@N00/352871475/">image source</a></p>

<h3>Detritus</h3><p>
<img src="http://paulmay.org/images/uploads/leaves.jpg" class="flickr" alt="leaves"/><br />
<a class="smaller" href="http://www.flickr.com/photos/willbeardphoto/3340290494/">image source</a></p>

<h3>Flocking, Group Behaviours</h3><p>
<img src="http://paulmay.org/images/uploads/starlings.jpg" class="flickr" /><br />
<a class="smaller" href="http://www.flickr.com/photos/yourdon/4196685453/sizes/l/in/photostream/">image source</a>
</p>
        ]]>
    </description>          
      <dc:date>2012-02-28T16:59:14+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Thesis Week 5: Concepting, Prototyping]]></title>
      <link>http://paulmay.org/articles/thesis-week-5-concepting-prototyping/</link>
      <guid>http://paulmay.org/articles/thesis-week-5-concepting-prototyping/#When:14:29:49Z</guid>
    <description>
        <![CDATA[
            Last week I moved on from the research phase of my thesis project into a phase of concepting and prototyping. Here's a quick note on my progress. <p>In week 5 of my thesis I presented my progress and initial findings to the Innovation team at Memorial Sloan-Kettering Cancer Center for feedback and discussion. During my research at the hospital I identified many opportunities to improve patients&#8217; experience through design, but two themes came through repeatedly; <b>information</b> and <b>activity</b>. </p>

<p>The first theme related to the the complexity and volume of information that patients and their families receive and understand during the bone marrow transplantation process. I saw how information offered to patients could seem overwhelming given their context, and I had some ideas as to how information could be delivered/experienced in a more natural way. </p>

<p>The second theme centred on patient&#8217;s level of physical activity. During my interviews with them, doctors and therapists had stated the clinical benefits of exercise before, during and after a bone marrow transplant. The reasons for exercise change throughout the patient&#8217;s journey, and the amount they need to do varies as well. In the patients&#8217; context where they experience periods of isolation and some debilitating symptoms, encouraging activity is not straightforward. I had some ideas about the design of a persuasive system to encourage activity in patients.</p>

<p>I&#8217;ve decided to <b>pursue this second idea for the remainder of my thesis</b>. I&#8217;ll prototype a service that will encourage patients to remain physically active throughout their treatment in a way that is sensitive to their context. The service will also give their medical team some oversight, and will encourage them to play a role in motivating patients. Most of the key parts of this service will be non-technical - they&#8217;ll be tools/guides that will help to guide different members of the clinical team as to their role in deliver the service. Having said that I will build a web application of some kind to help act as a hub for the service. This project dovetails nicely with the work I did last semester on the design of persuasive health applications in my DIY Health class with Steven Dean. </p>

<p>I have written more detailed documentation around this concept; a project mandate, some constraints and design principles. This documentation will be my guide in the next four weeks of prototyping. I&#8217;ll also continue to work closely with the staff at MSKCC, and I&#8217;ll have a more formal checkpoint with them in late March. </p>

<p>In the next two weeks I&#8217;ll interview some patients who are currently undergoing treatment and these interviews will focus specifically on the challenges around physical activity. I&#8217;ll then complete a simple sketch/prototype of the service and gather some feedback.</p>

<p>So, things are going to some sort of plan. I hope you&#8217;re well. 
</p>
        ]]>
    </description>          
      <dc:date>2012-02-28T15:29:49+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Nature of Code: Jetsom]]></title>
      <link>http://paulmay.org/articles/nature-of-code-jetsom/</link>
      <guid>http://paulmay.org/articles/nature-of-code-jetsom/#When:23:05:22Z</guid>
    <description>
        <![CDATA[
            For my Nature of Code class I'm going to make a little application that stores and represents information about little pieces of ephemera I find around my home. I call it Jetsom. <p>I am getting to the end of my time at ITP; it&#8217;s been an amazing two years. I am going to use my Nature of Code midterm, and probably final as a way to look back at the last few years through data and representation. </p>

<p>Like a lot of people I seem to accumulate a lot of little items of paper and card; receipts, fliers, bills, menus. I keep some items deliberately because they represent memorable events, but most of it just accumulates - I&#8217;ve come to think of this as a form of <b>inadvertent record keeping</b>. </p>

<p>For my Nature of Code project I&#8217;m going to <b>find</b> every item of this ephemera I can find in my home. I&#8217;m going to <b>scan</b> each item, creating an image, and then <b>store</b> this image and any useful information I know about the item in a database. </p>

<p>I&#8217;ll <b>feed</b> this data into Processing, and <b>represent</b> the data using computer graphics and sound. I would like the items to have aesthetic qualities and behaviours related to their origin - so I&#8217;ll use data related to the item and a <b>physics</b> engine to power these qualities e.g. each new item finds other similar items, or flocks with items from the same time period.</p>

<p>My goal for the mid-term project is to find the physical items, scan and catalogue a subset of them, pull data into processing and represent them in some simplistic way. Over time I&#8217;ll add more complexity.</p>

<p>I&#8217;ll write more about the project over the next few weeks. 
</p>
        ]]>
    </description>          
      <dc:date>2012-02-28T00:05:22+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Thesis Week 4: Research Complete]]></title>
      <link>http://paulmay.org/articles/thesis-week-4-research-complete/</link>
      <guid>http://paulmay.org/articles/thesis-week-4-research-complete/#When:21:59:41Z</guid>
    <description>
        <![CDATA[
            This week I completed the research phase of my thesis project; just a bit behind schedule. <p>This week marked the end of the 4-week long research phase of my thesis project. The research phase included background reading about bone marrow transplantation, and analysis of documentation and other materials available within MSKCC - patient interviews and design work done in the past. </p>

<p>When I felt that I had a good handle on the background to bone marrow transplantation, and knew enough to start asking stupid questions - I moved into some primary research; interviewing people who work in areas related to bone marrow transplantation (with a focus on rehabilitation and/or post-transplant care). All of these interviews have now been transcribed, and I&#8217;ve drawn out key pieces of information and quotes from the transcripts. </p>

<p>I enjoyed the research phase a lot; I met some really remarkable people and had the opportunity to reflect on my design process in a lot of detail. I&#8217;ve identified a couple of exciting, practical projects that I think flow naturally from the research findings - so now I just need to pick what sub-set of these challenges I want to focus on for the next few weeks and get building. </p>

<p>
</p>
        ]]>
    </description>          
      <dc:date>2012-02-20T22:59:41+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Thesis Week 3: Interviews Underway]]></title>
      <link>http://paulmay.org/articles/thesis-week-3-interviews-underway/</link>
      <guid>http://paulmay.org/articles/thesis-week-3-interviews-underway/#When:02:17:45Z</guid>
    <description>
        <![CDATA[
            I am just past the mid-point of the research phase of my thesis; this week was mostly spent interviewing staff at MSKCC. <p>As part of my thesis project, which I&#8217;m working on in colalboration with Memorial Sloan-Kettering Cancer Center, I&#8217;m conducting one month of desk and primary research - reading things, talking to people and observing. This week I completed five interviews with administrative and medical staff at MSKCC. The interviews are helping build a picture of the bone marrow transplantation process and the rehabilitation phase that follows. I&#8217;ve transcribed these interviews and have started to draw out key insights. </p>

<p>Next week, I&#8217;ll complete my round of interviews and will spend some time doing observation exercises at the hospital. After that I get into concept development - then prototyping.</p>

<p>Time is flying, but I&#8217;m very happy with the work completed so far.&nbsp; 
</p>
        ]]>
    </description>          
      <dc:date>2012-02-13T03:17:45+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Nature of Code: Week 2 Progress]]></title>
      <link>http://paulmay.org/articles/nature-of-code-week-2-progress/</link>
      <guid>http://paulmay.org/articles/nature-of-code-week-2-progress/#When:23:23:14Z</guid>
    <description>
        <![CDATA[
            I'm really enjoying the Nature of Code class with Dan Shiffman; here are a few things I've been working on. <p><a href="http://www.flickr.com/photos/paulmmay/6799181921/" title="Drawing Robot by paulmmay, on Flickr"><img src="http://farm8.staticflickr.com/7033/6799181921_7e07c99f86_b.jpg" class="flickr" alt="Drawing Robot"></a></p>

<p>A robot wandering in a seemingly random direction - noisy rather than random.</p>

<p><a href="http://www.flickr.com/photos/paulmmay/6799182167/" title="Wandering Robots by paulmmay, on Flickr"><img src="http://farm8.staticflickr.com/7147/6799182167_b0089b7d97_b.jpg" class="flickr" alt="Wandering Robots"></a></p>

<p>Wandering robots who keep track of each other.</p>

<p><a href="http://www.flickr.com/photos/paulmmay/6799182327/" title="Attractive Bodies by paulmmay, on Flickr"><img src="http://farm8.staticflickr.com/7021/6799182327_f089276a2e_b.jpg" class="flickr" alt="Attractive Bodies"></a></p>

<p>Wandering robots who keep track of each other and are affected by an attractive force emanating from a dense body.</p>

<p><a href="http://www.flickr.com/photos/paulmmay/6838247411/" title="1643 by paulmmay, on Flickr"><img src="http://farm8.staticflickr.com/7167/6838247411_13407d5659_b.jpg" class="flickr" alt="Attractive Body"></a></p>

<p>A number of objects orbiting a dense body.</p>

<p><a href="http://www.flickr.com/photos/paulmmay/6836475249/" title="Orbit by paulmmay, on Flickr"><img src="http://farm8.staticflickr.com/7007/6836475249_506fb8faaa_b.jpg" class="flickr" alt="Orbit"></a></p>

<p>A number of objects orbiting a dense body, leaving trails. </p>

<h3>Next Steps</h3>

<p>I want to start connecting some live data to the behaviour of these little systems - I&#8217;ll keep you posted.</p>

<p>&nbsp;</p>

<p>
</p>
        ]]>
    </description>          
      <dc:date>2012-02-08T00:23:14+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Thesis Weeks 1 &amp; 2: Off to a Good Start]]></title>
      <link>http://paulmay.org/articles/thesis-weeks-1-2-off-to-a-good-start/</link>
      <guid>http://paulmay.org/articles/thesis-weeks-1-2-off-to-a-good-start/#When:19:15:41Z</guid>
    <description>
        <![CDATA[
            For my thesis at ITP I am collaborating on a design project with Memorial Sloan-Kettering Cancer Center, one of the world's leading centres for cancer research and treatment. My project is to to understand and design improvements/interventions related to bone marrow transplantation; one of the most challenging forms of cancer treatment currently available to patients. In the first of my weekly updates I've written a bit about how the collaboration came about, what I hope to achieve with the project, and what I've been doing in the last few weeks. <h3>Background</h3>

<p>While at ITP I&#8217;ve had an opportunity to explore some themes that are deeply personal and relevant to me, including health and well-being. My family has a longstanding with cancer and I&#8217;ve used some of my projects at ITP as vehicles to understand the disease.</p>

<p>Last year I completed a project called <a href="http://paulmay.org/blog/we-are-working-on-it/" title="We Are Working On It ">We Are Working On It </a>- a visualisation of the many millions of scientific journal articles that have been written about cancer since 1980, presented alongside interviews with <a href="http://www.mskcc.org/research/lab/simon-powell/members" title="Ciara O'Driscoll and Laura Eccles">Ciara O&#8217;Driscoll and Laura Eccles</a>; two research scientists at Memorial Sloan-Kettering&#8217;s Powell Lab. In my DIY Health class with <a href="https://twitter.com/sgdean" title="Steven Dean">Steven Dean</a> we spent a full semester working to research and design persuasive systems to improve health; my final project for that class was <a href="http://www.paulmay.org/blog/pilot" title="Pilot">Pilot</a>, a device to monitor, analyse and improve swimming technique. </p>

<h3>Collaborating with Sloan-Kettering</h3><p>
During one DIY Health class Steven Dean mentioned that Memorial Sloan-Kettering Cancer Center (MSKCC) had an innovation team whose job it was to design and improve the patient experience. This sounded really interesting, so I asked him to put me in touch with them. </p>

<p>I met with the innovation team at MSKCC several times in the Autumn and Winter of 2011. They were incredibly open and welcoming to the idea of a collaboration. We talked about possible areas of focus, and identified the bone marrow transplantation process as of particular interest. This is a hugely challenging form of cancer therapy that pushes the human body to its limit - the team were interested in doing whatever they could to improve the experience of bone marrow transplantation, especially the long period of rehabilitation and recovery. We agreed that this would be my (broadly defined) area of focus.</p>

<p>I wrote a detailed project proposal and put it to MSKCC in December of 2011. The proposal broke the project down into four phases;<b> design research, prototyping, production and presentation</b>. I&#8217;d work closely with MSKCC to understand the bone marrow transplantation process in detail (through interviews and desk research). Based on this work I&#8217;d identify a number of insights and use them to define some sort of intervention in the experience of patients. The rest of the project would involve making this intervention real, testing it and presenting it/gathering feedback.</p>

<p>I got the go-ahead for the project in mid-January of 2012, and for the last two weeks have been working through the start of my research. </p>

<h3>Weeks 1 &amp; 2: Crash Course</h3>

<p>Since getting the go-ahead on the project I have really just had to dive into this world. I&#8217;ve done a good deal of <b>reading</b> on the bone marrow transplantation (BMT); focusing on<b> academic literature that describes the process and support material given to patients and their families to explain the disease</b>. I&#8217;ve done further reading on the process of rehabilitation and its many potential pitfalls. I&#8217;ve looked at the psycho-social aspects of the process and the roles that different people play in supporting the patient. </p>

<p>The reading has allowed me to understand at a very basic level what bone marrow transplantation is, when its necessary, who is involved in the process and how recovery and rehabilitation work. </p>

<p>I&#8217;ve also read <b>documentation given to me by the MSKCC innovation team</b> related to previous projects; they have worked with teams of outside designers in the recent past to develop concepts related to bone marrow transplantation. The work is pretty exceptional and the documentation has been immensely helpful, especially interview transcripts with medical staff, patients and families.</p>

<p>As well as desk research, this week I was able to<b> tour the bone marrow transplantation ward</b> at MSKCC with a member of the innovation team. We walked through the space to see where key steps of the process happen, and I was able to <b>take photos and an audio recording</b> documenting what I saw. </p>

<h3>Next Steps</h3>

<p>Next week I really want to<b> take all that I&#8217;ve learned in the last few weeks and make it more tangible/concise</b>; I&#8217;ll take my written notes and start to <b>boil them down into little nuggets of information, key insights and quotes</b>. Now that I have a grounding in the basics I can start to talk to people involved in the process; so next week I&#8217;ll <b>interview members of the innovation team and medical staff</b>.&nbsp; </p>

<p>I&#8217;ve allowed for two more full weeks of research before I move on to concept development and prototyping; not a lot of time, but hopefully enough to inform the rest of the project. 
</p>
        ]]>
    </description>          
      <dc:date>2012-02-04T20:15:41+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Forever]]></title>
      <link>http://paulmay.org/articles/forever/</link>
      <guid>http://paulmay.org/articles/forever/#When:20:05:06Z</guid>
    <description>
        <![CDATA[
            Forever is an immersive experience for one person; created with Lily Szajnberg for the <i>Recurring Concepts in Art</i> class at ITP<h3>Concept</h3><p>
In our Recurrning Concepts in Art class we were asked to take a previous project made at ITP and re-conceptualise/remake it without using technology.</p>

<p>Lily Szajnberg and I worked together to take two projects that involved tactility, physical sensation and strong emotion - merging them into <a href="https://docs.google.com/document/d/1wLckYKyaXySeZikThJJt2VYPf2Z27fg2_Ad5xvssmFk/edit?hl=en_US" title="one project that could serve as an exploration of Spectacle">one project that could serve as an exploration of Spectacle</a>; in which we both shared an interest. </p>

<p>Our goal was to create an immersive, overwhelming experience for one person without using the traditional technologies of <a href="http://en.wikipedia.org/wiki/The_Society_of_the_Spectacle" title="Spectacle">Spectacle</a>.</p>

<h3>Construction</h3><p>
We set out to create an environment that could physically envelope a participant. The key technical challenge was building a space big enough for a human. We investigated using sewer pipe and telephone kiosks - eventually we decided to build the &#8220;vessel&#8221; for ourselves.&nbsp; We constructed a 4 feet x 4 feet by 6 feet &#8220;vessel&#8221; and used steel cables and rigging to suspend it from the lighting grid at ITP. </p>

<p>Originally, we thought that making this an automated/self-directed experience made sense - but we were keen to avoid complex technologies, sensors etc. The more we thought about having to interact with the participant directly, the more we liked the idea - the experience would remain personal and individual, but be directed from outside; this seemed appropriate. We added a layer of inflatable seating/bedding to the inside of the vessel, inflated by two high-powered electric air pumps. </p>

<h3>Forever</h3><p>
Forever is an interactive art installation. The participant is asked to put on ear-protection and dark glasses. The participant enters a large vessel which is suspended from the ceiling. Two operators use pumps to inflate the interior walls of the vessel around the participant. After a period of time the walls are deflated and the participant exits. The next person is made ready, and enters the vessel.</p>

<p><a href="http://www.flickr.com/photos/paulmmay/6529119743/" title="Forever by paulmmay, on Flickr"><img src="http://farm8.staticflickr.com/7150/6529119743_838d524160_b.jpg" class="flickr" alt="Forever"></a></p>

<h3>Response</h3><p>
We were asked to reflect on the project. We chose to make an audio recording of our thoughts about the project. The recording was made on the 14th November 2011, one month before the ITP Winter Show. 
</p><object height="81" width="100%"> <param name="movie" value="https://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F31733691"></param> <param name="allowscriptaccess" value="always"></param> <embed allowscriptaccess="always" height="81" src="https://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F31733691" type="application/x-shockwave-flash" width="100%"></embed> </object><p>&nbsp; <span><a href="http://soundcloud.com/paulmmay/forever">Forever</a> by <a href="http://soundcloud.com/paulmmay">paulmmay</a></span> </p>

<h3>Reaction</h3><p>
Forever was presented for the two days of the ITP Winter Show 2011. We estimate that over 100 people took part in the experience. </p>

<p><a href="http://www.flickr.com/photos/spikeiam/6552983485/" title="Forever by spikespikespike, on Flickr"><img src="http://farm8.staticflickr.com/7163/6552983485_d5f6c57d8a_b.jpg" class="flickr" alt="Forever"></a></p>

<p><a href="http://www.flickr.com/photos/spikeiam/6552445191/" title="Forever by spikespikespike, on Flickr"><img src="http://farm8.staticflickr.com/7162/6552445191_952e858668_b.jpg" class="flickr" alt="Forever"></a></p>

<p><a href="http://www.flickr.com/photos/spikeiam/6552449659/" title="Forever by spikespikespike, on Flickr"><img src="http://farm8.staticflickr.com/7033/6552449659_5b3940f740_b.jpg" class="flickr" alt="Forever"></a></p>

<h3>Thanks</h3><p>
We&#8217;d like to thank our amazing classmates who inspired and challenged us throughout the semester, and Georgia Krantz for leading the Recurring Concepts in Art Class with great skill and dedication. </p>



<p>&nbsp;</p>
        ]]>
    </description>          
      <dc:date>2011-12-27T21:05:06+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Pilot]]></title>
      <link>http://paulmay.org/articles/pilot/</link>
      <guid>http://paulmay.org/articles/pilot/#When:16:48:20Z</guid>
    <description>
        <![CDATA[
            A write-up of my final project for the DIY Health class at ITP. Pilot is a wearable device that gives swimmers real-time feedback on their form in the water, helping them to swim more efficiently. <h3>Final Video</h3>
<iframe src="http://player.vimeo.com/video/33674453?title=0&amp;byline=0&amp;portrait=0&amp;color=09aee0" width="699" height="393" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>

<h3>The Brief</h3><p>
The <a href="http://paulmay.org/images/uploads/itp-final-project.pdf" title="brief for the final project ">brief for the final project</a> of our DIY Health class was to: </p><blockquote><p>Design and develop an interactive system that helps you take stock of yourself to set goals and act upon your health and lifestyle. Your design intervention will include components that help you develop a systematic and ongoing analysis of how you are progressing with a keen focus on understanding and designing for closed feedback loops.</p></blockquote>

<p>The other interesting part of the final project is that we were actively discouraged from working within our technical abilities - we were asked <em>not</em> to try to build these devices, and to focus on the needs of the user, the concept, the experience. This is really interesting in the context of ITP where it&#8217;s very often build first, ask questions later (to the detriment of the quality of the projects in some cases).</p>

<h3>The Need</h3><p>
I started to run, swim and cycle late in life; when I was 26 I was asked to take part in a charity triathlon and I&#8217;ve dipped in and out of the sport ever since. It&#8217;s had a pretty big impact on my life; it&#8217;s weird to discover that you enjoy sport having actively shunned it for your entire life. So, I take a lot of pleasure from these three sports - and I want to get better at them for as long as I can. I suppose this is the core of my project. </p>

<p>When I took up sport I experimented with gadgets and devices that would help motivate me and get the most from my training. I&#8217;ve been disappointed by pretty much all of these devices. If physical activity is empowering, energetic, imperfect and sometimes emotional - the best most devices can do is quantification of time and distance. There is just this weird mis-match at an interface level between physical activity and sports devices. </p>

<p>So, this is where I started from - a desire to get better at physical activity and a dissatisfaction with simplistic, quantitative exercise devices. I decided to <b>design a device that could help improve my capabilities by focusing on form rather than time/distance</b>. Of the sports I do, swimming has the least to do with simple time/distance metrics and most to do with form - there just seems to be a need for a device that helps swimmers improve by focusing on <i>smoothness</i>.</p>

<h3>Inspiration</h3><p>
I was really keen to avoid the problems that I see with other sports devices; the reduction of physicality to raw numbers. Instead, I wanted this device to feel more like a coach, a companion. I wanted the feedback to feel natural, appropriate to physical effort and water. I found a piece of writing by Jacques Cousteau about the invention of the aqualung that really resonated with me</p>

<blockquote><p>From this day forward we would swim across miles of country no man had known, free and level, with our flesh feeling with the fish scales know.</p></blockquote>

<p>The aqualung was a device that allowed us to thrive in an alien environment, augmented our capabilities and enlivened our senses. <b>I wanted my device to unlock a sense of physical potential in the moment. </b>I gave the project the name &#8220;Pilot&#8221; after the pilot fish - types of small fish that swim alongside sharks, mirroring their movements, sheltering from predators. There was just something about the relationship between the pilot fish and the shark that seemed to fit. </p>

<h3>Prototyping</h3><p>
Building on the work we&#8217;ve done in class on feedback loops and cybernetic systems, I designed a system that could offer appropriate feedback to a swimmer in the water. I spent a lot of time crafting the description of the system; the story (which would eventually become <a href="https://docs.google.com/document/d/1qbjKTwzFq2adjOoHbRyz9hh8subPnp3a47PZRwHphyE/edit" title="the narration script for the video">the narration script for the video</a>), the <a href="https://docs.google.com/spreadsheet/ccc?key=0Ah78vMidBFKgdFJYREs2TmVFdHFkcVE1Z1IyNjJ1T0E" title="context of the system in a day">context of the system in a day</a> and a series of storyboards. <br />
<a href="http://www.flickr.com/photos/paulmmay/6360604177/" title="Storyboard by paulmmay, on Flickr"><img src="http://farm7.staticflickr.com/6097/6360604177_c55ccf3cfb_b.jpg" class="flickr" alt="Pilot Storyboard - A Frame of a storyboard showing Pilot in use in the pool"></a></p>

<p>As I was refining the description of Pilot, I was also refining how it would look and feel. I made several foam models that were small enough to fit in the small of my back, or comfortably on my chest. </p>

<p><a href="http://www.flickr.com/photos/paulmmay/6360588059/" title="Pilot - Foam 5 by paulmmay, on Flickr"><img src="http://farm7.staticflickr.com/6237/6360588059_ea95fc51f9_b.jpg" class="flickr" alt="Pilot - Foam 5"></a></p>

<p>One key thing I learned by making the models and simple holding them onto my body was that w<b>earing a device in the middle of my body would result in all the feedback emanating from that one position.</b> If I wanted to device to give feedback about my form in the water, then it&#8217;d be useful to have a feeling of <b>stereo separation</b>. As well as the central device I&#8217;d add two little pods out at the sides of my body so that I could receive more specific feedback e.g. feedback on the side of my body where I am not rolling effectively.</p>

<p>I took all this feedback and used a 3D printer to make the central computer and pods that you see in the final video. The printed pieces were mounted on some athletic elastic, similar to the type of thing you find in a heart rate monitor. </p>

<p><a href="http://www.flickr.com/photos/paulmmay/6366096619/" title="Pilot - 3D Modelling by paulmmay, on Flickr"><img src="http://farm7.staticflickr.com/6227/6366096619_6256797eb5_b.jpg" class="flickr" alt="Pilot - 3D Modelling"></a></p>

<h3>Shooting the Video</h3><p>
We were encouraged to produce a video as our final artifact for the project. I spent two hours in the endless pool at <a href="http://www.sbrshop.com/" title="Swim, Bike, Run in Manhattan">Swim, Bike, Run in Manhattan</a> who were kind enough to let me use their pool. I shot slow motion footage of me swimming with and without the device using a Canon 7D. I used a housing for the Lumix LX5 to shoot underwater shots. </p>

<p>I&#8217;m very <a href="http://vimeo.com/33674453" title="happy with the final video">happy with the final video</a>; it does a good job of explaining the thought behind Pilot and how it would be used in a short space of time. </p>

<h3>Feedback and Next Steps</h3><p>
I&#8217;m really encouraged by the feedback I&#8217;ve had on the Pilot concept. <b>The design of the system seems to work well in the design context, and there seems to be a genuine need out there for this device</b>. <br />
I&#8217;ve done some early investigation into what would be required to build the system for real, and I&#8217;m confident that it&#8217;s possible. I may tackle this as a project in 2012. </p>

<p>There has also been some (very welcome) negative feedback; that the device is too logical and that<b> I didn&#8217;t take the opportunity that the brief offered to think in a purely speculative fashion</b>. I agree with this, completely - and were I to do the project again I think I&#8217;d be more confident to push myself and the concept into more speculative places. At the end of the day I opted for a system that I knew was realistic rather than futuristic - but I still learned a huge amount by doing this.</p>

<h3>Thanks</h3><p>
I&#8217;d like to thank my Spike McCue, Bobby Genalo, Roopa Vasudevan, Doug Kanter, Craig Protzel and Lia Martinez for their assistance and advice during the project. I&#8217;d also like to thank <a href="http://www.g51studio.com/" title="Steven Dean">Steven Dean</a> for leading the DIY Health class with insight, energy and enthusiasm. It was a lot of fun.</p>

<p>
</p>
        ]]>
    </description>          
      <dc:date>2011-12-27T17:48:20+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[ITP Winter Show 2011]]></title>
      <link>http://paulmay.org/articles/itp-winter-show-2011/</link>
      <guid>http://paulmay.org/articles/itp-winter-show-2011/#When:03:36:39Z</guid>
    <description>
        <![CDATA[
            I have three projects in this year's ITP Winter Show; <em>MetroChange</em> - a charitable donation system that uses New York subway cards, <em>Pilot</em> - a wearable device that helps people swim more efficiently and <em>Forever</em> - an immersive experience for one person. <h3>MetroChange</h3>
<iframe src="http://player.vimeo.com/video/33804080?title=0&amp;byline=0&amp;portrait=0&amp;color=09aee0" width="699" height="393" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe><p>
For more information about MetroChange see <a href="http://www.metrochange.org" title="http://www.metrochange.org">metrochange.org</a>. There is a lot of good documentation and background information on the <a href="http://blog.metrochange.org" title="MetroChange blog">MetroChange blog</a>. MetroChange is a collaboration with Stepan Boltalin and <a href="http://www.genevievehoffman.com/portfolio.html" title="Genevieve Hoffman">Genevieve Hoffman</a>. </p>

<h3>Pilot</h3>
<iframe src="http://player.vimeo.com/video/33674453?title=0&amp;byline=0&amp;portrait=0&amp;color=09aee0" width="699" height="393" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe><p>
Pilot is a speculative system at the moment; I have been told by many, many swimmers that this is a device that has real potential. I have a clear sense of what it would take to make this into a real device, something I&#8217;m going to attempt to make happen in the next 6 months. I will keep you posted. </p>

<h3>Forever</h3>

<p><a href="http://www.flickr.com/photos/paulmmay/6529147793/" title="Forever by paulmmay, on Flickr"><img src="http://farm8.staticflickr.com/7001/6529147793_4f9643f2e8_b.jpg" class="flickr" alt="Forever"></a></p>

<p>Designed as <a href="http://en.wikipedia.org/wiki/The_Society_of_the_Spectacle" title="a critique of The Spectacle">a critique of The Spectacle</a> with the desire to avoid using the media of spectacle, Forever offers an isolating, immersive, indescribable experience for one person. The project is a collaboration with the amazing <a href="http://lilyszajnberg.com/" title="Lily Szajnberg">Lily Szajnberg</a> and came out of the Recurring Concepts in Art class at ITP (one of the best classes I have ever taken).&nbsp; </p>

<h3>Winter Show</h3><p>
I&#8217;ll be writing more about these three projects in the days to come, but I&#8217;m proud of all of them. Please come and see me at the ITP Winter Show. Find me or tweet <a href="http://twitter.com/paulmmay" title="@paulmmay">@paulmmay</a>. See you there!</p>

<p>
</p>
        ]]>
    </description>          
      <dc:date>2011-12-18T04:36:39+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Project Proposal: Swimming System]]></title>
      <link>http://paulmay.org/articles/project-proposal-swimming-system/</link>
      <guid>http://paulmay.org/articles/project-proposal-swimming-system/#When:16:40:50Z</guid>
    <description>
        <![CDATA[
            A project proposal for a self-care system that monitors a swimmer's form in the water and offers instant feedback. <h3>Brief</h3><p>
In my DIY Health class we have been <a href="http://itp.nyu.edu/~sd107/diyhealth/2011/11/07/week-8-designing-a-self-care-system/" title="self-care system brief">asked to design a system</a> that allows us to &#8220;take stock of ourselves, set goals and act upon our health and lifestyle enabling systematic, ongoing analysis and progression towards goals&#8221;.&nbsp; </p>

<p>The project is meant to be speculative - the end result is a thoroughly designed and described system and a video of how the system would be used. We can imagine ourselves at a point in the near future if we like.</p>

<h3>My Concept</h3><p>
My goal is to design a device or system that can help me improve my swimming form by monitoring the position of my body in the water, offering feedback in real-time and facilitating analysis of my swimming form over a longer period of time. </p>

<h3>Motivation</h3><p>
I am really <b>interested in the complexity of swimming as a physical activity</b>; it&#8217;s pretty startling that we&#8217;re able to do it at all. When I swim front crawl <b>I am trying to balance the movement of my hands, arms, body and legs to move through the water</b>. When I&#8217;m swimming effectively, these things are in balance and become unconscious actions.</p>

<p>When I need to improve my swimming form, I have to become aware of a particular aspect of my swimming stroke to coax it in a different direction - I receive an instruction before I swim from a coach, I drill a particular aspect of my form, or (on very rare occasions) I look back on a piece of video. </p>

<p>The initial motivation behind this project is the opportunity, as I see it, <b>to provide feedback to a swimmer in real time; connecting them to their physical movements in a natural, intimate way</b>. By doing this, it&#8217;s my hope that swimming becomes more efficient (expending less energy as I move through the water) and more natural (improving gradually while I&#8217;m in the water in a way that reduces the need to constantly drill individual aspects of my stroke).</p>

</h3>Inspiration</h3><p>
In my early research for this project<b> I&#8217;ve looked at the ways in which fish and other sea creatures move through water and fluidly make adjustments to their speed and course</b>; I like the idea that in some alternative evolutionary path humans could have retained a much closer connection to water - maybe we would have the capabilities to move through it in more fish-like ways, or maybe we&#8217;d be able to communicate or breathe in water. There may be natural systems that I can learn from as I do this project.</p>

<p>I&#8217;ve also been inspired by the writings of Jacques Cousteau; In The Silent World he describes his first use of the aqualung in such a beautiful way:</p>

<blockquote><p>From this day forward we would swim across miles of country no man had known, free and level, with our flesh feeling what the fish scales know</p></blockquote>

<p>In Cousteau&#8217;s case, technology had literally allowed him to enhance his evolved, human capabilities. I have started to think about the goal of my system in a more lyrical sense - the system should make <b>me feel more connected to the environment of the water and allow me to become more fish-like</b>. </p>

<h3>Key Components</h3><p>
The key component of the system will probably be <b>a wearable device</b>, worn during swimming, which measures angles of rotation around a number of axes, and motion. The device will give me feedback in the form of vibration and/or sound to signal good form or a correction/action of some kind.</p>

<p>The second component of the system is a <b>communications layer</b>; essentially a way to get information from the wearable device to a computer. This could be done using a physical connection or a wireless link. </p>

<p>The third component of the system is a piece of <b>software</b> that allows me to configure the wearable device; setting new goals/parameters and analyze my previous swimming sessions. This could be a standalone piece of software, or it could be a web service. It might have a social component or it might not. </p>

<h3>Next Steps</h3><p>
I want to design my system to monitor a small number of key physical components of the swim stroke so I am doing research into the biomechanics of swimming in both humans and animals.</p>

<p>I&#8217;m also mapping out how the system would work from end to end - from the moment I get up in the morning to go to the pool to the analysis after my swim, building a picture of my swimming form over months and years. It&#8217;s an exciting challenge.</p>

<p>I&#8217;ll write about the project as it progresses. 
</p>
        ]]>
    </description>          
      <dc:date>2011-11-14T17:40:50+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Alignment of Private, Personal and Public Data]]></title>
      <link>http://paulmay.org/articles/alignment-of-private-personal-and-public-data/</link>
      <guid>http://paulmay.org/articles/alignment-of-private-personal-and-public-data/#When:17:48:58Z</guid>
    <description>
        <![CDATA[
            An unexpected alignment of two data sets. <p>I spent a few hours this morning using a stats package to look at my tweets since 2008. A large peak caught my eye, so I dug a bit deeper into the day &#8220;2010-11-21&#8221;.</p>

<p>Apparently, on the day that Ireland agreed to a rescue package from the IMF/EU (21st November 2010) I tweeted 41 times - the most tweets in a single day. I remembered sitting here in New York watching the press conference online. I was tweeting and responding to people in Ireland. I was pretty upset and disappointed - things at home just seemed to be falling apart.</p>

<p><a href="http://www.flickr.com/photos/paulmmay/6315690824/" title="Frequency of Tweets by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6223/6315690824_062523a678_b.jpg" class="flickr" alt="Frequency of Tweets"></a></p>

<p>In a previous project, I saw that the most coverage Ireland had ever received in the New York Times was in the same month, November 2010. The coverage of Ireland&#8217;s bailout in the New York Times dwarfed coverage of the peace process, tourism, sports, day to day politics.</p>

<p><a href="http://www.flickr.com/photos/paulmmay/6315624121/" title="November 2010 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6233/6315624121_fa8cb5156c_b.jpg" class="flickr" alt="November 2010"></a></p>

<p>I had no idea that two peaks from these two unrelated projects would align. I was reminded how useful it is to have some understanding of how to work with data. I get a sense that these abilities will be even more relevant in the future as we try to draw together a sense of our lives and our histories using data; we&#8217;ll need to know how to draw on memory, privately held data, personal public data (like our tweets) and news sources to add context and perspective - drawing it all together to gain insight.&nbsp; I&#8217;ve said this <a href="http://paulmay.org/blog/tedx-data-representation-and-personal-narratives/" title="before">before</a>, but today&#8217;s coincidence just made it feel much more real.</p>


        ]]>
    </description>          
      <dc:date>2011-11-05T18:48:58+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Getting the Most from MetroCard]]></title>
      <link>http://paulmay.org/articles/getting-the-most-from-metrocard/</link>
      <guid>http://paulmay.org/articles/getting-the-most-from-metrocard/#When:12:00:18Z</guid>
    <description>
        <![CDATA[
            If you've ever visited or lived in New York City you'll be familiar with the MetroCard. These little cards are used by millions of people each day to access the subway and bus system. In this project, Stepan Boltalin, Genevieve Hoffman and I have broken apart the MetroCard pricing structure with some interesting results. Short version - don't buy the $10 MetroCard.<p><a href="http://www.flickr.com/photos/paulmmay/6224396540/" title="Union Square - Metro Card Reader 2 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6160/6224396540_39f2575585_z.jpg" class="flickr" alt="Union Square - Metro Card Reader 2"></a>
</p><h3>The Missing Millions in the MetroCard System</h3><p>
The MetroCard system has evolved over nearly two decades - it uses some pretty old technology (a magnetic stripe on the card is read at a turnstile, which updates the value on your card) and a slightly odd fare structure ($2.25 per ride plus a 7% bonus when you spend $10 or more on a MetroCard) which combine to create some unfortunate results; small amounts of value left on cards when they&#8217;re discarded. </p>

<p><b>According to the MTA the small amounts of value on cards when they&#8217;re thrown away or lost adds up to $52m (yes, million) per year.</b> So much money goes missing that the MTA are set to introduce a $1 green fee to encourage riders to hang on to their cards. Our project&#8217;s goal is to examine the causes of this &#8220;missing&#8221; money in the MetroCard system from a number of different angles. After all, $52 million could be put to better use and $1 per card seems like an awful lot of money at scale.</p>

<h3>The Ever-Changing MetroCard Pricing Structure</h3><p>
<b>(This section is a little dense, but bear with us.)</b> The MTA Metrocard was first introduced in 1993 with a trial run of 3000 cards. In 1998 they introduced the MetroCard Bonus giving you a 10% bonus on cards of $15 or more. At this time a single ride using a MetroCard cost $1.50. In May 2003, subway fares increased from $1.50 to $2.00. The bonus increased to 20% for any ticket amount $10 and over. </p>

<p>In March 2008, the MetroCard Bonus decreased to 15% for purchases of $7 or more. In 2009, subway fares increased from $2.00 to $2.25 per ride. In December 2010, the bonus decreased to 7% for tickets of $10 or more. This is the pricing structure that applies to the pay per ride MetroCards today.</p>

<p>The MetroCard system has changed almost constantly since its introduction - and like most transit systems has gotten <i>significantly</i> more expensive over time.</p>

<h3>The $10 MetroCard is Not Your Friend</h3><p>
Even a quick scan of <a href="http://bit.ly/metrocardpricing">the MetroCard pricing spreadsheet we&#8217;ve put together</a> shows some significant amounts of remaining value on cards. Let&#8217;s look at the popular $10 MetroCard as an example; a card that&#8217;s popular among visitors to New York.</p>

<p>A customer purchases a MetroCard for $10 and gets $0.70 of a bonus making the card worth $10.70. At a price of $2.25 per ride, the customer gets 4 rides leaving $1.70 remaining on the card. To get another ride the customer needs to add at least $0.55. </p>

<p><a href="http://www.flickr.com/photos/paulmmay/6232627514/" title="MTA Interface Round 2 - 09 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6096/6232627514_4269714096_z.jpg" class="flickr" alt="MTA Interface Round 2 - 09"></a></p>

<p>Adding value using the MetroCard vending machine is a significantly longer process than buying another $10 card - and adding whole dollar values like $10 and $20 still gets priority.&nbsp; </p>

<h3>Getting the Most from MetroCard</h3><p>
Our goal is to find ways of getting the maximum number of rides on the New York Subway while reducing the small amounts of remaining value left on our MetroCards - avoiding problems like the ones the $10 card introduces.</p>

<p>Working in increments of $1 and $0.25 we identified the MetroCard values that result in the maximum number of rides for consumers with as little remaining value as possible. We also identified the MetroCards where the value of the remaining value is covered by the MTA’s own bonus. </p>

<p>We think the results are interesting. <a href="http://bit.ly/metrocardpricing" title="Check out the breakdown of the MetroCard pricing structure in this spreadsheet">Check out the breakdown of the MetroCard pricing structure in this spreadsheet</a>. </p>

<p>As you&#8217;ll see, the $10 MetroCard offers the same number of rides as a $9 MetroCard. There&#8217;s no &#8220;bonus&#8221; but 4 rides is still 4 rides. A $20 MetroCard gives the consumer a bonus of $1.40, 9 rides with $1.15 remaining on the card. They could spend $19, get 9 rides with only 8c remaining on the card. </p>

<p><b>There are several price points where the user gets the same number of rides as they would at a higher price point, with minimal remainder</b> - a consumer could spend $14.75, get $1.03 as a bonus - 7 rides with 3 cents remaining; any remainder is essentially covered by the “bonus” given by MTA. You pay less, you get the same and if you happen to lose or throw away your card the MTA are paying for the remaining value on the card. </p>

<h3>Implications</h3><p>
We start to see that some of the problems of missing money in the system are a product of decisions by MTA themselves. The pricing structure leads to uneven values and remaining value on cards. The design of the vending machines works contrary to adding small values, or getting a specific number of rides. It&#8217;s not wrong, in our opinion, to start questioning whether adding another $1 on to the purchase of each MetroCard is valid. </p>

<h3>Next Time You&#8217;re In New York</h3><p>
Use our <a href="http://bit.ly/metrocardpricing" title="MetroCard pricing structure spreadsheet">MetroCard pricing spreadsheet</a> to find a card that offers you enough rides for the time you&#8217;re in town, and reduces the chances of you being left with money remaining on your card.</p>

<h3>Next Steps</h3><p>
We&#8217;re continuing this project - we hope to find more ways of eating into these odd problems with the MetroCard system upstream. After that we&#8217;ll devise ways of using any remaining value that is left on cards in a more productive way. 
</p>
        ]]>
    </description>          
      <dc:date>2011-11-01T13:00:18+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Manfred Mohr: Réflexions sur une Esthétique Programmeé]]></title>
      <link>http://paulmay.org/articles/manfred-mohr/</link>
      <guid>http://paulmay.org/articles/manfred-mohr/#When:00:00:03Z</guid>
    <description>
        <![CDATA[
            A response to the Manfred Mohr retrospective "Réflexions sur une Esthétique Programmeé" at the Bitforms gallery in New York, written for the Recurring Concepts in Art class at ITP. <h3>Approach</h3><p>
This is a semi-academic examination of an exhibition of work by <a href="http://www.emohr.com/">Manfred Mohr</a>. For decades <a href="http://thecreatorsproject.com/blog/original-creators-manfred-mohr" title="Mohr">Mohr</a> has used computation in his artwork; he started at a time when computers were large, rare and exclusively logical beasts - the idea of using them to generate art was incredibly novel. The critical responses to Mohr&#8217;s use of computers in the production of his art ranged from delight to outrage. This exhibition brings together a collection of his works that explore the intersection of computing, language and aesthetic.</p>

<p>My response is organised under three concepts: <em>The Artist Steps Away from the Canvas and Observes, The Artist Reduces Complex Phenomena to Simple Elements</em> and <em>The Artist Collaborates With Non-Human Actors</em>. I refer to some other works we were looking at in class at around the same time, including Robert Rauschenberg&#8217;s <a href="http://www.youtube.com/watch?v=Sps62Sxafbs">Open Score</a>; one of the most famous pieces of performances art ever staged which included groundbreaking technology for its time. I also refer to work of Constructivist artist and architect <a href="http://www.moholy-nagy.com/Biography_3.html">Laszlo Moholy-Nagy</a> whose work involves a studied investigation some of the essential elements of art; colour, light, line, movement and shape. </p>

<h3>The Artist Steps Away from the Canvas and Observes</h3><p>
For me, Mohr’s process and work are an example of the movement away from the artist as the sole, literal producer of the artifact (holding the paintbrush or wielding the chisel) towards a model of creation where the artist is the originator (providing an opportunity or a vision), the referee (the designer of rules and constraints), the over-seer (providing ongoing impetus, clarification), and then the observer (watching the elements of the work come together - along with the audience).</p>

<p><a href="http://www.flickr.com/photos/paulmmay/6293660530/" title="Manfred Mohr by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6044/6293660530_a9a691e282_z.jpg" class="flickr" alt="Manfred Mohr"></a><br />
Mohr establishes a project, and like an engineer - sets about designing the limits/traits of his system. This image shows the logical flow for the computer code that will give instructions to the computer and plotter drawing one of his pieces.</p>

<p>This proto-code would then be translated into working instructions for the computer. From this point, Mohr’s involvement in the production of the final artwork is that of a collaborator with the drawing machine - he chooses the paper, mounts the pen in the machine, and makes the decision to proceed.&nbsp; </p>

<p><img src="http://paulmay.org/images/uploads/mohr_large.jpg"/ class="flickr" /></p>

<p>For me, this photo captures the idea of changing role of the artist. He is smoking a cigarette while the arm of the plotter moves over the surface of the paper, drawing the image. Mohr is keenly interested, watching the image emerge as an audience member might - he is deeply invested in the work, but his direct involvement in its making has already happened.</p>

<p>What I find exciting about this image is that it captures the feeling of something unfolding that can’t be stopped. It also captures the sense of anticipation and chance. With any computer program there is the potential for the unexpected - times when something is lost in translation between intent and outcome. In the photo, I get a sense that Mohr is watching to see what might happen, as well as what he knows will happen. Mohr speaks about the influence of chance in his artist’s statement:</p>

<blockquote><p>Even though my work process is rational and systematic, its results can be unpredictable. Like a journey, only the starting point and a hypothetical destination is known. What happens during the journey is often unexpected and surprising.</p></blockquote>

<p><img src="http://paulmay.org/images/uploads/rauschenberg.jpg" class="flickr" alt="A photo of Robert Rauschenberg's Open Score from 1966. In the photo two tennis players can be seen on a court, surrounded by spotlights"/></p>

<p>For me, there’s a direct parallel between Mohr’s algorithmically drawn works and Open Score by Robert Raushenberg. Rauschenberg puts himself in a similar position to Mohr; he is the driving vision behind the piece, he designs the constraints/rules that will apply - those of a recognisable tennis match, but the outcome of the piece is the confluence of preparation, the work of collaborators (human and technological) and an element of chance.</p>

<p>Like Mohr’s work, Open Score expresses the potential for something with a defined set of rules and a repeating structure to offer something unexpected and unrepeatable.</p>

<p>The key difference that I see between what Mohr and Rauschenberg are doing is in their attitude to the audience. In Open Score, Rauschenberg amplifies the experience of the tennis match using sound and light - he gives them a hyper-real tennis match that involves their senses as no other game of tennis ever has. There is a clear sense of the impossibility of this work being repeated and a question as to whether its possible to separate a spectacle from the reactions of the crowd.</p>

<p>In Mohr’s work, while an audience may be present to see the pieced being produced by the computer and plotter - they can only watch as the process unfolds. Their may be captured elsewhere (such as the poster from the 1971 show) but this emotion doesn’t find its way into the “performance” underway (interactivity beyond simple choices/interventions [e.g. an audience member unplugging the drawing machine]).</p>

<h3>The Artist Reduces Complex Phenomena to Simple Elements</h3><p>
The second concept that I feel is in evidence in Mohr’s work is that of a reduction of complexity/form to simplicity/geometry.</p>

<p>Mohr makes the direct conceptual link between the reduction of shapes to their individual lines with the reduction of words to their individual letters (Fig 3).</p>

<p><a href="http://www.flickr.com/photos/paulmmay/6293151341/" title="Manfred Mohr by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6234/6293151341_ffd6a2d56d_z.jpg" class="flickr" alt="Manfred Mohr"></a></p>

<p>This conceptual link is mirrored in the process used to make the work. By using a computer and plotter to draw his images, Mohr puts himself in the position of literally needing to translate shapes into their most basic elements. Move the pen left two inches. Lift the pen. Move the pen up one inch. Put the pen down. By breaking words to their letters, and shapes to their lines - Mohr demonstrates that complex forms are the products of basic elements, repetition and human ingenuity .</p>

<p>There are clear parallels between Mohr’s attempt to sub-divide forms into their most basic elements and Moholy-Nagy’s effort to categorize and classify the essential elements of colour and material. I feel as though Moholy-Nagy’s goal was a purer, more potent form of expression stemming from a return to the atomic level. In a sense, Moholy-Nagy’s work is about the future, but calls out to the past. Go backwards to the origin to know how to proceed.</p>

<p>In Mohr’s case I don’t get a sense that he is saying the work is more powerful because it is formed from very simple instructions - I think he is making a statement that the language of the machine (code), producing works from a simple visual alphabet (geometry), has limitless potential for complexity and depth; a call to consider a collaboration with the non-human in the production of something inherently human - language, and a call to judge this new language on the same terms as we judge existing language.</p>

<h3>The Artist Collaborates With Non-Human Actors</h3><p>
The most literal concept that underpins Mohrs’ work is that of a collaboration between man and machine in the production of art. It’s unsurprising that in his 1971 show, the feedback from the audience was mostly negative - with the dominant sentiment being that that art was a human endeavour, and not one that could simply be generated by a machine.</p>

<p>It’s hard to look at this reaction from the current perspective - simply saying that the audience was wrong and Mohr was right, given the centrality of the computer of many cultural and artistic works we see around us today.</p>

<p>A fairer way to look at the reaction he got at the time is maybe to look at any of Mohr’s artistic predecessors and examine their use of what would have been considered “state of the art” technology. An example I like is Van Gogh’s examination of his process and his tools. The image below shows a piece of one of Van Gogh’s many letters to his brother Theo. In this letter he discusses the merits of different type of Faber pencils.</p>

<p><img src="http://paulmay.org/images/uploads/vangogh.jpg" class="flickr" alt="One of Van Gogh’s many letters to his brother Theo. In this letter he discusses the merits of different type of Faber pencils." /></p>

<p>Mohr takes this concept further; his pencil has capabilities beyond those of Van Gogh’s and the existence of these capabilities poses questions about the location of the “value” of art - is it in the thought, the process, the artist? Is it solely located in the end product? Is it possible to separate the art work and the tools used to make it?</p>

<p>Like Rauschenberg and the diverse group of artists and scientists involved in <a href="http://www.fondation-langlois.org/html/e/page.php?NumPage=237" title="EAT">EAT</a>, Mohr’s work could not exist in its end format without the use of technology. The key difference between Mohr and Rauschenberg/EAT for me is maybe the attitude to the technology itself - I feel as though with EAT the technology was developed in service of the idea and the desired outcome (a sense of direct engagement and magic) - but that the technology was fluid/interchangeable. I don’t really get a sense that technology itself is under scrutiny.</p>

<p>With Mohr I feel as though he is making a considered approach to work within the limits of available technology (rather than finding any technology that was capable of offering the end experience/artifact). He also seems to be making a direct comment on the huge potential of the technology itself. Mohr refers back to a specific technology - like logic, repetition, the computer, the pen, the letter or word.</p>

<h3>Final Thoughts</h3><p>
Mohr’s work really surprised me - it felt like a poetic collaboration between man and computer made at a time when any type of digital computation was rare, in any sphere - let alone in the production of art.&nbsp; </p>

<p>The concepts I see in his work; the artist as orchestrator but not direct “maker”, the reduction of forms to simple elements and the use of technology are strongly in evidence in contemporary art and culture; he was clearly ahead of his time.
</p>
        ]]>
    </description>          
      <dc:date>2011-10-31T01:00:03+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[DIY Health: Physical Geography]]></title>
      <link>http://paulmay.org/articles/diy-health-physical-geography/</link>
      <guid>http://paulmay.org/articles/diy-health-physical-geography/#When:15:55:52Z</guid>
    <description>
        <![CDATA[
            A few very quick sketches related to the idea that we don't really understand what happens inside our bodies and that information we receive about our bodies should encourage dialogue.<h3>Physical Geography</h3>

<p><a href="http://www.flickr.com/photos/paulmmay/6295287302/" title="Physical Geography - Today's map of your body by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6048/6295287302_2f567089c7_z.jpg" class="flickr" alt="Physical Geography - Today's map of your body"></a></p>

<p>A map of your body, delivered each morning to your door. The parts of your body that are probably okay today are shown on the map. Anything that might be amiss is also shown; as a prompt for you to explore further. Today you might want to explore what&#8217;s going on with your right shoulder.</p>

<h3>Message Tattoo</h3>

<p><a href="http://www.flickr.com/photos/paulmmay/6295287352/" title="24 hour tattoo with an important message from my body by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6052/6295287352_abd6d04eb8_z.jpg" class="flickr" alt="24 hour tattoo with an important message from my body"></a></p>

<p>Each day a tattoo emerges on the skin of your body. The tattoo gives you a friendly message about all the things that are currently not understood about your body. Today, your body is letting you know that there&#8217;s no real consensus on whether, when or how you should warm up for exercise.</p>

<h3>IRC With Your Body</h3>

<p><a href="http://www.flickr.com/photos/paulmmay/6295287466/" title="IRC with my body by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6217/6295287466_cf110c0e8a_z.jpg" class="flickr" alt="IRC with my body"></a></p>

<p>The first thing I do in the morning is get on my computer to chat with the different parts of my body. Today, my shoulder isn&#8217;t feeling great again. Something is also up with Pancreas.
</p>
        ]]>
    </description>          
      <dc:date>2011-10-30T16:55:52+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Alain de Botton: On Pessimism]]></title>
      <link>http://paulmay.org/articles/alain-de-botton-on-pessimism/</link>
      <guid>http://paulmay.org/articles/alain-de-botton-on-pessimism/#When:19:02:14Z</guid>
    <description>
        <![CDATA[
            A response to Alain de Botton's talk "On Pessimism" at the School of Life in reference to some projects to design self-care and wellness systems/devices at ITP.<iframe src="http://player.vimeo.com/video/10601416?title=0&amp;byline=0&amp;portrait=0&amp;color=f0e563" width="699" height="524" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe>
<h3>Futility is Freeing</h3>
<blockquote class="clearbottommargin"><p>Let death find us as we are building up our matchstick protests against its waves. <span class="grey">Alain de Botton - The Pleasures and Sorrows of Work</span></p></blockquote><p>
I chose Alain de Botton’s video because I enjoy his brand of accessible contrarianism. In his Sunday Sermon, and in his books, de Botton draws attention to the futility of existence and the absurdity of our day to day lives.</p>

<p>To me, his pessimism feels both human and invigorating - he pays tribute to the human spirit and to all that we’ve achieved in the face of probable tragedy and certain death. His goal, if he has one is to motivate us to focus on the things that matter while we have time. </p>

<h3>Just Try Your Best</h3><p>
Some of the things de Botton talks about are directly applicable to the design of self-care systems. Obviously, his work reminds me that however well we design systems to help people maintain or improve their health we are simply forestalling certain death. Death is, I suppose, the ultimate design constraint. For me, this prompts me to think about designing systems we should do so with a sense of humility in the face of certain failure; aiming for small amounts of progress rather than complete mastery, lowering expectations - or at least keeping them in check, prioritizing relationships and leaving room for warmth and pleasure. It should be possible to design a system where the user can fail, but still prosper and learn.</p>

<h3>We Rolled a 6</h3><p>
Another really interesting theme in de Botton’s work is the influence of chance/fortune in our lives. We simply don’t think about our successes as being accidents, and we look upon those who have failed as - failures - rather  than people who simply rolled a 1 instead of a 6. Now, when I think about designing a self-care system I think that being conscious of randomness, chance, serendipity and tragedy will be very useful. Instead of thinking “the user will do” I could instead thing “the user might do” and “the user probably won’t”.</p>

<p>De Botton’s perspective on life offers a very strange starting point for us - we start out on a design challenge knowing that success will have a lot to do with luck and that ultimately we&#8217;ll fail. I suppose the beauty of life, and the absurdity of life, is in the trying. So, let&#8217;s try.
</p>
        ]]>
    </description>          
      <dc:date>2011-10-29T20:02:14+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Goodbye to IrishData.org]]></title>
      <link>http://paulmay.org/articles/goodbye-to-irishdata.org/</link>
      <guid>http://paulmay.org/articles/goodbye-to-irishdata.org/#When:16:46:28Z</guid>
    <description>
        <![CDATA[
            After 12 months of operation, I've decided to pull the plug on my homemade repository of Irish statistical data. It has been fun.<p>Just over a year ago I set out to investigate the causes of the Irish financial crisis using statistical data, exploratory data analysis and visualisation techniques. Quickly, I found myself running into all sorts of barriers - the data I needed was scattered and poorly described; just not in any fit state to be useful. </p>

<p>I <a href="http://paulmay.org/blog/irish-data-hello-world/" title="spent just over a month building my own data service">spent just over a month building my own data service</a>; providing statistical and governmental data from Ireland in a format that would be useful for my project and anybody else who was thinking of the same thing. I wrote some simple applications using open source software that people could download and modify - creating their own applications. I proved that the skills and effort involved in doing this should be well within the reach of a government department, state agency or company - the lack of care and attention was completely voluntary.</p>

<p>In the last year there has been some progress; some academic bodies in Ireland have <a href="http://www.deri.ie/about/open-data" title="started to highlight the importance of open data">started to highlight the importance of open data</a>, some <a href="http://opendata.ie/" title="other voluntary projects have started">other voluntary projects have started</a>, and there have been <a href="http://data.fingal.ie/" title="some small steps made by government agencies">some small steps made by government agencies</a> to make data available in better formats. </p>

<p>Outside of these modest steps, none of the problems <a href="http://paulmay.org/blog/ireland-as-pdf/" title="I wrote a year ago has really changed">I wrote a year ago have been solved</a>. Ireland is just not anywhere on the map when it comes to offering its citizens current, accessible, coherent insight into the workings of government or the financial system. </p>

<p>My own little attempt to make progress is coming to an end because the effort involved in maintaining the data is pretty enormous, and other projects need to take priority for now. I learned a huge amount creating this project and I hope that truly open government in Ireland becomes a reality sooner rather than later.
</p>
        ]]>
    </description>          
      <dc:date>2011-10-23T17:46:28+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Systems and Layers: Narrowing Focus]]></title>
      <link>http://paulmay.org/articles/systems-and-layers-narrowing-focus/</link>
      <guid>http://paulmay.org/articles/systems-and-layers-narrowing-focus/#When:01:11:13Z</guid>
    <description>
        <![CDATA[
            We observed Union Square. We thought about the people there, moving through the space. Now, we're narrowing our focus. 
<a href="http://www.flickr.com/photos/paulmmay/6212385421/" title="Observation - Union Sq - 49 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6174/6212385421_ff8a3c1d0c_z.jpg" class="flickr" alt="Observation - Union Sq - 49"></a>

<a href="http://www.flickr.com/photos/paulmmay/6224395798/" title="Union Square - Market 3 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6233/6224395798_483845ae43_z.jpg" class="flickr" alt="Union Square - Market 3"></a>
        ]]>
    </description>          
      <dc:date>2011-10-11T02:11:13+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Systems and Layers: Observing Union Square]]></title>
      <link>http://paulmay.org/articles/observing-cities-union-square/</link>
      <guid>http://paulmay.org/articles/observing-cities-union-square/#When:19:32:44Z</guid>
    <description>
        <![CDATA[
            I spent the morning observing a potential location for a new project. The location is at the North side of Union Square in New York. In the next couple of weeks I'll be working with Genevieve Hoffman and Stepan Boltalin to intervene in this location (or another location, should this one not prove hospitable) using networked technology. In this post I describe some of my observations from the exercise.

<a href="http://www.flickr.com/paulmmay/tags/urbanexperience" title="Observation - Union Sq - 04 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6154/6211351203_6c4215b87d_z.jpg" class="flickr" alt="Observation - Union Sq - 04"></a><h3>Observation</h3>

<p><a href="http://www.flickr.com/photos/paulmmay/6211807513/" title="Observation - Union Sq - Notes 1 (Detail) by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6173/6211807513_549663f77a_z.jpg"class="flickr" alt="Observation - Union Sq - Notes 1 (Detail)"></a><br />
As with my other observations, I took up two positions (1 and 2 on this little map) - just so that I could get a sense of the space from different perspectives.</p>

<p><a href="http://www.flickr.com/photos/paulmmay/6211874766/" title="Observation - Union Sq - 16 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6110/6211874766_cb55845dc6_z.jpg" class="flickr" alt="Observation - Union Sq - 16"></a></p>

<p>I sat at the corner of 17th and Broadway (1 on the map) observing the busy intersection; a confluence of people coming from and going to Union Square, and people walking along 17th avenue. Into this mix you have an on-street seating area, cycle lanes, a roadway, payphones, street vendors and a lot of busy shops. It&#8217;s a complex little area - oh, and in case I forget; there&#8217;s also <a href="http://www.observer.com/2011/culture/cocaine-celebrity-and-comeback-kid-rob-pruitts-warhol-salute-hits-close-home" title="Rob Pruitt's statue of Andy Warhol ">Rob Pruitt&#8217;s statue of Andy Warhol </a>sitting smack bang in the middle of people eating their lunch. </p>

<p><a href="http://www.flickr.com/photos/paulmmay/6211880140/" title="Observation - Union Sq - 24 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6153/6211880140_861177e698_z.jpg" class="flickr" alt="Observation - Union Sq - 24"></a></p>

<p>The second location is actually on Union Square, at the seating area in front of the grand entrance to Union Square park. From here I could observe people entering the Northwestern area of the square, making their way North up Broadway, or into the open plaza. This is a far less dense space than the first observation point - people enter and exit the space slowly, so it&#8217;s a chance to see where and how they walk through the space.</p>

<h3>Key Observations</h3><p>
My key observations from the first location relate mostly to how people use the space. <b>It&#8217;s a space of transience, but also density. </b>People walk through the space in orderly bubbles/tides - which are broken up by the rhythm of the traffic lights. </p>

<p>I also noticed that tourists and (apparent) residents use the space differently. <b>The tourists are drawn along the orderly lines of the pedestrian crossings</b>, many of them walk directly towards the statue of Andy Warhol. The residents exit the pedestrian crossings early, breaking off in a particular direction - with some definite end point in mind. I just thought it was <b>interesting to see how you could discern different profiles of movement</b> from carefree visitors and those with a few minutes to spare from work. </p>

<p>The second observation point told a completely different story. From here I could see how people entering the large open square essentially all follow a small number of paths. They enter and exit far more continuously than at 17th and Broadway; <b>it&#8217;s less clear that they are being controlled by the rhythm of a traffic light</b>, or even the arrival of a subway train. I noticed that between the small number of desire-lines/paths there&#8217;s essentially a dead zone where few people walk. <b>Taking this path would lead them to no place in particular in either direction - so it sees less footfall.</b> This was interesting because, if our intervention in the space sought to break up a flow of people it&#8217;s pretty clear that there are good places and bad places to do this. On the other hand, if we want to stay out of the way we now know where to stand/wait. </p>

<p>So, they are some quick notes from the morning. <a href="http://www.flickr.com/photos/paulmmay/sets/72157627749963308/with/6211807513/" title="There are more photos and notes on Flickr">There are more photos and notes on Flickr</a>. 
</p>
        ]]>
    </description>          
      <dc:date>2011-10-04T20:32:44+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Charles Leadbeater: Perspective]]></title>
      <link>http://paulmay.org/articles/charles-leadbeater-perspective/</link>
      <guid>http://paulmay.org/articles/charles-leadbeater-perspective/#When:17:08:23Z</guid>
    <description>
        <![CDATA[
            This talk by Charles Leadbeater floored me. It makes me want to push myself and to reconsider some comfortable perspectives. If you have 30 minutes to spare, maybe watch the talk and tell me what you think. <iframe src="http://player.vimeo.com/video/10751957?title=0&amp;byline=0&amp;portrait=0&amp;color=f0e563" width="699" height="524" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe>

<h3>Summary</h3><p>
In this talk, Leadbeater encourages us to think about things that we&#8217;re just not encouraged to think about, or speak about (or let enter our heads in any way). Let&#8217;s face it, for most of our lives, our later years barely get a thought, and death is just off limits. </p>

<p>Leadbeater encourages us to grapple with the certainty of ageing and death, and to fundamentally re-think our later years. For him we should re-imagine the ageing and dying process founded on two principles; <b>participation and relationships</b>.</p>

<p>Towards the end of our life we should be able to <b>participate</b> and contribute. We should be able to do the things that we love doing; our lives should be about capabilities, not about infirmities. We should be able to make active decisions about the type of death that we want and don&#8217;t want. We should grow old while <b>maintaining strong relationships </b>with others, conversing with others - rejecting the idea that the highest goal we should strive for by the end of our lives is efficiency and professional success. </p>

<h3>My Reaction</h3><p>
I love this talk because Leadbeater talks about an incredibly sensitive topic in a completely open and humane way; It is hard enough to talk about death, let alone to talk about death in front of an audience - using the death of your parents as the key reference. </p>

<p>The talk really resonated me. I&#8217;ve had some experience of the death of a family member, and I suppose the way I think of ageing and dying is fundamentally shaped by this experience. For me, the process of ageing and dying haven&#8217;t really been positive things to think about; they go hand in hand with medical intervention and the loss of capability. His talk has shaken that perspective a little bit, and encouraged me to actively consider the type of life that I want.</p>

<p>In a broader sense, the talk has also made me think about the things that I design. At ITP this semester I&#8217;m working to re-think the way we participate in urban environments and to design health devices and services. The talk has just encouraged me to think about these two challenges from alternative perspectives. Maybe routes that that feel uncomfortable feel that way because they are more necessary and potentially more productive. I need to step beyond what I&#8217;m familiar with, otherwise all I will ever design will be some version of my own perspective on the world - no matter how much research I do.
</p>
        ]]>
    </description>          
      <dc:date>2011-10-01T18:08:23+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Five Ethics For Design Research]]></title>
      <link>http://paulmay.org/articles/five-ethics-for-design-research/</link>
      <guid>http://paulmay.org/articles/five-ethics-for-design-research/#When:21:30:36Z</guid>
    <description>
        <![CDATA[
            Design research is not always necessary, but where it is necessary, I think it should be done ethically and fairly - in a way that gets to useful conclusions without hurting people. In this article I've tried to boil down my point of view down into 5 ethics for design research. <p>Over the years I&#8217;ve probably guessed, self-taught, imitated, and gotten through most flavours of design research. It&#8217;s been really interesting - there is something really great about starting a design project with a goal and a set of questions, then working to get to a set of answers - which are then expressed in a service or product and improved over time. </p>

<p>The fact that while doing research I was learning <em>how</em> to do research never really bothered me - that&#8217;s life. What <em>did</em> bother me was the sense that sometimes I wasn&#8217;t being honest or fair in my research - that I was excluding uncomfortable options, or didn&#8217;t understand how to deal with people fairly - basically that I didn&#8217;t have a handle on the ethics of design research. </p>

<p>Now I see more and more research being done to inform design projects, and I&#8217;m sure other people have experienced similar issues along the way. This weekend, after completing a little observation study, I jotted down a few thoughts; five ethics that I think now underpin how I do design research.</p>

<h3>1. Necessary</h3><p>
When I do design research, it has to actually be necessary. <b>It needs to hurt that I don&#8217;t know things that I need to know.</b> Design research is the way that I find answers that are material to the success of the project. It has to be about more than just getting to travel, getting to know people, building relationships or showing that I&#8217;m smart.</p>

<h3>2. Designed</h3><p>
When I do design research, it itself has to be designed - <b>I need to have crisp, clear questions that I&#8217;m trying to answer. </b>I need to choose the best way to answer those questions, using just the time and resources that I need. I need to have a clear approach to assess my research against how well those questions are answered. There is nothing to preclude serendipity, or the identification of other worthwhile questions, or all the great stuff that happens when doing research - but those aren&#8217;t reasons to start out without clarity. </p>

<h3>3. Appropriate</h3><p>
When I do design research I need to use the right tools for the right job. <b>For every question, there is probably a right (or at least better) way of answering it.</b> I need to become comfortable with the design and implementation of experiments. I need to be comfortable with careful reading. I need to understand data. I need to be comfortable observing, interacting with and interviewing people. Even as a human-centred designer, I need to acknowledge that most research looks more like reading a book than ethnography.</p>

<h3>4. Fair</h3><p>
When I do research I need to be open to having my own preconceptions challenged; in fact <b>I should worry if I get to the end of a research exercise that doesn&#8217;t challenge or progress my initial thinking</b>. As well as this basic commitment to fairness. I need to <b>treat people I encounter with integrity</b>. If they are helping me, answering questions - they need to understand the context of that assistance (what I&#8217;m doing, why, for whom) and they need to be able to revoke that participation no matter how inconvenient it might be for me.</p>

<h3>5. Acted Upon</h3><p>
If my design research is appropriate and planned properly then <b>I should be able to act upon its findings without fear</b>. I may not know everything, but I didn&#8217;t set out to answer everything - so that&#8217;s okay. I should be able to say that because I know X from my research I did Y in my project. </p>

<h3>That&#8217;s It</h3><p>
I can&#8217;t say these points cover everything, but they are the corollary of most of the things I&#8217;ve done wrong over the years. I also can&#8217;t say that I hit the mark on these all the time, but I at least have a grasp of what I should be doing and why. Maybe you&#8217;ve struggled with your work too, and maybe you have a different take on ethical design research. Let me know - whatever that case - I&#8217;d love to hear your thoughts. 
</p>
        ]]>
    </description>          
      <dc:date>2011-09-29T22:30:36+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Systems and Layers: Observing People]]></title>
      <link>http://paulmay.org/articles/systems-and-layers-observing-people/</link>
      <guid>http://paulmay.org/articles/systems-and-layers-observing-people/#When:15:52:16Z</guid>
    <description>
        <![CDATA[
            Today I continued my observation of the intersection of Flatbush Avenue, Park Place and 7th Avenue in Brooklyn. Last time, I was looking at objects around this intersection which interact with a network of some kind. Today, I was observing human activity; it was a fascinating exercise. <h3>Method</h3><p>
<a href="http://www.flickr.com/photos/paulmmay/6189313084/" title="Survey - Ethogram Map Detail by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6020/6189313084_a67c1903ab_z.jpg" class="flickr" alt="Survey - Ethogram Map Detail"></a><br />
My focus in this observation is to document the spaces where people congregate at the intersection and their interactions (at a very broad level). </p>

<p>I broke the area I was observing into 6 <b>sections</b> (shown in pink on this rough map). I chose two <b>observation points</b>; a bus shelter at 1-2, and a table outside a cafe at 5-6. </p>

<p>I made observations from these two points; sitting at point 1 for 60 minutes from 7.30am to 8.30am, then at point two for 30 minutes from 9am to 9.30am. I also spent 30 minutes taking photographs around the area (from 8.30am to 9.00am). </p>

<p>The view from observation point 1 on 7th Avenue. </p>

<p><a href="http://www.flickr.com/photos/paulmmay/6188627535/" title="Survey - Human Activity 01 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6162/6188627535_68c182df56_z.jpg" class="flickr" alt="Survey - Human Activity 01"></a></p>

<p>The view from observation point 2 on Flatbush Avenue.</p>

<p><a href="http://www.flickr.com/photos/paulmmay/6189155132/" title="Survey - Human Activity 10 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6030/6189155132_353d7f806e_z.jpg" class="flickr" alt="Survey - Human Activity 10"></a></p>

<p>I decided to code the behaviour I saw in very loose <b>categories</b>:</p>

<ul>
<li><b>Stop</b> - a person stops and lingers for some reason (e.g. buying something from a street vendor)</li>
<li><b>Wait</b> - a person stops and waits (e.g. waiting for a bus)</li>
<li><b>Look</b> - a person examines an object on the street (e.g. looking at a bus schedule)</li>
<li><b>Coup</b> - a pair/couple interact with each other. (e.g. a husband and wife interact at the bus stop) </li>
<li><b>Group</b> - a group of more than two people congregate (e.g. a group of friends interact with each other)</li>
<li><b>Brief</b> - a brief interaction between people who pass on the street (e.g. two people pass and say hi to each other)</li>
</ul>

<p>Again, these are loose categories with blurred edges. There are some cases where an observation could fall into more than one category. I&#8217;ve tried to get as close as possible to the interaction I observed - from my subjective point of view.</p>

<p>I decided to use a simple <b>ethogram</b> to document this activity. For each observation I recorded the <b>time</b>, the <b>section number</b> (from 1-6), the <b>category</b> of behaviour and some <b>notes</b>. Here&#8217;s a snippet from my many, many pages of notes:</p>

<p><a href="http://www.flickr.com/photos/paulmmay/6188908717/" title="Survey - Ethogram Notes 02 - Detail by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6163/6188908717_25f42088ac_z.jpg" class="flickr" alt="Survey - Ethogram Notes 02 - Detail"></a></p>

<h3>Data Recorded</h3><p>
I made 81 observations in the 90 minute period - which I am now transcribing into a spreadsheet. I took 15 photos, which I&#8217;ve added to <a href="http://www.flickr.com/photos/paulmmay/sets/72157627749963308/with/6189155132/" title="the set of photos taken in my first observation">the set of photos taken in my first observation</a>. </p>

<h3>Key Observations</h3><p>
As the morning proceeded I noted down some key things I was seeing:
</p><ul>
<li>Most people are in <b>transit</b>, moving through the area - remaining for a few minutes (<b>2-5 minutes</b>). </li>
<li>The <b>key period of activity lasted from 7.30am to 8.45am</b>, after that it became noticeably quieter.</li>
<li>The bus shelter (area 2) is <b>a hub of activity</b> where people congretate.</li>
<li>I observed <b>lots of family and social interaction at the bus shelter</b> (area 2).</li>
<li>The <b>fruit seller </b>on the corner of 7th and Park Place is placed at a very good location (area 3).</li>
<li>As<b> people walk Northeast up 7th Avenue, they turn onto Park Place</b> (area 3) heading towards the subway station on Flatbush (area 4), passing the fruit seller (area 3).</li>
<li>The <b>bus service </b>that stopes on Flatbush (area 5) is far less frequent or popular than the service stopping on 7th Avenue (area 2).</li>
<li>People <b>sometimes use street furniture/objects for novel purposes</b>; hanging clothing, resting bags.</li>
<li>The <b>green space in the middle of the intersection - a small stand of trees - isn&#8217;t traversed</b> by many people. It&#8217;s essentially a traffic island.</li>
<li>The <b>subway stop (7th Avenue BQ) is like a magnet</b>, drawing people up the block - chiefly from the direction of 7th and Park Place.</li>
<li>People <b>interact very little with objects</b> that don&#8217;t relate to their commute. There is very little interaction with any other object on the street.</li>
<li>Interaction with the network layer of the city was almost entirely done through <b>cell phones</b>. One payphone call was observed.</li>
</ul>

<h3>Next Steps</h3><p>
I&#8217;m compiling the observations into a spreadsheet so that they can be sorted and counted easily. I&#8217;ll then add all the data onto a map, combining the observation of human activity with my survey of networked devices. As I continue to make observations at the intersection I want this map to build up into a useful document of the different layers of the urban experience.&nbsp; </p>

<p>So, I&#8217;m very happy with my morning&#8217;s work. </p>


        ]]>
    </description>          
      <dc:date>2011-09-27T16:52:16+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Systems and Layers: Network]]></title>
      <link>http://paulmay.org/articles/sytems-layers-networks/</link>
      <guid>http://paulmay.org/articles/sytems-layers-networks/#When:23:02:36Z</guid>
    <description>
        <![CDATA[
            As part of the Systems &amp; Layers: Urban Experience in the Network age I'm carrying out a series of close observations of an intersection in Brooklyn. Over the next few weeks I'll be looking at different layers of human activity - documenting what I find in advance of making some sort of intervention in this space. This week I'm looking at networked devices, and devices that communicate information to the street in some way. <h3>Choosing the Survey Location</h3><p>
<a href="http://www.flickr.com/photos/paulmmay/6181346799/" title="Systems and Layers Survey Area by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6161/6181346799_c5a4ce8403_z.jpg" class="flickr" alt="Systems and Layers Survey Area"></a><br />
For this series of observations I&#8217;ve chosen the block at the intersection of Flatbush Avenue and 7th Avenue (my Northern boundary), South to Flatbush avenue and Park Place - a diamond of three intersecting streets. </p>

<p>I chose this area (<a href="http://g.co/maps/qffjf" title="which you can see on this map">which you can see on this map</a>) because it&#8217;s a busy <b>commercial hub</b> at the center of a <b>densely populated</b> area. The 7th Avenue subway stop sits underneath the intersection, drawing a rush of <b>commuters</b> in the morning and evening times. Many of the area&#8217;s local buses pass down Flatbush Avenue. While it&#8217;s a busy intersection, there is still some green space; where Park Place and Flatbush Avenue diverge there&#8217;s a small area of trees and plants.</p>

<p>So, it&#8217;s a really complex little space with lots of different layers of experience to pull apart and analyse. I took a lot of photographs while doing the survey, <a href="http://www.flickr.com/photos/paulmmay/sets/72157627749963308/with/6182027718/" title="which are available over on ">which are available over on </a>Flickr and <a href="http://www.flickr.com/photos/paulmmay/map?&amp;fLat=40.6768&amp;fLon=-73.9732&amp;zl=3&amp;order_by=recent" title="also on a (rough) Yahoo map ">also on a (rough) Yahoo map </a>(to be replaced by something in Arcgis or Google Earth later in the week). </p>

<h3>Survey Location - North to Southeast</h3><p>
I started at the Northern boundary of the survey location, and walked Southeast down Flatbush Avenue to Park Place. </p>

<p>On this side of the block there were few (obvious) networked devices at street level (I cover the traffic system separately); some residential intercom systems, a satellite dish and some antennae. </p>

<p>Intercom system - there was one of these on practically every door on the east side of the survey area from 7th and Flatbush to Park Place and Flatbush.<br />
<a href="http://www.flickr.com/photos/paulmmay/6181425161/" title="Survey - Network Layer 03 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6171/6181425161_372c0aac7c_z.jpg" class="flickr" alt="Survey - Network Layer 03"></a></p>

<p>A satellite dish mounted to the side of one building. <br />
<a href="http://www.flickr.com/photos/paulmmay/6181427697/" title="Survey - Network Layer 04 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6163/6181427697_dc6f0f3991_z.jpg" class="flickr" alt="Survey - Network Layer 04"></a></p>

<p>One of two roof-mounted antennae on Flatbush Avenue. <br />
<a href="http://www.flickr.com/photos/paulmmay/6181458139/" title="Survey - Network Layer 16 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6152/6181458139_6bd90bab85_z.jpg" class="flickr" alt="Survey - Network Layer 16"></a></p>

<p>A mobile phone mast mounted on the roof of a building at the corner of Flatbush and Park Place.<br />
<a href="http://www.flickr.com/photos/paulmmay/6181978592/" title="Survey - Network Layer 14 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6177/6181978592_10862b73c2_z.jpg" class="flickr" alt="Survey - Network Layer 14"></a></p>

<p>I noticed some small devices labelled DEP attached to each building on this side of the street, but I wasn&#8217;t sure what they were - I photographed them anyway. They are electricity monitoring devices manufactured by the company Aclara, and installed by the Department of Electricity and Power. I want to read up on these some more, but <a href="http://www.google.no/patents/about/5719564_Utility_meter_reading_system.html?id=VRkbAAAAEBAJ" title="the patent documents">the patent documents</a> seem to indicate that they send information about power consumption back to a central computer; networked meters.<br />
<a href="http://www.flickr.com/photos/paulmmay/6181436137/" title="Survey - Network Layer 09 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6175/6181436137_43509e6bdd_z.jpg" class="flickr" alt="Survey - Network Layer 09"></a></p>

<p>I observed a row of parking meters that didn&#8217;t appear to be using a solar panel; I assume they are drawing power from the grid, or using such small amounts of power that they are powered from a battery of some kind. I&#8217;m not sure if they communicate information to or from a network. They do qualify as objects that communicate information back to a person on the street. <br />
<a href="http://www.flickr.com/photos/paulmmay/6181449667/" title="Survey - Network Layer 11 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6152/6181449667_7c50c610e1_z.jpg" class="flickr" alt="Survey - Network Layer 11"></a></p>

<p>At the corner of Flatbush and Park Place I observed an emergency telephone box; somebody had put a lost glove on top of the box.<br />
<a href="http://www.flickr.com/photos/paulmmay/6181954114/" title="Survey - Network Layer 06 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6174/6181954114_5113e26fc2_z.jpg" class="flickr" alt="Survey - Network Layer 06"></a></p>

<p>At the same corner pedestrians request to cross by pushing this anonymous button; the plate which (I assume) once had instructions on it has long-since faded. <br />
<a href="http://www.flickr.com/photos/paulmmay/6181964626/" title="Survey - Network Layer 08 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6156/6181964626_e8e6f09ff9_z.jpg" class="flickr" alt="Survey - Network Layer 08"></a></p>

<h3>Southeast to Northwest</h3><p>
Crossing the street, I walked Northwest up Park Place. On top of one building I observed a large satellite dish. <br />
<a href="http://www.flickr.com/photos/paulmmay/6182050710/" title="Survey - Network Layer 37 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6175/6182050710_88219aec96_z.jpg" class="flickr" alt="Survey - Network Layer 37"></a></p>

<p>On an adjacent building I observed a mobile phone/microwave transmitter. <br />
<a href="http://www.flickr.com/photos/paulmmay/6182042072/" title="Survey - Network Layer 36 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6164/6182042072_f0ee42d290_z.jpg" class="flickr" alt="Survey - Network Layer 36"></a></p>

<p>I walked down the steps of the Flatbush Ave/Park Place entrance to the 7th Avenue subway stop. The station features the standard MTA ticket vending machine and a smaller, card-only machine. <br />
<a href="http://www.flickr.com/photos/paulmmay/6181998408/" title="Survey - Network Layer 21 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6165/6181998408_cd70d84136_z.jpg" class="flickr" alt="Survey - Network Layer 21"></a></p>

<p>A little way up the block I see my first conventional telephone system; a dual payphone - which looks a bit worse for wear.<br />
<a href="http://www.flickr.com/photos/paulmmay/6181986184/" title="Survey - Network Layer 18 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6156/6181986184_d757a9e2aa_z.jpg" class="flickr" alt="Survey - Network Layer 18"></a> </p>

<h3>Traffic System</h3><p>
The traffic in the area is quite heavy - Flatbush Avenue is one of the main routes through Brooklyn. As such, there are a lot of traffic control devices.</p>

<p>There are lights at each junction of the intersection; three sets of lights on both sides of the street. <br />
<a href="http://www.flickr.com/photos/paulmmay/6181522315/" title="Survey - Network Layer 38 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6157/6181522315_6367133dae_z.jpg" class="flickr" alt="Survey - Network Layer 38"></a></p>

<p>I noticed something I hadn&#8217;t seen before; each light had a small antenna mounted to its post. <br />
<a href="http://www.flickr.com/photos/paulmmay/6182027718/" title="Survey - Network Layer 30 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6172/6182027718_90b3203f71_z.jpg" class="flickr" alt="Survey - Network Layer 30"></a></p>

<p><a href="http://www.flickr.com/photos/paulmmay/6181485877/" title="Survey - Network Layer 25 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6178/6181485877_69767ab1a5_z.jpg" class="flickr" alt="Survey - Network Layer 25"></a><br />
There were three large traffic control boxes - each one had a similar antenna mounted on top of a vertical post. I can only assume that the traffic control boxes are communicating wirelessly with each other and with the traffic lights, co-ordinating their actions - as well as connecting back to a central traffic control system.&nbsp; </p>

<p>At pedestrian crossings there are signals communicating to pedestrians when it&#8217;s safe to cross.<br />
<a href="http://www.flickr.com/photos/paulmmay/6181993206/" title="Survey - Network Layer 19 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6170/6181993206_357c60e3d7_z.jpg" class="flickr" alt="Survey - Network Layer 19"></a></p>

<h3>Other Observations</h3>

<p>I was really surprised that I saw no working cameras anywhere in the survey area. One bar did have an infrared camera mounted above its door, but it was clearly broken and was pointed at an angle where it couldn&#8217;t see the street. </p>

<p>Similarly, there were practically no display devices anywhere in the survey area - just the traffic signals, some small LED displays on parking meters, and the displays integrated into the MTA ticket vending machine in the subway station. </p>

<p>I also observed that each pillar and post has a unique identifier, usually accompanied by a barcode; presumably this information is recorded somwhere along with information about the location of the pillar/post - and is then used by maintenance crews. It&#8217;s interesting to think that there is (probably) a database somwhere noting every single piece of street furniture/infrastructure in some way. <br />
<a href="http://www.flickr.com/photos/paulmmay/6181954592/" title="Survey - Network Layer 07 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6170/6181954592_10c770998a_z.jpg" class="flickr" alt="Survey - Network Layer 07"></a></p>

<p>One sheltered bus stop also featured a unique identifier; though this time customers were encouraged to use the identifier when making issues known to the city.&nbsp; <br />
<a href="http://www.flickr.com/photos/paulmmay/6181344149/" title="IMG_20110925_110550 by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6171/6181344149_01aba99020_z.jpg" class="flickr" alt="IMG_20110925_110550"></a></p>

<h3>Final Thoughts</h3><p>
The exercise of cataloging physical items in a space was revealing; I had never really paid any close attention to the items I saw today. So much of the city just washes over me; slowing down my pace and spending time just to observe was really interesting. </p>

<p>I was surprised that many of the networked objects to be found in the survey area were practically invisible (traffic control network, power grid network, roof-mounted antennae) - and that they communicate through (presumably) private networks built for a single purpose. </p>

<h3>Next Steps</h3><p>
This week I&#8217;ll be visiting the survey area again observing human activity. I have begun to transfer my observations from today into a KML or Arcgis file, which I&#8217;ll make available here. </p>


        ]]>
    </description>          
      <dc:date>2011-09-26T00:02:36+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Fantasy Self-Monitoring Devices]]></title>
      <link>http://paulmay.org/articles/fantasy-self-monitoring-devices/</link>
      <guid>http://paulmay.org/articles/fantasy-self-monitoring-devices/#When:12:03:32Z</guid>
    <description>
        <![CDATA[
            This week in my DIY class health we were asked to sketch devices that could, at some point in the distant future,  help monitor some aspect of our physiology or experience - fantasy self-monitoring devices. These are my quick sketches.<h3>Concept</h3><p>
I was interested in the idea of self-monitoring devices that could carry out what today would be considered quite advanced laboratory analysis in a persistent way - carrying out ongoing genetic analysis of our biome or monitoring for specific antigens. </p>

<p>I was inspired <a href="http://en.wikipedia.org/wiki/Lab-on-a-chip" title="microfluidic lab-on-chip systems">microfluidic lab-on-chip systems</a>, <a href="http://www.ohsu.edu/xd/research/research-cores/gmsr/project-design/array-technology/illumina-bead-arrays.cfm" title="genotyping chips">genotyping chips</a>, <a href="http://www.wpro.who.int/sites/rdt/whatis/malaria_rdt.htm" title="rapid diagnostic kits">rapid diagnostic kits</a> and <a href="http://www.popsci.com/node/19963" title="camera pills">camera pills</a>. I was really heartened that the cost these technologies has <a href="http://www.wired.com/medtech/genetics/magazine/15-12/ff_genomics?currentPage=all" title="fallen considerably in recent times">fallen considerably in recent times</a>.</p>

<p>I took a leap to imagine a time when these devices are so cheap and small that they could persist in our bodies in some way. In all cases, the devices carry out their work inside the body and send data back to the user&#8217;s watch, phone or tablet - where the data can be displayed, analysed, shared and acted upon.</p>

<h3>Semi-Persistant Genotyping Pill</h3><p>
This pill is essentially a miniature genetics laboratory. The person takes the pill, which travels through the gastrointestinal tract, building a genetic fingerprint of the organisms it encounters. <br />
<a href="http://www.flickr.com/photos/paulmmay/6179716174/" title="Ingested Genotyping Pill by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6166/6179716174_423e9de8ea_z.jpg" class="flickr" alt="Ingested Genotyping Pill"></a><br />
In the diagram I show a bacterium being captured by the pill, having its DNA separated and analyzed, before being genotyped and data sent back to the user.</p>

<h3>Persistent Genotyping Lab/Patch</h3><p>
This miniature genetics testing lab would carry out a similar function to the genotyping pill, but in the bloodstream. <br />
<a href="http://www.flickr.com/photos/paulmmay/6179715486/" title="Persistant Genotyping Lab by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6164/6179715486_2a38062002_z.jpg" class="flickr" alt="Persistant Genotyping Lab"></a><br />
The lab would be inserted under the skin, or during surgery - and would  fixitself to the wall of a vein or artery, capturing microorganisms for genetic analysis. This would allow the user to get near real-time information about the strains of viruses they are exposed to and the types of bacterial infections  they have travelling in their bloodstream.&nbsp; </p>

<h3>Antigen Lab/Patch</h3><p>
This is a lab-on-chip device that sniffs for particular antigens in the bloodstream. The lab carries specific antibodies that bond with corresponding antigens that arrive via the bloodstream. When an antigen is detected, that information is sent back to the user. <br />
<a href="http://www.flickr.com/photos/paulmmay/6179712838/" title="Persistant Antigen Test Lab by paulmmay, on Flickr"><img src="http://farm7.static.flickr.com/6177/6179712838_5a540523ce_z.jpg" class="flickr" alt="Persistant Antigen Test Lab"></a></p>

<h3>Conclusions</h3><p>
I enjoyed this exercice; it&#8217;s nice to just sit and sketch ideas - completely unencumbered by constraints (or knowledge!) - to see what happens. Though these devices are fantastic, I do like the idea that once-in-a-lifetime (or very infrequent) medical testing could become something much more immediate and persuasive. What that means of course is to be discussed and explored.
</p>
        ]]>
    </description>          
      <dc:date>2011-09-25T13:03:32+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Year 2 at ITP: A Quick Update]]></title>
      <link>http://paulmay.org/articles/year-two-at-itp-a-quick-update/</link>
      <guid>http://paulmay.org/articles/year-two-at-itp-a-quick-update/#When:20:42:35Z</guid>
    <description>
        <![CDATA[
            I am heading into my third week of year 2 at ITP, so it feels like a good time to stop, take a look around and talk about what's next.<p>I am taking five classes this semester on a diverse set of topics, from art history to health device design. My goal was to take classes that push me somewhat out of my comfort zone into more conceptual territory, while also giving me scope to make things. Here&#8217;s a quick summary of what I&#8217;ve been doing in each class, and what&#8217;s coming up.
</p><h3>The Pattern in the Noise</h3><p>
The Pattern in the Noise: Introduction to Statistics and Data Analysis with R is a seven week class taught by Jake Porway. The goal of the class is to teach us some fundamental skills related to the analysis of large data sets using the stats package R. I wanted to take this class because it&#8217;ll help me accomplish more with my work in data visualisation - I just want to be a little more confident in my ability to identify and draw out meaning from data sets, while treating source data properly/ethically (i.e. not pointing to things unless they are significant beyond reasonable doubt, or connecting things that aren&#8217;t connected). </p>

<p>The next steps in this class are to become more comfortable with R by manipulating sample sets of data, before moving on to look at our own data.</p>

<h3>DIY Health</h3><p>
In <b>DIY Health</b>, taught be Steven Dean, we are designing tools to help people gather information about the current state of their health, set goals, encourage action and monitor progress. Instead of working to improve existing health infrastructure (better hospitals, better medical devices), we&#8217;re trying to intervene in people&#8217;s day to day lives, using smart devices to encourage healthy lifestyles. The eventual outcome of this project will be speculative designs or prototypes of new services/devices that we believe will have positive effects for people.</p>

<p>The <b>next steps</b> in this class are look closely at <b>behaviour and motivation</b> as they relate to health/lifestyle, before looking at ways to design positive feedback loops that help to encourage healthy lifestyles. I will probably try to integrate some of my experience training for triathlon into this class as well.</p>

<h3>Recurring Concepts in Art</h3><p>
This class takes me out of my comfort zone! In this class, which is taught by Georgia Krantz, I&#8217;ll be looking at the history of major movements in modern and contemporary art. Each week we read and investigate a theme; like the use of technology, reproduction/copying, the body - using significant artists as examples and applying what we learn to new media and design. </p>

<p>I already love this class because it really makes me think about what &#8220;new&#8221; really means in relation to ITP - where we try, but often fail, to advance the state of the art that looks to merge design, people and technology. The <b>next steps</b> for the class are to continue looking at more themes that occur repeatedly over time - making field trips to places in New York where we can see related works. </p>

<h3>Urban Experience in the Networked Age</h3>

<p>In this class, taught by Adam Greenfield, we are examining the development of the modern city as a &#8220;stack&#8221; of people, infrastructure, services and data. We are basically trying to pick apart the modern urban experience, proposing new ways in people can work with non-human actors (connected objects and sensors) and services to live healthier and happier urban lives.</p>

<p>The next steps for this class are to make field trips out into the city observing the environment, people, infrastructure, devices and systems - documenting these different layers of the urban experience using photography and video, before proposing a project in which we&#8217;ll intervene at this location in some way - maybe with a service or device. This class is going to be a huge challenge, but it&#8217;s really exciting.</p>

<h3>Poweful Ideas: Useful Tools to Understand the World</h3><p>
This class is taught by Nancy Hechinger with guest lecturer Alan Kay. Alan is one of the world&#8217;s foremost experts on computer science; he co-created the concept of object oriented programming, was lead scientist at Atari, a researcher at Xerox PARC and has done pioneering work in the design of computing devices for children. In this class we are using the concept of &#8220;powerful ideas&#8221; (ideas that, when arrived at/agreed upon, fundamentally change the way we understand the world - like the scientific method) to propose more human ways to teach and learn. </p>

<p>This class feels a bit like it&#8217;s circling the airport, but in the next few weeks I&#8217;m confident we&#8217;ll land the plane - if you know what I mean.</p>

<h3>That&#8217;s All</h3><p>
I want to write more about what we&#8217;re up to this year, but I am short of time - I&#8217;ll be posting updates on classes and projects as the semester continues.
</p>
        ]]>
    </description>          
      <dc:date>2011-09-17T21:42:35+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[I Don&#8217;t Miss You, iPhone]]></title>
      <link>http://paulmay.org/articles/i-dont-miss-you-iphone/</link>
      <guid>http://paulmay.org/articles/i-dont-miss-you-iphone/#When:18:32:23Z</guid>
    <description>
        <![CDATA[
            We shared some great times, but things are so much simpler now. Let me explain.<p>I know that if you read this you&#8217;ll be annoyed. </p>

<p>I left you on the arm of my chair in the cinema, and by the time I was a few steps away you were gone. The man checked in the office, he checked in the box. He took my name and wrote it down carefully. I called the next day. Any sign? No. </p>

<p>I was careless and then you were gone; that&#8217;s six months ago now.</p>

<p>At first it was weird - being without you. No Radiolab on the train. No e-mail on the go. No tweets. No check-ins. No to-do list. I visit again in the land of the phone call and the text message, the post card and the passenger pigeon. </p>

<p>But over time I&#8217;ve learned to cope without you. </p>

<p>I started to read again, yes read, on the train. Real books, paper. Those books I bought, I have now read most of them. The tweets I send and then regret later because, really, I need to lighten the hell up - I send at least 50% less of those than before. Those things I have to do, well I still don&#8217;t do the same amount of them.&nbsp; Now I save seconds by not needing to check the ones I actually do off a list. When I am gone from work, from school, from there and them - I am gone. </p>

<p>You were great iPhone, the freebased nicotine peak of 25 years of computer usage. I can&#8217;t say it wasn&#8217;t fun. </p>

<p>I don&#8217;t miss you. There. I said it.
</p>
        ]]>
    </description>          
      <dc:date>2011-07-30T19:32:23+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[We Are Working On It]]></title>
      <link>http://paulmay.org/articles/we-are-working-on-it/</link>
      <guid>http://paulmay.org/articles/we-are-working-on-it/#When:01:53:00Z</guid>
    <description>
        <![CDATA[
            <a href="http://www.flickr.com/photos/paulmmay/5828829669/" title="Paul May - From Over Here by paulmmay, on Flickr"><img src="http://farm6.static.flickr.com/5022/5828829669_0c7f74ef5b_z.jpg" class="flickr" alt="Paul May - From Over Here"></a>
We are Working On It is a representation of 1.9 million scientific journal articles related to cancer research from 1980 to 2010, accompanied by audio interviews with researchers from Memorial Sloan Kettering Cancer Center in New York. We Are Working On It was my final project for the Data Representation and Collective Storytelling classes at ITP.<h3>Background and Objectives</h3>

<p>This year a lot of my work at ITP has involved the use of large data sets to tell or discover personal stories. We Are Working On It is a continuation of this theme. Unfortunately my family, like many families, has experienced the devastating affects of cancer across multiple generations. I wanted to use available data and accessible tools to<b> investigate how the amount and type of cancer research has changed during my lifetime. I also wanted to look behind the data and meet with cancer research scientists, talk about their work and understand who they are and what they do. </b></p>

<p>My goal with this project was to combine both sources - data and audio recordings of conversations with researchers - into one coherent timeline.</p>

<h3>Retrieving 1.9 Million Scientific Journal Article Abstracts</h3>

<p><img src="http://farm6.static.flickr.com/5187/5683963777_838673f3bb_b.jpg" title="A screenshot of my application downloading cancer research articles" alt="A screenshot of my application" class="flickr" /></p>

<p>The first part of the project involved <b>identifying a source of scientific data</b>, then writing an application to retrieve, store, parse and display this data in a timeline. I decided to use the Pubmed scientific journal database provided by the <a href="http://www.ncbi.nlm.nih.gov/books/NBK25500/" title="National Center for Biotechnology Information">National Center for Biotechnology Information</a> (NCBI) as my primary source of data because of the range and depth of available data, and the fact that this data is accessible through a very solid API.</p>

<p>My <a href="https://github.com/paulmmay/weareworkingonit/tree/master/entrez_search" title="Processing application">Processing application</a> first passed a search term (&#8220;cancer&#8221; and related keywords) into the NCBI&#8217;s search utility and retrieved scientific journal abstracts as XML - the amount of data was pretty immense (it took over a day to complete the full search). </p>

<p>One of the key challenges was to then interpret and store all this data - as you might expect the hygiene of the data varies the further back in time we look. My application had to construct useful objects (journals, articles, research centres, scientists etc.) from the data and then store these objects in a local database (MongoDB) - where it would be much quicker to run follow-up queries.</p>

<h3>Building a Timeline of Cancer Research</h3>

<p>The next step of the process involved <b>the presentation of the data in a form of timeline.</b> I spent a lot of time thinking about how the aesthetic of the representation of the data could be sensitive of the subject matter, informative and elegant - just enough design to tell a story without getting in the way. I knew from early in the process that it would be incredibly difficult to take all this scientific information and tell an accessible story -<b> I decided to start with a smaller story about the number of scientists working on cancer research and the volume of work they produce.</b> This seemed to fit well with the parallel track of the project where I was meeting with scientists.</p>

<p>I developed a graphic design that <b>shows the number scientists and research centres were publishing research related to cancer research in a number of different journals</b>. I wanted this quantitative data to read almost like a sentence from the top of the graphic down to the bottom.</p>

<p>I also wanted to take a number of article <b>titles from each year and use them to give a flavour of the type of work being done</b>; I used a lexical analysis technique to weight the terms used most frequently in each year, picking articles that scored highly on this representative scale. A better way of doing this would have been to use the most cited articles from each year, but this wasn&#8217;t data I had access to.</p>

<p>I have spoken about my belief that all data representation that purports to represent &#8220;the truth&#8221; needs to address the source and quality of its data. In each graphic generated by my application <b>I make a statement about any data that didn&#8217;t meet quality checks</b> (an example of a failed check would be where a scientist had a first but no last name, or where an article had no title).</p>

<p>The application generated a number of PDF images (showing data for 1980, 1990, 2000, 2010) which were then brought into Adobe Illustrator for final type setting and small tweaks. </p>

<p><img src="http://farm6.static.flickr.com/5110/5756913667_bcea349b69_b.jpg" alt="one graphic from my project showing cancer research data from 1980 to 2010" class="flickr" /></p>

<p>The graphics were <b>printed on archival paper and framed</b>. When the framed graphics hang next to each other they show the change in the data being represented over time - with more time it would be great to print and hang each year, but this would have been very expensive. You <a href="http://www.flickr.com/photos/paulmmay/sets/72157626515103125/" title="can see the final graphics">can see the final graphics</a> (and the many failures along the way) on <a href="http://www.flickr.com/photos/paulmmay/sets/72157626515103125/" title="Flickr">Flickr</a>.</p>

<h3>Interviews at Memorial Sloan Kettering Cancer Center</h3>

<p>I spent two afternoons at MSKCC&#8217;s Powell research laboratory. I interviewed two scientists; Laura Eccles and Ciara O&#8217;Driscoll - from England and Ireland respectively - about their work. </p>

<p>I prepared for the interviews by doing some <b>basic desk research about MSKCC and the work being done there</b>. I developed a short interview script that focused on the scientists&#8217; backgrounds, how they came to be working in cancer research, their day to day work and their hopes for the future. </p>

<p>Laura and Ciara were incredibly forthcoming about their lives and their work; I came away from the conversations with them feeling immensely grateful for their hard work, but also<b> much more aware of the day to day frustrations involved in research</b> - it is not an easy life by any stretch of the imagination. </p>

<p>I have embedded two short excerpts from the interviews here - this audio was played alongside the printed graphics at the ITP show in May 2011.</p>

<object height="136" width="100%"> <param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Fplaylists%2F974024"></param> <param name="allowscriptaccess" value="always"></param> <embed allowscriptaccess="always" height="136" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Fplaylists%2F974024" type="application/x-shockwave-flash" width="100%"></embed> </object><p>&nbsp; <span><a href="http://soundcloud.com/paulmmay/sets/we-are-working-on-it">We Are Working On It</a> by <a href="http://soundcloud.com/paulmmay">paulmmay</a></span> </p>

<h3>What I Learned</h3>

<p>This project was <b>technically challenging and personally draining at times - but I learned a huge amount. </b> I feel now as though I would be much better prepared for a project involving the manipulation of a huge amount of data - there are just sensible ways to do this stuff, and it took a lot of trial and error to hit on a good approach.</p>

<p>Aside from the technical challenges, I believe that <b>I answered the questions that I set out to answer at the beginning</b> - even if I only scratched the surface of the potential to elaborate on this answer.</p>

<p>I know now that there have never been more people involved in the search for better treatments and potential cures for cancer  - that isn&#8217;t something I knew before this project. <b>There are over six times more people working in cancer-related fields as there were in 1980</b>. I also know that this international network of researchers publish more work than ever - and that a considerable amount of this work is available to anybody who wants to look for it through bodies like NCBI.</p>

<p>I got to meet two of the people working directly on cancer research - I learned that they are <b>deeply motivated to do the work that they do, but that they are not superheroes</b>. They go to work, work is frustrating, sometimes they make progress and most of the time they don&#8217;t. It is deeply heartening to have had a tiny glimpse into the day to day work of these people - it makes the data really come alive for me because I can start picture all the other people grafting away on this impossible problem around the world.</p>

<p>I am proud of this project.
</p>
        ]]>
    </description>          
      <dc:date>2011-07-27T02:53:00+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[What&#8217;s Next - Why and So What]]></title>
      <link>http://paulmay.org/articles/whats-next-why-and-so-what/</link>
      <guid>http://paulmay.org/articles/whats-next-why-and-so-what/#When:15:29:18Z</guid>
    <description>
        <![CDATA[
            Thinking ahead to year two of ITP and the why and so what of my work.<p>A few years ago I was at a conference in San Francisco where Tim O&#8217;Reilly gave a keynote speech. He drew together some threads of the conference (which had featured the work a organisations using technology to involve citizens in the work of government) into one thought; <a href="http://radar.oreilly.com/2009/01/work-on-stuff-that-matters-fir.html" title="Work on Stuff that Matters">Work on Stuff that Matters</a>.&nbsp; His basic idea was that technology and people designing new uses for technology have a key role to play in improving the world - but that this could only happen if people working in design and technology valued more than just commercial value (selling out at the first opportunity) and took a long term view of our work (incremental/small improvements leading to big changes/changes at scale). </p>

<p>The talk has stayed with me over the years; I come back to it when I think about new projects. I try to work on projects that are connected to a &#8220;why&#8221; - a motivation, a desire or a problem, and that have a &#8220;so what&#8221; - an impact beyond the project, even if it&#8217;s only to move a tiny idea forward a little bit in my own head.</p>

<p>Last year at ITP I had the chance to work on things that were both personal to me and connected to a somewhat longer term idea; whether it was the idea that my photos <a href="http://paulmay.org/blog/photoplus" title="connected me to stories">connected me to stories</a> that themselves change as time passes, or that data could <a href="http://paulmay.org/blog/from-over-here" title="tell me about where I'm from">tell me about where I&#8217;m from</a> - I gravitated towards things that matter to me. </p>

<p>This was good and bad. Because the projects were personal and worthwhile to me I worked hard on them, was proud of the outcome and gained real personal insight. On the other hand personal projects are naturally hard to build a team around. I chose to work on my own more than I would have liked and missed out on some lightness, fun and experimentation that could have come from a more social approach.</p>

<p>In the next year I want to continue to work on things that are personal to me and to work on things that have the capacity to move ideas forward - but I also want to find a balance between these things, teamwork and fun. I don&#8217;t think any of these motivations are incompatible - but I think it&#8217;ll be positive to have a more complex center of gravity to my projects.</p>

<p>Of course, what exactly all that means is to be determined in year two at ITP.
</p>
        ]]>
    </description>          
      <dc:date>2011-07-24T16:29:18+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[What&#8217;s Next - Process]]></title>
      <link>http://paulmay.org/articles/whats-next-process/</link>
      <guid>http://paulmay.org/articles/whats-next-process/#When:14:42:37Z</guid>
    <description>
        <![CDATA[
            Summer has been moving along nicely; my work at Frog is going well and I've started to turn my thoughts to the coming year at ITP. In this quick sketch I talk about something close to my heart; the process of design. <p>After a year of experimentation, working with great new people, I more confident than ever that a solid design <em>process</em> is valuable.&nbsp; </p>

<p>When I talk about the process of design I mean that it is good to approach concepts or problems with a basic toolkit; understanding how to apply a couple of research activities, knowing how to work on a team, finding the right material or tool to use after many years of experimentation. </p>

<p>In year one of ITP I had the opportunity to expand my toolkit, taking approaches I had used to make things for the web, modifying them to make devices, representations of data, audio pieces, essays and lots of other stuff.&nbsp; I was able to get back in touch with skills that I had let wither, like programming, sketching, electronics, drawing and creative writing. Having a very loose toolkit expanded my ability to get to grips with what was special about each project - it basically allowed me to cope with what was sometimes an intense workload while still doing some good work.</p>

<p>On the less positive side, I also now know that my way of doing things closed me off from ideas and opportunities that I should have considered or pursued further. In the coming year I need to make sure that I am really going out of my way to question how I work, and going out of my way to consider other viewpoints and approaches to projects. </p>

<p>So, that&#8217;s item number one for year two at ITP; recognition that each project is actually two projects; the one that delivers an outcome, and the one that expands my capabilities and ways of thinking. 
</p>
        ]]>
    </description>          
      <dc:date>2011-07-24T15:42:37+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Destinations]]></title>
      <link>http://paulmay.org/articles/destinations/</link>
      <guid>http://paulmay.org/articles/destinations/#When:20:53:44Z</guid>
    <description>
        <![CDATA[
            <a href="http://www.flickr.com/photos/paulmmay/5752004821/" title="Destinations - Game in Progress by paulmmay, on Flickr"><img src="http://farm4.static.flickr.com/3208/5752004821_fcedf8e60f_z.jpg" class="flickr" alt="Destinations - Game in Progress"></a>

Destinations is a game of global travel and strategy designed by Steve Klise, Paul May, Natalie Be'er and Spike McCue as our final project the ITP Big Games class. <h3>Game Play</h3><p>
<a href="http://www.flickr.com/photos/paulmmay/5752006361/" title="Destinations - Game Map by paulmmay, on Flickr"><img src="http://farm3.static.flickr.com/2399/5752006361_e5ac6080d7_z.jpg" class="flickr" alt="Destinations - Game Map"></a></p>

<p>Destinations is a game that rewards players for travelling to far-flung parts of the world. Each country is assigned a number of points based on the number of connecting flights in and out of the country; the less connections there are, the more points a country is worth. </p>

<p>Players start in countries of equal value; and use the Destinations web application to book a flight to another country. Flights leave on the hour and flight durations vary depending on the distance being travelled; the shortest flights will last 30 minutes, the longest flights will last 2 hours. When a player&#8217;s flight lands, they can can book another flight. Players may linger in a country if they wish. Players do not have to take a flight every turn.</p>

<p>Players will receive updates via SMS to tell them when their flight takes off or lands at which time they should go to the game board, and move their marker to their current destination. Players can view the current state of the world on a large map on the floor at ITP. </p>

<h3>Scoring and Winning</h3><p>
<a href="http://www.flickr.com/photos/paulmmay/5752022029/" title="Destinations - Scoreboard by paulmmay, on Flickr"><img src="http://farm3.static.flickr.com/2571/5752022029_6ab8aee5f0_z.jpg" class="flickr" alt="Destinations - Scoreboard"></a></p>

<p>Players travel around the world by plane, and receive points for the countries they have visited - once a player leaves a country, they start to earn points. Each player will continue to earn points every hour for a country they have left until another player arrives, and then leaves that country. </p>

<p>If two players are in the same country, the last to leave receives the points. If both players take the same flight out, they split the points evenly.</p>

<h3>Thoughts, Feedback</h3><p>
Our goal was to design a game that offered people with limited time, living in a large city an experience that felt like travelling around the world. </p>

<p>Initially we thought about using elements of people&#8217;s day to day commute as the core mechanic (maybe rewarding distance covered, or interactions of some kind) but this just didn&#8217;t seem like fun, and we also recognised that the time people spend commuting to and from school/work (which in NY usually means taking the subway) is necessary down time, not really a time to be carrying out observation tasks or changing regular patterns.</p>

<p>Eventually we decided to create a game that would offer the feeling of global travel, but playable wherever players were and with light time commitment. We designed destinations as a kind of big board-game which would use the web and SMS messages to provide access and continuity wherever players happened to be when they wanted to play.</p>

<p>We got great feedback from the players after the game finished; </p>

<ul>
<li>The texture of the game, the aesthetic was really enjoyable - players did get a sense of competition, travel, fantasy.</li>
<li>The game was fun; all but one of the players continued for the full two day game.</li>
<li>People enjoyed the updates by text messages (&#8220;Hello Michael, your flight to Cuba has just departed from Iceland. Pack up those parkas and get out the sandals!&#8221;), but in a way being prompted to play removed the need for players to keep track of time themselves</li>
<li>Having an online map would be good, rather than having to go to the board to see the state of play. This is something we talked about, but didn&#8217;t have time to implement.</li>
<li>It&#8217;d be good to think of making a better experience for spectators.</li>
<li>More players would help fill in the board, increase the sense of pressure - we had 7 players, 2 or 3 more would have been really good (or a smaller area of play).</li>
<li>A way to interact with the other players - a sense of communication between players during the game - would be good.</li>
<li>The game appeared to reward constant play - just continuing to book flights and travel each and every turn. The flip side of this is that the game punishes players who don&#8217;t play constantly. There is probably a tweak here to make it acceptable for players to miss a turn without falling behind.</li>
</ul>

<p>Feedback from our instructor, Greg Trefry was also very encouraging:</p>

<blockquote><p>Great job with Destinations.&nbsp; This game had a lot going for it: elegant simplicity in the design, a mechanic that really took advantage of persistence and smart technical execution.</p>

<p>The basic mechanic of trying to skip around the world to accumulate points was great.&nbsp; And then tying your ability to move to length of flights and departure times was great.&nbsp; It&#8217;s odd because the act of going to the airport to catch an actual flight is such an awful tedious, fraught experience.&nbsp; Yet the game is great because it lets you dream about traveling without the hassle of arriving two hours early and taking off your shoes.&nbsp; Finding this little bit of content that marries well with your game design can really be the secret sauce in game development.</p></blockquote>

<p>All in all the feedback was very positive; we are now considering making the game available more widely - with some changes obviously.</p>

<h3>Thanks</h3><p>
This was a great way to end our time in the Big Games class; which was by far the most complete, and most intriguing class I took this semester - thanks to Greg for making it such a great class, and to the rest of my classmates who made a lot of fun stuff this semeseter.</p>

<p>Huge thanks to Steve Klise who worked incredibly hard on the web component of the game - he was a real hero on this project. 
</p>
        ]]>
    </description>          
      <dc:date>2011-05-23T21:53:44+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[TEDx: Data Representation and Personal Narratives]]></title>
      <link>http://paulmay.org/articles/tedx-data-representation-and-personal-narratives/</link>
      <guid>http://paulmay.org/articles/tedx-data-representation-and-personal-narratives/#When:01:20:31Z</guid>
    <description>
        <![CDATA[
            <a href="http://www.flickr.com/photos/paulmmay/5670967252/" title="TEDx - Data Representation and Personal Narrative by paulmmay, on Flickr"><img src="http://farm6.static.flickr.com/5029/5670967252_d93abbb970_b.jpg" class="flickr" alt="TEDx - Data Representation and Personal Narrative"></a>

While I wait for the video from my TEDx talk to be edited (I'm told it'll be ready in a couple of weeks) I thought I'd post my own notes from the day. This text is basically the framework I talked around on the day - so it's likely to be a bit different from what I say on the video (this is code for "on the day I was very nervous and lost my way a bit"). The talk was about some of my own work to analyse and represent large sets of data as well as the process of data representation. <h3>Introduction</h3>

<p>Hello, thanks for this great opportunity to talk to you today - My name is Paul May, and I&#8217;m a student at the Interactive Telecommunications Program here at NYU. </p>

<p>My goal with this talk is to continue a conversation that&#8217;s happening at ITP right now. That conversation is about the ways in which information/data about our day to day activities is gathered and stored. It&#8217;s also about the ways in which personal data and other large data sets - census data, seismic data, political polling data, are mapped into other forms - represented as graphics or sound or sculpture. </p>

<p>We think this conversation is timely. So much of our lives now are spent transacting and interacting with data. If you open a newspaper or website and it&#8217;s highly likely you&#8217;ll find a slickly produced infographic. Television news has become a mash-up of live footage and data-driven graphics. When we interact with our families on Facebook, we&#8217;re interacting with pieces of data about them - data has become a cultural artifact and something we exchange in return for goods and services.</p>

<h3>My Projects - Moving Away to Gain Perspective</h3>

<p>So, when I came to ITP I think I did what a lot of people, including many Irish artists like Joyce and Beckett, do when they leave their home - they look back on where they&#8217;re from with a new sense of detachment. Moving away has been an opportunity for me to think about home in a new way. Some of my work in data representation takes data related to Ireland, and tries to make sense of it, to tell stories with it. In doing this work I learned a huge amount.</p>

<p>My first project, called <b>Irish Data</b> - started out as an attempt to examine the cause&#8217;s of Ireland&#8217;s recent problems. Ireland, as you may have heard, has been experiencing an acute financial and social crisis. I wanted to examine data relevant to this period of time, to see what I could discover. </p>

<p>I found relevant data incredibly hard to come by, and where data was available it was often in outmoded formats, structured in ways that could almost have designed to make the data difficult to use. The project became much less about representation of data, and much more about trying to grapple with the messiness of data. I took this messy data, cleaned it up, created my own repository and made it available through an API - then finished by making some very basic graphics based on this data. This is just one example of data taking me in directions I hadn&#8217;t anticipated.</p>

<p>In another project called <b>From Over Here</b> I wanted to examine how Ireland is perceived from the perspective of my new home here in New York. I suppose like most people I have a thoroughly unscientific idea in my head as to how my place of origin is perceived. I used data pulled from the New York Times to show the amount of coverage of Ireland, and the types/themes of articles. I built this data into a physical form so I could walk around it, manipulate it, find stories. I found that coverage of Ireland is reasonably narrow, focusing on some not-so-positive topics - with our recent financial woes getting more coverage than any topic. </p>

<h3>Lessons Learned</h3>

<p>In doing these early projects, I learned a huge amount - firstly, as somebody with only basic programming skills, I found that <b>the technical barrier to working with data is incredibly low</b>. Each of us probably has access to a computer capable of accessing, storing and analysing huge quantities of data. Tools like Python, Processing and R - supported by extensive online resources and tutorials - make it easy for us to get started with our own data representation projects.</p>

<p>On the flip side of this reality are the aggregators of data, governments and corporations - who have never had greater access to valuable data about citizens and customers, or greater access to the tools required to manipulate this data. I suppose doing these projects made me acutely aware that <b>we are in a position of incredible weakness when it comes to asking for this data</b>; anything we&#8217;re given is essentially afforded to us, and we have practically no insight into the processes by which data is manipulated before it gets to us - we can&#8217;t see behind the curtain. We are, I think - too kind to governments and companies who hold data, and either don&#8217;t make it available, or make it available in limited/messy ways.</p>

<h3>The Value of the Journey</h3>

<p>The most important thing I learned in these few projects was that <b>it&#8217;s possible to draw a huge amount of personal, resonant insight from large sets of data</b>. It was possible for me to engage with data about Ireland&#8217;s financial crisis and for that to be an emotional and informative experience. Before doing this work I wouldn&#8217;t have associated emotion with data. </p>

<p>I also realised that, while the end products of the work are aesthetically pleasing -<b> it was the process of engaging with data (finding it, gathering it, sifting through it) that helped me to learn as much as I did</b>.</p>

<p>I think this is an important point; In recent weeks there has been a lot of discussion about the merits of creative representations of data versus more utilitarian ones; slick graphics versus cool charts. While this debate is really important - it feels as though we are arguing over the shape and colour of the tip of the iceberg. </p>

<p>When I look at a photograph in a newspaper,<b> I don&#8217;t think that it represents the sum of an entire situation </b>- I understand that it&#8217;s an imperfect product taken from one point of view. I&#8217;ve learned to question its aesthetic composition, the way it was cropped, and I understand that it captures a moment in time that might have been decades or centuries coming. It doesn&#8217;t matter how &#8220;good&#8221; the photograph is - it&#8217;s a product of the information and processes that came before it, representing one possible outcome.</p>

<p>Doing these projects made me realise that data representations are very similar;<b> the underlying story of how that data was gathered, by whom - then how it was treated before it got to me is crucial</b>. The things that are highlighted or omitted are really important, and what I make - my graphic or product - is just one outcome. Unfortunately, we see very little of this noise when we&#8217;re presented with infographics online and in print. They are clean and tidy, generated, clockwork - inevitable outcomes. My proposal today is that where we are presented with an infographic that says nothing about the process by which is was constructed, we should treat that graphic as a purely aesthetic product.</p>

<p>Thankfully, <b>we have an opportunity to work through these issues for ourselves</b>, to take up the tools and data behind these products - to tell our own stories and draw our own conclusions, and in doing so we become more informed consumers of infographics and representations of data. </p>

<h3>Closing Thoughts</h3>

<p>I&#8217;m really glad that I took some time to do these simple projects and I think this stuff really matters. Every day we write the most intimate diaries - where we go, what we do, who we meet along the way, what we buy, who we love. We write these diaries in the data stored in devices, communicated over networks - stored by governments and companies. In years to come I think <b>it&#8217;ll be very useful for us to have the skills and insight needed to gather this data on our own terms, to re-combine and interpret it; to tell our own stories</b>. </p>

<p>So, maybe after you leave here you might ask yourself a few simple questions: What you are most passionate about or what question most intrigues you? What data exists that is related to this passion or question? How will you get this data, how will you treat or change it, and then finally - how will you represent it in a form that is meaningful to you? </p>

<p>The possibilities are really intriguing, and I am sure you will learn a huge amount - so I leave these as open questions for you, as a starting point of a journey - and most of all I really thank you for your time today.
</p>
        ]]>
    </description>          
      <dc:date>2011-05-23T02:20:31+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Vito Acconci - Expression, Failure, Analysis, Refinement]]></title>
      <link>http://paulmay.org/articles/vito-acconci-expression-failure-analysis-refinement/</link>
      <guid>http://paulmay.org/articles/vito-acconci-expression-failure-analysis-refinement/#When:03:04:46Z</guid>
    <description>
        <![CDATA[
            <a href="http://www.flickr.com/photos/paulmmay/5741898842/" title="Vito Acconci - Problem, Refinement, Problem by paulmmay, on Flickr"><img src="http://farm6.static.flickr.com/5023/5741898842_8351ac2846_b.jpg" class="flickr" alt="Vito Acconci - Expression, Failure, Analysis, Refinement"></a>

Vito Acconci came to speak to us in September 2010. He is quite a character and even his early work is still provocative. 

<blockquote><p>Get to the viewer. Claim a space and invite people in. Problem; the artist becomes a person in a fixed position. A priest.</p></blockquote>

<p>I was really interested in the way he talked about his work as a series of attempts - he never seemed to truly happy with his work; every expression was followed by doubt and a new attempt to get closer to whatever felt more honest.</p>

<p><a href="http://www.flickr.com/photos/paulmmay/5741363659/" title="Vito Acconci - Starting Point by paulmmay, on Flickr"><img src="http://farm4.static.flickr.com/3580/5741363659_12aae85236_b.jpg" class="flickr" alt="Vito Acconci - Starting Point"></a></p>

<blockquote><p>What bothers me about the last thing I did?</p></blockquote>

<p>&nbsp;</p>

<p>
</p>
        ]]>
    </description>          
      <dc:date>2011-05-21T04:04:46+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Dennis Crowley - Just Build Stuff]]></title>
      <link>http://paulmay.org/articles/dennis-crowley-just-build-stuff/</link>
      <guid>http://paulmay.org/articles/dennis-crowley-just-build-stuff/#When:02:38:46Z</guid>
    <description>
        <![CDATA[
            <a href="http://www.flickr.com/photos/paulmmay/5741290021/" title="Dennis Crowley - Just Build Stuff by paulmmay, on Flickr"><img src="http://farm6.static.flickr.com/5030/5741290021_f05d4747b5_b.jpg" class="flickr" alt="Dennis Crowley - Just Build Stuff"></a>

Dennis came to speak to our class in September 2010 - his talk was really inspiring for me; keep making things, keep trying - even when people tell you you're crazy and/or wrong. 
        ]]>
    </description>          
      <dc:date>2011-05-21T03:38:46+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Sharon Chang - If I Can Dream]]></title>
      <link>http://paulmay.org/articles/sharon-chang-if-i-can-dream/</link>
      <guid>http://paulmay.org/articles/sharon-chang-if-i-can-dream/#When:02:20:07Z</guid>
    <description>
        <![CDATA[
            I had to leave this talk a bit early to go to work (yes - that is actually why I left); apparently the Q&amp;A got a little testy. I can see how that might have happened; Sharon Chang's work was cringe-inducing and her talk was drivel. Contemporaneous notes offered as proof.

<a href="http://www.flickr.com/photos/paulmmay/5741248411/" title="Sharon Chang - If I Can Dream by paulmmay, on Flickr"><img src="http://farm4.static.flickr.com/3399/5741248411_bd7c022d40_b.jpg" class="flickr" alt="Sharon Chang - If I Can Dream"></a>


        ]]>
    </description>          
      <dc:date>2011-05-21T03:20:07+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Douglas Rushkoff - Born Tripping]]></title>
      <link>http://paulmay.org/articles/douglas-rushkoff-born-tripping/</link>
      <guid>http://paulmay.org/articles/douglas-rushkoff-born-tripping/#When:01:48:17Z</guid>
    <description>
        <![CDATA[
            <a href="http://www.flickr.com/photos/paulmmay/5741740064/" title="Douglas Rushkoff - Born Tripping by paulmmay, on Flickr"><img src="http://farm4.static.flickr.com/3549/5741740064_de9f32fc4b_b.jpg" class="flickr" alt="Douglas Rushkoff - Born Tripping"></a>

<blockquote><p>When you&#8217;re born tripping, you don&#8217;t know you&#8217;re tripping. The possibility of a more considered engagement with media is worth pursuing.</p></blockquote>

<p>Doug Rushkoff came to speak to us about his book <em>Program or be Programmed</em>. I don&#8217;t agree entirely that absolutely everybody needs to know how to program in order to engage with new media, but I take his point - that a basic understanding of the tools and processes used in the construction of media is very useful. </p>

<p>Rushkoff&#8217;s talk made me want to read <em>Amusing Ourselves to Death</em> again - no bad thing.
</p>
        ]]>
    </description>          
      <dc:date>2011-05-21T02:48:17+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Jaron Lanier - Genius]]></title>
      <link>http://paulmay.org/articles/jaron-lanier-genius/</link>
      <guid>http://paulmay.org/articles/jaron-lanier-genius/#When:15:43:55Z</guid>
    <description>
        <![CDATA[
            It's the end of year 1 at ITP; I am writing up work from this semester, and starting to reflect on the things that I've learned. First; Jaron Lanier is not insane - he is, in fact, a genius.<p><a href="http://www.flickr.com/photos/paulmmay/5740374592/" title="Jaron Lanier - First Impression by paulmmay, on Flickr"><img src="http://farm4.static.flickr.com/3506/5740374592_86f9de753e_b.jpg" class="flickr" alt="Jaron Lanier - First Impression"></a></p>

<p>I&#8217;ll admit - I reacted negatively to the phrase Atlas of Homuncular Flexibility. As smart as I think I am, I&#8217;m not smart enough to let people finish their talk before putting them in the crazy box.</p>

<p><a href="http://www.flickr.com/photos/paulmmay/5739806587/" title="Jaron Lanier - Corrections by paulmmay, on Flickr"><img src="http://farm6.static.flickr.com/5183/5739806587_bcdf89c435_b.jpg" class="flickr" alt="Jaron Lanier - Corrections"></a></p>

<p>This is ten minutes later.</p>

<p>Lessons learned; tone down the snark, listen, value people who appear to have arrived from other planets.</p>

<p>
</p>
        ]]>
    </description>          
      <dc:date>2011-05-20T16:43:55+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[Global Nuclear Proliferation]]></title>
      <link>http://paulmay.org/articles/global-nuclear-proliferation/</link>
      <guid>http://paulmay.org/articles/global-nuclear-proliferation/#When:01:31:39Z</guid>
    <description>
        <![CDATA[
            <a href="http://www.flickr.com/photos/paulmmay/5570071244/" title="gnp-biggames by paulmmay, on Flickr"><img src="http://farm6.static.flickr.com/5176/5570071244_4c10d81644_b.jpg" class="flickr" alt="Big Games: Global Nuclear Proliferation" /></a>

Global Nuclear Proliferation was a 5 day long augmented reality game created for the Big Games class at ITP. Four players race to aid/stop an international conspiracy to smuggle a package of dangerous nuclear secrets. <h3>Concept</h3>

<p>The original concept was to <b>create an augmented reality game based on the structure of a 419 e-mail scam</b>; we liked the idea of using &#8220;real life&#8221; events, then blending them with a written narrative. </p>

<p>Over several iterations of the story we hit on the idea of using e-mail scam as an introduction for one character in a wider story; drawing an unwitting patsy in an attempt by a criminal gang to sell nuclear secrets which originated in the lab of (real life) nuclear proliferator A.Q. Khan. We liked this because it gave us a rich, fantastic backstory to work with, good guys and bad guys and a compelling target/goal for both teams to aim for.</p>

<h3>Characters/Players</h3><p>
The game was played by 4 characters; essentially broken down into 2 teams - conspirators helping to smuggle nuclear secrets, government agents trying to stop this from happening. The characters were:</p>

<p><strong>The Patsy</strong> - a dupe, drawn into the story through their own misfortune. The patsy is told they have won a prize, they just need to do a simple task before collecting their prize. Each time they do something - there’s just a little bit more demanded of them. This character was played by Michael Cohen.</p>

<p><strong>The Exit Man</strong> - a buyer and mover of illicit items. The exit man will act as a contact for the patsy, and just wants to get the item so he can collect his reward. This character was played by Nara Kasbergen.</p>

<p><strong>Operative</strong> - a low-level undercover agent tasked with gathering information, shadowing the Patsy. This character was played by Spike McCue.</p>

<p><strong>The Handler</strong> - a senior agent who is given the full backstory of the plot, controls the actions of the operative and serves as the key decision maker for the &#8220;good guys&#8221;. This character was played by Eric Hagan.</p>

<p>In addition to the player characters there were two non-player characters; a Contact for the Sudanese criminal organisation directing the actions of the Exit Man and the Patsy, and a Senior Agent working for a government agency directing the actions of the Handler and the Operative. These characters were played by me and my super-talented classmate Natalie Be&#8217;er.</p>

<h3>Back Story (Some Reality, Sprinkled with Fiction)</h3>

<p>No single individual has done more to aid the spread of nuclear weapons than A.Q. Khan.</p>

<p>Khan was born in Pakistan in 1936 and received degrees in physics, mathematics and metallurgy. Khan’s 1972 doctoral thesis proposed several key improvements to the design of gas centrifuges; they key equipment involved in the enrichment of weapons’ grade uranium. Khan went on to hold key positions at engineering companies in Europe where he worked almost exclusively on the design of uranium enrichment systems.</p>

<p>It is now known that while working in Europe through the 1970s and early 1980s Khan made illicit copies of practically every document, drawing and computer file related to the production of highly enriched uranium. He developed relationships with a network of manufacturers and engineering companies around the world with whom he shared these documents; in essence creating a supply chain able to deliver nuclear weapons technology on demand. He worked closely with nuclear scientists in his native Pakistan to develop that country’s first viable nuclear weapon - the existence of which remained a secret until the mid 1980s. In 2003, under growing international pressure, Khan was questioned about the sale of nuclear technology. He confessed to having supplied designs to Libya, Iran and North Korea.</p>

<p>On his arrest, several tonnes of documents and drawings were seized from Khan’s lab - as well as 12 computers, dozens of external computer hard drives and prototype centrifuge parts. When a thorough inventory of these materials was produced an interesting pattern was spotted; key steps in the process of producing a viable nuclear weapon were completely missing. We believe that Khan managed to evacuate these documents several weeks in advance of the raid.</p>

<p>For 6 years we have had no credible intelligence as to the whereabouts of these documents; until now. Once of our sources has indicated that a Sudanese businessman Mr. Aziz Taha, acting on information from inside the Khan network, has located, or is close to locating these materials.</p>

<p>Little is known about Mr. Taha. He was certainly born in the Sudan in or around 1950. He was educated privately, and by the time he was in his early 20s had assumed a role at Sudan’s largest zinc extraction company. In 1985 his name appears in transcripts from a corruption trial involving the Sudanese energy minister; one witness describes Taha as a “talented man [...] able to solve import/export problems involving [...] known for his temper”. The government minister was subsequently acquitted following the disappearance of key witnesses. The man who mentioned Taha’s name was later found dead. This is the last official mention of Taha in any Sudanese record.</p>

<p>Taha became a subject of interest for international law enforcement agencies in 1993 when a forged shipping manifest linked one of his companies registered in Angola to a Soviet arms dealer Victor Anatolyevich Bout. It is probable that Taha was acting as a fixer for the illegal export of rare metals from Angola - using Bout as a courier. Another possible scenario is that Taha was acting as a local contact for an armed group being supplied with weapons by Bout. It may be that a two-way exchange of metals and weapons was involved - we simply do not know. There was insufficient evidence to arrest, or even detain Mr. Taha and he quickly disappeared.</p>

<p>We do not need to tell you how important it is that the Khan materials not fall into Taha’s hands; it is highly likely that he would quickly move to copy and sell them, or use them as leverage is some larger scheme.</p>

<p>Your job this week is to stop Taha from obtaining the Khan materials. </p>

<h3>Game Play</h3><p>
The game played out over 5 days following a day by day playbook written by myself and Natalie. The playbook broke down the key plot points for the different characters, interventions that would need to be made by the non-player characters and any tools/props/materials we&#8217;d need to create.</p>

<p><a href="http://www.flickr.com/photos/paulmmay/5570196784/" title="Day by Day Playbook"><img src="http://farm6.static.flickr.com/5264/5570196784_ed86f7ea67_b.jpg" class="flickr" alt="Day by Day Playbook" /></a></p>

<p>Over the course of the week, several chapters didn&#8217;t go to plan or to schedule - so we essentially had to tweak the storyline in response to the actions of the characters; this was a lot of work, but also a lot of fun. For example, the Patsy didn&#8217;t pick up a set of customs documents in time forcing the Sudanese gang contact to reveal the true nature of the scheme - implicating the Patsy, drawing him closer into the plot.</p>

<p>The <b>closing scenes of the game </b>were initially supposed to involve a mobile phone hidden in the Strand bookstore, but we chose instead to introduce an encrypted message to all the characters, which if broken would lead them to grand central station in New York where the nuclear secrets were to be delivered; the decrypted message directed them to a train where we waited with a package (a small prize). </p>

<p>One team managed to crack half of the message, but our story finished with the nuclear secrets remaining on the train, returning to their destination; (maybe to re-appear at some point in the future). Just another package on a train.</p>

<h3>Tools</h3><p>
<a href="http://www.flickr.com/photos/paulmmay/5570081200/" title="1987a by paulmmay, on Flickr"><img src="http://farm6.static.flickr.com/5102/5570081200_a0fbee5632_o.jpg" width="637" height="481" alt="1987a" /></a><br />
Using the micro-film archives available at NYU <b>we took real articles from the New York times which chronicled the development of A.Q. Khan&#8217;s proliferation network</b> over 25 years. These were used to tell the back-story of our game to the characters. We then wrote and added layers of fictional details on top of these real events (the Sudanese gang etc.)</p>

<p>We used two <b>Gmail and Google Voice accounts</b> to communicate with both sides of the conspiracy over the course of the week; we could send emails and text messages to move the play along, change the story, give feedback/encouragement, pass on new information. We bought <b>a cheap mobile phone</b> for use in one of the chapters; but this section was (sadly) written out when play went in a different direction.</p>

<p>We tried to <b>make the touch-points as real as possible</b>; for example, in the chapter where the Patsy was supposed to fill in customs documents, we used real (though slightly modified) US customs documents. </p>

<h3>Lessons Learned</h3><p>
The key things I learned were:</p>

<ul>
<li>It&#8217;s possible to <b>write a compelling game that blends fact and fiction, real-life and technology</b> - people are willing to suspend disbelief if the action is compelling enough.</li>
<li>Blending real events/themes with fictional events gives you a really rich palette of material to draw from.</li>
<li>A day by day playbook is a very good idea, but <b>you have to allow flexibility - when things don&#8217;t go to plan, you have to have a fallback that doesn&#8217;t involve stopping the game/breaking character.</b></li>
<li>With a small number of players and a reasonably simple story <b>it&#8217;s possible to write for these contingencies on the fly</b>; in fact this might even be better.</li>
<li>People <b>do not have a huge amount of time to play a game</b> like this; they *might* go out of their way to travel great distances, overcome serious friction - but it&#8217;s also possible to mix up their daily routine just a little bit, ask them to do simple things to add depth; you don&#8217;t need to send them to faraway fields to dig up treasure for it to be fun.</li>
<li>There is <b>so much technology at your disposal to tell stories like this</b>; the use of Gmail and Google voice really helped us to bring the game directly to the players.</li>
<li>With more time you could craft communications tools, materials, props, non-player character identities really carefully; there&#8217;s probably no limit to the level of detail you could bring to a game like this.</li>
<li>Writing and managing a game like this is <b>a huge amount of work - and just as much fun!</b></li>
</ul>

<p>All in all I hugely enjoyed designing, writing and executing this game - I&#8217;ll take the lessons I learned into my next projects.
</p>
        ]]>
    </description>          
      <dc:date>2011-03-29T02:31:39+00:00</dc:date>
    </item>

    <item>
      <title><![CDATA[30 Days of Earthquakes as Sound]]></title>
      <link>http://paulmay.org/articles/30-days-of-earthquakes-as-sound/</link>
      <guid>http://paulmay.org/articles/30-days-of-earthquakes-as-sound/#When:15:42:43Z</guid>
    <description>
        <![CDATA[
            Experiments in representing earthquake data as sound.<p>Following the catastrophic earthquake in Japan I wanted to find a way in which I could represent earthquake data in a more communicative way than a map. </p>

<p>I&#8217;ve never really been a fan of earthquake maps - aside from aberrations, over time they essentially plot the outline of the earth&#8217;s tectonic plates and fault lines. For me, there is a much closer mapping between earthquakes and sound waves, so I&#8217;ve tried to represent the last 30 days of earthquakes as sound. </p>

<p>In all cases, I am taking data from the USGS Shakemap feed at <a href="http://earthquake.usgs.gov/earthquakes/shakemap/rss.xml">http://earthquake.usgs.gov/earthquakes/shakemap/rss.xml</a> and using Processing to send MIDI into GarageBand, then exporting the resulting file as a waveform. Also, while the earthquakes are not evenly spaced in time - the notes I&#8217;m producing are. For now I&#8217;m more interested in depth and magnitude of the earthquakes mapping to pitch and volume; once I&#8217;ve solved those problems I can move on to the representation of time.</p>

<h3>Challenges, What I Learned</h3><p>
These experiment really highlight how careful you need to be when mapping data to another form, or another scale. In the case of the earthquake data, the Richter scale is a logarithmic scale where each whole number is 10 times greater than the previous one; an earthquake measuing 9.0 is 10 times more powerful than one measuring 8.0 and so on. In MIDI, the volume of a note ranges from 0-127. In the experiments where I map straight from a rounded integer of the Richter measurement to MIDI the result makes smaller earthquakes sound much closer in force to larger ones. </p>

<p>Also, the experiment showed me that simultaneous, dramatic changes in pitch and volume are hard to process - I found myself listening to changes in pitch, or listening to changes in volume; but trying to keep track of both at the same time was almost too much information at the same time. Something I&#8217;ll keep in mind in later experiments.</p>

<h3>Single Chord - Simple Depth and Volume Mapping</h3><p>
My first experiment; the depth of the earthquake in the Earth&#8217;s crust is mapped to the pitch of the note, and its Richter measurement is mapped to the Midi volume (problematic). 
</p><object height="81" width="100%"> <param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F11901912"></param> <param name="allowscriptaccess" value="always"></param> <embed allowscriptaccess="always" height="81" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F11901912" type="application/x-shockwave-flash" width="100%"></embed> </object><p>&nbsp; <span><a href="http://soundcloud.com/paulmmay/singlechord">30 Days of Earthquakes as a Single Chord</a> by <a href="http://soundcloud.com/paulmmay">paulmmay</a></span> 
</p><h3>Simple Depth and Volume Mapping</h3><p>
In this piece of audio, the notes are evenly spaced - with the depth of the earthquake in the Earth&#8217;s crust is mapped to the pitch of the note, and its Richter measurement is mapped to the Midi volume (problematic). 
</p><object height="81" width="100%"> <param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F11901910"></param> <param name="allowscriptaccess" value="always"></param> <embed allowscriptaccess="always" height="81" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F11901910" type="application/x-shockwave-flash" width="100%"></embed> </object><p>&nbsp; <span><a href="http://soundcloud.com/paulmmay/widedepthandvolume">30 Days of Earthquakes - Depth Mapped to Pitch, Magnitude Mapped to Volume</a> by <a href="http://soundcloud.com/paulmmay">paulmmay</a></span> 
</p><h3>Single Note, Simple Volume Mapping</h3><p>
I removed the pitch element which represented the depth of the earthquake; mostly because the change in pitch is far more jarring than the change in volume, but isn&#8217;t as important from a human perspective (given the Richter scale is a measurement of seismic energy). </p>

<p>In this sample, the Richter value is mapping straight to the 0-127 MIDI volume scale - which produces really problematic effect; effectively ignoring the logarithmic property of the Richter scale and making all earthquakes sound much closer in magnitude.
</p><object height="81" width="100%"> <param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F11901909"></param> <param name="allowscriptaccess" value="always"></param> <embed allowscriptaccess="always" height="81" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F11901909" type="application/x-shockwave-flash" width="100%"></embed> </object><p>&nbsp; <span><a href="http://soundcloud.com/paulmmay/singlenotewidevolume2">30 Days of Earthquakes - Single Note, Magnitude Mapped to Volume</a> by <a href="http://soundcloud.com/paulmmay">paulmmay</a></span> </p>

<h3>Single Note, Somewhat Logarithmic Volume</h3><p>
In this sample I am mapping the Richter value to a somewhat logarithmic value for the volume. For each point on the Richter scale from 9.0 to 0.0, the maximum volume of the note halves. This gives a spread of volumes that is discernable by the human ear, and somewhat solves the problem of weaker earthquakes sounding similar to more powerful ones.</p>

<object height="81" width="100%"> <param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F11904553"></param> <param name="allowscriptaccess" value="always"></param> <embed allowscriptaccess="always" height="81" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F11904553" type="application/x-shockwave-flash" width="100%"></embed> </object><p>&nbsp; <span><a href="http://soundcloud.com/paulmmay/30daysquakes-fakelog2">30 Days of Earthquakes - Fake Log Volume</a> by <a href="http://soundcloud.com/paulmmay">paulmmay</a></span> 
</p><h3>Update - 15th March 2011</h3>
<p class="update">Thanks for the positive feedback on this work. I&#8217;ve done two more experiments; in both of these samples <b>the timing of the earthquakes is relative</b> whereas before they were all evenly spaced. I&#8217;ve compressed the time by a factor. The volume of the note also now uses a r<b>easonably accurate mapping from the logarithmic Richter scale to the note&#8217;s volume</b>.</p>

<p>In the first I&#8217;ve mapped the depth of the earthquake to the pitch of the piano note. </p>

<object height="81" width="100%"> <param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F11994285"></param> <param name="allowscriptaccess" value="always"></param> <embed allowscriptaccess="always" height="81" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F11994285" type="application/x-shockwave-flash" width="100%"></embed> </object><p>&nbsp; <span><a href="http://soundcloud.com/paulmmay/30-days-of-earthquakes-as-1">30 Days of Earthquakes as Sound - Piano (Final)</a> by <a href="http://soundcloud.com/paulmmay">paulmmay</a></span> </p>

<p>In this sample I have stripped out the depth and am just using a single drum beat.</p>

<object height="81" width="100%"> <param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F11994284"></param> <param name="allowscriptaccess" value="always"></param> <embed allowscriptaccess="always" height="81" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F11994284" type="application/x-shockwave-flash" width="100%"></embed> </object><p>&nbsp; <span><a href="http://soundcloud.com/paulmmay/30-days-of-earthquakes-as">30 Days of Earthquakes as Sound - Single Drum (Final)</a> by <a href="http://soundcloud.com/paulmmay">paulmmay</a></span> </p>

<p>For now, these are the last experiments using earthquake data. I&#8217;ve learned a lot, and it&#8217;s helped me get my head around the unfolding catastrophe in Japan in my own small way. 
</p>
        ]]>
    </description>          
      <dc:date>2011-03-13T16:42:43+00:00</dc:date>
    </item>
  
    </channel>
</rss>
