Creative Code Stammtisch

A monthly open conversation between artists, makers, designers, coders, performers, learners and anyone interested in the use of computing skills for artistic expression.

Edit this site on GitHub

CCStammtisch document (1st Friday every month)

CCJam document (3rd Saturday every month)

Follow us on Twitter:
@CreativeCodeBLN

Old list of events

Friday, August 1st 2014, Stammtisch #11

https://www.meetup.com/opentechschool-berlin/events/197937962/

Event photos

Imanol Gomez
Brain sonification
http://vimeo.com/27576705

So Kanno
Showing his latest work: look for the hashtag #siaf2014sdm on Instagram.

Senseless drawing bot
http://vimeo.com/30780208
http://vimeo.com/58191583

3D models based on google images
http://www.123dapp.com/MyCorner/so_k-21077813/models

Abe Pazos
Abe explains how to create a library for Processing in only 5 minutes. Export a jar from eclipse (preferably with a constructor passing the PApplet as parent). Create a folder in your P5 libraries folder with the library name. in there the jar goes into the library folder (that’s the structure of all p5 libraries). the cool thing: you only have to restart processing when you created the library- so you can constantly change it, without closing your sketch.
https://github.com/processing/processing/wiki/Library-Overview
Note: I was surprised by how easy it is. The P5 documents are longs, and it makes it feel like complicated. You’re supposed to include examples, src, reference… but it is all optional! (if the library is just for yourself ;) The only thing you need is libraries/MyLib/library/MyLib.jar In that jar, you either have static methods, or you pass the PApplet so you can access all Processing drawing functions. By having your own library you can share code among all your sketches, no need to copy paste functions/classes or use other tricks.

Performance tip. Reusing Objects instead of creating new ones all over the place is important for a fast running program. To guarantee this abe showed us his program, where he initialized final Vectors, that are used for 3D Animation calculation using toxiclibs. Instead of creating new Vectors anywhere else, he called the methods that don’t return new vectors but operate on themselves. - he pointed out: sometimes they have a self in their name sometimes get….
Code here: http://git.io/eW8HiQ
*I’m surprised you remembered everything I said and wrote it so clearly, Ramin Soleymani! :)

Victor Diaz
Showed us his phone after stamping a vinyl-cut pattern on it, which he made at the Fab Lab Berlin. With Processing we can design and export vector shapes, and have them cut into very detailed stickers.

Hubby
Linear cellular automaton printouts he did in the 1980’s

Other references

Brion Gysin’s Dream Machine
https://www.google.fr/search?q=brion+gysin+dream+machine&tbm=isch

Patricio Gonzalez Vivo — Video animation using Google’s Map depth info
http://patriciogonzalezvivo.com/2014/pointcloudcity/

Lillian Schwartz – The artist and the computer
https://www.youtube.com/watch?v=diLa2lig3dw (part 1)
https://www.youtube.com/watch?v=yiHv6UTU7nY (part 2)

Kynd – Locus of everyday life
http://vimeo.com/102100702

Haken’s Synergetics
https://en.wikipedia.org/wiki/Synergetics_(Haken

Smooth version of Conway’s Game of Life
https://www.youtube.com/watch?v=KJe9H6qS82I

Wazzup this month?

Retune open call for speakers (until August 17th)
Want to speak at the nicest art/tech conference in Berlin? Retune is looking for speakers.
http://bit.ly/retune14-opencall-website

School of Ma, Last chance to join! (August 4th - 29th)
School of MA’s summer program is an unforgettable experience. In the August session, you will learn physical computing (3D printing, Arduino, using motors, etc.) with some of the greatest people in creative tech: http://schoolofma.org/programs/august-2014-let’s-get-physical/

JOIN – 1st Local Multiplayer Summit (August 9th)
http://www.localmultiplayer.com/summit

Music Hack Day (September 5th - 6th)
http://musichackday.de/

Processing 3.0a1
Somebody tried the alpha of Processing 3.0?
PDE X is much more stable then before.
But I don’t get the change around sound? The New Sound Library doesn’t work under Win64bit yet