to your HTML Add class="sortable" to any table you'd like to make sortable Click on the headers to sort Thanks to many, many people for contributions and suggestions. Licenced as X11: http://www.kryogenix.org/code/browser/licence.html This basically means: do what you want with it. */ var stIsIE = /*@cc_on!@*/false; sorttable = { init: function() { // quit if this function has already been called if (arguments.callee.done) return; // flag this function so we don't do the same thing twice arguments.callee.done = true; // kill the timer if (_timer) clearInterval(_timer); if (!document.createElement || !document.getElementsByTagName) return; sorttable.DATE_RE = /^(\d\d?)[\/\.-](\d\d?)[\/\.-]((\d\d)?\d\d)$/; forEach(document.getElementsByTagName('table'), function(table) { if (table.className.search(/\bsortable\b/) != -1) { sorttable.makeSortable(table); } }); }, makeSortable: function(table) { if (table.getElementsByTagName('thead').length == 0) { // table doesn't have a tHead. Since it should have, create one and // put the first table row in it. the = document.createElement('thead'); the.appendChild(table.rows[0]); table.insertBefore(the,table.firstChild); } // Safari doesn't support table.tHead, sigh if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0]; if (table.tHead.rows.length != 1) return; // can't cope with two header rows // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as // "total" rows, for example). This is B&R, since what you're supposed // to do is put them in a tfoot. So, if there are sortbottom rows, // for backwards compatibility, move them to tfoot (creating it if needed). sortbottomrows = []; for (var i=0; i
This week's edition of the Carnival of the Uncapitalists (hosted by The All Spin Zone is highly abbreviated as the Carnival focuses upon Latin America as a theme. Being uncapitalists, the most interesting posts of the week focus on Venezuela's president:
After reading the latter post, I thought it might be interesting to take a closer look at Venezuela. The World Factbook notes in its overview of Venezuela's economy:
Venezuela continues to be highly dependent on the petroleum sector, accounting for roughly one-third of GDP, around 80% of export earnings, and over half of government operating revenues. A disastrous two-month national oil strike from December 2002 to February 2003, temporarily halted economic activity. The economy remained in depression in 2003, declining by 9.2% after an 8.9% fall in 2002. Despite continued domestic instability, output recovered strongly in 2004, aided by high oil prices. Both inflation and unemployment remain fundamental problems.
This information suggests that Venezuela's 16.8% GDP growth in 2004 is largely a recovery to pre-national oil strike levels, which given the increased price of oil, indicates that Venezuela's real economic output has not yet reached pre-strike levels.
Looking at unemployment levels, the World Factbook estimates Venezuela's 2004 average level of unemployment to be 17.1%. Other reports of unemployment statistics from the Central Bank of Venezuela (BCV) indicate that registered unemployment has declined from January 2004 to January 2005, moving from 19.1% down to 15.5%. This latter unemployment figure marks a return to pre-national oil strike levels. Venezuela's rate of unemployment peaked at 20.7% in January 2003.
The BCV forecasts Venezuelan GDP growth of 5% this year, with a continuing decline in unemployment levels.
More informtion about Venezuela's economy is available at Wikipedia.
Update: Broken link for Gretchen Ross' "The Green Lantern" repaired.
Welcome to the blogosphere's toolchest! Here, unlike other blogs dedicated to analyzing current events, we create easy-to-use, simple tools to do the math related to them so you can get in on the action too! If you would like to learn more about these tools, or if you would like to contribute ideas to develop for this blog, please e-mail us at:
ironman at politicalcalculations
Thanks in advance!
Closing values for previous trading day.
This site is primarily powered by:
The tools on this site are built using JavaScript. If you would like to learn more, one of the best free resources on the web is available at W3Schools.com.