<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>San Bei Ji &#187; science</title>
	<atom:link href="http://www.sanbeiji.com/archives/tag/science/feed" rel="self" type="application/rss+xml" />
	<link>http://www.sanbeiji.com</link>
	<description>三杯雞好吃!</description>
	<lastBuildDate>Wed, 18 Jan 2012 17:57:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>SVG and MathML in HTML5</title>
		<link>http://www.sanbeiji.com/archives/1243</link>
		<comments>http://www.sanbeiji.com/archives/1243#comments</comments>
		<pubDate>Wed, 08 Dec 2010 04:51:09 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[developingwithhtml5]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[MathML]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[standards]]></category>
		<category><![CDATA[svg]]></category>
		<category><![CDATA[webdev]]></category>
		<category><![CDATA[webstandards]]></category>

		<guid isPermaLink="false">http://www.sanbeiji.com/?p=1243</guid>
		<description><![CDATA[The next article in the Developing with HTML5 series. Pick a flower on Earth and you move the farthest star. —Paul Dirac Scalable Vector Graphics (SVG) and MathML are XML applications that are widely used in scientific contexts. SVG is &#8230; <a href="http://www.sanbeiji.com/archives/1243">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_brick-red" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fwww.sanbeiji.com%252Farchives%252F1243%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22SVG%20and%20MathML%20in%20HTML5%22%20%7D);"></div>
<p><em>The next article in the <a href="http://www.sanbeiji.com/archives/tag/developingwithhtml5">Developing with HTML5 series</a>.</em></p>
<blockquote><p>Pick a flower on Earth and you move the farthest star. </p>
<p><cite>—Paul Dirac</cite></p></blockquote>
<p><a href="http://en.wikipedia.org/wiki/Scalable_Vector_Graphics">Scalable Vector Graphics</a> (SVG) and <a href="http://www.w3.org/Math/">MathML</a> are XML applications that are widely used in scientific contexts. SVG is used to draw vector graphics, and is frequently found in visualization libraries such as <a href="http://vis.stanford.edu/protovis/">ProtoVis</a>. MathML is used to describe the presentation and meaning of mathematical formul&aelig;. They are very easy to work with in a programmatic sense, because they are XML-based and therefore just text, and yet they are capable of rendering beautiful information in supporting web browsers.</p>
<div id="attachment_1245" class="wp-caption alignright" style="width: 150px"><a href="http://www.sanbeiji.com/wp-content/uploads/2010/12/Dirac.gif" rel="lightbox[1243]"><img src="http://www.sanbeiji.com/wp-content/uploads/2010/12/Dirac.gif" alt="Paul Dirac, who loved the maths." title="Dirac" width="140" height="198" class="size-full wp-image-1245" /></a><p class="wp-caption-text">Paul Dirac, who loved the maths.</p></div>
<p>The idea behind XHTML was to move the web toward extensibility (the X in XHTML), where a web browser markup language could be seeded with bits of other XML applications by declaring a namespace and letting things coexist. The problem with that plan was that XML parsers were required to be extremely fussy, to the point that if a problem was detected the browser should render an error message. Browsers don&#8217;t work that way. Instead, they forgive your human or computer errors and render the page as best as their little hearts can.</p>
<p>In the beginning of the process, HTML5 was not extensible, and to this day it remains opposed to the whole namespace idea. But SVG and MathML are highly popular and useful XML applications that deserve a place within the HTML5 spec. And so shall it be: <code>&lt;svg&gt;</code> and <code>&lt;math&gt;</code> are the opening volleys in inserting SVG and MathML into your HTML5 document tree. Any elements that are children of the SVG and MathML specs are valid and functional child elements of the <code>&lt;svg&gt;</code> and <code>&lt;math&gt;</code> elements respectively. No need to declare a namespace. You&#8217;re done. Thank you.</p>
<p>Now this is not to say that the idea of inserting these XML applications within the HTML5 spec is not without some controversy. What about <a href="http://en.wikipedia.org/wiki/List_of_XML_markup_languages">other XML applications</a> and XHTML extensions such as <a href="http://en.wikipedia.org/wiki/RDFa">RDFa</a>, <a href="http://en.wikipedia.org/wiki/Chemical_Markup_Language">CML</a>, and <a href="http://www.musicmarkup.info/">MML</a>? CML (Chemical Markup Language) and MML (Music Markup Language) are indeed common, but within specific application contexts. They are not supported yet by any web browser (whereas MathML and SVG are well supported.) RDFa on the other hand is a more political issue: More on that whole mess in a later post&#8230; <img src='http://www.sanbeiji.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>So in short, SVG and MathML are supported objects within HTML5 because they are widely deployed in existing web browsers, and they are very useful – particularly to those of us in the science industry charged with representing scientific information on the web. Let&#8217;s look at how to get started. First, an SVG example – simply start your SVG block using the <code>&lt;svg&gt;</code> element and drop your SVG markup within:</p>
<p><code>&lt;!DOCTYPE&nbsp;html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&nbsp;&nbsp;&lt;meta&nbsp;charset=&quot;utf-8&quot;&gt;<br />
&nbsp;&nbsp;&lt;title&gt;The Sun in SVG&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&nbsp;&nbsp;&lt;h1&gt;The Sun in SVG&lt;/h1&gt;<br />
&nbsp;&nbsp;&lt;svg&nbsp;style=&quot;width:300px;&nbsp;height:300px;&quot;&gt;<br />
&nbsp;&nbsp;&nbsp;&lt;radialGradient&nbsp;cx=&quot;0.5&quot;&nbsp;cy=&quot;0.5&quot;&nbsp;r=&quot;0.5&quot;&nbsp;id=&quot;g&quot;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;stop&nbsp;stop-color=&quot;rgb(255,&nbsp;255,&nbsp;0)&quot;&nbsp;offset=&quot;0&quot;/&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;stop&nbsp;stop-color=&quot;rgb(255,&nbsp;221,&nbsp;51)&quot;&nbsp;offset=&quot;0.6917&quot;/&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;stop&nbsp;stop-color=&quot;rgb(254,&nbsp;140,&nbsp;25)&quot;&nbsp;offset=&quot;0.7083&quot;/&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;stop&nbsp;stop-color=&quot;rgb(0,&nbsp;0,&nbsp;0)&quot;&nbsp;offset=&quot;1&quot;/&gt;<br />
&nbsp;&nbsp;&nbsp;&lt;/radialGradient&gt;<br />
&nbsp;&nbsp;&nbsp;&lt;rect&nbsp;width=&quot;100%&quot;&nbsp;height=&quot;100%&quot;&nbsp;fill=&quot;url(#g)&quot;/&gt;<br />
&nbsp;&nbsp;&lt;/svg&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></p>
<p><a href="/tests/html5_svg_mathml_example.html">Here&#8217;s a live example</a> that will work in browsers that support SVG and MathML in HTML5. (Try it in the Firefox 4 beta.) Or if you aren&#8217;t one of those early-adopting browser users that are used to living dangerously, then please refer to the perfectly safe reference image below:</p>
<div id="attachment_1246" class="wp-caption aligncenter" style="width: 310px"><img src="http://www.sanbeiji.com/wp-content/uploads/2010/12/svgsun.png" alt="Reference rendering of the sun in SVG." width="300" height="300" class="alignnone size-full wp-image-1246" /><p class="wp-caption-text">Reference rendering of the sun in SVG.</p></div>
<p>To learn more about SVG, check out the <a href="http://www.w3schools.com/svg/default.asp">w3schools SVG tutorial</a> for starters.  While SVG is supported in basic forms in Chrome, Safari, and Firefox, only Firefox 4 (currently in beta) supports embedding SVG natively in HTML5. But Chrome will follow soon, followed by IE9, Safari, and eventually (hopefully) Opera.</p>
<p>MathML is equally straightforward, using the <code>&lt;math&gt;</code> element as the opener:</p>
<p><code>&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&nbsp;&nbsp;&lt;meta charset=&quot;utf-8&quot;&gt;<br />
&nbsp;&nbsp;&lt;title&gt;The Dirac &amp;delta;-function&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&nbsp;&nbsp;&lt;h1&gt;The Dirac &amp;delta;-function&lt;/h1&gt;<br />
&nbsp;&nbsp;&lt;math style=&quot;font-size:200%&quot;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;mrow&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;msubsup&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;mo&gt;&amp;int;&lt;/mo&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;mrow&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;mrow&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;mo&gt;-&lt;/mo&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;mi&gt;&amp;infin;&lt;/mi&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/mrow&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/mrow&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;mi&gt;&amp;infin;&lt;/mi&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/msubsup&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;mrow&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;mi&gt;f&lt;/mi&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;mi&gt;&amp;delta;&lt;/mi&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/mrow&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/mrow&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;mo&gt;=&lt;/mo&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;mrow&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;mo&gt;f&lt;/mo&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;mfenced&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;mrow&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;mn&gt;0&lt;/mn&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/mrow&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/mfenced&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/mrow&gt;<br />
&nbsp;&nbsp;&lt;/math&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code></p>
<p>Compare to the reference rendering below, or <a href="/tests/html5_svg_mathml_example.html">check out the live example</a>.</p>
<div id="attachment_1247" class="wp-caption alignnone" style="width: 194px"><a href="http://www.sanbeiji.com/wp-content/uploads/2010/12/dirac-delta.png" rel="lightbox[1243]"><img src="http://www.sanbeiji.com/wp-content/uploads/2010/12/dirac-delta.png" alt="The Dirac delta function rendered from MathML in Firefox 4 beta" title="dirac-delta" width="184" height="55" class="size-full wp-image-1247" /></a><p class="wp-caption-text">The Dirac delta function rendered from MathML in Firefox 4 beta</p></div>
<p>Again, currently Firefox 4 beta is the only close-to-shipping browser that supports this. But it is expected to come to all major modern browsers in 2010/2011, including IE9, Safari, Opera, and Google Chrome. To learn more about how to construct MathML, check out <a href="http://reference.wolfram.com/mathematica/XML/tutorial/MathML.html">Mathematica&#8217;s MathML tutorial</a>.</p>
<p>In short, it&#8217;s an easy trip to embed SVG and MathML in HTML5. No namespaces are required. The trade-off is less extensibility, but if you need extensibility back there&#8217;s an XML flavor of HTML5, appropriately titled <a href="http://blog.whatwg.org/xhtml5-in-a-nutshell">XHTML5</a>. In the meantime, start looking for ways to leverage SVG and MathML in the coming months as capable browsers start coming online! While this is indeed a bit on the bleeding-edge side of things, web browsers are beginning to implement these features and I expect over the next year or two the practice of embedding SVG and MathML markup in HTML5 web pages will become entirely commonplace within the scientific community.</p>

]]></content:encoded>
			<wfw:commentRss>http://www.sanbeiji.com/archives/1243/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Create the change you want to see in the world, one environment at a time</title>
		<link>http://www.sanbeiji.com/archives/1029</link>
		<comments>http://www.sanbeiji.com/archives/1029#comments</comments>
		<pubDate>Wed, 30 Sep 2009 18:31:14 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Life Itself]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Science & Nature]]></category>
		<category><![CDATA[behavior]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[environment]]></category>
		<category><![CDATA[health]]></category>
		<category><![CDATA[learning]]></category>
		<category><![CDATA[practice]]></category>
		<category><![CDATA[psychology]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[study]]></category>

		<guid isPermaLink="false">http://www.sanbeiji.com/?p=1029</guid>
		<description><![CDATA[Today I came across this article from Peter Bregman on the HarvardBusiness.org site, titled: The Easiest Way to Change People&#8217;s Behavior. It&#8217;s an excellent read and highly recommended. What Peter discusses in this article is that one of the most &#8230; <a href="http://www.sanbeiji.com/archives/1029">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_brick-red" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fwww.sanbeiji.com%252Farchives%252F1029%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Create%20the%20change%20you%20want%20to%20see%20in%20the%20world%2C%20one%20environment%20at%20a%20time%22%20%7D);"></div>
<p>Today I came across this article from Peter Bregman on the HarvardBusiness.org site, titled: <a href="http://blogs.harvardbusiness.org/bregman/2009/03/the-easiest-way-to.html"><strong>The Easiest Way to Change People&#8217;s Behavior</strong></a>. It&#8217;s an excellent read and highly recommended.</p>
<p>What Peter discusses in this article is that one of the most important motivational factors in our lives is environment. If you put the right things in front of you, you&#8217;ll tend to use them more. Move them away, and they&#8217;ll get used less.</p>
<p>This goes for good things as well as bad things. On the positive side, consider proximity of the things that are beneficial: The gym is only a block away, so you go regularly. If the gym is far, you don&#8217;t go. Some examples based on the article:</p>
<ul>
<li>Use a bigger spoon or plate, and you eat more. Use smaller ones and you eat less.</li>
<li>Live near a liquor store or a Burger King and people tend to drink more and eat more junk food. Place yourselves farther away from those and you tend not to indulge in such sins.</li>
<li>For musicians, keep your instrument and music in an area where you&#8217;ll most likely use it. Designate a practice area and have your instrument either out of it&#8217;s case or put the case in an easily accessible area. Music on the stand. Metronome on the desk. Ready to go. (I personally have found having a tuner (<a href="http://www.strobosoft.com/istrobosoft">iStrobeSoft</a>) and metronome (<a href="http://homepage.mac.com/seishu/ssworks/drbetottetc/drbetottetc.html">Dr Betotte TC</a>) on my iPhone to be one of the biggest music practice productivity boosts yet. No searching for gadgets&#8230;)</li>
<li>Want kids to do their homework? Give them a clean, organized place to do it and make sure the homework is there and not floating around the house in some random place. (I know this from experience&#8230;)</li>
</ul>
<p>In a Web 2.0 context, this equates to the usability of your software. Make it easy for your users to get things done, and they&#8217;ll do it without a hitch. Throw up roadblocks, and they&#8217;ll get stuck. It doesn&#8217;t matter how small the roadblock is or whether or not the construct was well intentioned or not &#8211; if it impedes usability, then it <em>will</em> impede usability. <img src='http://www.sanbeiji.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>In a greater sense, there&#8217;s a lesson for the nation or the world: If you want people to change the way they are doing things, make them want to do it. Make it easy for them. Remove any and all barriers to getting things done. You want people to vote? Put voting booths in more neighborhoods or promote the option to vote by mail. Need people to get immunized? Set up neighborhood clinics. Want your employees to be more productive? Find out what is it about your office environment that is getting in the way or not helping promote the results you want to see. For kids, for employees, for citizens, provide the right environment and make it a place they want to be.</p>

]]></content:encoded>
			<wfw:commentRss>http://www.sanbeiji.com/archives/1029/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Doctor Atomic</title>
		<link>http://www.sanbeiji.com/archives/623</link>
		<comments>http://www.sanbeiji.com/archives/623#comments</comments>
		<pubDate>Sat, 22 Oct 2005 04:04:34 +0000</pubDate>
		<dc:creator>Joe</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Science & Nature]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[physics]]></category>
		<category><![CDATA[San Francisco]]></category>
		<category><![CDATA[science]]></category>

		<guid isPermaLink="false">http://www.sanbeiji.com/?p=623</guid>
		<description><![CDATA[I saw the San Francisco Opera perform Doctor Atomic last night. My opinion: It was amazing, and this is one for the ages. Now first off, let&#8217;s get the criticism out of the way: There were a couple of spots &#8230; <a href="http://www.sanbeiji.com/archives/623">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[
<div class="topsy_widget_data topsy_theme_brick-red" style="float: right;margin-left: 0.75em; background: url(data:,%7B%20%22url%22%3A%20%22http%253A%252F%252Fwww.sanbeiji.com%252Farchives%252F623%22%2C%20%22style%22%3A%20%22big%22%2C%20%22title%22%3A%20%22Doctor%20Atomic%22%20%7D);"></div>
<p><img src="http://static.flickr.com/28/54754242_727fd6c15d_m.jpg" alt="Doctor Atomic" class="alignright" />I saw the San Francisco Opera perform <a href="http://www.exploratorium.edu/doctoratomic/">Doctor Atomic</a> last night. My opinion: It was amazing, and this is one for the ages.</p>
<p>Now first off, let&#8217;s get the criticism out of the way: There were a couple of spots that just dragged on nebulously, and I started to just get plain old bored. It is very hard to get me bored at an opera ��� I love opera performances, and especially this one for me had given me a lot of anticipation. Specifically, I&#8217;m referring to Scene II, and just a little bit from Scene III.</p>
<p>However, this is a relatively minor critique in light of the overall composition, production, and performance.</p>
<p>Kristine Jepson as Kitty Oppenheimer was absolutely amazing. Her impressive vocal execution of some incredibly difficult passages was my favorite part of the vocal component of this opera. All the vocal performances were great, including the chorus, and I really enjoyed it.</p>
<p>The production, especially the set design and choreography, made a real impression on me. The visual sight of a mother and child alone on a dark stage, with an enormous bomb hanging right over their heads, while sounds of everyday conversation was looped via tape.  The choreography was spectacular in the way it depicted the concepts of everyday work juxtaposed with the horror of war, all underlined by the physics of the atom.</p>
<p>Segments of the text were direct copies of things I recognized, from the letter by Leo Slizard to initiate the Manhattan Project, to Oppenheimer&#8217;s recitals of ancient Sanskrit from the Bhagavad Gita. (I may have missed it, but I don&#8217;t think that they worked in his famous and ominous recitation of the phrase from chapter 11 of the Bhagavad Gita before the Trinity test: <q>I have become Death, Destroyer of Worlds.</q>)</p>
<p>This was an opera about deep personal conflict, revolving around the genius Oppenheimer and his colleagues as they proceeded to build the greatest weapon of mass destruction ever conceived. To invent a conventional weapon is one thing. But to invent a weapon that is capable of erasing the lives of hundreds of thousands of people in one instant, that is something that generates feelings of unimaginable horror, extreme guilt, and even inescapable fascination. What really left me after seeing this opera was the take on the issues involved: The conflict, the humanity, the despair, the fear, and the human curiosity and determination that saw it all through in the face of everything.</p>
<p>The opera ended with the test blast at the Trinity site, with everyone&#8217;s heads propped up from their positions of shelter in fascination and awe. As the rumble subsided, a Japanese woman&#8217;s voice can be heard repeating over and over again a simple request for a drink of water. This is an ominous reminder of the horrible aftermath of what happened in Hiroshima and Nagasaki, where the water was heavily tainted so that those that drank the water suffered and died from radiation poisoning, while those that did not drink suffered and died from thirst ��� and more importantly ��� a reminder that war&#8217;s greatest tragedy is how it affects the innocent.</p>
<p>I am especially glad that I got to see this opera in it&#8217;s premiere. I can tell that this one will go down in history as one of the top operatic works of our era. It is a work of genius, and I do not use that word lightly.</p>
<p>I think that this opera goes right on up there with Minard&#8217;s chart of <a href="http://www.edwardtufte.com/tufte/minard">Napoleon&#8217;s campaign in Russia</a> as some of the most effective anti-war propaganda ever created.</p>

]]></content:encoded>
			<wfw:commentRss>http://www.sanbeiji.com/archives/623/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

Served from: www.sanbeiji.com @ 2012-02-11 05:23:41 -->
