User:Mathijs van Oosterhoudt/formula: Difference between revisions

From XPUB & Lens-Based wiki
No edit summary
No edit summary
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
<nowiki>data = find_data();
        #include human_compiler
 
       
if(data == analogue){
        data = find_data();       //Find interesting or fascinating sets of data, or acquire through input.
digitize(data);
       
}
        if(data == analogue){
 
                digitize(data);       //If this data is analogue, digitize it.
randomchoice = random(3);
        }
 
       
if(randomchoice == 1){
        loop{
        create(algorithm);
       
mix(data, algorithm);
                choice = decide(3);
}
       
 
                if(choice == 1){
if(randomchoice == 2){
                        create(algorithm);       //Create an algorithm that is linked to the data.
alter(data);
                        mix(data, algorithm);       //Mix the data using this algorithm.
}
                }
 
       
if(randomchoice == 3){
                if(choice == 2){
        create(algorithm);
                        alter(data);       //Alter the data in a way linked to the data.
alter(mata);
                }
mix(data, algorithn);
       
}
                if(choice == 3){
 
                        create(algorithm);       //Create an algorithm that is linked to the data.
combine(data);
                        alter(mata);       //Alter the data in a way linked to the data.
 
                        mix(data, algorithn);       //Mix the data using this algorithm.
analogueize(data);
                }
 
       
present(data);</nowiki>
        }
 
       
------
        combine(data);       //Combine these sets of data.
 
       
#1 Find any interesting form or collection of data.
        analogueize(data);       //Convert it to analogue data.
#2 If analogue, digitize.
       
#3 Create an algorithm that mixes and matches this data, possibly altered.
        present(data);       //Present this data in an analogue matter.
#4 Present combinations in an analogue matter.

Latest revision as of 12:33, 24 April 2013

       #include human_compiler
       
       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{
       
               choice = decide(3);
       
               if(choice == 1){
                       create(algorithm);        //Create an algorithm that is linked to the data.
                       mix(data, algorithm);        //Mix the data using this algorithm.
               }
       
               if(choice == 2){
                       alter(data);        //Alter the data in a way linked to the data.
               }
       
               if(choice == 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.