{"id":1145,"date":"2021-09-26T13:50:09","date_gmt":"2021-09-26T01:50:09","guid":{"rendered":"https:\/\/bestir.red\/?page_id=1145"},"modified":"2022-07-11T20:07:22","modified_gmt":"2022-07-11T08:07:22","slug":"213-157-independent-study-session-9-2","status":"publish","type":"page","link":"https:\/\/bestir.red\/?page_id=1145","title":{"rendered":"213.157 Independent Study Week #9.2"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Wiki tua iwa, Akomanga tua rua<\/h2>\n\n\n\n<h2 class=\"wp-block-heading\">Task<\/h2>\n\n\n\n<p> Considering the works of Hanne Lippard (5) and Rebecca Ann Hobbs (6). <\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">IND: Use the other artist\u2019s method to produce your own work. Document both resulting works and archive into your workbook\/blog<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">5th Artist: Hanne Lippard<\/h3>\n\n\n\n<figure class=\"wp-block-pullquote\"><blockquote><p>That\u2019s what I like about my practice\u2014I can delve into other realms, I can find myself suddenly in a more music-oriented world or in literature and so on. I don\u2019t think painters and sculptors can do it the same way, or as easily at least.<\/p><cite>Glow, Tone. \u2018Tone Glow 056: Hanne Lippard\u2019.&nbsp;<em>Tone Glow<\/em>, 21 Mar. 2021, https:\/\/toneglow.substack.com\/p\/056-hanne-lippard.<\/cite><\/blockquote><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Response<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">&#8220;Postmodernism&#8221; &#8211; an app<\/h4>\n\n\n\n<p>This app responds to speech, particularly the word &#8220;postmodernism&#8221;. You will need to give your web browser permission to use your microphone. If you click the app, it will play an audio clip of Hanne Lippard saying variations on &#8220;postmodernism&#8221;, and the app will react to that too (via your microphone hearing your speakers, for now). The audio clip is undoubtedly copyright Hanne Lippard, 2011.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>\r\n<div class=\"p5js-embed-container\" style=\"padding-bottom: 33.333333333333%;\">\r\n\t<iframe plugin=\"p5js\" src=\"https:\/\/bestir.red\/wp-content\/uploads\/p5js\/pm\/\" id=\"p5js-iframe-8745\" style=\"border: solid 1px #aaa\" class=\"p5js-iframe\" name=\"p5js-iframe-8745\" scrolling=\"no\" allowfullscreen><\/iframe>\r\n<\/div>\r\n\t\t<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Sourcecode<\/h4>\n\n\n\n<p>For those that care about this sort of thing, the program is written in P5JS and is hosted in my WordPress instance courtesy of the &#8220;Responsive P5JS for WP&#8221; plugin by Rolf van Gelder.<\/p>\n\n\n\n<pre title=\"index.html\" class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;html&gt;\n&lt;head&gt;\n    &lt;meta charset=\"UTF-8\"&gt;\n    &lt;script language=\"javascript\" type=\"text\/javascript\"\n        src=\"https:\/\/cdn.jsdelivr.net\/npm\/p5@1.4.0\/lib\/p5.min.js\"&gt;&lt;\/script&gt;\n    &lt;script language=\"javascript\" type=\"text\/javascript\" src=\"https:\/\/cdn.jsdelivr.net\/npm\/p5@1.4.0\/lib\/addons\/p5.sound.min.js\"&gt;&lt;\/script&gt;\n    &lt;script language=\"javascript\" type=\"text\/javascript\" src=\"p5.speech.js\"&gt;&lt;\/script&gt;\n    &lt;script language=\"javascript\" type=\"text\/javascript\" src=\"sketch.js\"&gt;&lt;\/script&gt;\n&lt;\/head&gt;\n&lt;body&gt;&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<pre title=\"sketch.js\" class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">var soundFile;\n\nvar myRec = new p5.SpeechRec('en-GB', parseResult);\nmyRec.continuous = true;\nmyRec.interimResults = true;\n\nfunction preload() {\n    soundFile = loadSound('.\/Postisms.mp3');\n}\n\n\nfunction setup() {\n    \/\/ graphics stuff:\n    createCanvas(600, 200);\n    background(255, 255, 255);\n    fill(0, 0, 0, 255);\n\n    getAudioContext().suspend();\n    soundFile.play();\n\n\n    \/\/ instructions:\n    textSize(32);\n    textAlign(CENTER);\n    text(\"say something\", width \/ 2, height \/ 2);\n    \/\/myRec.onResult = showResult;\n    myRec.start();\n}\n\nfunction draw() {\n    \/\/ null (just uses a callback)\n}\n\nfunction parseResult() {\n\n    var mostrecentword = myRec.resultString.split(' ').pop();\n    if(mostrecentword.indexOf(\"postmodernism\")!==-1) {\n        background(255, 0, 0);\n    } else {\n        background(192, 255, 192);\n    }\n\n    text(myRec.resultString, width \/ 2, height \/ 2);\n    console.log(myRec.resultString);\n}\n\nfunction mousePressed() {\n    userStartAudio();\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">6th Artist: Rebecca Ann Hobbs<\/h2>\n\n\n\n<figure class=\"wp-block-pullquote\"><blockquote><p>\u201cI am completely preoccupied with music, dance and place at the moment, for example how do all things Dancehall, which originates in Jamaica, become manifest when the culture is practiced in a South Auckland locale?\u201d<\/p><cite>\u2018Rebecca Ann Hobbs\u2019.&nbsp;<em>CIRCUIT Artist Film and Video Aotearoa New Zealand<\/em>, 12 Dec. 2011, https:\/\/www.circuit.org.nz\/artist\/rebecca-ann-hobbs.<\/cite><\/blockquote><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Response<\/h3>\n\n\n\n<p>Did not complete this. Was making a video, took images of beach, was trying to sync them to a music track but the technology defeated me.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Wiki tua iwa, Akomanga tua rua Task Considering the works of Hanne Lippard (5) and Rebecca Ann Hobbs (6). IND: Use the other artist\u2019s method to produce your own work. Document both resulting works and archive into your workbook\/blog 5th Artist: Hanne Lippard That\u2019s what I like about my practice\u2014I can delve into other realms, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":759,"menu_order":24,"comment_status":"closed","ping_status":"closed","template":"templates\/template-full-width.php","meta":{"footnotes":""},"class_list":["post-1145","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/bestir.red\/index.php?rest_route=\/wp\/v2\/pages\/1145","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bestir.red\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/bestir.red\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/bestir.red\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/bestir.red\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1145"}],"version-history":[{"count":20,"href":"https:\/\/bestir.red\/index.php?rest_route=\/wp\/v2\/pages\/1145\/revisions"}],"predecessor-version":[{"id":1919,"href":"https:\/\/bestir.red\/index.php?rest_route=\/wp\/v2\/pages\/1145\/revisions\/1919"}],"up":[{"embeddable":true,"href":"https:\/\/bestir.red\/index.php?rest_route=\/wp\/v2\/pages\/759"}],"wp:attachment":[{"href":"https:\/\/bestir.red\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1145"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}