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 U.S. Patent and Trademark Office has issued its 10,000,000th utility patent! To mark the occasion, the USPTO also introduced a new patent cover design.
On June 19, the U.S. Patent and Trademark Office will issue patent number 10 million—a remarkable achievement for the United States of America and our agency. More than just a number, this patent represents one of ten million steps on a continuum of human accomplishment launched when our Founding Fathers provided for intellectual property protection in Article 1, Section 8, Clause 8 of our Constitution.
Appropriately, patent number 10 million will be the first issued with a new patent cover design, which we unveiled in March at South by Southwest in Austin, Texas. It was created by a team of USPTO graphic designers including Rick Heddlesten, Teresa Verigan, and led by Jeff Isaacs. Like the numerical milestone, the new cover design celebrates both how far we have come and the new frontiers we have yet to explore.
So it will be prettier than its 9,999,999 predecessors. But we won't know more than that until U.S. Patent 10,000,000 is officially issued later today. We'll update this post after it has been released sometime after 9:00 AM EDT....
Update 9:45 AM EDT: It's been released - it's a laser detection and ranging system that has been issued to Raytheon!
Here's the abstract:
A frequency modulated (coherent) laser detection and ranging system includes a read-out integrated circuit formed with a two-dimensional array of detector elements each including a photosensitive region receiving both return light reflected from a target and light from a local oscillator, and local processing circuitry sampling the output of the photosensitive region four times during each sample period clock cycle to obtain quadrature components. A data bus coupled to one or more outputs of each of the detector elements receives the quadrature components from each of the detector elements for each sample period and serializes the received quadrature components. A processor coupled to the data bus receives the serialized quadrature components and determines an amplitude and a phase for at least one interfering frequency corresponding to interference between the return light and the local oscillator light using the quadrature components.
For applications, a LADAR system like the one described in the patent would have the capability of replacing radar as a means for detecting objects in flight or on the ground. For Raytheon, which manufactures both missile and anti-missile systems, such a system would be less vulnerable to detection, which would make the company's bread and butter products less vulnerable to attack while remaining very capable of detecting and targeting threats.
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.