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 American Council on Science and Health has published a guide to many of the various kinds of junk science that often makes the news: The Little Black Book of Junk Science!
The book was written by the ACSH's Dr. Alex Berezow, who contributed two of the examples that we covered as part of our Examples of Junk Science series that primarily focused on pseudoscience in finance, economics and social sciences.
The Little Black Book of Junk Science however focuses more on where junk science is to be found in the fields of nutrition, biology, medicine and chemistry, which are the fields where the ACSH's staff has expertise. Here's a quick sampling what we thought were some of the book's more fun-related content:
Vaginal steaming
Endorsed by actress Gwyneth Paltrow, vaginal steaming claims if a woman sits over steaming water made with certain herbs, it will balance her hormones and help her uterus. A review declared it "sorcery for your vagina."Toilets
The reason your toilet doesn't work is because our government passed a law restricting flushes to 1.6 gallons each. Junk science claims that this is necessary to conserve water, even though water is not a scarce resource in most of the United States. It's also recycled efficiently in our sewage systems.
Genetic ancestry
Genetic ancestry tests use a small dash of science and a heaping scoop of speculation. Though your DNA contains information about your biogeographic ancestry, some commercial genetic ancestry tests may be little more than horoscopes. If you want to predict whether you will like cilantro or not, they are fine.
Earthing
Earthing is the belief that running around barefoot somehow connects you to Earth's energy, which will improve your health. The exact opposite is true. We invented shoes because it protects our feet from injury and infection. Tell the neighborhood hippies to put their sandals back on.
Colon cleansing (Colon hydrotherapy)
Liquids go in your mouth, not in your butt. Unless you're constipated, there is no reason to give yourself an enema. Your body naturally detoxifies itself.
You can get the book in one of two ways. You can download a PDF version of the book for free or you can buy a physical copy from Amazon. Of the two, we'd recommend the physical copy, just so you can leave it sitting out where that special someone you know who can use this kind of information will see it!
Labels: junk science, review
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.