<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
 
 <title>Recursive</title>
 <link href="http://mayarichman.github.com/feed/" rel="self"/>
 <link href="http://mayarichman.github.com/"/>
 <updated>2013-12-08T19:01:14-08:00</updated>
 <id>http://mayarichman.github.com/</id>
 <author>
   <name>Maya</name>
   <email>mayarichman@gmail.com</email>
 </author>

 
 <entry>
   <title>Dream, Dream, Reality. You're it!</title>
   <link href="http://mayarichman.github.com/amazon-dream"/>
   <updated>2013-02-14T00:00:00-08:00</updated>
   <id>http://mayarichman.github.com/amazon-dream</id>
   <content type="html">&lt;h5&gt;Something to Share Or You Snooze You Don&#39;t Lose?&lt;/h5&gt;


&lt;p&gt; I had a dream that my brother and I were on a metro or a bus going through Brazil, through Amazonia, and we were carrying big bags and buckets of ice with us. At one point we were in the thick of deep tropical forest, mossy and overgrown, and I remember feeling satisfied with our decision to take the scenic path to our destination. I recall that our bus was not disturbing the area, just moving past it, like clouds. Other times we would get off at a stop that looked like Fort Totten, a cement ledge on a hilltop over a savanna. Often we would forget to pick up many of the bags at the rest stop but I would notice and run out to get them. Then I&#39;d yell to Max and tell him he needed to get the other items while I held the doors open against the will of the driver.&lt;/p&gt;


&lt;p&gt;&lt;img src=&quot;../../img/attributed-amazon.png&quot; width=&quot;550&quot;/&gt;&lt;/p&gt;


&lt;p&gt;&lt;/p&gt;

&lt;p&gt;We were rather concerned with directions, often arguing about whether we were headed in the right direction or talking about two different routes we could take with different color coded transfer points. At some points the scenery looked like the LA river, giant flood zones with heavy grates spewed water while nearby bikers passed, ignoring the smell. I don&#39;t remember why we were so frantic or where we were heading, just that we were in a fervour to get there.&lt;/p&gt;


&lt;p&gt;&lt;/p&gt;

&lt;p&gt;In some ways the lasting memory of my dream is similar to humans experience with the passage of time. It reflects our fixation with productivity, finality and results, which reminds me of that old saying, &quot;it&#39;s not so much where you end up but how you get there&quot;. If I can&#39;t remember where I end up, I only get a chance to care about the process. The emphasis of the dream fell on the adventure not the accomplishment. In this way, my poor memory is helping remind me to enjoy the learning process, allowing me to veer wholeheartedly along with my mistakes and clumsiness.&lt;/p&gt;


&lt;p&gt;&lt;/p&gt;

&lt;p&gt;There is some futility, when I entertain possible missions for my brother and I, in traveling through Brazil with bags of ice. Here lies the physical manifestation of ephemerality within my dream. If I take too long, the precious cargo will be memorialized by heavy, precarious bags of water, or if I am clumsy, soaking wet clothes. Why work feverishly to accomplish something that ends up dissolved? Maybe its the fever itself that liquefies it. If the cargo ends up changing physical form but remains constructed of the same basic elements, regardless of your speed, why not enjoy the transporting process?&lt;/p&gt;


&lt;p&gt; The art shown above is a mashup I made this morning of two creative commons pieces found on Flickr.&lt;/p&gt;

</content>
 </entry>
 
 <entry>
   <title>Cloud Generation</title>
   <link href="http://mayarichman.github.com/random-clouds"/>
   <updated>2013-02-08T00:00:00-08:00</updated>
   <id>http://mayarichman.github.com/random-clouds</id>
   <content type="html">&lt;h5&gt;Nature in Code&lt;/h5&gt;


&lt;p&gt;&lt;p&gt;
&lt;script src=&quot;http://cloud.github.com/downloads/processing-js/processing-js/processing-1.4.1.min.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;application/processing&quot; data-processing-target=&quot;pjs&quot;&gt;
Inkblot friend;
int clicked = 0;&lt;/p&gt;

&lt;p&gt;void setup() {
  size(600, 600);
  background(255);
  smooth();
  friend = new Inkblot();
}&lt;/p&gt;

&lt;p&gt;void draw(){
   friend.draw();
}&lt;/p&gt;

