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
Once upon a time, in 2005, we wrote about Solare, architect Paolo Soler's ambitious concept of the Lean Linear City of the future, a city without cars and without urban sprawl. Robert Ipsen describes the basic concept of how a city might be successfully configured to achieve that result:
The first step is not design. The first step is choosing the spine.
The corridor comes before the city
The Lean Linear City is organized around an arterial spine. In the book, that spine is both technical and symbolic: high-speed rail, pedestrian circulation, utilities, energy distribution, civic access, and the shared metabolic infrastructure of the city are concentrated into a single linear system. The inhabited modules attach to it. Growth proceeds along it. The landscape outside it remains legible because the city has not spilled everywhere at once.
This is the crucial difference between a linear city and sprawl. Sprawl also grows outward, but it does so by multiplying roads, pipes, wires, parking lots, and private parcels in every direction. The lean linear form grows by intensifying a corridor. It accepts length while refusing dispersal. It says: if the city must extend, let it extend along a shared artery rather than dissolve into an asphalt mist.
It's the stuff of science fiction dreams. But in Saudi Arabia, it served as a foundation for a real-life megaproject: Neom. Here's a video introduction:
But it turned out to be a lot harder to execute than to draw up. The ambitious project has been severely scaled back. Matt Bevan of Australian Broadcasting Corporation (ABC) News looks at what happened to the city of the future in the following 13-and-a-half minute video:
That report was in 2024. But is "The Line", as the Neom megaproject is known, really dead? The two percent of the project that wasn't defunded is still going forward. Here's The B1M's video report on the city's project from December 2025, which digs into the construction challenges of actually building the linear city:
As conceived, the linear city is a bold vision of what the city of the future could be. Given the challenges of making the project viable, it might always be.
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.