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
The Inventions in Everything team has seen a lot of really strange inventions over the years, but today's featured invention is the only one that truly creeps us out. Which is why we're featuring it just ahead of Halloween!
We're referring of course to U.S. Patent 112,550, issued to Robert J. Clay on 14 March 1871. If you read the patent, the description of the invention sounds rather innocent:
This invention relates to a new doll, which is provided with a concealed clock-work and mechanism, whereby its limbs are moved in imitation of those of a creeping baby while the doll itself is being propelled on the floor by concealed rotating wheels which support it. A very amusing toy is thus produced at small cost.
What could possibly be wrong with that? Well, the title of the invention is "Improvement in Creeping Dolls", which should start sending up warning flags on its own, but wait, there's more. Prior to 1880, in order to be issued a patent, inventors were required to submit a physical model of their invention as part of the patent examination process. The model Clay submitted of an "Improved Creeping Baby-Doll" still exists and is in the possession of the cryptkeepers at the Smithsonian Institute.
Think of every horror movie you've ever seen and let us know what your reaction would be if you suddenly saw this thing in action on the screen. Or better still, what if you saw it in your home, coming toward you?
"Pure nightmare fuel" is how the IIE team has come to describe this invention, where the patent's illustrations fail to do justice to what the real-life thing looks like.
Within a decade after it was delivered to the U.S. Patent Office, the U.S. Patent Office discontinued its requirement for inventors to provide models of their inventions, perhaps motivated by the possibility they might receive more things like the physical model of U.S. Patent 112,550.
We're being a bit facetious in saying that. In truth, the U.S. Patent Office started running out of space to store all the stuff they were getting, so they dropped the requirement except in the case of flying machines and perpetual motion machines, preposterous and impossible inventions that demanded a higher level of examination to be considered for a patent.
After the Wright brothers earned U.S. Patent 821,393 on 22 May 1906, the requirement for inventors of flying machines to deliver working models of their inventions to the U.S. Patent Office was dropped. But should you invent a perpetual motion machine, you will need to provide your working model to the U.S. Patent Office when you submit your patent application.
The IIE team is aware of other creepy inventions, but subjectively, we rank this one the creepiest. Pleasant dreams, and happy Halloween!
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.