&lt;p&gt;void mouseDragged() {
  strokeWeight(4);
  line(friend.blot.x,friend.blot.y,friend.blot.x,friend.blot.y);
  line((600-friend.blot.x),friend.blot.y,(600-friend.blot.x),friend.blot.y);
}
void keyPressed(){
  if (key == CODED) {
    if (keyCode == ENTER) {
    //the line below allows the current sketch to open as tif in another tab
    saveFrame(&amp;ldquo;rosarch-####.tif&amp;rdquo;);
    }
  }
}
void mouseClicked() {&lt;/p&gt;

&lt;p&gt;  background(255-clicked,255-(clicked)*(clicked),clicked,100);&lt;/p&gt;

&lt;p&gt;  clicked++;&lt;/p&gt;

&lt;p&gt;  if(clicked &gt; 1){
    background(255-(clicked)*(clicked),255-random(255),255-random(255));
  }&lt;/p&gt;

&lt;p&gt; } &lt;br/&gt;
 /&lt;em&gt; OpenProcessing Tweak of &lt;/em&gt;@&lt;em&gt;http://www.openprocessing.org/sketch/39662&lt;/em&gt;@&lt;em&gt; &lt;/em&gt;/
/&lt;em&gt; !do not delete the line above, required for linking your tweak if you re-upload &lt;/em&gt;/
import processing.pdf.*;&lt;/p&gt;

&lt;p&gt;class Inkblot {&lt;/p&gt;

&lt;p&gt;  PVector blot = new PVector(0, 0);
  boolean colorize;&lt;/p&gt;

&lt;p&gt;  Inkblot() {
    blot.x = mouseX;
    blot.y = mouseY;
    colorize = false;
  }&lt;/p&gt;

&lt;p&gt;  void draw() {&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;strokeWeight(random(15)*random(5));
blot.x = mouseX;
blot.y = mouseY;

if (!colorize) {
  stroke(0, random(90, 100));
  point(blot.x, blot.y);
  point((600-blot.x), blot.y);
}
else {
  stroke(random(255), random(255), random(255));
  point(blot.x, blot.y);
  point((600-mouseX), mouseY);
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;  }
}&lt;/p&gt;

&lt;p&gt; &lt;/script&gt;
 &lt;script type=&quot;application/processing&quot; data-processing-target=&quot;cloud&quot;&gt;&lt;/p&gt;

&lt;p&gt;/&lt;strong&gt;
* Title: Walking Cloud (w/ Vectors)
* Name: Maya Richman
* Date: January 14, 2013
* Assignment 2- Chapter 1-2 Exercise
&lt;/strong&gt;/
// Original by:
// Daniel Shiffman
// http://natureofcode.com&lt;/p&gt;

&lt;p&gt;// A random walker object!&lt;/p&gt;

&lt;p&gt;Walker w;
int opacity = 100;&lt;/p&gt;

&lt;p&gt;void setup() {
  size(600, 600);
  background(65, 129, 254); //changed to bright blue
  // Create a walker object
  w = new Walker();
}&lt;/p&gt;

&lt;p&gt;void draw() {
  // Run the walker object
  w.step();
  w.render();
}&lt;/p&gt;

&lt;p&gt;void keyPressed() { //When the up arrow is pressed a green circle appears and enlarges increasing the step
  if (key == CODED) {
    if (keyCode == UP) {
      w.stepSize=w.stepSize+1;
      smooth();
      noStroke();
      fill(40, 450, 40, 50);
      ellipse(40, 450, w.stepSize - 1, w.stepSize - 1);
    }
    if (keyCode == DOWN) { //the down arrow makes a blue circle decrease and decreases the steps
      if (w.step != 0) {
        w.stepSize=w.stepSize-1;
      }
      fill(65, 129, 254); //changed to bright blue
      ellipse(40, 450, w.stepSize, w.stepSize);
    }
  }
}
/&lt;strong&gt;
* Title: Walking Cloud (w/ Vectors)
* Name: Maya Richman
* Date: January 14, 2013
* Assignment 2- Chapter 1-2 Exercise
&lt;/strong&gt;/
// Original by:
// Daniel Shiffman
// http://natureofcode.com&lt;/p&gt;

&lt;p&gt;// A random walker object!&lt;/p&gt;

&lt;p&gt;class Walker {
  PVector location;
  int stepSize; //can this be part of a new pvector class&lt;/p&gt;

&lt;p&gt;  Walker() {
    location = new PVector(width/2,height/2);
    stepSize = 5;
  }&lt;/p&gt;

&lt;p&gt;  void render() {
    stroke(255);
    point(location.x,location.y);
  }&lt;/p&gt;

&lt;p&gt;  // Randomly move up, down, left, right, or stay in one place
  void step() {
    int choice = int(random(4));
    //randomly decrement or increment x or y
    if (choice == 0) {
      location.x++;
    } else if (choice == 1) {
      location.x&amp;ndash;;
    } else if (choice == 2) {
      location.y++;
    } else {
      location.y&amp;ndash;;
    }&lt;/p&gt;

&lt;p&gt;   float prob = random(1);
   //each option is as likely and takes 4 steps more than the original
   if(prob &amp;lt; .25){
     location.x=location.x+stepSize;
   }
   if(prob &gt;= .25 &amp;amp;&amp;amp; prob &amp;lt; .50){
     location.x=location.x-stepSize;
   }
   if(prob &gt;= .50 &amp;amp;&amp;amp; prob &amp;lt; .75){
     location.y=location.y+stepSize;
   }
   if(prob &gt;= .75 &amp;amp;&amp;amp; prob &amp;lt; 1){
     location.y=location.y-stepSize;
   }&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;location.x = constrain(location.x,0,width-1);
location.y = constrain(location.y,0,height-1);
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;  }
}
&lt;/script&gt;
&lt;p&gt;The following sketches are written in Processing, the second is based off of Daniel Shiffman&amp;rsquo;s code examples from &lt;a href=&#39;https://github.com/shiffman/The-Nature-of-Code&#39;&gt;&amp;ldquo;The Nature of Code&amp;rdquo;&lt;/a&gt; and converted into Javascript with &lt;a href=&#39;http://js.processing.org/&#39;&gt;Processing.js.&lt;/a&gt; Click on the blue cloud example and press the up/down arrows to change the step size.&lt;/p&gt;&lt;p&gt;
         &lt;canvas id=&quot;pjs&quot;&gt; &lt;/canvas&gt;&lt;/p&gt;&lt;br/&gt;
 &lt;p&gt;&lt;canvas id=&quot;cloud&quot;&gt;&lt;/canvas&gt;&lt;/p&gt;&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>Reality Bites</title>
   <link href="http://mayarichman.github.com/day-after-the-end+2"/>
   <updated>2012-12-22T00:00:00-08:00</updated>
   <id>http://mayarichman.github.com/day-after-the-end 2</id>
   <content type="html">&lt;h5&gt;Presents for Friends&lt;/h5&gt;


&lt;p&gt;Made a tripartite abstract art piece for my grandmother this holiday season. The white paper is thin Japanese calligraphy paper and the colored is from an Origami pack. Orange, pink and purple are underused colors for Christmas, which is such a shame. The aura of Los Angeles falls more closely with a vibrant, toxic, and sometimes artifical, sunset spectrum rather than a traditional red/green binary.&lt;/p&gt;


&lt;p&gt;&lt;img src=&#39;http://f.cl.ly/items/2H3s2b322G1l3y311d2X/Image%202012.12.23%2010:55:08%20PM.png&#39; width=550 /&gt;&lt;/p&gt;


&lt;p&gt;&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>End of Days</title>
   <link href="http://mayarichman.github.com/end-of-days"/>
   <updated>2012-12-21T00:00:00-08:00</updated>
   <id>http://mayarichman.github.com/end-of-days</id>
   <content type="html">&lt;h5&gt;Inkscapes on a Plane&lt;/h5&gt;


&lt;p&gt;My friend Cas asked me to make a poster for an upcoming &lt;a href=&#39;https://www.facebook.com/events/315601505213035/&#39;&gt;show&lt;/a&gt; in Montreal, pictured below. He mentioned something fun cartooney punk inspired and I went to town with Inkscape. Much more to come...&lt;/p&gt;


&lt;p&gt;&lt;img src=&#39;http://f.cl.ly/items/3i2R222j0m0a0v3I1O2Y/Image%202012.12.20%202:30:50%20PM.png&#39; width=550 /&gt;&lt;/p&gt;


&lt;p&gt;&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>re-re-remix</title>
   <link href="http://mayarichman.github.com/re-re"/>
   <updated>2012-12-10T00:00:00-08:00</updated>
   <id>http://mayarichman.github.com/re-re</id>
   <content type="html">&lt;h5&gt;The Cult of Cut-and-Paste&lt;/h5&gt;


&lt;p&gt;Recently I have endeavored to learn about remix culture for Gabriella Coleman&#39;s course, Hacker Culture and Politics. I couldn&#39;t think of a better way to accomplish this than by engaging with the culture directly, discovering for myself the joys and frustrations of making. I have compiled thoughts, quotes, video clips and digital art from this process at &lt;a href=&#39;http://mayarichman.github.com/re-mix&#39;&gt;mayarichman.github.com/re-mix&lt;/a&gt;. Feel free to peruse!&lt;/p&gt;


&lt;p&gt;&lt;img src=&#39;https://dl.dropbox.com/u/24683141/Remix/i-fergot.jpg&#39; width=550 /&gt;&lt;/p&gt;


&lt;p&gt;&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>What a Poem</title>
   <link href="http://mayarichman.github.com/poem"/>
   <updated>2012-11-28T00:00:00-08:00</updated>
   <id>http://mayarichman.github.com/poem</id>
   <content type="html">&lt;h5&gt;A bit here, a byte there&lt;/h5&gt;


&lt;p&gt;&lt;img src=&#39;../../img/poem.png&#39; width=&#39;550&#39;&gt;&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>He Art 2</title>
   <link href="http://mayarichman.github.com/he-art-2"/>
   <updated>2012-11-07T00:00:00-08:00</updated>
   <id>http://mayarichman.github.com/he-art-2</id>
   <content type="html">
</content>
 </entry>
 
 <entry>
   <title>He Art</title>
   <link href="http://mayarichman.github.com/he-art"/>
   <updated>2012-11-07T00:00:00-08:00</updated>
   <id>http://mayarichman.github.com/he-art</id>
   <content type="html">
</content>
 </entry>
 
 <entry>
   <title>More To Say</title>
   <link href="http://mayarichman.github.com/third-world-part-7"/>
   <updated>2012-11-02T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/third-world-part-7</id>
   <content type="html">&lt;h5&gt;Hey Adrienne:&lt;/h5&gt;


&lt;p&gt;I want to acknowledge that there is much more to say on the topics I have touched upon in the last few days. I will continue to add to my original posts and search for new perspectives. The topic is large and diverse and cannot be summed up by a paper, a blog post, or any one representation.&lt;/p&gt;


&lt;p&gt;I am excited to add my two-cents on these topics and work off the findings of others in a non-academic setting. There is no due date for me, or completion of work. In many ways, this assignment was not work at all. I hope I have expressed that I have begun to ask myself these questions, though have a long way till &quot;answering&quot; them, as that is the position I find myself in. This position, however, is one I have arrived at through my own direct means, and hope I remain conscious of it&#39;s construction as I continue this process.&lt;/p&gt;


&lt;p&gt;For those curious, the prompt for this project was:&lt;/p&gt;


&lt;p&gt;What relevance does or might “Third World Solidarity” have for social and/or liberation movements today?&lt;/p&gt;


&lt;p&gt;Now that I think about it, I am not sure if I have &lt;font style=&#39;font-size:20px;&#39;&gt;directly&lt;/font&gt; answered it. Perhaps it&#39;s relevance is already apparent to me due to my los angelian liberal upbringing where social justice issues were acknowledged and discussed frequently, so the answer seems obvious. I cannot let my particular frame of reference, one of privilege and thoughtful guidance on these topics, obscure the importance of articulating the relevance &quot;Third World Solidarity&quot; has in my life, and social/liberation movements today. It is this assertion of my relation to the ideals of the &quot;Third World Solidarity&quot; movement and all discourse with humanity in mind that helps breakdown these artificial boundaries, whether on maps or more embedded and invisible demarcations.&lt;/p&gt;


&lt;p&gt;Thank you for allowing the class the flexibility to discover the topics on their own. I have found the process itself to be more illuminating as to my own position within the movement than the content I found, which in my experience feeds back into a deeper comprehension of the material itself.&lt;/p&gt;

</content>
 </entry>
 
 <entry>
   <title>Black, Brown, Yellow</title>
   <link href="http://mayarichman.github.com/third-world-part-6"/>
   <updated>2012-11-01T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/third-world-part-6</id>
   <content type="html">&lt;h5&gt;LA LIVIN&lt;/h5&gt;


&lt;p&gt; It is fitting that the process of searching for information regarding third world solidarity has led me along a similar path as those who find themselves realizing their own racial/ethnic positioning. When I began my search for third world solidarity movements, specifically those in LA, I found more articles regarding racial tension and conflict than solidarity movement. I was positioned by the sources that appeared first, those more accessible and popular, to believe that the solidarity movements were not as prolific in LA as I had hoped. It occurred to me that this process of wading through the external interpretations of race and racial/ethnic hierarchy, allowed me to understand the foundations upon which these positions are articulated. This immersion and reevaluation, and near constant confrontation with the expected race relations, is similar to the experiences of Laura Pulido who grew up in San Pedro in a tight-knit Mexican family when she began to realize how she was different from those around her.&lt;/p&gt;


&lt;p&gt;In her book, &lt;font style=&#39;font-style:italic;&#39;&gt;&lt;a href=&#39;http://www.ucpress.edu/book.php?isbn=9780520245204&#39;&gt;Black, Brown, Yellow, and Left: Radical Activism in Los Angeles&lt;/a&gt;&lt;/font&gt;, Laura acknowledges the separation that she felt between ethnic group, with Asians somewhere in between Black and Mexicans but not quite “on the same level as white either”(17).  Although she expresses a deeper understanding of Blacks as a similarly “devalued racial/ethnic group”, and that her racial position was somehow tied to theirs, she still expresses the initial fearfulness that she was in the same position as Blacks(17).&lt;img src=&#39;http://www.secfac.wisc.edu/images/p_HilldalePulido.jpg&#39; height=450;&gt;&lt;/br&gt;
Her story is precisely the perspective I have searched for. She stands out in the literature as someone who was “convinced” to believe in the ethnic/racial ranking but through abounding curiosity and genuine sincerity was able to look past them to see the context of a “larger racial landscape”, one that brought about the creation of “political space for the development of a Third World Left.”(19).&lt;/p&gt;


&lt;p&gt;This map shows the distribution of ethnic groups in Los Angeles County, 1970&lt;/p&gt;


&lt;p&gt;&lt;img src=&quot;http://f.cl.ly/items/3e433J3D0a1r0Y3i142s/brown,black,yellow.jpeg&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Laura mentions the significance of California as site of white domination upon all people of color, although each group seemed to fair differently, suggesting the accepted bipolar racial approach, e.g. Mexican V. White, was not sufficent to explain the varying levels of influence between ethnic groups. Laura expresses her frustration with this strict ethnic duality: “I struggled with being rendered invisible by the Black/white binary--despite living in a city with deep Mexican roots.”(18). Like we have discussed in class, the term third world  describes a position rather that a place or people. So, too, are ethnic/racial groups best understood in relation to one another, or through a positionality. In this binary, to be one thing implies to not be another. If Laura finds herself identifying with her Mexican roots, by society&#39;s interpretation of a static identity, she is unable to be in solidarity with another group, or relate to their position. However, as political scientist Claire Kim argues, the racial landscape is a field in which various groups have fluid but distinct positions, which goes to &quot;explain the distinct forms of activism that develop among the Third World Left&quot;(21).&lt;/p&gt;


&lt;p&gt;In this context, how can one assert their aspired position without first understanding where they fall in relation to others? This question presupposes an acceptance of the hierarchy-driven world order, but deserves recognition regardless as it demonstrates the supposed intent of &quot;development&quot; and &quot;progress&quot; that drives much of the world today. Curiously, the word &quot;aspired&quot; is deriven from the French &quot;aspirer&quot; which translates to &quot;to breathe&quot;. If one is given a distinct position, do they have the space &quot;to breathe&quot; [aspire] and imagine themselve in a different frame of reference? How can potential solidarity be recognized and thereby, built if positions are both static and fluid?&lt;/p&gt;

</content>
 </entry>
 
 <entry>
   <title>Quick Neighborhood Map</title>
   <link href="http://mayarichman.github.com/third-world-part-5"/>
   <updated>2012-11-01T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/third-world-part-5</id>
   <content type="html">&lt;h5&gt;Hard To Delinate&lt;/h5&gt;


&lt;p&gt;I had the intention of drawing a map that showed the diffusion of ethnicnicities throughout LA in constrast to clearcut county-delinated neighborhoods that official maps tend to show.&lt;/p&gt;


&lt;p&gt;I became overwhelmed rather quickly by the sheer number of neighborhoods I had to draw. It is not surprising that the city&#39;s intricate composition of several little pieces reflects the dramatic diversity that the city contains.&lt;/p&gt;


&lt;p&gt;First Try:&lt;/p&gt;


&lt;p&gt;&lt;img src=&quot;http://f.cl.ly/items/3i390O2x0e1A2b1k3w16/Photo%20on%2011-1-12%20at%201.53%20PM.jpg&quot; alt=&quot;height=2in&quot; /&gt;&lt;/p&gt;

&lt;p&gt;The map I based it off of:&lt;/p&gt;


&lt;p&gt;&lt;img src=&quot;http://f.cl.ly/items/1j0Y2F0m2o1b1y0E1k1g/Image%25202012.11.01%25201:27:40%2520PM.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>Huey and The Newton</title>
   <link href="http://mayarichman.github.com/third-world-part-4"/>
   <updated>2012-10-31T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/third-world-part-4</id>
   <content type="html">&lt;h5&gt;Contradiction Is A Ruling Principle. No, It&#39;s Not!&lt;/h5&gt;


&lt;p&gt;The following quotes come from Huey Newton during an interview with William Buckley. I found them incredibly thoughtful and eloquent. More to come...&lt;/p&gt;


&lt;p&gt;Huey: &quot;I agree with you the only revolution that is worth fighting is a humane revolution &quot;&lt;br&gt;&lt;br&gt;William: &quot;Also, one that succeeds. I feel if King George had caught George Washington, he would have had the right to hang him.&lt;br&gt;&lt;br&gt;Huey: &quot;According to the law. But revolutions always, in some ways, contradict some laws, that&#39;s why it&#39;s called a revolution.&quot;&lt;/p&gt;


&lt;p style=&#39;font-size:35px;&#39;&gt;
...
&lt;/p&gt;


&lt;p&gt;Huey: &quot;I think we can judge revolution on the basis of how much in fact, or objectively, &lt;font style=&#39;font-weight:600;font-size:20px;&#39;&gt;people are given a fair, are dealt with in a fair way, and are given more freedom&lt;/font&gt;. I think one of my principles is that &lt;font style=&#39;font-weight:600;font-size:20px;&#39;&gt;contradicton is a ruling principle of the universe&lt;/font&gt;  and everything in phenomena, whether it is the physical world or the biological world or the social world, has it&#39;s internal contradiction that gives motion to things that internal strain and most of the time that &lt;font style=&#39;font-weight:600;font-size:20px;&#39;&gt;we homosapians&lt;/font&gt; don&#39;t realize that no matter what sort of conditions we establish, now matter what government we establish at this point, there also will be that internal contradiction that will have to be resolved and resolved ina rational and just way and of course that leads us somewhat very vauge on how to deal with it, and many times we claim actions are revolutionary when they are not, so I have to appreciate your answer and I would agree with that part of it.&quot;
&lt;/p&gt;


&lt;p&gt;&lt;iframe width=&quot;420&quot; height=&quot;315&quot; src=&quot;http://www.youtube.com/embed/h4ypqCYPduI&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;&lt;/p&gt;

</content>
 </entry>
 
 <entry>
   <title>Poets, Prisons and Prophets</title>
   <link href="http://mayarichman.github.com/third-world-part-3"/>
   <updated>2012-10-31T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/third-world-part-3</id>
   <content type="html">&lt;h5&gt;You, Me, and Everyone&lt;/h5&gt;


&lt;p&gt;&quot;I want people to watch Lyrics from Lockdown just on a really basic level, to be reminded of our &lt;font style=&#39;font-weight:600;&#39;&gt;common humanity&lt;/font&gt; I think that consciousness needs to be contagious, that consciousness need to be more addictive than crack&quot;&lt;/p&gt;


&lt;p&gt;&lt;iframe width=&quot;560&quot; height=&quot;315&quot; src=&quot;http://www.youtube.com/embed/pn4Gbpinpns&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;&lt;/p&gt;


&lt;p&gt;On the hunt for inspiring third world solidarity videos, I found the film &lt;font style=&#39;font-style:italic;&#39;&gt;Lyrics from Lockdown&lt;/font&gt;. The intent for the film, which he describes as simple, is &quot;to be reminded of our common humanity&quot;, although this goal seems more difficult to attain in practice. While respecting and giving voice to one community, specifically those affected by stop and frisk and racial profiling, Bryonn Bain maintains the universality of the message. One of respect for human dignity and difference. The story begins when Byronn was wrongfully imprisioned in NYC jails, meanwhile studying at Harvard. Highly suggest everyone check it out &lt;a href=&#39;http://www.lyricsfromlockdown.com/&#39;&gt;here&lt;/a&gt;!&lt;/p&gt;


&lt;p&gt;&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>Third-World Solidarity Part. 2</title>
   <link href="http://mayarichman.github.com/third-world-part-2"/>
   <updated>2012-10-29T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/third-world-part-2</id>
   <content type="html">&lt;h5&gt;OR Not &quot;For Us&quot;, But Porous!&lt;/h5&gt;


&lt;p&gt;&lt;font style=&#39;font-style:italic;&#39;&gt;&lt;p&gt;“The most serious danger is that by following others we fail to disclose what we actually know and believe.&amp;ldquo;&lt;/p&gt;&lt;p&gt;&quot;A well-functioning democracy&amp;hellip;encourages independence of mind. It imparts a willingness to challenge prevailing opinion through both words and deeds. Equally important, it encourages a certain set of attitudes in listeners, one that gives a respectful hearing to those who do not embrace the conventional wisdom. In the culture of free speech, the attitude of the listeners is no less important that that of speakers.”&lt;/font&gt; &lt;br&gt;- Cass Sustein from &lt;font style=&#39;font-style:italic;&#39;&gt;Why Societies Need Dissent&lt;/font&gt;&lt;/p&gt;&lt;p&gt;Recently, I have been thinking about the premium society places on social cohesion and the pitfalls of removing dissenting or differing voices from the dialouge simply for the sake of preserving it. One such example of this social coheison might be the construction of delineated immigrant communities within urban environments. Collecting themselves in pockets of the city, they form a geographical cohesion that allows for the production of a social safety net, and, alongside this, a potential for insular community development.&lt;/p&gt;&lt;p&gt;We see this pattern in cities like Los Angeles, with the formation of neighborhoods like Koreatown, Little Osaka and Thai Town. While in some ways these ethnic communities are cocoons within Los Angeles, they are not enirely detached from the city. I am interested in discovering not only the places where these communities merge, but also where they build solidarity between each other&amp;rsquo;s social movements. Essentially, I am hope to learn how disparate ethnic groups can relate to each other within a diverse city, using Los Angeles as an example since it is closest to my knowledge (and heart).&lt;/p&gt;&lt;p&gt;Not all cases of inter-ethnic relations in Los Angeles produces solidarity, third world or otherwise. In Chong-suk Han&amp;rsquo;s piece, &lt;font style=&#39;font-style:italic;&#39;&gt;We Both Eat Rice, But That’s About It: Korean and Latino Relations in Multi-ethnic Los Angeles&lt;/font&gt;, resturants are examples of places where Koreans and Latinos have daily contact with each other, and are locations where &quot;ethnic prejudices and misconceptions created within the confines of these specific interactions develop into widespread belief systems&amp;rdquo;(Han 237). He argues that split labor markets helped shape a system of oppression between the two groups, constraining daily interactions and leading to ethnic antagonism.&lt;/p&gt;&lt;p&gt;Chong-suk&amp;rsquo;s piece is the first example I have read of possible obstructions to third world solidarity. What I have gathered is that economic structures are capable of producing new relations of oppression that can outweigh potential commonalities, such as shared oppression due to racist American ideologies.Logically then, more exposure to different opinions/experiences that falls outside the oppressive environments constructed around them, and the more open-minded listening, the fewer misconceptions and thus, the greater potential for solidarity and change.&lt;/p&gt;&lt;p&gt;Now the question becomes, how do we remove ourselves from these externally imposed oppressive environments?&lt;/p&gt;&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>Third-World Solidarity Part. 1</title>
   <link href="http://mayarichman.github.com/third-world-part-1"/>
   <updated>2012-10-25T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/third-world-part-1</id>
   <content type="html">&lt;p&gt;Today I experimented with writing class notes as a poem/manifesto. Starting this week I will be writing about third world solidarity movements for Adrienne Hurley&#39;s class. The notes below are my responses to southeast asian tourism and the sex industry from:&lt;/p&gt;


&lt;p&gt;&lt;ul&gt;
    &lt;li&gt;Flacke-Neudorfer, C. (2007). &quot;Tourism, gender and development in the third world: a case study from Northern Laos.&quot; Tourism planning and development 4(2): 135- 147.&lt;/li&gt;
    &lt;li&gt;Hanh, D. B. (2008). &quot;Contesting marginality: consumption, networks, and everyday practice among Hmong girls in SaPa, Northwestern Vietnam.&quot; Journal of Vietnamese Studies 3(3): 231-260.&lt;/li&gt;
    &lt;li&gt;Beyrer, C. (2001). &quot;Shan women and girls and the sex industry in Southeast Asia; political causes and human rights implications.&quot; Social science and medicine 53: 543-550&lt;/li&gt;
    &lt;li&gt;Lyttleton, C. and S. Vorabouth (2011). &quot;Trade circles: aspirations and ethnicity in commercial sex in Laos.&quot; Culture, Health &amp; Sexuality: An International Journal for Research, Intervention and Care 13(Sup2): S263-S277.&lt;/li&gt; 
&lt;/ul&gt;
&lt;p&gt;Pdf is clearer &lt;a href=&#39;http://f.cl.ly/items/1y200h3o0L3K3a1l2J2Z/sex-workers-poem-festo.pdf&#39;&gt;here.&lt;/a&gt;&lt;/p&gt;
&lt;/p&gt;


&lt;iframe src=&quot;http://docs.google.com/gview?url=https://s3.amazonaws.com/f.cl.ly/items/1y200h3o0L3K3a1l2J2Z/sex-workers-poem-festo.pdf&amp;embedded=true&quot; style=&quot;width:610px; height:784px;&quot; frameborder=&quot;0&quot;&gt;&lt;/iframe&gt;



</content>
 </entry>
 
 <entry>
   <title>Abstract Gif</title>
   <link href="http://mayarichman.github.com/abstract-gif"/>
   <updated>2012-10-22T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/abstract-gif</id>
   <content type="html">
</content>
 </entry>
 
 <entry>
   <title>Skim-Society: Whole-Story</title>
   <link href="http://mayarichman.github.com/skim-society"/>
   <updated>2012-10-21T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/skim-society</id>
   <content type="html">&lt;p&gt;We live in a skim-society. If you aren&#39;t skimming because you don&#39;t have time to read the entire piece, you are skimming because you don&#39;t want to waste time reading one interpretation or attempting to untangle the gritty translation to lay-speak in order to get at the core of the topic.&lt;/p&gt;


&lt;p&gt;Whatever your reason,  you skim, I skim, we all skim.&lt;/p&gt;


&lt;p&gt;The next question might be:&lt;br&gt;Is this a problem?&lt;/p&gt;


&lt;p&gt;Followed by:&lt;br&gt;How do we solve this?&lt;/p&gt;


&lt;p&gt;Let&#39;s address the first question. Are we missing more than a few coherent sentences, lead ins, or paragraphs when we skim?&lt;/p&gt;


&lt;p&gt;I&#39;d like to think we aren&#39;t, however no studies I have read (fully) have addressed this issue. I have no formal or expert opinion on the topic, sinply my gut feeling.  My gut feeling, regardless of where I now fall on the spectrum, tells me that we are all missing out on the process of completing and internalizing a honest argument. I think the process is more important than the content, at least for what I read, because I have become perennially perturbed by unfinished to-do&#39;s despite my young age. At the end of the day, I don&#39;t feel accomplished and can&#39;t recall what I read.&lt;/p&gt;


&lt;p&gt;I am arbitrarily attributing this feeling, and increasing inability to retain information, to this skim-nesia—as Obama might put it—and the tendency to read quickly whilst thinking, listening and working on other projects.  In some ways, I can see how my university education has contributed to this tendency. I am asked to read so many things in one week, reading each thoroughly is out of the question. At work, you are asked for the same style of quick but critical analysis, but to not get stuck in time drains, and this can contribute to the skim-nesia as well.&lt;/p&gt;


&lt;p&gt;That is not to say our environments are wholly responsible for this skimming.&lt;/p&gt;


&lt;p&gt;On a very personal, and lazy, level, I am too distracted to give a piece of writing the time it deserves—the time I hope people give my own pieces (this one for example)—and I actively choose to skim each piece.&lt;/p&gt;


&lt;p&gt;A thought-experiment:&lt;/p&gt;


&lt;p&gt;***********************&lt;/p&gt;


&lt;p&gt;You are sitting at the kitchen table reading the newspaper. Now think of the motivation required if you were to leave the table in order to go do something else, such as read a book or find another newspaper to get a second opinion. I know, I get tired just thinking about it.&lt;/p&gt;


&lt;p&gt;***********************&lt;/p&gt;


&lt;p&gt;Within that scenario, one I have been in many times, I am much more likely to read articles on topics I wouldn&#39;t usually and read them completely, than with online sources.&lt;/p&gt;


&lt;p&gt;We don&#39;t have this problem anymore with the internet. I can simply open washingtonpost.com if I am out of free nytimes.com articles. I can jump from foreign policy issues to the latest celebrity wedding with such ease, there seems no opportunity cost to do so.&lt;/p&gt;


&lt;p&gt;Not only am I jumping from topic to topic, I am talking about these articles while I jump. The emergence of omnipresent social media has provided immediate access to n  + 1 networks discussing an incalculable number of topics. I find I want to participate in the conversation before I have fully understood the matters at hand. Perhaps this is why critics warn the public from reading the tweets based on influential events, like the national presidential debates, as a first news source.  What we say immediately is important, there&#39;s no doubt about that, but when these immediate opinions converge with a good long read of the facts it makes the afterthought that much more telling.&lt;/p&gt;


&lt;p&gt;The follow up question, how we halt this tendency, is more difficult to answer. I am writing this as an experiment to see if I can sit down and dedicate time to something I am not obligated to do. This is my first step. But I am curious to hear other opinions about this skim-society, as I have now coined it. (Although all are free to use it.)&lt;/p&gt;


&lt;p&gt;2/3 of my roommates say they skim often, but perhaps not as often as I do. Maybe I am alone in this. If that is the case, I apologize for broadening the scope by using &quot;we&quot;.&lt;/p&gt;


&lt;p&gt;If I am not alone, let me know if you agree &lt;a href=&quot;https://twitter.com/mayarichman&quot;&gt;@mayarichman&lt;/a&gt; and what ways we can change this inclination for shallow scanning.&lt;/p&gt;



</content>
 </entry>
 
 <entry>
   <title>Seventh</title>
   <link href="http://mayarichman.github.com/seventh"/>
   <updated>2012-08-24T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/seventh</id>
   <content type="html">
</content>
 </entry>
 
 <entry>
   <title>The Heuristics of Modern  Love</title>
   <link href="http://mayarichman.github.com/truthiness"/>
   <updated>2012-08-10T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/truthiness</id>
   <content type="html">&lt;center&gt;&lt;h3&gt;I&lt;/h3&gt;&lt;/center&gt;


&lt;h3 class=&#39;fancy&#39;&gt;Escalation of Commitment&lt;/h3&gt;


&lt;p&gt;it starts with a profession of feeling&lt;br&gt;and&lt;br&gt;builds into a promise that&lt;br&gt;claims to know the unknowable and see&lt;br&gt;
the unforeseeable, so the oracle&lt;br&gt;begins&lt;br&gt;&lt;/p&gt;

&lt;center&gt;&lt;h3&gt;II&lt;/h3&gt;&lt;/center&gt;


&lt;h3 class=&#39;fancy&#39;&gt;Anchoring and Adjustment&lt;/h3&gt;


&lt;p&gt; straightening a tie&lt;br&gt;
or restrained by a paper weight filled with sand&lt;br&gt;
that drains the energy from every tendon&lt;br&gt;
 as she supposedly sinews&lt;br&gt;
makes the ribcage a birdcage&lt;br&gt;
composed, a dismantled clock,&lt;br&gt;
an&lt;br&gt;&lt;/p&gt;

&lt;center&gt;&lt;h3&gt;III&lt;/h3&gt;&lt;/center&gt;


&lt;h3  class=&#39;fancy&#39;&gt;Availability heuristic&lt;/h3&gt;


&lt;p&gt;If I don’t come to mind&lt;br&gt;
You’ve got to think,&lt;br&gt;
“Why not?”&lt;br&gt;
but then again&lt;br&gt;
it’s easy to live in the moment&lt;br&gt;
when the past is composed of cactus bristles&lt;br&gt;
        and  a dusty desert cough&lt;br&gt;
but the moment passes&lt;br&gt;
and we cannot help it&lt;br&gt;
and because we are created in the image of Orpheus&lt;br&gt;
it becomes difficult not to look back&lt;br&gt;&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>that time</title>
   <link href="http://mayarichman.github.com/snow"/>
   <updated>2012-08-10T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/snow</id>
   <content type="html">&lt;p&gt;
By the time, he realized the rain was falling slower,&lt;br&gt;
it was already snow&lt;br&gt;
or already winter.&lt;br&gt;
&lt;/p&gt;


&lt;p&gt;It was then that he noticed that the space he was occupying had been home,&lt;br&gt;
previously,&lt;br&gt;
to the kind of family that would revel in this transition,&lt;br&gt;
from rain, to snow, to ice, and grass.&lt;/p&gt;


&lt;p&gt;Even when he lay on his bed to rest,&lt;br&gt;
space expanded and enveloped him&lt;br&gt;
into a nothingness that was neither apparent,&lt;br&gt;
nor consequential to anyone other than himself.&lt;br&gt;&lt;/p&gt;


&lt;p&gt;With arms of lead and frail crane’s neck,&lt;br&gt;
he was as destructive as a wrecking ball,&lt;br&gt;
with one millionth its weight.&lt;/p&gt;

</content>
 </entry>
 
 <entry>
   <title>sea glass</title>
   <link href="http://mayarichman.github.com/seaglass"/>
   <updated>2012-08-10T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/seaglass</id>
   <content type="html">&lt;p&gt;He, Who wished his brittle teeth would last till spring&lt;/p&gt;




&lt;p&gt;He, Who surpassed the fog in transparency&lt;/p&gt;




&lt;p&gt;was,&lt;/p&gt;




&lt;p&gt;for and instant&lt;/p&gt;




&lt;p&gt;a sickly ember from an ancient firebreath,&lt;br&gt;
that hung on words like whiskey,&lt;/p&gt;




&lt;p&gt;and, although he felt a hollowness within his eyelids,
he chose to wear his glasses&lt;br&gt;
until the lenses turned to Sea Glass&lt;br&gt;
And a heavy dust fossilized them,&lt;br&gt;
casting them eternally as an artifact.&lt;/p&gt;




&lt;p&gt;Until they were quietly disposed of one day,&lt;br&gt;
or lay buried, partly skeletal, amid rust and literature.&lt;/p&gt;

</content>
 </entry>
 
 <entry>
   <title>Rasters and Pastors</title>
   <link href="http://mayarichman.github.com/rasters"/>
   <updated>2012-08-08T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/rasters</id>
   <content type="html">&lt;h5&gt;Minus Pastors.&lt;/h5&gt;


&lt;p&gt;Today I had fun with rasters in &lt;a href=&#39;http://www.qgis.org/&#39;&gt;QGIS&lt;/a&gt; and &lt;a href=&#39;mapbox.com/tilemill/&#39;&gt;TileMill&lt;/a&gt;.&lt;/p&gt;


&lt;p&gt;&lt;img src=&#39;/img/overlay-raster.png&#39; width=550&gt;&lt;p&gt;This shows post-fire vegetation condition but I have duplicated it several times so it is practically indistinguishable.&lt;/p&gt;&lt;img src=&#39;/img/rasterblur.png&#39; width=550&gt;&lt;p&gt;This is a blurred version of the raster. I find it very calming. Just a reminder for those who want to make sweet raster maps in TileMill, check out &lt;a href=&quot;http://mapbox.com/tilemill/docs/guides/reprojecting-geotiff/&quot;&gt;this blog post&lt;/a&gt; from Mapbox.&lt;/p&gt;&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>Digging</title>
   <link href="http://mayarichman.github.com/hunters"/>
   <updated>2012-08-08T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/hunters</id>
   <content type="html">&lt;h5&gt;Leaving&lt;/h5&gt;


&lt;p&gt;Last night I discovered I had far too many things to travel back with to Montreal. This was an unfortunate finding, that I seem to find often.&lt;/p&gt;


&lt;p&gt;I will be drowning my superficial sorrows in a drink with friends at Church and State.&lt;/p&gt;


&lt;p&gt;Not sure why, but my markers never show up when I create this map embeds.&lt;/p&gt;


&lt;iframe width=&#39;620&#39; height=&#39;300&#39; frameBorder=&#39;0&#39; src=&#39;http://a.tiles.mapbox.com/v3/mayarichman.map-8clds11k.html#15/38.902/-76.99&#39;&gt;&lt;/iframe&gt;

</content>
 </entry>
 
 <entry>
   <title>Sixth</title>
   <link href="http://mayarichman.github.com/sixth"/>
   <updated>2012-08-07T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/sixth</id>
   <content type="html">
</content>
 </entry>
 
 <entry>
   <title>Fifth</title>
   <link href="http://mayarichman.github.com/fifth"/>
   <updated>2012-08-07T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/fifth</id>
   <content type="html">
</content>
 </entry>
 
 <entry>
   <title>...</title>
   <link href="http://mayarichman.github.com/daisy"/>
   <updated>2012-08-07T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/daisy</id>
   <content type="html">&lt;h5&gt;Lianne La Havas&lt;/h5&gt;


&lt;p&gt;&lt;img src=&quot;/img/liannelahavas_art.png&quot;/&gt;&lt;/p&gt;

&lt;p&gt;&lt;p&gt;Can&amp;rsquo;t stop &lt;a href=&quot;http://www.npr.org/2012/07/29/157234142/first-listen-lianne-la-havas-is-your-love-big-enough&quot;&gt;listening&lt;/a&gt;.
    &lt;p&gt;In other news, I have continued to vamp up the site. More to come&amp;hellip;. #cop-out&lt;/p&gt;&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>You probably git too much</title>
   <link href="http://mayarichman.github.com/huff"/>
   <updated>2012-08-06T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/huff</id>
   <content type="html">&lt;h5&gt;Huffshell&lt;/h5&gt;


&lt;p&gt;Found &lt;a href=&quot;http://paulmckellar.com/huffshell/&quot;&gt;this little baby&lt;/a&gt; on Hacker News. Decided to try it out for myself.&lt;/p&gt;


&lt;p&gt;&lt;img src=&quot;https://img.skitch.com/20120807-fuppibup7dycat2a79257wj5r5.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Guess I got the git of gab? #nerdypuns&lt;/p&gt;


&lt;h3&gt;Want to try it yourself?&lt;/h3&gt;

&lt;pre land=&quot;script&quot;&gt;
    &lt;code&gt;# install the gem (sudo is optional)
    sudo gem install huffshell

    # need to be able to access this from the gem
    alias &amp;gt; ~/.aliases.cache

    # open up a new terminal to access new gem supplied binaries
    huffshell

    # Optional cleanup
    alias &amp;gt; ~/.aliases.cache
    &lt;/code&gt;
&lt;/pre&gt;

</content>
 </entry>
 
 <entry>
   <title>Fourth</title>
   <link href="http://mayarichman.github.com/fourth"/>
   <updated>2012-08-06T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/fourth</id>
   <content type="html">
</content>
 </entry>
 
 <entry>
   <title>Third</title>
   <link href="http://mayarichman.github.com/third"/>
   <updated>2012-08-05T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/third</id>
   <content type="html">
</content>
 </entry>
 
 <entry>
   <title>Second</title>
   <link href="http://mayarichman.github.com/second"/>
   <updated>2012-08-04T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/second</id>
   <content type="html">
</content>
 </entry>
 
 <entry>
   <title>Put a Map On It</title>
   <link href="http://mayarichman.github.com/putamaponit"/>
   <updated>2012-08-03T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/putamaponit</id>
   <content type="html">&lt;h5&gt;BOND.&lt;/h5&gt;


&lt;p&gt;BOND is an extremely intense, adrenaline pumping, action packed, fright filled take on the classic kids game “hide n seek”. The objective is for the runners to get from Point A to Point B under the time limit, without being tagged.&lt;/p&gt;


&lt;p&gt;Heres the twist... the chasers are driving cars.&lt;/p&gt;


&lt;p&gt;It gets intense. As a runner, you&#39;ve got to cover about a mile of ground. As you will see on the maps, were playing in mostly residential neighborhoods. Everything is fair game except backyards and hopping fences. Its only fun if the cars have a chance to spot you.&lt;/p&gt;


&lt;iframe width=&#39;620&#39; height=&#39;300&#39; frameBorder=&#39;0&#39; src=&#39;http://a.tiles.mapbox.com/v3/mayarichman.map-t6p45qu8.html#11/34.038/-118.557&#39;&gt;&lt;/iframe&gt;

</content>
 </entry>
 
 <entry>
   <title>Space and Place</title>
   <link href="http://mayarichman.github.com/mappingitup"/>
   <updated>2012-08-03T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/mappingitup</id>
   <content type="html">&lt;h5&gt;All Good Things.&lt;/h5&gt;


&lt;p&gt;I have lived in a few places in my life. One of those places is Los Angeles. This map will be my favorite spots within LA for those hoping to have a trip that leaves a good taste in the mouth, literally.&lt;/p&gt;


&lt;iframe width=&#39;620&#39; height=&#39;300&#39; frameBorder=&#39;0&#39; src=&#39;http://a.tiles.mapbox.com/v3/mayarichman.map-0cdnu44z.html#11/34.023/-118.408&#39;&gt;&lt;/iframe&gt;

</content>
 </entry>
 
 <entry>
   <title>M-an</title>
   <link href="http://mayarichman.github.com/man"/>
   <updated>2012-08-02T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/man</id>
   <content type="html">&lt;p&gt;the walking man&lt;br&gt;
in the corridor between the museum and the rest&lt;br&gt;
- pacing&lt;br&gt;
his lumbering legs&lt;br&gt;
camo wind breaker&lt;br&gt;
- - just pacing&lt;br&gt;
2 steps forward&lt;br&gt;
then once more&lt;br&gt;
piruoette &lt;br&gt;
and repeat&lt;/p&gt;




&lt;p&gt;where is he wandering?&lt;br&gt;
a glance at the peonies&lt;br&gt;
rot peach and silk&lt;br&gt;
then he looks past me&lt;br&gt;
so far&lt;br&gt;
he sees his own back&lt;br&gt;
- - - just pacing&lt;/p&gt;


&lt;p&gt;&lt;p&gt;I am watching him with intense nonchalance&lt;br&gt;
as he feeds the squirrels&lt;br&gt;
from a chalkly bag of peanuts&lt;br&gt;
then our eyes meet&lt;br&gt;
ashamed&lt;br&gt;
his otherness and my gaze confront each other&lt;br&gt;
the squirrel nearby, crunches intently&lt;br&gt;
he was witness&lt;br&gt;
but has no reason to tell&lt;br&gt;
I look at my poem&lt;br&gt;
scratched onto my Easter yellow post-it note&lt;br&gt;
and now it&amp;rsquo;s history&lt;p&gt;&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>Having a Time</title>
   <link href="http://mayarichman.github.com/havingatime"/>
   <updated>2012-08-02T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/havingatime</id>
   <content type="html">&lt;h5&gt;Reflections.&lt;/h5&gt;


&lt;p&gt;Someday I will be famous and I&#39;ll look back at this ol&#39; blog and laugh.&lt;/p&gt;

</content>
 </entry>
 
 <entry>
   <title>So You Quote Love Unquote Me</title>
   <link href="http://mayarichman.github.com/goodpeoples"/>
   <updated>2012-08-02T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/goodpeoples</id>
   <content type="html">&lt;h5&gt;Magnets.&lt;/h5&gt;


&lt;p&gt;Hey! How about celebrating this re-design with a song that&#39;s been stuck in my head since I first heard it years ago.&lt;/p&gt;


&lt;p&gt;
&lt;iframe width=&quot;420&quot; height=&quot;315&quot; src=&quot;http://www.youtube.com/embed/bwnLlQ6t2uE&quot;&gt;&lt;/iframe&gt;&lt;/p&gt;

</content>
 </entry>
 
 <entry>
   <title>Flamenco</title>
   <link href="http://mayarichman.github.com/03-flamenco"/>
   <updated>2012-08-02T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/03-flamenco</id>
   <content type="html">&lt;p&gt;You are wringing my cords dry&lt;/p&gt;


&lt;p&gt;they are made of tired cotton,&lt;/p&gt;


&lt;p&gt;harsh&lt;/p&gt;


&lt;p&gt;but they are familiar.&lt;/p&gt;


&lt;p&gt;later,&lt;/p&gt;


&lt;p&gt;when you play that string on wood and&lt;/p&gt;


&lt;p&gt;I hear the them ringing,&lt;/p&gt;


&lt;p&gt;reverberating in the cavities between my adolescent bones&lt;/p&gt;


&lt;p&gt;and holy organs,&lt;/p&gt;


&lt;p&gt;I would remember how fragile I could be&lt;/p&gt;


&lt;p&gt;my body is a million puzzle pieces&lt;/p&gt;


&lt;p&gt;“sent from heaven”, my ma would tell me,&lt;/p&gt;


&lt;p&gt;if I believed in ghosts I would say&lt;/p&gt;


&lt;p&gt;doing laundry is the closest I can get to the supernatural&lt;/p&gt;


&lt;p&gt;to see them dance on the line like overworked ballerinas&lt;/p&gt;


&lt;p&gt;flailing in the breeze&lt;/p&gt;

</content>
 </entry>
 
 <entry>
   <title>Untitled</title>
   <link href="http://mayarichman.github.com/02-herhere"/>
   <updated>2012-08-02T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/02-herhere</id>
   <content type="html">&lt;p&gt;As if it wasn’t enough already, her coming here. Her! Here!&lt;/p&gt;


&lt;p&gt;When the day was a cold as my lover’s feet, we decided to sit together.
Our limbs were planks of splintered wood and dead bolts,
rotting more with each coming tide.
But, I was forewarned, “Things fall apart; the center cannot hold”
Nearby, a shark gnawed upon a leg of driftwood,
amidst an eerily tranquil sea, the silence of the moribund.&lt;/p&gt;


&lt;p&gt;She mentioned how mangled our nest was, like an overused eraser,
when the fog rolled in on a rough tongue,
lapping at the horizon.&lt;/p&gt;


&lt;p&gt;“If we were simply celestial bodies,” I told her, “then making love would be like two clouds passing each
another”&lt;/p&gt;


&lt;p&gt;Her sullen eyes, reflecting green algae, slowly met my gaze.&lt;/p&gt;


&lt;p&gt;“and I could fall into you, despite the swell of storm, and remain unharmed.”&lt;/p&gt;


&lt;p&gt;There, following a shuffle of sodden leather and plank,
I saw our reflection magnified in a drop of rain,
and became sure of our discorporate form.&lt;/p&gt;


&lt;p&gt;At that moment, neither of us thought of the braided rope that hung below the
deck, heavy with foam and barnacle.&lt;/p&gt;

</content>
 </entry>
 
 <entry>
   <title>recollections of a night</title>
   <link href="http://mayarichman.github.com/01-newyork"/>
   <updated>2012-08-02T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/01-newyork</id>
   <content type="html">&lt;div class=&#39;italic&#39;&gt;in the most silent place i&#39;ve heard&lt;/div&gt;


&lt;p&gt;&lt;p&gt;within a wooden lion&amp;rsquo;s den&lt;p&gt;the walls seemed to rumble with the stomachs of the house&lt;p&gt;both hungry and fed up&lt;p&gt;when i couldn&amp;rsquo;t see my own hands&lt;p&gt; but i could feel yours&lt;p&gt;we crawled and slipped down the stairs&lt;p&gt;i was afraid&lt;/p&gt;&lt;div class=&#39;italic&#39;&gt;because the imagination can run amuck&lt;/div&gt;&lt;p&gt;in the discomfort of the dark&lt;p&gt;to see the possibilities of everything when all is removed from sight&lt;/p&gt;&lt;p&gt;earlier,&lt;/p&gt;&lt;div class=&#39;italic&#39;&gt;sitting at the dining room table,&lt;/div&gt;&lt;p&gt; draped in shadows,&lt;/p&gt;&lt;p&gt;my pain felt stuffed with cotton as i attempted to match your essay&amp;rsquo;s volume word for word in my&lt;/p&gt;&lt;p&gt;diary somehow this emptiness gave rise to a blinding day&lt;p&gt;shape, &lt;i&gt;form&lt;/i&gt;, &lt;strike&gt;line&lt;/strike&gt;, &lt;strong&gt;tone&lt;/strong&gt; overcrowded me&lt;/p&gt;&lt;p&gt;and&lt;/p&gt;&lt;p&gt;i&lt;/p&gt;&lt;p&gt;was&lt;/p&gt;&lt;p&gt;a&lt;/p&gt;&lt;p&gt;new&lt;/p&gt;&lt;p&gt;york&lt;/p&gt;&lt;p&gt;city&lt;/p&gt;&lt;p&gt;high&lt;/p&gt;&lt;p&gt;rise&lt;/p&gt;&lt;p&gt;occupied by my own distractions&lt;/p&gt;&lt;p&gt;i tell my tenants to take out the trash&lt;/p&gt;&lt;p&gt;go for a walk&lt;/p&gt;&lt;p&gt;enjoy the day&lt;/p&gt;&lt;p&gt;but they don&amp;rsquo;t move an ___________inch&lt;/p&gt;&lt;p&gt;they can&amp;rsquo;t hear me over the city&amp;rsquo;s long, sorrowful bellows&lt;/p&gt;&lt;p&gt;the helicopters above me just hover&lt;/p&gt;&lt;p&gt;they are ideas I once owned&lt;/p&gt;&lt;p&gt;but are now drones to flowering sky scrapers in spring,&lt;/p&gt;&lt;p&gt;and dribbling more-water-than-sand castles at high tide&lt;/p&gt;
&lt;/div&gt;&lt;/p&gt;
</content>
 </entry>
 
 <entry>
   <title>some talk of death of the written word</title>
   <link href="http://mayarichman.github.com/written"/>
   <updated>2009-10-10T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/written</id>
   <content type="html">&lt;div class=&quot;header&quot;&gt;&lt;h2&gt;&quot;some talk of death of the written word&quot;&lt;/h2&gt;&lt;p&gt;i talk about death with the written word&lt;/p&gt;&lt;/div&gt;

&lt;div class=&quot;container color&quot;&gt;
      &lt;h3&gt;The Heuristics of Modern  Love&lt;/h3&gt;
        &lt;div class=&quot;body-post&quot;&gt;&lt;center&gt;&lt;h3&gt;I&lt;/h3&gt;&lt;/center&gt;
&lt;h3 class=&#39;fancy&#39;&gt;Escalation of Commitment&lt;/h3&gt;it starts with a profession of feeling&lt;br&gt;and&lt;br&gt;builds into a promise that&lt;br&gt;claims to know the unknowable and see&lt;br&gt;
the unforeseeable, so the oracle&lt;br&gt;begins&lt;br&gt;
&lt;center&gt;&lt;h3&gt;II&lt;/h3&gt;&lt;/center&gt;
&lt;h3 class=&#39;fancy&#39;&gt;Anchoring and Adjustment&lt;/h3&gt;
 straightening a tie&lt;br&gt;
or restrained by a paper weight filled with sand&lt;br&gt;
that drains the energy from every tendon&lt;br&gt;
 as she supposedly sinews&lt;br&gt;
makes the ribcage a birdcage&lt;br&gt;
composed, a dismantled clock,&lt;br&gt;
an&lt;br&gt;
&lt;center&gt;&lt;h3&gt;III&lt;/h3&gt;&lt;/center&gt;
&lt;h3  class=&#39;fancy&#39;&gt;Availability heuristic&lt;/h3&gt;
If I don’t come to mind&lt;br&gt;
You’ve got to think,&lt;br&gt;
“Why not?”&lt;br&gt;
but then again&lt;br&gt;
it’s easy to live in the moment&lt;br&gt;
when the past is composed of cactus bristles&lt;br&gt;
        and  a dusty desert cough&lt;br&gt;
but the moment passes&lt;br&gt;
and we cannot help it&lt;br&gt;
and because we are created in the image of Orpheus&lt;br&gt;
it becomes difficult not to look back&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;

&lt;div class=&quot;container color&quot;&gt;
      &lt;h3&gt;that time&lt;/h3&gt;
        &lt;div class=&quot;body-post&quot;&gt;&lt;p&gt;
By the time, he realized the rain was falling slower,&lt;br&gt;
it was already snow&lt;br&gt;
or already winter.&lt;br&gt;
&lt;/p&gt;
&lt;p&gt;It was then that he noticed that the space he was occupying had been home,&lt;br&gt;
previously,&lt;br&gt;
to the kind of family that would revel in this transition,&lt;br&gt;
from rain, to snow, to ice, and grass.&lt;/p&gt;
&lt;p&gt;Even when he lay on his bed to rest,&lt;br&gt;
space expanded and enveloped him&lt;br&gt;
into a nothingness that was neither apparent,&lt;br&gt;
nor consequential to anyone other than himself.&lt;br&gt;&lt;/p&gt;
&lt;p&gt;With arms of lead and frail crane’s neck,&lt;br&gt;
he was as destructive as a wrecking ball,&lt;br&gt;
with one millionth its weight.&lt;/p&gt;&lt;/div&gt;
&lt;/div&gt;

&lt;div class=&quot;container color&quot;&gt;
      &lt;h3&gt;sea glass&lt;/h3&gt;
        &lt;div class=&quot;body-post&quot;&gt;&lt;p&gt;He, Who wished his brittle teeth would last till spring&lt;/p&gt;

&lt;p&gt;He, Who surpassed the fog in transparency&lt;/p&gt;

&lt;p&gt;was,&lt;/p&gt;

&lt;p&gt;for and instant&lt;/p&gt;

&lt;p&gt;a sickly ember from an ancient firebreath,&lt;br&gt;
that hung on words like whiskey,&lt;/p&gt;

&lt;p&gt;and, although he felt a hollowness within his eyelids,
he chose to wear his glasses&lt;br&gt;
until the lenses turned to Sea Glass&lt;br&gt;
And a heavy dust fossilized them,&lt;br&gt;
casting them eternally as an artifact.&lt;/p&gt;

&lt;p&gt;Until they were quietly disposed of one day,&lt;br&gt;
or lay buried, partly skeletal, amid rust and literature.&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;

&lt;div class=&quot;container color&quot;&gt;
      &lt;h3&gt;M-an&lt;/h3&gt;
        &lt;div class=&quot;body-post&quot;&gt;&lt;p&gt;the walking man&lt;br&gt;
in the corridor between the museum and the rest&lt;br&gt;
- pacing&lt;br&gt;
his lumbering legs&lt;br&gt;
camo wind breaker&lt;br&gt;
- - just pacing&lt;br&gt;
2 steps forward&lt;br&gt;
then once more&lt;br&gt;
piruoette &lt;br&gt;
and repeat&lt;/p&gt;


&lt;p&gt;where is he wandering?&lt;br&gt;
a glance at the peonies&lt;br&gt;
rot peach and silk&lt;br&gt;
then he looks past me&lt;br&gt;
so far&lt;br&gt;
he sees his own back&lt;br&gt;
- - - just pacing&lt;/p&gt;
&lt;p&gt;I am watching him with intense nonchalance&lt;br&gt;
as he feeds the squirrels&lt;br&gt;
from a chalkly bag of peanuts&lt;br&gt;
then our eyes meet&lt;br&gt;
ashamed&lt;br&gt;
his otherness and my gaze confront each other&lt;br&gt;
the squirrel nearby, crunches intently&lt;br&gt;
he was witness&lt;br&gt;
but has no reason to tell&lt;br&gt;
I look at my poem&lt;br&gt;
scratched onto my Easter yellow post-it note&lt;br&gt;
and now it&#39;s history&lt;p&gt;&lt;/div&gt;
&lt;/div&gt;

&lt;div class=&quot;container color&quot;&gt;
      &lt;h3&gt;Flamenco&lt;/h3&gt;
        &lt;div class=&quot;body-post&quot;&gt;&lt;p&gt;You are wringing my cords dry&lt;/p&gt;
&lt;p&gt;they are made of tired cotton,&lt;/p&gt;&lt;p&gt;harsh&lt;/p&gt;
&lt;p&gt;but they are familiar.&lt;/p&gt;
&lt;p&gt;later,&lt;/p&gt;
&lt;p&gt;when you play that string on wood and&lt;/p&gt;
&lt;p&gt;I hear the them ringing,&lt;/p&gt;
&lt;p&gt;reverberating in the cavities between my adolescent bones&lt;/p&gt;
&lt;p&gt;and holy organs,&lt;/p&gt;
&lt;p&gt;I would remember how fragile I could be&lt;/p&gt;
&lt;p&gt;my body is a million puzzle pieces&lt;/p&gt;
&lt;p&gt;“sent from heaven”, my ma would tell me,&lt;/p&gt;
&lt;p&gt;if I believed in ghosts I would say&lt;/p&gt;
&lt;p&gt;doing laundry is the closest I can get to the supernatural&lt;/p&gt;
&lt;p&gt;to see them dance on the line like overworked ballerinas&lt;/p&gt;
&lt;p&gt;flailing in the breeze&lt;/p&gt;&lt;/div&gt;
&lt;/div&gt;

&lt;div class=&quot;container color&quot;&gt;
      &lt;h3&gt;Untitled&lt;/h3&gt;
        &lt;div class=&quot;body-post&quot;&gt;&lt;p&gt;As if it wasn’t enough already, her coming here. Her! Here!&lt;/p&gt;
&lt;p&gt;When the day was a cold as my lover’s feet, we decided to sit together.
Our limbs were planks of splintered wood and dead bolts,
rotting more with each coming tide.
But, I was forewarned, “Things fall apart; the center cannot hold”
Nearby, a shark gnawed upon a leg of driftwood,
amidst an eerily tranquil sea, the silence of the moribund.&lt;/p&gt;
&lt;p&gt;She mentioned how mangled our nest was, like an overused eraser,
when the fog rolled in on a rough tongue,
lapping at the horizon.&lt;/p&gt;
&lt;p&gt;“If we were simply celestial bodies,” I told her, “then making love would be like two clouds passing each
another”&lt;/p&gt;
&lt;p&gt;Her sullen eyes, reflecting green algae, slowly met my gaze.&lt;/p&gt;
&lt;p&gt;“and I could fall into you, despite the swell of storm, and remain unharmed.”&lt;/p&gt;
&lt;p&gt;There, following a shuffle of sodden leather and plank,
I saw our reflection magnified in a drop of rain,
and became sure of our discorporate form.&lt;/p&gt;
&lt;p&gt;At that moment, neither of us thought of the braided rope that hung below the
deck, heavy with foam and barnacle.&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;

&lt;div class=&quot;container color&quot;&gt;
      &lt;h3&gt;recollections of a night&lt;/h3&gt;
        &lt;div class=&quot;body-post&quot;&gt;&lt;div class=&#39;italic&#39;&gt;in the most silent place i&#39;ve heard&lt;/div&gt;&lt;p&gt;within a wooden lion&#39;s den&lt;p&gt;the walls seemed to rumble with the stomachs of the house&lt;p&gt;both hungry and fed up&lt;p&gt;when i couldn&#39;t see my own hands&lt;p&gt; but i could feel yours&lt;p&gt;we crawled and slipped down the stairs&lt;p&gt;i was afraid&lt;/p&gt;&lt;div class=&#39;italic&#39;&gt;because the imagination can run amuck&lt;/div&gt;&lt;p&gt;in the discomfort of the dark&lt;p&gt;to see the possibilities of everything when all is removed from sight&lt;/p&gt;&lt;p&gt;earlier,&lt;/p&gt;&lt;div class=&#39;italic&#39;&gt;sitting at the dining room table,&lt;/div&gt;&lt;p&gt; draped in shadows,&lt;/p&gt;&lt;p&gt;my pain felt stuffed with cotton as i attempted to match your essay&#39;s volume word for word in my&lt;/p&gt;&lt;p&gt;diary somehow this emptiness gave rise to a blinding day&lt;p&gt;shape, &lt;i&gt;form&lt;/i&gt;, &lt;strike&gt;line&lt;/strike&gt;, &lt;strong&gt;tone&lt;/strong&gt; overcrowded me&lt;/p&gt;&lt;p&gt;and&lt;/p&gt;&lt;p&gt;i&lt;/p&gt;&lt;p&gt;was&lt;/p&gt;&lt;p&gt;a&lt;/p&gt;&lt;p&gt;new&lt;/p&gt;&lt;p&gt;york&lt;/p&gt;&lt;p&gt;city&lt;/p&gt;&lt;p&gt;high&lt;/p&gt;&lt;p&gt;rise&lt;/p&gt;&lt;p&gt;occupied by my own distractions&lt;/p&gt;&lt;p&gt;i tell my tenants to take out the trash&lt;/p&gt;&lt;p&gt;go for a walk&lt;/p&gt;&lt;p&gt;enjoy the day&lt;/p&gt;&lt;p&gt;but they don&#39;t move an ___________inch&lt;/p&gt;&lt;p&gt;they can&#39;t hear me over the city&#39;s long, sorrowful bellows&lt;/p&gt;&lt;p&gt;the helicopters above me just hover&lt;/p&gt;&lt;p&gt;they are ideas I once owned&lt;/p&gt;&lt;p&gt;but are now drones to flowering sky scrapers in spring,&lt;/p&gt;&lt;p&gt;and dribbling more-water-than-sand castles at high tide&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;

</content>
 </entry>
 
 <entry>
   <title>reading, riting and rithmatic</title>
   <link href="http://mayarichman.github.com/abstract"/>
   <updated>2009-10-10T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/abstract</id>
   <content type="html">&lt;div class=&quot;header&quot;&gt;
&lt;h2&gt;&quot;reading, riting and rithmatic&quot;&lt;/h2&gt;&lt;p&gt;addition+abstraction and distractions from harmony&lt;/p&gt;
&lt;/div&gt;
&lt;div class=&quot;container&quot;&gt;

&lt;img src=&quot;/img/heart-en-large-clear.png&quot; width=&quot;640&quot;/&gt;&lt;br&gt;

&lt;img src=&quot;/img/he-art-mashup-large.png&quot; width=&quot;640&quot;/&gt;&lt;br&gt;

&lt;img src=&quot;/img/Abstract.gif&quot; width=&quot;640&quot;/&gt;&lt;br&gt;

&lt;img src=&quot;/img/alohatracks.bmp&quot; width=&quot;640&quot;/&gt;&lt;br&gt;

&lt;img src=&quot;/img/castingshadow.png&quot; width=&quot;640&quot;/&gt;&lt;br&gt;

&lt;img src=&quot;/img/kite.png&quot; width=&quot;640&quot;/&gt;&lt;br&gt;

&lt;img src=&quot;/img/pink.png&quot; width=&quot;640&quot;/&gt;&lt;br&gt;

&lt;img src=&quot;/img/png-3.png&quot; width=&quot;640&quot;/&gt;&lt;br&gt;

&lt;img src=&quot;/img/Poster1.png&quot; width=&quot;640&quot;/&gt;&lt;br&gt;

&lt;/div&gt;
</content>
 </entry>
 
 <entry>
   <title>keeping it together</title>
   <link href="http://mayarichman.github.com/archive"/>
   <updated>2009-10-09T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/archive</id>
   <content type="html">&lt;div class=&quot;main-content&quot;&gt;
&lt;div class=&quot;header&quot;&gt;&lt;h1&gt;Archive&lt;/h1&gt;&lt;p&gt;keeping it together&lt;/p&gt;&lt;/div&gt;
&lt;div class=&quot;blog-post&quot;&gt;
&lt;div class=&quot;container color&quot;&gt;
&lt;table class=&quot;archive&quot;&gt;
    &lt;tr class=&#39;blog-header&#39;&gt;
        &lt;th&gt;Title&lt;/th&gt;
        &lt;th&gt;Date&lt;/th&gt;
    &lt;/tr&gt;

      &lt;tr&gt;
      &lt;td&gt;&lt;a href=&#39;/amazon-dream&#39;&gt;Dream, Dream, Reality. You&#39;re it!&lt;/a&gt;&lt;/td&gt;
      &lt;td&gt;Thursday February 14 2013&lt;/td&gt;
      &lt;/tr&gt;

      &lt;tr&gt;
      &lt;td&gt;&lt;a href=&#39;/random-clouds&#39;&gt;Cloud Generation&lt;/a&gt;&lt;/td&gt;
      &lt;td&gt;Friday February 08 2013&lt;/td&gt;
      &lt;/tr&gt;

      &lt;tr&gt;
      &lt;td&gt;&lt;a href=&#39;/day-after-the-end+2&#39;&gt;Reality Bites&lt;/a&gt;&lt;/td&gt;
      &lt;td&gt;Saturday December 22 2012&lt;/td&gt;
      &lt;/tr&gt;

      &lt;tr&gt;
      &lt;td&gt;&lt;a href=&#39;/end-of-days&#39;&gt;End of Days&lt;/a&gt;&lt;/td&gt;
      &lt;td&gt;Friday December 21 2012&lt;/td&gt;
      &lt;/tr&gt;

      &lt;tr&gt;
      &lt;td&gt;&lt;a href=&#39;/re-re&#39;&gt;re-re-remix&lt;/a&gt;&lt;/td&gt;
      &lt;td&gt;Monday December 10 2012&lt;/td&gt;
      &lt;/tr&gt;

      &lt;tr&gt;
      &lt;td&gt;&lt;a href=&#39;/poem&#39;&gt;What a Poem&lt;/a&gt;&lt;/td&gt;
      &lt;td&gt;Wednesday November 28 2012&lt;/td&gt;
      &lt;/tr&gt;

      &lt;tr&gt;
      &lt;td&gt;&lt;a href=&#39;/third-world-part-7&#39;&gt;More To Say&lt;/a&gt;&lt;/td&gt;
      &lt;td&gt;Friday November 02 2012&lt;/td&gt;
      &lt;/tr&gt;

      &lt;tr&gt;
      &lt;td&gt;&lt;a href=&#39;/third-world-part-6&#39;&gt;Black, Brown, Yellow&lt;/a&gt;&lt;/td&gt;
      &lt;td&gt;Thursday November 01 2012&lt;/td&gt;
      &lt;/tr&gt;

      &lt;tr&gt;
      &lt;td&gt;&lt;a href=&#39;/third-world-part-5&#39;&gt;Quick Neighborhood Map&lt;/a&gt;&lt;/td&gt;
      &lt;td&gt;Thursday November 01 2012&lt;/td&gt;
      &lt;/tr&gt;

      &lt;tr&gt;
      &lt;td&gt;&lt;a href=&#39;/third-world-part-4&#39;&gt;Huey and The Newton&lt;/a&gt;&lt;/td&gt;
      &lt;td&gt;Wednesday October 31 2012&lt;/td&gt;
      &lt;/tr&gt;

      &lt;tr&gt;
      &lt;td&gt;&lt;a href=&#39;/third-world-part-3&#39;&gt;Poets, Prisons and Prophets&lt;/a&gt;&lt;/td&gt;
      &lt;td&gt;Wednesday October 31 2012&lt;/td&gt;
      &lt;/tr&gt;

      &lt;tr&gt;
      &lt;td&gt;&lt;a href=&#39;/third-world-part-2&#39;&gt;Third-World Solidarity Part. 2&lt;/a&gt;&lt;/td&gt;
      &lt;td&gt;Monday October 29 2012&lt;/td&gt;
      &lt;/tr&gt;

      &lt;tr&gt;
      &lt;td&gt;&lt;a href=&#39;/third-world-part-1&#39;&gt;Third-World Solidarity Part. 1&lt;/a&gt;&lt;/td&gt;
      &lt;td&gt;Thursday October 25 2012&lt;/td&gt;
      &lt;/tr&gt;

      &lt;tr&gt;
      &lt;td&gt;&lt;a href=&#39;/skim-society&#39;&gt;Skim-Society: Whole-Story&lt;/a&gt;&lt;/td&gt;
      &lt;td&gt;Sunday October 21 2012&lt;/td&gt;
      &lt;/tr&gt;

      &lt;tr&gt;
      &lt;td&gt;&lt;a href=&#39;/rasters&#39;&gt;Rasters and Pastors&lt;/a&gt;&lt;/td&gt;
      &lt;td&gt;Wednesday August 08 2012&lt;/td&gt;
      &lt;/tr&gt;

      &lt;tr&gt;
      &lt;td&gt;&lt;a href=&#39;/hunters&#39;&gt;Digging&lt;/a&gt;&lt;/td&gt;
      &lt;td&gt;Wednesday August 08 2012&lt;/td&gt;
      &lt;/tr&gt;

      &lt;tr&gt;
      &lt;td&gt;&lt;a href=&#39;/daisy&#39;&gt;...&lt;/a&gt;&lt;/td&gt;
      &lt;td&gt;Tuesday August 07 2012&lt;/td&gt;
      &lt;/tr&gt;

      &lt;tr&gt;
      &lt;td&gt;&lt;a href=&#39;/huff&#39;&gt;You probably git too much&lt;/a&gt;&lt;/td&gt;
      &lt;td&gt;Monday August 06 2012&lt;/td&gt;
      &lt;/tr&gt;

      &lt;tr&gt;
      &lt;td&gt;&lt;a href=&#39;/putamaponit&#39;&gt;Put a Map On It&lt;/a&gt;&lt;/td&gt;
      &lt;td&gt;Friday August 03 2012&lt;/td&gt;
      &lt;/tr&gt;

      &lt;tr&gt;
      &lt;td&gt;&lt;a href=&#39;/mappingitup&#39;&gt;Space and Place&lt;/a&gt;&lt;/td&gt;
      &lt;td&gt;Friday August 03 2012&lt;/td&gt;
      &lt;/tr&gt;

      &lt;tr&gt;
      &lt;td&gt;&lt;a href=&#39;/havingatime&#39;&gt;Having a Time&lt;/a&gt;&lt;/td&gt;
      &lt;td&gt;Thursday August 02 2012&lt;/td&gt;
      &lt;/tr&gt;

      &lt;tr&gt;
      &lt;td&gt;&lt;a href=&#39;/goodpeoples&#39;&gt;So You Quote Love Unquote Me&lt;/a&gt;&lt;/td&gt;
      &lt;td&gt;Thursday August 02 2012&lt;/td&gt;
      &lt;/tr&gt;

&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;</content>
 </entry>
 
 <entry>
   <title>Because this site is confusing</title>
   <link href="http://mayarichman.github.com/about"/>
   <updated>2009-10-09T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/about</id>
   <content type="html">&lt;div class=&quot;main-content&quot;&gt;
 &lt;div class=&quot;header&quot;&gt;&lt;h1&gt;About&lt;/h1&gt;&lt;p&gt;Because this site is confusing&lt;/p&gt;&lt;/div&gt;
&lt;div class=&quot;container color underline&quot;&gt;
    &lt;img src=&quot;/img/portrait.jpeg&quot; width=&quot;500&quot; class=&quot;about&quot;/&gt;&lt;br&gt;
    &lt;p&gt;My name is Maya and I enjoy doing many things:&lt;/p&gt;&lt;ul&gt;
        &lt;li&gt;conversing about topics that excite me,&lt;/li&gt;
        &lt;li&gt;puns&lt;/li&gt;
        &lt;li&gt;and being vague.&lt;/li&gt;
        &lt;/ul&gt;
        &lt;p&gt;These days I hang around Montreal making &lt;a href=&#39;/music&#39;&gt;music&lt;/a&gt;, researching and reading about hackers, radical feminism, and surveillance. I also have been building an open source jekyll-powered large blogging platform for &lt;a href=&#39;youngist.org&#39;&gt;{young}ist.&lt;/a&gt;&lt;/p&gt;
        &lt;p&gt;I also cohost a radio program on CKUT 90.3 FM in Montreal called &lt;a href=&#39;http://www.studioxx.org/en/xxfiles&#39;&gt;XXFiles&lt;/a&gt; where we talk about all things related to women in the D-I-G-I-T-A-L world.&lt;/p&gt;
        &lt;p&gt;In 2012, I began my journey into the world of web design, working as an intern at &lt;a href=&quot;mapbox.com&quot;&gt;Mapbox&lt;/a&gt;.Take a gander at some of the projects I have worked on &lt;a href=&quot;https://github.com/developmentseed/&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;
        &lt;p&gt;If you enjoy looking at CV&#39;s or think I might be the right fit for some job, here&#39;s a link to my &lt;a href=&#39;https://s3.amazonaws.com/f.cl.ly/items/1p0e041a3x2I2M0v431Z/MayaSayreRichman_CV_.pdf&#39;&gt;CV.&lt;/a&gt;&lt;/p&gt;
        &lt;p&gt;The site is powered by &lt;a href=&quot;http://jekyllrb.com/&quot;&gt;Jekyll&lt;/a&gt; and hosted on Github Pages.&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
</content>
 </entry>
 
 <entry>
   <title>cacophony&catharsis</title>
   <link href="http://mayarichman.github.com/music"/>
   <updated>2000-10-10T00:00:00-07:00</updated>
   <id>http://mayarichman.github.com/music</id>
   <content type="html">&lt;div class=&quot;header&quot;&gt;&lt;h2&gt;cacophony&amp;catharsis&lt;/h2&gt;&lt;p&gt;making sounds for open ears&lt;/p&gt;&lt;/div&gt;
&lt;div class=&quot;container color&quot;&gt;
&lt;p&gt;I like experiment with Pure Data and have become a wannabe-Ableton-Live-geek. I also enjoy singing and playing various acoustic instruments (poorly). I listen to many genres and wish I could become some mashup of Kathleen Hanna and Norah Jones. Hollar me on Twitter &lt;a href=&#39;https://twitter.com/mayarichman&#39;&gt;@mayarichman&lt;/a&gt; if you&#39;d like to collaborate!&lt;/p&gt;
&lt;p&gt;Although never formally trained, and often fearful of public performance, I have dabbled in music creation and recorded many pieces. Below are some of the short pieces I have made in the last two years.&lt;/p&gt;
&lt;iframe style=&quot;border: 0; width: 350px; height: 470px; margin-left:140px;&quot; src=&quot;https://bandcamp.com/EmbeddedPlayer/album=1118892183/size=large/bgcol=ffffff/linkcol=e99708/notracklist=true/transparent=true/&quot; seamless&gt;&lt;a href=&quot;http://nancygraves.bandcamp.com/album/wanderlust-ep&quot;&gt;wanderlust EP by Nancy Graves&lt;/a&gt;&lt;/iframe&gt;
&lt;iframe style=&quot;border: 0; width: 350px; height: 470px; margin-left:140px;&quot; src=&quot;https://bandcamp.com/EmbeddedPlayer/album=181537430/size=large/bgcol=ffffff/linkcol=0687f5/notracklist=true/transparent=true/&quot; seamless&gt;&lt;a href=&quot;http://nancygraves.bandcamp.com/album/something-else&quot;&gt;something else by Nancy Graves&lt;/a&gt;&lt;/iframe&gt;
&lt;iframe style=&quot;border: 0; width: 350px; height: 470px; margin-left:140px;&quot; src=&quot;https://bandcamp.com/EmbeddedPlayer/album=1939767753/size=large/bgcol=ffffff/linkcol=333333/notracklist=true/transparent=true/&quot; seamless&gt;&lt;a href=&quot;http://nancygraves.bandcamp.com/album/-&quot;&gt;( ) by Nancy Graves&lt;/a&gt;&lt;/iframe&gt;
&lt;iframe style=&quot;border: 0; width: 350px; height: 470px; margin-left:140px;&quot; src=&quot;http://bandcamp.com/EmbeddedPlayer/album=9029139/size=large/bgcol=ffffff/linkcol=0687f5/notracklist=true/t=6/transparent=true/&quot; seamless&gt;&lt;a href=&quot;http://isleofpine.bandcamp.com/album/and-farther-away&quot;&gt;...and farther away by isle of pine&lt;/a&gt;&lt;/iframe&gt;
&lt;p&gt; I have also performed live. Below is an improvisational electronic music performance for &lt;a href=&#39;http://www.festivalphenomena.com/phenomena/fr/labo/presentation/&#39;&gt;Lab Phenomena&lt;/a&gt; @CasadelPopolo in Montreal, Quebec.&lt;/p&gt;
&lt;iframe width=&quot;420&quot; height=&quot;315&quot; style=&#39;margin-left:140px;&#39; src=&quot;//www.youtube.com/embed/vcm7sZgnQPQ&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;
&lt;p&gt;In addition, I made a alice&#39;n&#39;wonderland remix video for two of my songs.&lt;/p&gt;
&lt;iframe src=&quot;//player.vimeo.com/video/55194366&quot; width=&quot;500&quot; height=&quot;375&quot; style=&#39;margin-left:100px;&#39; frameborder=&quot;0&quot; webkitallowfullscreen mozallowfullscreen allowfullscreen&gt;&lt;/iframe&gt; &lt;p&gt;&lt;a href=&quot;http://vimeo.com/55194366&quot;&gt;10:36PM \\||// Mothertounge&lt;/a&gt; from &lt;a href=&quot;http://vimeo.com/user14755598&quot;&gt;Maya&lt;/a&gt; on &lt;a href=&quot;https://vimeo.com&quot;&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;&lt;strong&gt;&lt;/strong&gt;
&lt;iframe src=&quot;//player.vimeo.com/video/55222003&quot; width=&quot;500&quot; height=&quot;375&quot; style=&#39;margin-left:100px;&#39; frameborder=&quot;0&quot; webkitallowfullscreen mozallowfullscreen allowfullscreen&gt;&lt;/iframe&gt; &lt;p&gt;&lt;a href=&quot;http://vimeo.com/55222003&quot;&gt;ocean floor -- reuse -- reduce --recycle&lt;/a&gt; from &lt;a href=&quot;http://vimeo.com/user14755598&quot;&gt;Maya&lt;/a&gt; on &lt;a href=&quot;https://vimeo.com&quot;&gt;Vimeo&lt;/a&gt;.&lt;/p&gt;
&lt;h4&gt;But wait! There&#39;s more!&lt;/h4&gt;
&lt;p&gt;Below is a remix of my favorite Cat Steven&#39;s song that was a long running joke with a friend.&lt;/p&gt;
&lt;iframe width=&quot;420&quot; height=&quot;315&quot; style=&#39;margin-left:140px;&#39; src=&quot;//www.youtube.com/embed/2uR72YIqpZ4&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;
&lt;/div&gt;
</content>
 </entry>
 
 
</feed>
