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
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.

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 ...'Hello World' ABC
This is a small collection of "Hello World!"-Programs - One for each letter of the alphabet. Ada for A, Boo for B, C++ for C, and so on. Special thanks to the stackoverflowers who helped me with Q, U and Y :-)
Ada
with Text_IO; use Text_IO;
procedure Hello is
begin
Put_Line("Hello World!");
end Hello;
Boo
print("Hello World!")
C++
#include <iostream>
int main( int argc, char** argv ) {
std::cout << "Hello World!" << std::endl;
return 0;
}
D
import std.stdio;
void main(string[] args) {
writefln("Hello World!");
}
read more ...OutOfIdeasException
hmmmmmm - todays project for 30daysofcreativity is...
guru.OutOfIdeasException()
at guru.bodyparts.head.Brain.think()
at.guru.bodyparts.head.Head()
at.guru.body.Main().run()
read more ...DIY-Mustache-KIT
Todays inspiration theme from 30daysofcreativity is "Mustache". So I created a DIY-Mustache-KIT for all of those who have no mustache but need one.
Just print out the pdf and cut at the dotted line :-)
This is my Day 11 Project

An Apple A Day ...
This is my Day 10 Project


