Skip to main content

"No to nuclear power, solar energy first"

One of the big news items of the weekend is Ralph Nader's decision to run for President in 2008. Nader supporters and detractors alike are familiar with his career, his contributions to society and his influence on the American political landscape.

But what does this have to do with technology, which is what this blog is about?

Well, one of Nader's positions is "No to nuclear power, solar energy first". At first glance this seems like a self-contradictory position for an alternative energy support. Both nuclear power and solar energy are practically limitless sources of energy compared to fossil fuels. So why choose one specifically over the other? The answers are in this article Why Not Nuclear Power?. The arguments are related to safety (not just the safety of the reactor but the safe disposal of nuclear wastes which can contaminate for centuries) and economics. The WWF's position paper has further details and lays out the vision for the future of energy.

Technorati Tags: , , ,

Comments

anjali said…
A Nader fan? Wow, interesting. I should look at his policies in more detail. Pity he'll never win though.
Unknown said…
@angeli: Yes, a Nader fan. I agree he'll never win but his presence encourages debate.

Popular posts from this blog

Migrating from Palm Calendar to Google Calendar and iPhone

Here are the free steps to migrate from Palm's date book (or Pimlico's DateBk6 ) calendar to Google calendar for full iPhone sync. First, sync Palm with Palm Desktop . Next, open Palm Desktop, select the Calendar view, navigate to File | Export, select Export Type as Date Book Archive, Range as All and provide a file name. This will export the calendar data as Date Book Archive (.dba). There's a paid tool called DBA2CSV that converts .dba files to .csv files. However this can be done for free using Yahoo Calendar. Login into Yahoo Calendar and via Settings/Import, import the .dba file. It helps to have an empty Yahoo Calendar. Via Settings/Export, export the calendar as .csv file. Login to Google Calendar (also works with Google Apps For Your Domain GAFYD Calendar) and import the .csv file into any of the calendars. It is a good idea to create a test calendar and test the import before importing into your real calendar. That way if anything goes wrong, you can delet...

Syntax-highlighting code in blog posts

SyntaxHighlighter is an easy to use syntax highlighter for posting code snippets in blogs. Here are the steps to incorporate SyntaxHighlighter into Blogger : Go to the blog dashboard and select Layout for your blog. Choose Edit HTML. In the <head> section, paste in these two lines: <link href='http://syntaxhighlighter.googlecode.com/svn/trunk/Styles/SyntaxHighlighter.css' rel='stylesheet' type='text/css'/> <script language='javascript' src='http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shCore.js'/> In addition, for each language that you intend to highlight, add lines to import the relevant JavaScript libraries. The full list of supported languages is here . Here's the example for XML: <script language='javascript' src='http://syntaxhighlighter.googlecode.com/svn/trunk/Scripts/shBrushXml.js'/> Finally, right at the bottom before the </body> tag, add: <script...

Adobe AIR on 64-bit Linux - ArgumentError: Error #2004

Adobe has detailed instructions on setting up AIR on 64-bit Linux systems . However they are missing the final step on actual installation of AIR applications. They put a rather unwieldy program under /usr/bin called "Adobe AIR Application Installer". Running this from the command line against any .air file produces this error message: unexpected error: ArgumentError: Error #2004 with no other explanation. Turns out that just running the installer ("Adobe AIR Application Installer") opens a GUI where one can select the .air file and then the installation goes through without problems. Perhaps the command line interface expects arguments in some undocumented syntax.