User:Mathijs van Oosterhoudt/formula: Difference between revisions

From XPUB & Lens-Based wiki
No edit summary
No edit summary
Line 1: Line 1:




         data = find_data();
         data = find_data();       //Find interesting or fascinating sets of data, or acquire through input.


         if(data == analogue){
         if(data == analogue){
                 digitize(data);
                 digitize(data);       //If this data is analogue, digitize it.
         }
         }


         randomchoice = random(3);
         loop{


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


        if(randomchoice == 3){
                if(randomchoice == 1){
                create(algorithm);
                        create(algorithm);       //Create an algorithm that is linked to the data.
                alter(mata);
                        mix(data, algorithm);       //Mix the data using this algorithm.
                mix(data, algorithn);
                }
        }


        combine(data);
                if(randomchoice == 2){
                        alter(data);       //Alter the data in a way linked to the data.
                }


        analogueize(data);
                if(randomchoice == 3){
 
                        create(algorithm);        //Create an algorithm that is linked to the data.
        present(data);
                        alter(mata);       //Alter the data in a way linked to the data.
                        mix(data, algorithn);       //Mix the data using this algorithm.
                }


        }


----
        combine(data);        //Combine these sets of data.


        analogueize(data);        //Convert it to analogue data.


# Find any interesting form or collection of data.
        present(data);        //Present this data in an analogue matter.
# If analogue, digitize.
# Create an algorithm that mixes and matches this data, possibly altered.
# Present combinations in an analogue matter.

Revision as of 11:21, 24 April 2013


       data = find_data();        //Find interesting or fascinating sets of data, or acquire through input.
       if(data == analogue){
               digitize(data);        //If this data is analogue, digitize it.
       }
       loop{
               randomchoice = random(3);
               if(randomchoice == 1){
                       create(algorithm);        //Create an algorithm that is linked to the data.
                       mix(data, algorithm);        //Mix the data using this algorithm.
               }
               if(randomchoice == 2){
                       alter(data);        //Alter the data in a way linked to the data.
               }
               if(randomchoice == 3){
                       create(algorithm);        //Create an algorithm that is linked to the data.
                       alter(mata);        //Alter the data in a way linked to the data.
                       mix(data, algorithn);        //Mix the data using this algorithm.
               }
       }
       combine(data);        //Combine these sets of data.
       analogueize(data);        //Convert it to analogue data.
       present(data);        //Present this data in an analogue matter.