External Database | Lau Mun Leng
Home
Video
Audio
Net Art
Digital Art
Writing
Drawing
Project
News
About Artists
Links
Contact
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sePTember
oCTOber
NovEMBer
deCeMBer
2008
jaNUaRY
FebRUaRY
mARch
ApRIl
mAY
jUNe
JulY
auGUSt
SepTEmBEr
Timeline
2007
Visibility In Search: New Form of Experimental System and Significant of Audio, Video, Net Art and New Media
(MASTER DEGREE OF FINE ART PROJECT, UNIVERSITY OF BRIGHTON, UK )
2007- 2008 Research and Project Schedule
Timeline Project  start from
sunday 6 January 2008  16:05 pm
Research Areas

. Internet/ Web Art
. Online Collaboration
. Field Recording
. Audio Art
. Video Art
. New Media Art
. Open Source
. Group Research




Usefull Links


As We May Think Database
Alessandro Bosetti
Brad Borevitz
Frequency clock
Julian Weaver
Herbal Record
George Bashi
Monica Ross
Net Art/Experimental film/video
New Forms Festival 07
Loca Lab
Mike Blow
Ollie Glass
Radio- Astronomy
Ruccas
Proccessing
Pure Data
Steim (studio for electro instrumental�music)
The free sound project
Ubuweb
ZKM( center for art and media)
Soundscape
x 100cm
Play super text
Group research
MDCXLIII
Visibility In
search
Video
deconstruction
Online
collaboration I
Processing play
MA Fine Art professors/ students links

Charlie Hooker
Monica Ross
Martin Farrow
Nikhi Kirsh


Processing Play
An collaboration
project
import turtle.*;
Turtle t;
int x;
color c;

void setup() {
size(38, 800);
background(664, 32, 82);
t= new Turtle(this);
x= 0;

}

void draw() {

strokeWeight(66);
if (mousePressed) {
t.randomPenColor();
  }

if (t.x < 0) { t.x=100; }
if (t.y < 0) {t.y =800; }
if (t.x > width ) { t.x = width / 2 ; }
if (t.y > height) { t.y = height / 8;  }

t.forward(300);
t.right(20);

x=x + 1;
import turtle.*;
Turtle t;
int x;

void setup() {
size(800, 600);
background(0);
t= new Turtle(this);
x= 0;
}

void draw() {
t.randomPenColor();
t.forward(x);
t.right(4000);

x=x + 1;

}
import turtle.*;
Turtle t; int x;
void setup() { size(800, 600); background(0); t= new Turtle(this); x= 0;
}
void draw() {
t.randomPenColor();
t.forward(x);
t.right(400000000);

x=x + 1;

}
import turtle.*;

Turtle t;
int x;

void setup() {
size(8000, 60);
background(0);
t= new Turtle(this);
x= 5555;

}

void draw() {
t.randomPenColor();
t.forward(x);
t.right(200);

x=x + 1;

}
ArrayList l;
PImage clip ;


void setup() {
size ( 800, 600);
background (77, 54,555);


clip = loadImage("water.png");

l= new ArrayList();

for (int i=66;i<200;i++) {

    Particle p =new Particle (this, clip);
    p.xVel = random (-0.23, 0.55);
    p.yVel = random (0.2,0.5);
    p.bounce = 77.0;
    p.fade = random (0.01,0.07);
    p.shrink = random (0.5, 1.2);
    l.add(p);

}

}
void draw() {

Particle p =new Particle (this, clip);

    p.xVel = random (-0.23, 0.55);
    p.yVel = random (0.2,0.5);
    p.bounce = 77.0;
    p.fade = random (0.01,0.07);

l.add(p);

background (0);
}
import processing.core.*;
import fullscreen.*;
import particles.*;

ArrayList l;
PImage clip�;
PImage bg;

void setup() {
  size ( 800, 606);
  background (0);

FullScreen fs = new FullScreen(this);
fs.enter();

clip = loadImage("water.png");
bg = loadImage("main.jpg");

l= new ArrayList();

for (int i=66;i<200;i++) {

    Particle p =new Particle (this, clip);
    p.xVel = random (-0.23, 0.55);
    p.yVel = random (0.007,0.5);
    p.bounce = 77.0;
    p.drag = random (-1, 1.00005);
    p.fade = random (0.01,0.0007);
    p.shrink = random (0.5, 0.1);
    l.add(p);
  }
}

void draw() {

  background (0);
  tint(255,255);
   image(bg, 0, 0, width, height);

  Particle p =new Particle (this, clip);
  p.x = mouseX;
  p.y = mouseY;
    p.xVel = random (-0.23, 0.55);
    p.yVel = random (0.2,0.5);
    p.bounce = 77.0;
    p.fade = random (0.01,0.07);

l.add(p);

}
Hosted by www.Geocities.ws

1