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 purpose of patent illustrations is very straightforward. They are intended to visually convey the novel features of an invention. Consequently, they tend to make for pretty dull, static presentations, even for inventions that themselves are dynamic in operation.
That's why the Inventions in Everything team gets excited whenever we come across a patent with illustrations that tell how an inventor conceives their invention will function through a sequence of illustrations. Or as we're about to see with U.S. Patent Number 5,781,936, which was issued to Jacob Alaloof on 21 July 1998, where a single figure from a patent tells an entire story. In this case, how the invention of an airbag suit for motorcyclists would function to protect their lives in an accident. The story is told from right to left....
Here is the background of the invention describing the problem the invention is intended to solve:
It is generally recognized that there is a greater risk of serious injury to motorcyclists in the case of an accident than to automobile passengers. This is due, inter alia, to the fact that, unlike automobiles, motorcycles are not equipped wiht protective systems which enclose users thereof. Accordingly, apart from injuries that may be caused to a motorcyclists by his colliding directly with a moving vehicle or stationary object, there is also a very high risk that, in the event of a collision between a motorcycle and either another vehicle or a stationary object, he will be thrown from the motorcycle. When this happens, the motorcyclist is liable to sustain fatal injuries or, at least, very serious damage to vital parts of the body, especially to the back, spine, neck and pelvis. This can result in very serious injurty thereto, if not paralysis or death.
And here's the description of the invention itself:
The present invention seeks to provide a protective system for riders of nonenclosed vehicles. The protective system is in the form of a garment which is automatically inflated to a force dissipating or deflecting shape in response to unintentional separation of the rider from his vehicle.
We would say the patent illustration ably captures both the scenario of the problem the invention is intended to solve and the solution.
Motorcyclist airbag suits are a real thing, which though not yet widely in use, have become more so during the past two decades as the technology has evolved toward greater practicality. FortNine's Ryan Kluftinger does a fantastic job of explaining the physics and the psychology of using an inflatable airbag suit while riding a motorcycle in the following under 10 minute video, which also provides a nice survey of today's state of the art in this invention category:
Here's a selection of previous inventions the IIE team has covered involving related technologies:
"Fishing for Boats" presents our animation of the patent illustrations provided in U.S. Patent 7,744,313.
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.