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
Now that we're on record as thinking that the stock market will be a pretty boring place for the foreseeable future (and yes, that includes days the Dow drops by 300 points or less), we're looking for other, more exciting and potentially high yielding things to consider as investments.
We thought about maybe investing in bonds, but bonds are even more boring and really, in these days of quantitative easing-depressed yields, we don't see much upside at this point. We also thought about buying and flipping houses, but we really don't want to be one of those people....
That's when it hit us! Rather than follow these more traditional investment paths, we decided that we should put our money to work in one of two ways, either to help blow something up or to rob banks.
We just haven't decided which to do yet....
Before we go any further, we should probably explain that what we're considering doing is contributing to one of two different Kickstarter projects.
For those who aren't familiar with Kickstarter, it is a social media site that is devoted to connecting creative people and inventors with people who might contribute funds toward realizing their proposed projects.
Here are the two projects that have caught our attention. The first is inventor Ryan Frayne's Windcatcher project, which features some unique inflator technology.
We think that anyone who has ever blown up a children's pool float or an air mattress will appreciate why this particular project has caught our attention.
Meanwhile, the second project we're considering is more of an artistic endeavor. Here, London-based designer Ilona Gaynor is planning an "extremely elaborate bank robbery", entitled "Under Black Carpets", which would involve the creation of sculptures, architectural models, technical drawings, films and photography depicting the simulated robbing of five major banks in downtown Los Angeles on a single day. The work is planned to be featured at the Lisbon Architecture Triennale later this year.
In a lot of ways, this project is similar to the various small film and movie projects that have been funded by Kickstarter, and we really like the idea of a museum exhibit dedicated to the execution of a crime, if only a fictional one. But then, we really liked the heist scenes in the remake of "The Thomas Crown Affair", so we might be somewhat biased....
Labels: investing
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.