cornell

Review of "Sudden Sound"

I meant to post this a while back, but what follows is a short review I wrote of a performance that took place at Cornell in early October with some well-known free-improv performers.

Tim Hodgkinson, clarinet
Chris Cochrane, guitar
Miguel Fasconi, glass objects

Barnes Hall, Cornell University, 3 October 2011, 8PM

“Sudden Sound”

In this, their first public presentation as a trio, Tim Hodgkinson, Chris Cochrane, and Miguel Fasconi gifted a performance of subtle intensity. Each one is prominent in his own right, with Iancu Dumitrescu, Anna-Maria Avram, Bob Ostertag, Ikue Mori, and Morton Subotnik among their combined set of collaborators. Hodgkinson performed on his trademark clarinet, Cochrane on guitar, tuning fork, pedals, and diminutive amplifier, and Fasconi amongst a set of fragile, yet resilient, glass objects carefully spaced on a closely miked table. This disparate arrangement nevertheless produced a superposition of abilities that never brought too much attention to any individual. The “Sudden” of the concert’s title referred not to contrasts in amplitude but rather to immediacy, to prompt relationships formed between the performers. Even when playing separately, their restraint enabled a certain resonance to be shaped between them, the attentive audience, and the prior sounds resting in the air.

Onstage in Cornell University’s Barnes Hall, under the nighttime shadow of an ivory tower, the first half wove a set that continually pushed against its limit, playing the weft of rhythmic gestures against the warp of held tones. Sensitivity ruled, as each took time to let the other two mesh their phrases together. Cochrane’s looped rhythms became linked to Fasconi’s playing of two undulated glass plates against each other, with unvoiced clicking keys on Hodgkinson’s clarinet completing the gesture. Electromagnetically-induced vibrations in guitar strings became multiphonic squeals became frenetic ringing of water filled-cognac glasses tilted to change their frequency. At one point Fasconi shook matroyshka doll-like fragments of glass, producing not only a rhythmic base but also a pulverized cloud of fragments dissipating into the air. Even at its most energetic there was restraint, waiting, letting things be.

The second set moved through a series of solos. Fasconi began at the rear of chapel-like hall, coaxing wispy phrases out of a hollow glass tube submerged in a flask. Returning to the stage, he blew into a coiled glass tube, at times letting the gurgle of sloshing water reverberate. Cochrane provoked the audience through feedback-snarled riffs that stood in direct contrast to what was already in the air; yet he massaged these wails into a harmonious dronescape that would make the Theatre of Eternal Music proud. Hodgkinson slowly meandered about the stage, his multiphonics being picked up by the mics scattered about and thus creating a wonderful phasing effect. Returning as a trio they became more animated with less room to breathe. Cochrane’s tuning fork rumbled against his pickups while Hodgkinson raced between registers. Fasconi’s screeching glass-on-glass induced a visceral reaction akin to fingernails on a chalkboard. Nevertheless, using mallets to ring tuned cylinders, he induced haunting bell-like sounds that, closing the performance, counteracted the deadening effect of the ever-present carillon in the tower outside.

Replace library form

Using: 
Greasemonkey, user script compiler
Year: 
2009

Because it is unclear what the privacy policies of worldcat.org are, especially with regards to data retention and level of compliance under the Patriot act, it is all the more heinous that the Cornell Libraries has instituted a new form that defaults to sending all searches through worldcat.org. These searches thus leave the confines of the Cornell campus network and are sent in plaintext over the web, open to interception by anyone.

All the more, the worldcat.org results are less useful (requiring clicks on each item to see its location and status, rather than on the search results themselves under the “classic” catalog), use unnecessary AJAX to load the book’s status, are nearly 7 times as large as the “classic” results, and link the library to commercial entities (not local ones) for the “ability” to purchase books. All these aspects are at cross purposes to the mission of the library and the search form on the library website, namely whether or not the book is located at the library and if so, where it is.

Thus this script, also available in a standalone version, that replaces the “new” worldcat.org interface with the older “classic” interface, thus negating the need to click multiple times in order to protect your privacy.

Greasemonkey Userscript

// ==UserScript==
//  ==@==name   Replace Library Form
//  ==@==namespace      http://zeitkunst.org
//  ==@==description    Replace the worldcat form with the "classic" one
//  ==@==include        http://www.library.cornell.edu/
//  ==@==include        http://*.library.cornell.edu
//  ==@==version        0.1.4
// ==/UserScript==

window.addEventListener(‘load’,
    function() {
        divToReplace = document.getElementById("quick-search");
        divToReplace.innerHTML = "<form name=\"querybox\" action=\"http://www.library.cornell.edu/script/opac-redirect.php\" method=\"get\"><h2>for</h2> &nbsp;&nbsp; <span class=searchForm> <input size=\"25\" name=\"Search_Arg\" id=searchInput> <select name=\"Search_Code\" size=\"1\"> <option selected value=\"TALL\">Title</option> <option value=\"JALL\">Journal Title</option> <option value=\"ISSN\">Journal Title Abbreviation</option> <option value=\"NAME_\">Author</option> <option value=\"SUBJ_\">Subject Heading</option> <option value=\"CALL_\">Call Number</option> <option value=\"AUTH\">Author—Sorted by Title</option> <option value=\"FT*\">Relevance Keyword</option> <option value=\"CMD\">Command Keyword</option> </select><input type=\"hidden\" value=\"1\" name=\"HIST\"/><input type=\"hidden\" value=\"10\" name=\"CNT\" /><input style=\"margin-left: 5px\" type=\"submit\" value=\"Search\"/></span></form><div id=\"classic-catalog-tab\" class=\"advanced-search\"> <a href=\"http://catalog.library.cornell.edu\">Classic Catalog</a></div><div class=\"advanced-search\"><a href=\"javascript:void(0);\" id=\"toggleExplanation\">Explain what’s going on</a></div><div class=\"advanced-search\" style=\"font-size: smaller\"><div id=\"replaceLibraryFormExplanation\" style=\"display: none\">Don’t use the new library catalog!<br/>There are privacy concerns when using worldcat.org,<br/>the new search results page is less useful, and<br/>purchasing books through affiliate links of <br/>multi-national corporations goes against the library’s core mission.<br/>  Only use the classic catalog!</div></div>";

        // See this page for accessing the jquery "$" element:
        // http://jimbojw.com/wiki/index.php?title=Using_Prototype_and_Scriptaculous_with_Greasemonkey

        $ = unsafeWindow[‘window’].$;

        // we use the jquery toggle function to display or hide the explanation
        $(‘#toggleExplanation’).click(function() {$(‘#replaceLibraryFormExplanation’).toggle();});
    }

, true);
Images: 
Replace library form
Syndicate content