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
Quick, think of a classic clock!
You most likely have pictured a circular disk with a long and short needle-like "hands" mounted at the center that rotate at different speeds around a face with numbers marked on it. The slower rotating short hand points to the number that corresponds to the hour of the day, while the faster rotating long or big hand indicates the number of minutes that have elapsed during the hour.
The form factor of this kind of mechanical clock has been established over centuries. So much so that we use the word clockwise to describe the direction of rotation of any motion that is similar to how a clock's hands move.
The basic design of a clock has really only been challenged in more recent decades with the advent of digital technology, which replaces the sweeping hands with numbers that change to indicate the time as the minutes and hours tick by. The latest innovation down this line are the so-called smart watches that are little more than miniaturized computers and screens, whose pixels are used to simulate either the sweeping of mechanical clock hands or the ever-changing numbers of a digital clock display when used to indicate the time.
But should our concept of how clocks work be limited to these established designs? We came across two Kickstarter projects featuring unique clockwork mechanisms for watches that rethink how people might go about reading a clock to tell the time. While both projects are still actively funding, with about two weeks left to go, they have both achieved their funding goals, which means the watches will be produced.
The first concept we found interesting is the STRUC Time Shuttle Mechanical Watch. Designed by Hong Kong's StrucWatches, the watch aims to redefine how to read a clock. The following video presents the design which fits the equivalent of three clocks onto a single watchface, one telling the current time, the other two indicating the time one hour before and one hour into the future:
Putting so much information onto a single clock face makes for a intricate time-reading experience, so when we came across a second clockface redefining watch on Kickstarter, Svalbard's HX15/HX16 developed by Sergey Kozhukhov, we couldn't help but be impressed with its greatly simplified presentation that resembles a speedometer gauge. Here's the video introducing the project:
What makes Kozhukhov's watch fascinating is its combination of digital-like number to indicate the hour with the mechanical clock's minute hand that ticks clockwise from 0 to 60 to indicate the elapsed minutes of the hour before sweeping backward to zero at the beginning of a new hour.
The cool thing about both watches is that they're not just time telling devices, but conversation pieces. Both Kickstarter projects will be funding up until sometime on 6 September 2025.
Labels: ideas, 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.