Flavour Combinations/Music Makey Makey
noise dept.
No title available
"I'm Dorothy Gale from Kansas"
Aqua Utopia|海の底で記憶を紡ぐ

No title available
hello vonnie

oozey mess
TVSTRANGERTHINGS

izzy's playlists!
Misplaced Lens Cap
NASA
One Nice Bug Per Day

blake kathryn
🪼

Discoholic 🪩
AnasAbdin

❣ Chile in a Photography ❣
$LAYYYTER
taylor price

pixel skylines
seen from United Kingdom
seen from United States
seen from United States

seen from Malaysia

seen from Singapore

seen from Maldives
seen from Malaysia

seen from United Kingdom

seen from Malaysia

seen from United States
seen from Sri Lanka

seen from United States

seen from United States
seen from Netherlands

seen from United States

seen from United States

seen from United States
seen from United States
seen from Spain
seen from United States
@girlswithbeard
Flavour Combinations/Music Makey Makey
MaKey MaKey Medicine The Problem My grandmother suffers from Dementia, and has recently been placed in a care home, due to her inability to look after herself. Her condition actually got better in the care home because she had someone to check if she was taking her medication regularly. Before she moved into a care home my family would receive phone calls from her very regularly because she would forget she had dementia and become very distressed from this feeling and lead her to believe that she was unwell. This was to due to her being unable to take her medication for herself, as she wouldn’t remember what to take and when, even though it was displayed on the packaging. My family would have to visit her sometimes twice a day to check if she was really unwell or had just forgot to take her medication but being a very busy family this was very draining, physically and emotionally, even with the help of a carer. The Solution Since my family wasn’t sure if she was genuinely in need of help or had to just take her medication, it would be easier if there was a way to check if she had taken her medication for the day, to see if it was necessary to cancel plans and see her. The Concept The MaKey MaKey would be built into her medication box [doors] and each time the door to the medication for the corresponding time & day is opened, it is registered with an app. My family can check this application to see that when she phones if they need to visit or whether she just needs to take her medication. This means my grandmother is doing everything the exact same way, as she did before the MaKey MaKey kit, and she doesn’t need to know anything about technology or how it works. Faults/Possible Development Obviously the issue here isn’t that it is time consuming to visit my grandmother to check if she has taken her medication, the real issue is convincing her to go in a care home, but this works as a short term solution. The medication box could also be altered using Micro Duinos to operate doors; opening doors to display that the medication needs to be/hasn’t been taken; locking doors to prevent taken of the wrong medication at the wrong time of day, but this could make it to technologically complicated for my grandmother.
Carla
Thermobooth that has an Makey Makey intergration
MakeyMakey experience by Lotte de Haan
Patatap is a portable animation and sound kit. With the touch of a finger create melodies charged with moving shapes. Warning: contains flashing images.
Rotating cube
float spin = 0.0;
void setup() { size(600, 500, P3D); noStroke(); } void draw() { background(356); if (!mousePressed) { lights(); } spin += 0.01; pushMatrix(); translate(width/2, height/2, 0); rotateX(PI/9); rotateY(PI/5 + spin); box(100); popMatrix(); }
/* Andor Salga Corkscrew Processing compliant */ float r = 0; void setup(){ size(500, 500, P3D); } void draw(){ camera(); background(50); ambientLight(100, 64, 128); directionalLight(400, 400, 400, 0, 1, 0.5); translate(width/2, height/2, 380); rotateX(-PI/4); rotateY(r += 0.01); strokeWeight(1); for(int i = 0; i < 15; i++){ fill(i * 10, 0, 0); noStroke(); pushMatrix(); translate(i-7, -3, 0); translate(0,sin(frameCount/5.0 + i),0); rotateX(i/10.0 + frameCount/20.0); box(1, 1, 3); translate(2, 5, 0); fill(0, 150 - i* 10, 0); sphere(1); popMatrix(); } stroke(50, 200, 200); noFill(); strokeWeight(3); box(13, 1, 13); }
(There should be a white sea moving) PImage wave4 ; int x5 = -600 ; void setup(){ size(1200, 800); noStroke(); smooth(); wave4 = loadImage("wave4.png"); } void draw(){ background(0); ellipse(210, 165, 150, 150); //ellipse moon fill(0); ellipse(250, 150, 150, 150); //ellipse black //sea image(wave4,x5,0,1800,985) ; x5 = x5 + 1 ; if (x5 > 0) { x5 = -600 ; } fill(155); triangle(255, 720, 375, 500, 445, 720); //sail fill(105); quad(345, 730, 345, 720, 350, 720, 350, 730); //mat fill(250, 30, 30); quad(250, 770, 230, 730, 465, 730, 450, 770); //bottom boat fill(25, 195, 170); triangle(780, 800, 830, 540, 880, 800); //left-1 fill(155, 245, 240, 245); triangle(730, 800, 780, 560, 830, 800); //left fill(40, 200, 160); triangle(950, 800, 1020, 450, 1090, 800); //right-1 fill(135, 250, 250, 230); triangle(1080, 800, 1145, 360, 1210, 800); //right fill(255, 40, 30, 230); triangle(830, 800, 920, 280, 990, 800); //red fill(245, 200, 45, 230); triangle(900, 800, 970, 350, 1040, 800); //yellow fill(255, 255, 176); }
Rolling eyes
Eye e2, e4; void setup() { size(400, 400); smooth(); noStroke(); e2 = new Eye(160,130,60); e4 = new Eye(240,130,60); } void draw() { background(161,245,240); //BODY fill(160); noStroke(); rectMode(CENTER); rect(200,210,80,190); //LEFT LEG rectMode(CORNER); fill(80); rect(160,305,15,50); //RIGHT LEG rectMode(CORNER); fill(80); rect(225,305,15,50); //RIGHT ARM rectMode(CORNER); fill(80); rect(240,205,15,80); //LEFT ARM rectMode(CORNER); fill(80); rect(145,205,15,80); //HEAD fill(200); noStroke(); ellipse(200,150,120,120); e2.update(mouseX, mouseY); e4.update(mouseX, mouseY); e2.display(); e4.display(); } class Eye { int ex, ey; int size; float angle = 0.0; Eye(int x, int y, int s) { ex = x; ey = y; size = s; } void update(int mx, int my) { angle = atan2(my-ey, mx-ex); } void display() { pushMatrix(); translate(ex, ey); fill(255); ellipse(0, 0, size, size); rotate(angle); fill(153); ellipse(size/4, 0, size/2, size/2); popMatrix(); } }
void setup() { size (520 ,420); strokeWeight(6); smooth(); } void draw() { background(204); stroke(0); float mx=mouseX; line (80,100,mx,mouseY); line (100, 80, mx,mouseY); line(120,60,mx,mouseY); line(140,40,mx,mouseY); line(160, 20, mx, mouseY); line(180,40,mx,mouseY); line(200,60,mx,mouseY); line(220,80,mx,mouseY); line (240,100,mx,mouseY); line (100, 120,mx,mouseY); line (120,140,mx,mouseY); line (140,160,mx,mouseY); line (160,180,mx,mouseY); line (180,160,mx,mouseY); line (200,140,mx,mouseY); line (220,120,mx,mouseY); line (80+180,100,mx,mouseY); line (100+180, 80, mx,mouseY); line(120+180,60,mx,mouseY); line(140+180,40,mx,mouseY); line(160+180, 20, mx, mouseY); line(180+180,40,mx,mouseY); line(200+180,60,mx,mouseY); line(220+180,80,mx,mouseY); line (240+180,100,mx,mouseY); line (100+180, 120,mx,mouseY); line (120+180,140,mx,mouseY); line (140+180,160,mx,mouseY); line (160+180,180,mx,mouseY); line (180+180,160,mx,mouseY); line (200+180,140,mx,mouseY); line (220+180,120,mx,mouseY); stroke(255); line (80+180,100+220,mx,mouseY); line (100+180, 80+220, mx,mouseY); line(120+180,60+220,mx,mouseY); line(140+180,40+220,mx,mouseY); line(160+180, 20+220, mx, mouseY); line(180+180,40+220,mx,mouseY); line(200+180,60+220,mx,mouseY); line(220+180,80+220,mx,mouseY); line (240+180,100+220,mx,mouseY); line (100+180, 120+220,mx,mouseY); line (120+180,140+220,mx,mouseY); line (140+180,160+220,mx,mouseY); line (160+180,180+220,mx,mouseY); line (180+180,160+220,mx,mouseY); line (200+180,140+220,mx,mouseY); line (220+180,120+220,mx,mouseY); line (80,100+220,mx,mouseY); line (100, 80+220, mx,mouseY); line(120,60+220,mx,mouseY); line(140,40+220,mx,mouseY); line(160, 20+220, mx, mouseY); line(180,40+220,mx,mouseY); line(200,60+220,mx,mouseY); line(220,80+220,mx,mouseY); line (240,100+220,mx,mouseY); line (100, 120+220,mx,mouseY); line (120,140+220,mx,mouseY); line (140,160+220,mx,mouseY); line (160,180+220,mx,mouseY); line (180,160+220,mx,mouseY); line (200,140+220,mx,mouseY); line (220,120+220,mx,mouseY); stroke(255); float mY=mouseY+20; line (80,100,mx,mY); line (100, 80, mx,mY); line(120,60,mx,mY); line(140,40,mx,mY); line(160, 20, mx, mY); line(180,40,mx,mY); line(200,60,mx,mY); line(220,80,mx,mY); line (240,100,mx,mY); line (100, 120,mx,mY); line (120,140,mx,mY); line (140,160,mx,mY); line (160,180,mx,mY); line (180,160,mx,mY); line (200,140,mx,mY); line (220,120,mx,mY); line (80+180,100,mx,mY); line (100+180, 80, mx,mY); line(120+180,60,mx,mY); line(140+180,40,mx,mY); line(160+180, 20, mx, mY); line(180+180,40,mx,mY); line(200+180,60,mx,mY); line(220+180,80,mx,mY); line (240+180,100,mx,mY); line (100+180, 120,mx,mY); line (120+180,140,mx,mY); line (140+180,160,mx,mY); line (160+180,180,mx,mY); line (180+180,160,mx,mY); line (200+180,140,mx,mY); line (220+180,120,mx,mY); stroke(0); line (80+180,100+220,mx,mY); line (100+180, 80+220, mx,mY); line(120+180,60+220,mx,mY); line(140+180,40+220,mx,mY); line(160+180, 20+220, mx, mY); line(180+180,40+220,mx,mY); line(200+180,60+220,mx,mY); line(220+180,80+220,mx,mY); line (240+180,100+220,mx,mY); line (100+180, 120+220,mx,mY); line (120+180,140+220,mx,mY); line (140+180,160+220,mx,mY); line (160+180,180+220,mx,mY); line (180+180,160+220,mx,mY); line (200+180,140+220,mx,mY); line (220+180,120+220,mx,mY); line (80,100+220,mx,mY); line (100, 80+220, mx,mY); line(120,60+220,mx,mY); line(140,40+220,mx,mY); line(160, 20+220, mx, mY); line(180,40+220,mx,mY); line(200,60+220,mx,mY); line(220,80+220,mx,mY); line (240,100+220,mx,mY); line (100, 120+220,mx,mY); line (120,140+220,mx,mY); line (140,160+220,mx,mY); line (160,180+220,mx,mY); line (180,160+220,mx,mY); line (200,140+220,mx,mY); line (220,120+220,mx,mY); }
Please upgrade your browser to something new like Google Chrome.
//Made with ProcessingLyon Tumblrify: //http://p5lyon.tumblr.com/ProcessingJSTumblr //English Version: //http://p5lyon.tumblr.com/ProcessingJSTumblrEn Chrome void setup() { size (520 ,420); strokeWeight(6); smooth(); } void draw() { background(204); stroke(0); float mx=mouseX; line (80,100,mx,mouseY); line (100, 80, mx,mouseY); line(120,60,mx,mouseY); line(140,40,mx,mouseY); line(160, 20, mx, mouseY); line(180,40,mx,mouseY); line(200,60,mx,mouseY); line(220,80,mx,mouseY); line (240,100,mx,mouseY); line (100, 120,mx,mouseY); line (120,140,mx,mouseY); line (140,160,mx,mouseY); line (160,180,mx,mouseY); line (180,160,mx,mouseY); line (200,140,mx,mouseY); line (220,120,mx,mouseY); line (80+180,100,mx,mouseY); line (100+180, 80, mx,mouseY); line(120+180,60,mx,mouseY); line(140+180,40,mx,mouseY); line(160+180, 20, mx, mouseY); line(180+180,40,mx,mouseY); line(200+180,60,mx,mouseY); line(220+180,80,mx,mouseY); line (240+180,100,mx,mouseY); line (100+180, 120,mx,mouseY); line (120+180,140,mx,mouseY); line (140+180,160,mx,mouseY); line (160+180,180,mx,mouseY); line (180+180,160,mx,mouseY); line (200+180,140,mx,mouseY); line (220+180,120,mx,mouseY); stroke(255); line (80+180,100+220,mx,mouseY); line (100+180, 80+220, mx,mouseY); line(120+180,60+220,mx,mouseY); line(140+180,40+220,mx,mouseY); line(160+180, 20+220, mx, mouseY); line(180+180,40+220,mx,mouseY); line(200+180,60+220,mx,mouseY); line(220+180,80+220,mx,mouseY); line (240+180,100+220,mx,mouseY); line (100+180, 120+220,mx,mouseY); line (120+180,140+220,mx,mouseY); line (140+180,160+220,mx,mouseY); line (160+180,180+220,mx,mouseY); line (180+180,160+220,mx,mouseY); line (200+180,140+220,mx,mouseY); line (220+180,120+220,mx,mouseY); line (80,100+220,mx,mouseY); line (100, 80+220, mx,mouseY); line(120,60+220,mx,mouseY); line(140,40+220,mx,mouseY); line(160, 20+220, mx, mouseY); line(180,40+220,mx,mouseY); line(200,60+220,mx,mouseY); line(220,80+220,mx,mouseY); line (240,100+220,mx,mouseY); line (100, 120+220,mx,mouseY); line (120,140+220,mx,mouseY); line (140,160+220,mx,mouseY); line (160,180+220,mx,mouseY); line (180,160+220,mx,mouseY); line (200,140+220,mx,mouseY); line (220,120+220,mx,mouseY); stroke(255); float mY=mouseY+20; line (80,100,mx,mY); line (100, 80, mx,mY); line(120,60,mx,mY); line(140,40,mx,mY); line(160, 20, mx, mY); line(180,40,mx,mY); line(200,60,mx,mY); line(220,80,mx,mY); line (240,100,mx,mY); line (100, 120,mx,mY); line (120,140,mx,mY); line (140,160,mx,mY); line (160,180,mx,mY); line (180,160,mx,mY); line (200,140,mx,mY); line (220,120,mx,mY); line (80+180,100,mx,mY); line (100+180, 80, mx,mY); line(120+180,60,mx,mY); line(140+180,40,mx,mY); line(160+180, 20, mx, mY); line(180+180,40,mx,mY); line(200+180,60,mx,mY); line(220+180,80,mx,mY); line (240+180,100,mx,mY); line (100+180, 120,mx,mY); line (120+180,140,mx,mY); line (140+180,160,mx,mY); line (160+180,180,mx,mY); line (180+180,160,mx,mY); line (200+180,140,mx,mY); line (220+180,120,mx,mY); stroke(0); line (80+180,100+220,mx,mY); line (100+180, 80+220, mx,mY); line(120+180,60+220,mx,mY); line(140+180,40+220,mx,mY); line(160+180, 20+220, mx, mY); line(180+180,40+220,mx,mY); line(200+180,60+220,mx,mY); line(220+180,80+220,mx,mY); line (240+180,100+220,mx,mY); line (100+180, 120+220,mx,mY); line (120+180,140+220,mx,mY); line (140+180,160+220,mx,mY); line (160+180,180+220,mx,mY); line (180+180,160+220,mx,mY); line (200+180,140+220,mx,mY); line (220+180,120+220,mx,mY); line (80,100+220,mx,mY); line (100, 80+220, mx,mY); line(120,60+220,mx,mY); line(140,40+220,mx,mY); line(160, 20+220, mx, mY); line(180,40+220,mx,mY); line(200,60+220,mx,mY); line(220,80+220,mx,mY); line (240,100+220,mx,mY); line (100, 120+220,mx,mY); line (120,140+220,mx,mY); line (140,160+220,mx,mY); line (160,180+220,mx,mY); line (180,160+220,mx,mY); line (200,140+220,mx,mY); line (220,120+220,mx,mY); }