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. Civil War was a pivotal period for innovation within the United States. In no small measure, the conflict accelerated the country's shift from an agrarian to an industrial society.
Coming out of a time of warfare, many Civil War's notable innovations focused on potential military applications. On that count, C.M. French and W.H. Fancher's innovation does not disappoint. U.S. Patent 35,600 brings the fight to the farm in the form of a small cannon built into a farmer's horse- or oxen-pulled plow. Figures 1 and 2 from the patent's illustrations, which we've colorized, show their concept for combining combat and field planting.
French and Fancher describe the aim of their invention in the patent:
The object of our invention is to produce a plow equal, if not superior, in point of strength and lightness to that implement as ordinarily made, and at the same time to combine in its construction the elements of light ordnance, so that when the occasion offers it may do valuable service in the capacity of both implements.
Better still, they describe how their concept reshaping a plowshare into proverbial sword for combat might be deployed:
As a piece of light ordnance its capacity may vary from a projectile of one to three pounds weight without rendering it cumbersome as a plow. Its utility as an implement of the twofold capacity described is unquestionable, especially when used in border localities, subject to savage feuds and guerrilla warfare. As a means of defense in repelling surprises and skirmishing attacks on those engage in a peaceful avocation it is unrivaled, as it can be immediately brought into action by disengaging the team, and in times of danger may be used in the field, ready charted with its deadly missiles of ball or grape. The share serves to anchor it firmly in the ground and enables it to resist the recoil, while the hand-levers A furnish convenient means of giving it the proper direction.
This combination enables those in agricultural pursuits to have at hand an efficient weapon of defense at a very slight expense in addition to that of a common and indispensible [sic] implement, and one that is hardly inferior as regards the means of moving, planting, and directing to that of expensive light ordnance on wheels.
U.S. Patent 36,500 isn't the only example of a firearm being mounted onto a farmer's plowshare. The patent makes clear the invention is an "improvement in combined plow and gun", which means there were other examples of this kind of field artillery that came before it, though we didn't find any similarly patented inventions predating it in the U.S. Patent Office's database.
We also didn't find any contemporary accounts of armored plows being used in combat during the conflict, but can only imagine the sheer number of gophers that met their end after finding themselves on the business end of French and Fancher's plow.
The IIE team has previously covered one other plow related innovation, a truly innovative snowplow:
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.