<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>Andrew Bunner</title>
    <link rel="alternate" type="text/html" href="http://abunner.com/andrew/blog/" />
    <link rel="self" type="application/atom+xml" href="http://abunner.com/andrew/blog/atom.xml" />
    <id>tag:abunner.com,2009-06-25:/andrew/blog//1</id>
    <updated>2011-04-16T23:53:45Z</updated>
    
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type 4.261</generator>

<entry>
    <title>Photo editing on the web</title>
    <link rel="alternate" type="text/html" href="http://abunner.com/andrew/blog/2011/04/photo-editing-on-the-web.html" />
    <id>tag:abunner.com,2011:/andrew/blog//1.124</id>

    <published>2011-04-16T18:08:31Z</published>
    <updated>2011-04-16T23:53:45Z</updated>

    <summary>WebGL demo showing some neat photo filters applied in real-time. via @mrdoob...</summary>
    <author>
        <name>Andrew Bunner</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://abunner.com/andrew/blog/">
        <![CDATA[<a href="http://evanw.github.com/webgl-filter/">WebGL demo</a> showing some neat photo filters applied in real-time. via @mrdoob]]>
        
    </content>
</entry>

<entry>
    <title>WebGL Rogue-like</title>
    <link rel="alternate" type="text/html" href="http://abunner.com/andrew/blog/2011/03/webgl-rogue-like.html" />
    <id>tag:abunner.com,2011:/andrew/blog//1.118</id>

    <published>2011-03-17T17:25:27Z</published>
    <updated>2011-03-19T03:47:55Z</updated>

    <summary>This game/demo tickles me in a couple ways. I love Rogue-like games. I used to love playing them, now I appreciate them more as a kind of quirky art. I&apos;m also optimistic about the WebGL standard (OpenGL in the browser)....</summary>
    <author>
        <name>Andrew Bunner</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://abunner.com/andrew/blog/">
        <![CDATA[This game/demo tickles me in a couple ways. I love Rogue-like games. I used to love playing them, now I appreciate them more as a kind of quirky art. I'm also optimistic about the WebGL standard (OpenGL in the browser). This crazy <a href="http://tapio.github.com/alawid/game/">rogue-like demo</a> combines both. Enjoy!<div><br /></div><div>Musing for a moment... it's possible some evolution of this client-side technology could displace Steam as the future of game distribution. Obviously the client-side technology has a ways to go (game logic would still be in Javascript; it's easy to argue there are problems there) but it feels like that kind of&nbsp;disruption&nbsp;could happen.</div>]]>
        
    </content>
</entry>

<entry>
    <title>Wasted keystrokes in popular languages</title>
    <link rel="alternate" type="text/html" href="http://abunner.com/andrew/blog/2011/02/wasted-keystrokes-in-popular-languages.html" />
    <id>tag:abunner.com,2011:/andrew/blog//1.111</id>

    <published>2011-02-22T23:48:04Z</published>
    <updated>2011-03-19T03:50:39Z</updated>

    <summary>After looking more into Scala, Coffescript and Go, I wish other programming languages were more terse. It&apos;s easier to like a language that saves me keystrokes.Steve Yegge wrote about the next big language in 2007 and opined that it would...</summary>
    <author>
        <name>Andrew Bunner</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://abunner.com/andrew/blog/">
        <![CDATA[<div><div><div>After looking more into Scala, Coffescript and Go, I wish other programming languages were more terse. It's easier to like a language that saves me keystrokes.</div><div><br /></div><div>Steve Yegge wrote about the <a href="http://steve-yegge.blogspot.com/2007/02/next-big-language.html">next big language</a> in 2007 and opined that it would have to C-like syntax in order to be popular. He's probably right. But I hope we can shave off a few key-strokes here and there.</div><div><br /></div><div>Andrew's Top Verbosity Annoyances:</div><div><br /></div><div>1. Having to explicitly assign fields from constructor params. e.g.</div><div></div></div></div><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><div><div><div>// Javascript (fail)</div></div></div><div><div><div>function MyClass (param) {&nbsp;this.param = param;&nbsp;}</div></div></div><div><div><div><br /></div></div></div><div><div><div>// C++ (fail)</div></div></div><div><div><div>MyClass(int param) : param(param) {}</div></div></div><div><div><div><br /></div></div></div><div><div><div>// Java (fail)</div></div></div><div><div><div>MyClass(int param) { this.param = param; }</div></div></div><div><div><div><br /></div></div></div><div><div><div>// Coffeescript (better)</div></div></div><div><div><div>class MyClass</div></div></div><div><div><div>&nbsp; contructor (@param) -&gt;</div></div></div><div><div><div><br /></div></div></div><div><div><div>// Scala (win!)</div></div></div><div><div><div>class MyClass (param: Int)</div></div></div><div><div><div><br /></div></div></div><div><div><div>// Go (win!)</div></div></div><div><div><div>struct MyClass {</div></div></div><div><div><div>&nbsp; param int</div></div></div><div><div><div>}</div></div></div></blockquote><div><div><div><br /></div><div></div><div>2. Getters and setters. One pro of getters and setters is you can separately control access to reads vs. writes... but I rarely care. You could also choose to enforce invariants in your setters... sometimes nice, but I prefer to put validation elsewhere.</div><div><br /></div><div>Net: I'd like to see less of this in NBL:</div><div><br /></div></div></div><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><div><div><div>private int param;</div></div></div><div><div><div>public void setParam(int param) { this.param = param; }</div></div></div><div><div><div>public int getParam() { return this.param; }</div></div></div></blockquote><div><div><div><br /></div><div>I think Go is off on the right foot with "capitalize to export". I hope programmers will decide there are cases it's okay to access a field directly instead of creating the next generation of&nbsp;<a href="http://docs.jboss.org/jbosscache/3.0.0.GA/pojo/userguide_en/html/ch08s01.html">getter/setter bloat</a>.</div><div><br /></div><div>Scala also saves you keystrokes by making getters and setters implicit, but gives you the option to add an explicit setter if you need it. Smart!</div><div><br /></div><div>3. Workarounds for not being able to return tuples. i.e. Something other than...</div><div><br /></div></div></div><blockquote class="webkit-indent-blockquote" style="margin: 0 0 0 40px; border: none; padding: 0px;"><div><div><div>public static class MyReturnValue { public int x; public int y;&nbsp;}</div></div></div><div><div><div>public MyReturnValue doSomething() { ... }</div></div></div><div><div><div>// Or ...</div></div></div><div><div><div>public doSomething(Foo outputParam1, Foo outputParam2) { ... }</div></div></div></blockquote><div><div><div><br /></div><div>Scala, Go and Coffeescript all support multiple return values. Tuples aren't something I miss every day, but they're a definite nice-to-have.</div></div></div>]]>
        
    </content>
</entry>

<entry>
    <title>Guy roller skates down roller coaster</title>
    <link rel="alternate" type="text/html" href="http://abunner.com/andrew/blog/2011/02/guy-roller-skates-down-roller-coaster.html" />
    <id>tag:abunner.com,2011:/andrew/blog//1.108</id>

    <published>2011-02-14T17:59:22Z</published>
    <updated>2011-02-14T18:01:25Z</updated>

    <summary>The craziest thing about this video is that it only has 100K views.http://www.youtube.com/watch?v=k_pu7xDuJYA...</summary>
    <author>
        <name>Andrew Bunner</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://abunner.com/andrew/blog/">
        <![CDATA[The craziest thing about this video is that it only has 100K views.<div><br /></div><div><a href="http://www.youtube.com/watch?v=k_pu7xDuJYA">http://www.youtube.com/watch?v=k_pu7xDuJYA</a><br /><br /><iframe title="YouTube video player" width="640" height="390" src="http://www.youtube.com/embed/k_pu7xDuJYA" frameborder="0" allowfullscreen=""></iframe></div>]]>
        
    </content>
</entry>

<entry>
    <title>Trine game review</title>
    <link rel="alternate" type="text/html" href="http://abunner.com/andrew/blog/2011/01/trine-game-review.html" />
    <id>tag:abunner.com,2011:/andrew/blog//1.98</id>

    <published>2011-01-22T21:22:59Z</published>
    <updated>2011-01-22T21:29:56Z</updated>

    <summary><![CDATA[I downloaded the Mac App Store a couple days ago and bought&nbsp;Trine--a clever, physics puzzle adventure with an RPG-twist. You play a thief, a wizard and a knight--the game allows you to switch between each as the situation warrants. Each...]]></summary>
    <author>
        <name>Andrew Bunner</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://abunner.com/andrew/blog/">
        <![CDATA[I downloaded the Mac App Store a couple days ago and bought&nbsp;<a href="http://trine-thegame.com/site/">Trine</a>--a clever, physics puzzle adventure with an RPG-twist. You play a thief, a wizard and a knight--the game allows you to switch between each as the situation warrants. Each has different ways it can get around and affect the game world (moving blocks, swinging from ropes, bashing things, conjuring blocks, etc.)<div><br /></div><div>The game combines Diablo-style hack-and-slash with a little bit of loot-gathering fun and a lot of neat puzzlers ("How do I get up there?").</div><div><br /></div><div>Great polish, fun sound effects. It's also available on Steam. I'm not sure which gives the developer a better cut, but they certainly earned 70% of my $19.99. Hats off to the folks at Frozenbyte.</div>]]>
        
    </content>
</entry>

<entry>
    <title>ShoppyBag</title>
    <link rel="alternate" type="text/html" href="http://abunner.com/andrew/blog/2010/12/shoppybag.html" />
    <id>tag:abunner.com,2010:/andrew/blog//1.86</id>

    <published>2010-12-19T15:32:22Z</published>
    <updated>2010-12-19T15:32:56Z</updated>

    <summary>News flash! Your friend did not tag you in a photo at Shoppy Bag. Don&apos;t click the link in the email....</summary>
    <author>
        <name>Andrew Bunner</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://abunner.com/andrew/blog/">
        <![CDATA[News flash! Your friend did <i><b>not</b></i> tag you in a photo at Shoppy Bag. Don't click the link in the email. ]]>
        
    </content>
</entry>

<entry>
    <title>The story of Cornwall Capital</title>
    <link rel="alternate" type="text/html" href="http://abunner.com/andrew/blog/2010/04/the-story-of-cornwall-capital.html" />
    <id>tag:abunner.com,2010:/andrew/blog//1.51</id>

    <published>2010-04-03T02:20:37Z</published>
    <updated>2010-04-03T02:46:27Z</updated>

    <summary>When big things happen in the market, someone makes money. The story of Cornwall Capital is about two men who started with $100K, turned it into $15M and then to $120M in 2008-2009 when the financial industry fell apart. They...</summary>
    <author>
        <name>Andrew Bunner</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://abunner.com/andrew/blog/">
        <![CDATA[<meta charset="utf-8"><meta charset="utf-8"><div>When big things happen in the market, someone makes money. The story of Cornwall Capital is about two men who started with $100K, turned it into $15M and then to $120M in 2008-2009 when the financial industry fell apart. They paid a high emotional cost knowing ruinous events years ahead of time. Even as they placed bets the system would fail, they tried to warn the SEC to prevent it.</div><div><br /></div><div>Going back to that first $100K... the tenet of their fund was that Wall Street undervalued the impact of extremely rare events. Bets on such events are cheap to make--no-one believes they'll happen. Enough of these bets worked that they managed 100x returns. Readers of the <a href="http://www.amazon.com/Black-Swan-Impact-Highly-Improbable/dp/1400063515">Black Swan</a> will like this story.</div><div><br /></div><div>Their attention eventually turned to the consumer mortgage market and then to the banks who were issuing insurance against bonds backed by consumer mortgages. Soon they were making bets against those banks. Banks like Bear Stearns.</div><div>&nbsp;</div><div>Has anyone read <a href="http://www.amazon.com/Big-Short-Inside-Doomsday-Machine/dp/0393072231">The Big Short</a> yet?</div><div><br /></div><div><meta charset="utf-8"><div>Thanks, <a href="http://www.npr.org/templates/story/story.php?storyId=124690424">Fresh Air</a>, for turning me on to this story!</div></div>]]>
        
    </content>
</entry>

<entry>
    <title>WPilot ... the future is catching up to the past</title>
    <link rel="alternate" type="text/html" href="http://abunner.com/andrew/blog/2010/03/wpilot-the-future-is-catching-up-to-the-past.html" />
    <id>tag:abunner.com,2010:/andrew/blog//1.50</id>

    <published>2010-03-27T15:58:10Z</published>
    <updated>2010-03-27T15:59:57Z</updated>

    <summary>Multi-player space-shooter game in the browser... using WebSocket!It has the feel of an old arcade game, but it&apos;s networked and all done with Javascript! (Some flash fallback for browsers that don&apos;t have WebSocket)...</summary>
    <author>
        <name>Andrew Bunner</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://abunner.com/andrew/blog/">
        <![CDATA[Multi-player <a href="http://jfd.github.com/wpilot/">space-shooter game</a> in the browser... using WebSocket!<div><br />It has the feel of an old arcade game, but it's networked and all done with Javascript! (Some flash fallback for browsers that don't have WebSocket)</div>]]>
        
    </content>
</entry>

<entry>
    <title>Immigrants are the consummate risk takers</title>
    <link rel="alternate" type="text/html" href="http://abunner.com/andrew/blog/2010/02/immigrants-are-the-consummate-risk-takers.html" />
    <id>tag:abunner.com,2010:/andrew/blog//1.49</id>

    <published>2010-02-16T04:30:54Z</published>
    <updated>2010-02-16T04:51:05Z</updated>

    <summary>An author on NPR was trying to explain why Israel has such a successful economy in spite of other adverse circumstances. His thesis in bullet-point form:To have sustained economic growth, you need sustained productivity increases.Improvements in technology have historically been...</summary>
    <author>
        <name>Andrew Bunner</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://abunner.com/andrew/blog/">
        <![CDATA[An author on NPR was trying to explain why Israel has such a successful economy in spite of other adverse circumstances. His thesis in bullet-point form:<div><br /></div><div><ul><li>To have sustained economic growth, you need sustained productivity increases.</li><li>Improvements in technology have historically been the best way to increase productivity.</li><li>Innovation in technology most often comes from small companies, less than 500 people.</li><li>The type of people who start and join these companies are risk-takers.</li><li>Immigrants are risk-takers.</li><li>Israel is a nation of immigrants that continues to actively encourage immigration.</li><li>Israel has more start-ups per capita than anywhere else (1 start-up per 1,100 residents) and a healthy economy.</li></ul></div><div><br /></div><div>I think he's on to something and I'm afraid the United States is doing it wrong.</div><div><br /></div><div>We let foreign students come here to study, but make it difficult for them to stay. Letting people contribute to the American economy should be easy.</div><div><br /></div><div>I actually think the process should be easy whether the immigrant is smart or not. Immigrants want to work. And they might have really bright kids.</div><div><br /></div><div>This concludes "ur doin it wrong part 1". In part 2 (if I remember) I'll explore water-use in&nbsp;agriculture and how Israel manages to cultivate dry sand.</div>]]>
        
    </content>
</entry>

<entry>
    <title>Google Buzz</title>
    <link rel="alternate" type="text/html" href="http://abunner.com/andrew/blog/2010/02/google-buzz.html" />
    <id>tag:abunner.com,2010:/andrew/blog//1.48</id>

    <published>2010-02-11T05:45:45Z</published>
    <updated>2010-02-11T05:50:16Z</updated>

    <summary><![CDATA[I've been working on Google Buzz. It's a fun, light-weight way to communicate inside GMail.Also: If you squint carefully, you can make out a familiar face in the screen shot at http://buzz.google.com&nbsp;:-)...]]></summary>
    <author>
        <name>Andrew Bunner</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://abunner.com/andrew/blog/">
        <![CDATA[I've been working on Google Buzz. It's a fun, light-weight way to communicate inside GMail.<div><br /></div><div>Also: If you squint carefully, you can make out a familiar face in the screen shot at <a href="http://buzz.google.com">http://buzz.google.com</a>&nbsp;:-)</div><div><br /></div><div><br /></div><img src="http://www.gstatic.com/s2/tt/landing/landing_preview.png" align="center" />]]>
        
    </content>
</entry>

<entry>
    <title>&quot;A new approach to China&quot;</title>
    <link rel="alternate" type="text/html" href="http://abunner.com/andrew/blog/2010/01/a-new-approach-to-china.html" />
    <id>tag:abunner.com,2010:/andrew/blog//1.47</id>

    <published>2010-01-12T23:16:55Z</published>
    <updated>2010-01-12T23:20:16Z</updated>

    <summary><![CDATA[A blog post from my employer:&nbsp;Google: New approach to China...]]></summary>
    <author>
        <name>Andrew Bunner</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://abunner.com/andrew/blog/">
        <![CDATA[A blog post from my employer:&nbsp;<a href="http://googleblog.blogspot.com/2010/01/new-approach-to-china.html">Google: New approach to China</a>]]>
        
    </content>
</entry>

<entry>
    <title>I&apos;m on YouTube as an extra in a &quot;PubSubHubub&quot; promotion video</title>
    <link rel="alternate" type="text/html" href="http://abunner.com/andrew/blog/2010/01/im-on-youtube-as-an-extra-in-a-pubsubhubub-promotion-video.html" />
    <id>tag:abunner.com,2010:/andrew/blog//1.46</id>

    <published>2010-01-08T22:46:31Z</published>
    <updated>2010-01-08T22:49:56Z</updated>

    <summary>PubSubHubub&quot; is a simple technology (a protocol really) for allowing real-time updates to flow from publishers to content consumers (like you). Besides getting fresh content to users faster, it&apos;s also vastly more bandwidth-efficient: helping to unclog the tubes!...</summary>
    <author>
        <name>Andrew Bunner</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://abunner.com/andrew/blog/">
        <![CDATA[<a href="http://code.google.com/p/pubsubhubbub/">PubSubHubub"</a> is a simple technology (a protocol really) for allowing real-time updates to flow from publishers to content consumers (like you). Besides getting fresh content to users faster, it's also vastly more bandwidth-efficient: helping to unclog the tubes!<br><br>

 <object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/B5kHx0rGkec&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><embed src="http://www.youtube.com/v/B5kHx0rGkec&amp;hl=en_US&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></object>]]>
        
    </content>
</entry>

<entry>
    <title>Judging a book by its cover: Part II</title>
    <link rel="alternate" type="text/html" href="http://abunner.com/andrew/blog/2010/01/judging-a-book-by-its-cover-part-ii.html" />
    <id>tag:abunner.com,2010:/andrew/blog//1.45</id>

    <published>2010-01-06T23:11:56Z</published>
    <updated>2010-01-06T23:20:59Z</updated>

    <summary>We find the old castle in Aqaba just after sunset. It being closed, we snap some photos from the outside and head down to the shore to look around. Walking away a Jordian youth runs after us yelling something in...</summary>
    <author>
        <name>Andrew Bunner</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://abunner.com/andrew/blog/">
        <![CDATA[<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Arial">We find the old castle in Aqaba just after sunset. It being closed, we snap some photos from the outside and head down to the shore to look around. Walking away a Jordian youth runs after us yelling something in Arabic (maybe). He's got our camera case! ... From some hand-gesturing, we learn that he's deaf. We thank him for the camera case. He stands there smiling, nodding and signing. Not knowing what to do, Angela suggests I give him a dollar. Nope. He didn't want any money--just to give us the case back! Friendly guy.</p> ]]>
        
    </content>
</entry>

<entry>
    <title>Judging a book by its cover: Part I</title>
    <link rel="alternate" type="text/html" href="http://abunner.com/andrew/blog/2010/01/judging-a-book-by-its-cover-part-i.html" />
    <id>tag:abunner.com,2010:/andrew/blog//1.44</id>

    <published>2010-01-03T14:47:57Z</published>
    <updated>2010-01-03T14:50:24Z</updated>

    <summary>Wandering the streets of Aqaba looking for the old castle, we&apos;re approached by three Arab men. Beards, head-scarves, etc. We prepare to fend them off with a &quot;No, I don&apos;t need a guide&quot; but before I can wave them away...</summary>
    <author>
        <name>Andrew Bunner</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://abunner.com/andrew/blog/">
        <![CDATA[<div>Wandering the streets of Aqaba looking for the old castle, we're approached by three Arab men. Beards, head-scarves, etc. We prepare to fend them off with a "No, I don't need a guide" but before I can wave them away one of them asks, "Pardon me, but can you tell us the way to the beach?" ... Turns out they were from Germany!</div><div><br /></div><div><br /></div> 

<div align="center"><img src="http://lh3.ggpht.com/_9lGjEGWktY4/Szz38AkeA1I/AAAAAAAAAyY/_qDFs9O8NYk/s640/P1000239.JPG"></div>]]>
        
    </content>
</entry>

<entry>
    <title>Diving in Aqaba</title>
    <link rel="alternate" type="text/html" href="http://abunner.com/andrew/blog/2009/12/diving-in-aqaba.html" />
    <id>tag:abunner.com,2009:/andrew/blog//1.43</id>

    <published>2009-12-31T20:10:44Z</published>
    <updated>2009-12-31T20:12:16Z</updated>

    <summary>The dives are easy shoe dives here. Except that Angela and I have forgotten basically everything you need to know to dive on your own.Being spoiled by Western dive shops where they do everything but breathe for you has left...</summary>
    <author>
        <name>Andrew Bunner</name>
        
    </author>
    
    
    <content type="html" xml:lang="en-US" xml:base="http://abunner.com/andrew/blog/">
        <![CDATA[<div>The dives are easy shoe dives here. Except that Angela and I have forgotten basically everything you need to know to dive on your own.</div><div><br /></div><div>Being spoiled by Western dive shops where they do everything but breathe for you has left us soft and forgetful. When the dive master asked me to put my gear together I blanked, tried to "figure it out" and ended up doing it backwards, low, wrong and wrong. Angela was a lot closer, but when he asked us to do our buddy checks we just looked at each other. "Um... buckles? Air? Done? ..."</div><div><br /></div><div>We managed to survive, but it was a heavy, long walk both in and out of the water. Putting on fins in the water is much harder than our dive master made it look. Easily five minutes of struggle.</div><div><br /></div><div>Highlights from the dive part of the diving...</div><div><br /></div><div>* Angela saw a big sea worm</div><div>* Some neat jelly fish</div><div>* An Octopus! Our first one that we've seen on a dive. Our dive master poked him out and he "swam" a bit</div><div>* Lots of small eels</div><div>* A very colorful nudibranch!</div><div>* Lion fish</div><div>* Many stone fish (if these hadn't been pointed out, we never would've seen them. They don't even move when you provoke them. Come to think of it... I'm not sure all of them were fish...)</div><div>* Gigantic beautiful green cabbage color. Twelve feet wide... enormous big head of cabbage!</div><div>* Very pretty school of baby fish. At first I though they were bubbles they were so small</div><div><br /></div><div>Bonus: free Turkish coffee included before and after the dive. Delicious!</div> ]]>
        
    </content>
</entry>

</feed>

