newspaper cubes

Nikolaus Gradwohl2011-06-24T05:29:00+00:00

My Day 24 Project for 30daysOfCreativity - newspaper cubes

read more ...

Drawing a Rose

Nikolaus Gradwohl2011-06-23T05:56:23+00:00

My Day23 project for 30DaysOfCreativity is a drawing I made from the photo of my Day10 project

a rose

read more ...

Row Row Row the boat ...

Nikolaus Gradwohl2011-06-15T05:08:32+00:00

my day 15 project for 30daysofcreativity - another felt-tip pen drawing

waves

read more ...

Lyrics word cloud

Nikolaus Gradwohl2011-06-13T09:03:23+00:00

My Day13-Project for 30daysofcreativity. I turned the Lyrics from one of my favourite beatles song into a world-cloud using PyTagCloud - guess which songtext I used :-)

read more ...

pencil drawing of my drawing-doll

Nikolaus Gradwohl2011-06-12T08:56:51+00:00

I made a pencil-drawing of my wooden drawing doll. This is my day 12 project for 30DaysOfCreativity

Drawing Doll

read more ...

Day 1 of 30 days of creativity

Nikolaus Gradwohl2011-06-01T06:00:41+00:00

I will participate in 30daysofcreativity again this year. So this is my creative thing for day 1:

read more ...

Worldmap Desktop Image

Nikolaus Gradwohl2011-05-05T05:17:25+00:00

Currently I'm writing some gis applications at work. As a by-product I made a Desktop background image from a world map.

Download the large version here

worldglow-Desktop preview

read more ...

leopard pencil drawing

Nikolaus Gradwohl2011-03-19T15:12:14+00:00

Permission to Smile

Nikolaus Gradwohl2011-03-10T02:39:51+00:00

permission to smile

print it, send it aroud or distribute it otherwise! grant the permission to smile to others too :-)

read more ...

Litte Pictureframe is Watching You

Nikolaus Gradwohl2011-03-06T04:46:00+00:00

I found a cheap digital picture frame at a local electronics store a while ago and searched a project for it. So i installed 60 jpegs with eyes looking in different directions on the pictureframe and started an endless slideshow. Now the picture frame sits on his shelf and is carefully watching whats going on in our livingroom.

little picture frame

To generate the eyes I wrote a short processing sketch that generates a new frame every time a key is pressed and saves it in the sketchfolder.

void setup() {
  size(768,480,P2D);
  smooth();
}

float d = random(360);


void draw() {
  background(0);
  fill(255);
  ellipse(284, 240, 200, 400);
  ellipse(484, 240, 200, 400);
  fill(0);


  float da = d;
  float db = d;

  float a = radians( da );
  float b = radians( db );

  ellipse(284 + cos(a) * 60, 240 + sin(a)*160, 80, 80);
  ellipse(484 + cos(b) * 60, 240 + sin(b)*160, 80, 80);
}

void keyPressed() {
  d = random(360);
  redraw();
  saveFrame();
}

eyes.zip contains the set of imags I use on my pictureframe

read more ...