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
Gaining the ability to fly is one of the oldest dreams of human beings. It can be found in the ancient Greek myth of Icarus. In that story, all Icarus needs to fly is a pair of wings made with feathers attached by wax. But what starts as myth becomes a cautionary tale. Icarus flies too high, too close to the sun. The sun's heat melts the wax attaching the feathers to the wings, causing them to fall out. When too many feathers detach, Icarus stops flying and starts falling. It all ends quite tragically.
It's only been in last dozen or so decades that human beings have learned to fly safely. The U.S. Patent Office has issued hundreds of patents related to that achievement. But what most of those patents describe is not the kind of flight humans dream about. A dream of flying requiring minimal gear and nothing more than jumping from the ground before the experience of soaring in the air for as long as desired before gently touching down again at the end of flight. There's no falling involved. Certainly nothing like what happened in Icarus' story.
There may be hundreds of patents related to flight, but U.S. Patent 4,457,509, issued to Jean St-Germain in 1984 is the one that has come the closest to delivering making it possible for humans to have that long-dreamt experience of flight. Enter the Levitationarium!
Given the scale of the figure, it may be tough to see the people entering the Levitationarium and engaging in flight, so we added some color to help locate them. Here's the patent's abstract, which describes St-Germain's inventive vision:
An installation such as in the form of a building having a room or chamber in which an upward air flow is produced to levitate human beings. This installation, herein called a levitationarium, is constructed and arranged to be simple, safe and economic to operate in particular by comprising a blowing propeller that is shrouded and arranged to produce an induced suction flow in an annular air passage around it, under the action of the direct flow by the propeller inside the shroud; by having a toroidal air passage arranged for closed circuit streamline air flow serially through it and the levitation chamber; and by including a toroidal core portion interposed between the levitation chamber and the toroidal air passage and providing a spectator gallery and access to the levitation chamber.
It's not the fully free flight of which humans have always dreamed, but its not that far from it. Today, levitationariums are places you can go to experience it.
Although they're not called levitationariums. You'll find them advertised as "indoor skydiving" or "vertical wind tunnel" facilities in several dozen cities across the U.S. Check out the following 2016 video from iFly Westchester in Yonkers, New York, where the modern incarnation of St-Germain's invention appears to live up to the hype:
At this writing, booking a two flight experience can be done as at offpeak times for as low as $75 at the Yonkers location, the price at peak times is $105.
That's a bargain. Just try to make your own pair of waxy wings for less than that these days.
The IIE team has a long history with things that either fly or float through the air. Here's a short list:
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.