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
In a long overdue development, Whooshh Innovations has developed a pneumatic transport system for salmon, facilitating their migration upriver around natural and manmade obstacles.
Dams are one of the biggest problems for fish that undertake migrations, like salmon. If a big wall blocks the route to breeding or feeding grounds, that can spell doom for the fish. And the existing mitigation measures, such as fish ladders, aren't very effective solutions.
Enter the salmon cannon. As ridiculous as it sounds, one group of entrepreneurs from a company called Whooshh Innovations thinks that shooting fish down a tube and then firing them into the air could be a solution for helping fish like salmon overcome migration barriers. CNET explains the salmon cannon's methodology:
It works a little like a pneumatic tube. Fish go in one end, and the soft fabric of the tube forms a seal around the body of the fish, creating a vacuum, which in turn propels the fish through the tube at a speed of around 5 metres to 10 metres per second (11 mph to 22 mph).
The tube was originally designed for transporting fruit, but based on successful results from initial tests, CNET continues, the design work just as well on live fish. The salmon don't seem to mind the experience, either. If given the opportunity, CNET writes, the fish will swim into the tube themselves, and when they emerge on the other side, they go about their business as if they hadn't just been fired through the air at 22 mph.
Fortunately, in the YouTube age, there's a video....
Every day, we get a little closer to realizing the ultimate dream for public transportation: the Tube Transport System:
Must we wait another thousand years?
Labels: technology
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.