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 2004, biologist Jose Iriarte-Diaz conducted a legendary research project in Chile. Iriarte-Diaz wanted to study how dinosaurs moved, but their extinction some 66 million years earlier hampered his research. The closest he could come was to study how birds walk.
And there lay a new problem. Millions of years of evolution had so changed the anatomy of these surviving descendants of the dinosaur species of old that how they walk would be very different from how dinosaurs walked.
Take today's chicken for example. Here, evolution has conspired to significantly change the body of the species. Unlike their theropod ancestors, chickens lack long tails, which significantly changes their mass and center of gravity, which would have a big impact on how they move.
But then, Iriarte-Diaz hit on a genius idea. What if he could create a prosthetic tail for chickens, then train them to walk with it. He could then compare how both regular chickens and the prosthetic tail-wearing chickens move, where he hypothesized the prosthetic tail-wearing chickens would move like dinosaurs would have. Here's how a press release from the University of Illinois Chicago, where he finally published his research in 2014, described his experiment:
Studying a group of 12 domestic chickens, Iriarte-Diaz used modeling clay to attach a tail — a wooden stick — to the chickens two days after hatching. He changed the tail every five days as the chickens grew, then compared their movements to his control subjects, chickens without tails.
His research suggests that dinosaurs walked more like humans, with a vertical stance and most of the movement in the hips. Chickens without the experimental tails showed more horizontal movements, with the knees doing most of the work.
He also recorded video of the dinosaur tail-wearing chickens and uploaded them to YouTube:
In 2015, Iriarte-Díaz' and his colleagues' work captured the imagination of the Ig Nobel Prize committee, which awarded them the Ig Nobel Biology Prize for their published research.
But the story doesn't end there.
Flash forward to 2026. Allen Pan is a Science and Engineering YouTuber who has drawn popular attention for various devices he's created over the years. He wondered if it would be possible to build an articulated tail prosthetic device for a chicken that might be more realistically dinosaur-like than the static ones Iriarte-Diaz crafted for his biomechanical research. The next video presents Pan's development of the improved prosthetic dinosaur tail and the results from tests conducted with adult chickens:
Pan's 3D-printed articulating dinosaur tail resulted in a chicken almost immediately adopting the kind of dinosaur-locomotion methods it took the chickens that Iriarte-Díaz' and his colleagues' raised and extensively trained from hatched egg to adult bird to produce. It's not just a replication of the Iriarte-Díaz' dinosaur tail prosthetic, but a genuine improvement beyond it utilizing multiple levels of innovations.
In both cases, the dinosaur tail prosthetics represent a fantastic example of outside-the-box thinking.
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.