User:Mathijs van Oosterhoudt/formula: Difference between revisions

From XPUB & Lens-Based wiki
No edit summary
No edit summary
Line 1: Line 1:
<nowiki>data = find_data();
<nowiki>


if(data == analogue){
        data = find_data();
digitize(data);
}


randomchoice = random(3);
        if(data == analogue){
                digitize(data);
        }


if(randomchoice == 1){
        randomchoice = random(3);
        create(algorithm);
mix(data, algorithm);
}


if(randomchoice == 2){
        if(randomchoice == 1){
alter(data);
                create(algorithm);
}
                mix(data, algorithm);
        }


if(randomchoice == 3){
        if(randomchoice == 2){
        create(algorithm);
                alter(data);
alter(mata);
        }
mix(data, algorithn);
 
}
        if(randomchoice == 3){
                create(algorithm);
                alter(mata);
                mix(data, algorithn);
        }


combine(data);
combine(data);

Revision as of 11:16, 24 April 2013

data = find_data(); if(data == analogue){ digitize(data); } randomchoice = random(3); if(randomchoice == 1){ create(algorithm); mix(data, algorithm); } if(randomchoice == 2){ alter(data); } if(randomchoice == 3){ create(algorithm); alter(mata); mix(data, algorithn); } combine(data); analogueize(data); present(data);


  1. 1 Find any interesting form or collection of data.
  2. 2 If analogue, digitize.
  3. 3 Create an algorithm that mixes and matches this data, possibly altered.
  4. 4 Present combinations in an analogue matter.