01.07.2020 Views

SODA WORKS 2011

In "New Performance Work 2011", the nine 2012 graduates of the masters programme Solo Dance Authorship critically reflect on the conditions of performance creation and production. Whilst doing so, the group questions preconceived notions of authorship through the practical workshops and table discussions they had over the course of their studies. The publication of their results hopes to present a glimpse of their artistic work and ideas, and highlights the influence of the community that the artists operate within.

In "New Performance Work 2011", the nine 2012 graduates of the masters programme Solo Dance Authorship critically reflect on the conditions of performance creation and production. Whilst doing so, the group questions preconceived notions of authorship through the practical workshops and table discussions they had over the course of their studies. The publication of their results hopes to present a glimpse of their artistic work and ideas, and highlights the influence of the community that the artists operate within.

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

To this end, further interaction with this experiment may be possible through further development<br />

of the KSSSQG code in two ways.<br />

1) Build a simple interface for directly editing the handle, verb and subject sets. This would<br />

allow for users to generate their own lists of divergent questions. Users would be required<br />

to “split” their own questions, following the example question parts or the generator may<br />

not produce meaningful output.<br />

2) Build a more complex, smarter interface that takes a list of user input questions and<br />

attempts to “split” the questions in code. However, then the generator will no longer be<br />

simple or slightly stupid. This option is outside of the scope of the experiment. For now.<br />

Appendix 1: Programming code. Code is written in PHP. Pretty simple<br />

programming code. Comments are in green.<br />

//initialise the word sets of handles, verbs and subjects<br />

$handles = array(„How can I „, „What is it to „, „How can the audience „ . . . );<br />

$verbs = array(„specify „, „use divergent thinking as „, „be „ . . .);<br />

$subjects = array(„myself“, „the work“, „in performance“ . . .);<br />

//etc. etc.<br />

for ($i = 0; $i < 20; $i ++){<br />

//generate 20 questions at a time<br />

$question = $handles[ array_rand($handles) ] // pick a random handle<br />

. $verbs[ array_rand($verbs) ] // add a random verb<br />

. $subjects[ array_rand($subjects) ] // add a random subject<br />

. „?“; // it ain‘t a question without a question mark.<br />

print($question); //display the question<br />

print(„“); //new line. To keep the list a bit neat.<br />

}<br />

The script is available to run at:<br />

http://www.kidsthesedays.com.au/soda/question-generator.php<br />

Keith Lim<br />

19

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!