<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.sgmk-ssam.ch/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Oliverjones</id>
	<title>SGMK-SSAM-WIKI - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.sgmk-ssam.ch/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Oliverjones"/>
	<link rel="alternate" type="text/html" href="https://wiki.sgmk-ssam.ch/wiki/Special:Contributions/Oliverjones"/>
	<updated>2026-09-20T05:09:50Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://wiki.sgmk-ssam.ch/index.php?title=Kiilo-ArduinoEthernetShield-Read/Write&amp;diff=570</id>
		<title>Kiilo-ArduinoEthernetShield-Read/Write</title>
		<link rel="alternate" type="text/html" href="https://wiki.sgmk-ssam.ch/index.php?title=Kiilo-ArduinoEthernetShield-Read/Write&amp;diff=570"/>
		<updated>2011-09-08T07:51:54Z</updated>

		<summary type="html">&lt;p&gt;Oliverjones: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;arduino + ethernetshield&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OUTPUT send sensor data to pachube ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
/*&lt;br /&gt;
  Pachube sensor client with Strings&lt;br /&gt;
 &lt;br /&gt;
 This sketch connects an analog sensor to Pachube (http://www.pachube.com)&lt;br /&gt;
 using a Wiznet Ethernet shield. You can use the Arduino Ethernet shield, or&lt;br /&gt;
 the Adafruit Ethernet shield, either one will work, as long as it&#039;s got&lt;br /&gt;
 a Wiznet Ethernet module on board.&lt;br /&gt;
 &lt;br /&gt;
 This example uses the String library, which is part of the Arduino core from&lt;br /&gt;
 version 0019.  &lt;br /&gt;
 &lt;br /&gt;
 Circuit:&lt;br /&gt;
 * Analog sensor attached to analog in 0&lt;br /&gt;
 * Ethernet shield attached to pins 10, 11, 12, 13&lt;br /&gt;
 &lt;br /&gt;
 created 15 March 2010&lt;br /&gt;
 updated 4 Sep 2010&lt;br /&gt;
 by Tom Igoe&lt;br /&gt;
 &lt;br /&gt;
 sensor added March 2011&lt;br /&gt;
 by kiilo &lt;br /&gt;
&lt;br /&gt;
 This code is in the public domain.&lt;br /&gt;
 &lt;br /&gt;
 */&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;SPI.h&amp;gt;&lt;br /&gt;
#include &amp;lt;Ethernet.h&amp;gt;&lt;br /&gt;
#include &amp;lt;SHT1x.h&amp;gt;&lt;br /&gt;
#include &amp;lt;stdlib.h&amp;gt;&lt;br /&gt;
//dtostrf(FLOAT,WIDTH,PRECSISION,BUFFER);&lt;br /&gt;
&lt;br /&gt;
// Specify data and clock connections and instantiate SHT1x object&lt;br /&gt;
#define dataPin  6&lt;br /&gt;
#define clockPin 7&lt;br /&gt;
SHT1x sht1x(dataPin, clockPin);&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
// assign a MAC address for the ethernet controller.&lt;br /&gt;
// fill in your address here:&lt;br /&gt;
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED};&lt;br /&gt;
// assign an IP address for the controller:&lt;br /&gt;
byte ip[] = { 192,168,49,20 };&lt;br /&gt;
byte gateway[] = { 192,168,49,1};	&lt;br /&gt;
byte subnet[] = { 255, 255, 255, 0 };&lt;br /&gt;
&lt;br /&gt;
//  The address of the server you want to connect to (pachube.com):&lt;br /&gt;
byte server[] = { 173,203,98,29 }; &lt;br /&gt;
&lt;br /&gt;
// initialize the library instance:&lt;br /&gt;
Client client(server, 80);&lt;br /&gt;
&lt;br /&gt;
long lastConnectionTime = 0;        // last time you connected to the server, in milliseconds&lt;br /&gt;
boolean lastConnected = false;      // state of the connection last time through the main loop&lt;br /&gt;
const int postingInterval = 10000;  //delay between updates to Pachube.com&lt;br /&gt;
&lt;br /&gt;
long lastReadingTime = 0;&lt;br /&gt;
const int readingInterval = 2000;   // delay between readings&lt;br /&gt;
  &lt;br /&gt;
// read the SHT11sensor:&lt;br /&gt;
float temp_c;&lt;br /&gt;
float temp_f;&lt;br /&gt;
float humidity;&lt;br /&gt;
&lt;br /&gt;
String dataString = &amp;quot;&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
  // start the ethernet connection and serial port:&lt;br /&gt;
  Ethernet.begin(mac, ip);&lt;br /&gt;
  Serial.begin(9600);&lt;br /&gt;
  // give the ethernet module time to boot up:&lt;br /&gt;
  delay(1000);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
&lt;br /&gt;
  if (millis() - lastReadingTime &amp;gt; readingInterval) {&lt;br /&gt;
    lastReadingTime = millis();&lt;br /&gt;
    // Read values from the sensor&lt;br /&gt;
    temp_c = sht1x.readTemperatureC();&lt;br /&gt;
    //temp_f = sht1x.readTemperatureF();&lt;br /&gt;
    humidity = sht1x.readHumidity();&lt;br /&gt;
    // Print the values to the serial port&lt;br /&gt;
    //Serial.print(&amp;quot;Temperature: &amp;quot;);&lt;br /&gt;
    //Serial.print(temp_c, DEC);&lt;br /&gt;
    //((Serial.print(&amp;quot;C / &amp;quot;);&lt;br /&gt;
    //Serial.print(humidity);&lt;br /&gt;
    //Serial.println(&amp;quot;%&amp;quot;);  &lt;br /&gt;
  &lt;br /&gt;
  // convert the data to a String to send it:&lt;br /&gt;
  char out[20] = &amp;quot;&amp;quot;;&lt;br /&gt;
  dataString = dtostrf(temp_c, 5, 2, out);&lt;br /&gt;
  dataString += &amp;quot;,&amp;quot;;&lt;br /&gt;
  dataString += dtostrf(humidity, 5, 2, out);&lt;br /&gt;
  //Serial.println(dataString);&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  // if there&#039;s incoming data from the net connection.&lt;br /&gt;
  // send it out the serial port.  This is for debugging&lt;br /&gt;
  // purposes only:&lt;br /&gt;
  if (client.available()) {&lt;br /&gt;
    char c = client.read();&lt;br /&gt;
    Serial.print(c);&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  // if there&#039;s no net connection, but there was one last time&lt;br /&gt;
  // through the loop, then stop the client:&lt;br /&gt;
  if (!client.connected() &amp;amp;&amp;amp; lastConnected) {&lt;br /&gt;
    Serial.println();&lt;br /&gt;
    Serial.println(&amp;quot;disconnecting.&amp;quot;);&lt;br /&gt;
    client.stop();&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  // if you&#039;re not connected, and ten seconds have passed since&lt;br /&gt;
  // your last connection, then connect again and send data:&lt;br /&gt;
  if(!client.connected() &amp;amp;&amp;amp; (millis() - lastConnectionTime &amp;gt; postingInterval)) {&lt;br /&gt;
    sendData(dataString);&lt;br /&gt;
    Serial.println(dataString);&lt;br /&gt;
  }&lt;br /&gt;
  // store the state of the connection for next time through&lt;br /&gt;
  // the loop:&lt;br /&gt;
  lastConnected = client.connected();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
// this method makes a HTTP connection to the server:&lt;br /&gt;
void sendData(String thisData) {&lt;br /&gt;
  // if there&#039;s a successful connection:&lt;br /&gt;
  if (client.connect()) {&lt;br /&gt;
    Serial.println(&amp;quot;connecting...&amp;quot;);&lt;br /&gt;
    // send the HTTP PUT request. &lt;br /&gt;
    // fill in your feed address here:&lt;br /&gt;
    client.print(&amp;quot;PUT /api/2626.csv HTTP/1.1\n&amp;quot;);&lt;br /&gt;
    client.print(&amp;quot;Host: www.pachube.com\n&amp;quot;);&lt;br /&gt;
    // fill in your Pachube API key here:&lt;br /&gt;
    client.print(&amp;quot;X-PachubeApiKey: &amp;lt;YOUR-API-KEY-HERE!&amp;gt;\n&amp;quot;);&lt;br /&gt;
    client.print(&amp;quot;Content-Length: &amp;quot;);&lt;br /&gt;
    client.println(thisData.length(), DEC);&lt;br /&gt;
&lt;br /&gt;
    // last pieces of the HTTP PUT request:&lt;br /&gt;
    client.print(&amp;quot;Content-Type: text/csv\n&amp;quot;);&lt;br /&gt;
    client.println(&amp;quot;Connection: close\n&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
    // here&#039;s the actual content of the PUT request:&lt;br /&gt;
    client.println(thisData);&lt;br /&gt;
&lt;br /&gt;
    // note the time that the connection was made:&lt;br /&gt;
    lastConnectionTime = millis();&lt;br /&gt;
  } &lt;br /&gt;
  else {&lt;br /&gt;
    // if you couldn&#039;t make a connection:&lt;br /&gt;
    Serial.println(&amp;quot;connection failed&amp;quot;);&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== INPUT retrieve sensor data from pachube ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
/*&lt;br /&gt;
&lt;br /&gt;
  PachubeClientTest&lt;br /&gt;
  &lt;br /&gt;
  Author: Arduinomstr&lt;br /&gt;
  Date: 21-12-2010&lt;br /&gt;
  Version: 1.1&lt;br /&gt;
&lt;br /&gt;
  Sketch to test updating Pachube feed using Official Arduino&lt;br /&gt;
  Ethernet shield - Reset pin on Ethernet Controller needs bending&lt;br /&gt;
  out of header and connecting to pin 8 to provide hardware reset&lt;br /&gt;
  &lt;br /&gt;
  Updates feed with fixed data and displays response on serial monitor&lt;br /&gt;
  &lt;br /&gt;
  Tested on Duemilanove, DFRobot Shield and Arduino 0022&lt;br /&gt;
&lt;br /&gt;
  // changed /////////////////////////////////////////////////////////&lt;br /&gt;
&lt;br /&gt;
  changed to a retrieval example polls a feed and controls a servo&lt;br /&gt;
  created April 2011&lt;br /&gt;
  by kiilo&lt;br /&gt;
&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;SPI.h&amp;gt;&lt;br /&gt;
#include &amp;lt;Ethernet.h&amp;gt;&lt;br /&gt;
#include &amp;lt;TextFinder.h&amp;gt;&lt;br /&gt;
#include &amp;lt;Servo.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#define DEBUG_OUTPUT false&lt;br /&gt;
&lt;br /&gt;
#define PACHUBE_FEED_ID 2626&lt;br /&gt;
#define PACHUBE_API_KEY &amp;quot;&amp;lt;YOUR API KEY HERE!&amp;gt;&amp;quot;&lt;br /&gt;
#define PACHUBE_UPDATE_INTERVAL 10000			/* Delay between updates, milliseconds	*/&lt;br /&gt;
&lt;br /&gt;
#define RESET_PIN 8 					/* Reset Ethernet using Arduino		*/&lt;br /&gt;
#define WAITING 2 					/* Waiting state			*/&lt;br /&gt;
#define CONNECTING 3 					/* Connecting state			*/&lt;br /&gt;
#define SENDING 4 					/* Sending state			*/&lt;br /&gt;
#define FAILING 5 					/* Failing state			*/&lt;br /&gt;
#define READING 6 					/* Reading state			*/&lt;br /&gt;
#define DISCONNECTING 7 				/* Disconnecting state			*/&lt;br /&gt;
#define PARSING 9&lt;br /&gt;
#define FIRST_LED WAITING				/* First in consecutive LEDs    	*/&lt;br /&gt;
#define LAST_LED DISCONNECTING				/* Last LED				*/&lt;br /&gt;
&lt;br /&gt;
byte mac[] = { 0xDE, 0xAD, 0xBA, 0xEF, 0xFA, 0xAD };&lt;br /&gt;
byte ip[] = { 192, 168, 49, 24 };&lt;br /&gt;
byte gateway[] = { 192, 168, 49, 1 };&lt;br /&gt;
byte subnet[] = { 255, 255, 255, 0 };&lt;br /&gt;
byte server[] = { 173, 203, 98, 29 }; 			/* www.pachube.com			*/&lt;br /&gt;
int state = 0; 						/* System state				*/&lt;br /&gt;
&lt;br /&gt;
Client client(server, 80);				/* Client listening on port 80		*/&lt;br /&gt;
TextFinder finder( client);&lt;br /&gt;
&lt;br /&gt;
Servo Pointer;&lt;br /&gt;
int pos = 0;&lt;br /&gt;
&lt;br /&gt;
//String pachubeString = PACHUBE_TEST_DATA;		/* Construct string using test data	*/&lt;br /&gt;
&lt;br /&gt;
//float PachubeSensor[]= {0, 0, 0, 0, 0, 0 ,0 ,0}; &lt;br /&gt;
&lt;br /&gt;
// Set-up Arduino I/O and Ethernet Controller&lt;br /&gt;
// Includes fix to kick-start Ethernet on power-up /&lt;br /&gt;
// power-failure by using reset signal from Arduino&lt;br /&gt;
// to reset-pin on Ethernet Shield&lt;br /&gt;
void setup()&lt;br /&gt;
{&lt;br /&gt;
  pinMode(RESET_PIN, OUTPUT);				/* Configure I/O pins as outputs	*/&lt;br /&gt;
  Pointer.attach(7);&lt;br /&gt;
  // Start fix&lt;br /&gt;
  digitalWrite(RESET_PIN, LOW);				/* Take Ethernet reset line low		*/&lt;br /&gt;
  delay(200);						/* momentarily				*/&lt;br /&gt;
  digitalWrite(RESET_PIN, HIGH);			/* Bring it up again			*/&lt;br /&gt;
  delay(2000);						/* Allow Ethernet time to boot		*/&lt;br /&gt;
  // End of fix&lt;br /&gt;
  &lt;br /&gt;
  Serial.begin(9600);					/* Initialise serial line on Arduino	*/  &lt;br /&gt;
  Ethernet.begin(mac, ip, gateway, subnet);		/* Initialise Ethernet settings		*/&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// Main function&lt;br /&gt;
void loop()&lt;br /&gt;
{&lt;br /&gt;
  Serial.println(&amp;quot;WAITING...&amp;quot;);  &lt;br /&gt;
  waiting();  						/* Provide delay between updates	*/&lt;br /&gt;
  &lt;br /&gt;
  if (!client.connected()) {&lt;br /&gt;
    Serial.println(&amp;quot;CONNECTING...&amp;quot;);&lt;br /&gt;
    connecting();  					/* Connect if no connection		*/&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  if (client.connected()) {&lt;br /&gt;
    Serial.println(&amp;quot;SENDING...&amp;quot;);&lt;br /&gt;
    sending();  					/* Do PUT if connection is present	*/&lt;br /&gt;
    //Serial.print(&amp;quot;Data sent: &amp;quot;);&lt;br /&gt;
    //Serial.println(pachubeString);&lt;br /&gt;
  } else {&lt;br /&gt;
    Serial.println(&amp;quot;FAILING...&amp;quot;);&lt;br /&gt;
    fail();						/* Otherwise enter failure state	*/&lt;br /&gt;
  }  &lt;br /&gt;
  &lt;br /&gt;
  if (client.available()) {&lt;br /&gt;
    Serial.println(&amp;quot;READING...&amp;quot;);&lt;br /&gt;
    reading();						/* Output response if there is one	*/&lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  &lt;br /&gt;
  if (!client.connected()) {&lt;br /&gt;
    Serial.println();&lt;br /&gt;
    Serial.println(&amp;quot;DISCONNECTING...&amp;quot;);&lt;br /&gt;
    disconnecting();					/* Stop client if disconnected		*/&lt;br /&gt;
  }&lt;br /&gt;
}							/* End of main loop			*/&lt;br /&gt;
&lt;br /&gt;
// Set WAITING state and&lt;br /&gt;
// wait for update interval&lt;br /&gt;
void waiting() {&lt;br /&gt;
  state = WAITING;					/* Set state				*/&lt;br /&gt;
  showStatus();						/* Turn on LED				*/&lt;br /&gt;
  delay(PACHUBE_UPDATE_INTERVAL);			/* Delay until net update		*/&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// Set CONNECTING state and try to connect&lt;br /&gt;
void connecting() {&lt;br /&gt;
  state = CONNECTING;					/* Set state				*/&lt;br /&gt;
  showStatus();						/* Turn on LED				*/&lt;br /&gt;
  client.connect();  					/* Try to connect			*/&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// Set SENDING state&lt;br /&gt;
// build PUT request and send data&lt;br /&gt;
void sending() {&lt;br /&gt;
  state = SENDING;					/* Set state				*/&lt;br /&gt;
  showStatus();						/* Turn on LED				*/&lt;br /&gt;
  client.print(&amp;quot;GET /api/feeds/&amp;quot;);&lt;br /&gt;
  client.print(PACHUBE_FEED_ID);&lt;br /&gt;
  client.println(&amp;quot;.csv HTTP/1.0&amp;quot;); 			/* update using csv format		*/&lt;br /&gt;
  client.println(&amp;quot;Host: www.pachube.com&amp;quot;);&lt;br /&gt;
  client.print(&amp;quot;X-PachubeApiKey: &amp;quot;);&lt;br /&gt;
  client.println(PACHUBE_API_KEY);&lt;br /&gt;
  //client.print(&amp;quot;Content-Length: &amp;quot;);&lt;br /&gt;
  //client.println(pachubeString.length(), DEC);	        /* Calculate length of request		*/    &lt;br /&gt;
  client.println(&amp;quot;Content-Type: text/csv&amp;quot;);&lt;br /&gt;
  client.println(&amp;quot;Connection: close&amp;quot;);    &lt;br /&gt;
  client.println();&lt;br /&gt;
  //client.prinn(pachubeString);			/* Output test data			*/  &lt;br /&gt;
  client.println();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// Set FAILING state and continue&lt;br /&gt;
void fail() {&lt;br /&gt;
  state = FAILING;					/* Set state				*/&lt;br /&gt;
  showStatus();						/* Turn on LED				*/&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// Set READING state and keep reading&lt;br /&gt;
// bytes from buffer until it is empty&lt;br /&gt;
// outputting bytes to serial monitor&lt;br /&gt;
void reading() {&lt;br /&gt;
  state = READING;					/* Set state				*/&lt;br /&gt;
  showStatus();&lt;br /&gt;
 &lt;br /&gt;
  //while (client.available()) {				/* When buffer has data			*/&lt;br /&gt;
  //  char c = client.read();				/* Read byte    			*/&lt;br /&gt;
  //  Serial.print(c);&lt;br /&gt;
  &lt;br /&gt;
  while (client.available()) {&lt;br /&gt;
    &lt;br /&gt;
    if( finder.find(&amp;quot;HTTP/1.1&amp;quot;)) {&lt;br /&gt;
      int response = finder.getValue();&lt;br /&gt;
      Serial.println(response);&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    if( finder.find(&amp;quot;\r\n\r\n&amp;quot;)) {&lt;br /&gt;
      float temp = finder.getFloat();&lt;br /&gt;
      float hum = finder.getFloat();&lt;br /&gt;
      Serial.println(temp);&lt;br /&gt;
      Serial.println(hum);&lt;br /&gt;
      Pointer.write((int)(temp * 4.5));&lt;br /&gt;
    }&lt;br /&gt;
    client.flush();&lt;br /&gt;
  }	&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// Set DISCONNECTING state&lt;br /&gt;
// and stop client&lt;br /&gt;
void disconnecting() {&lt;br /&gt;
  state = DISCONNECTING;				/* Set state				*/&lt;br /&gt;
  showStatus();						/* Turn on LED				*/&lt;br /&gt;
  client.stop();  					/* Stop client				*/&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// Turn off each LEDs unless it&lt;br /&gt;
// matches current status&lt;br /&gt;
void showStatus() {					/* Turn off LED is pin does not		*/&lt;br /&gt;
  delay(2000); 						/* Keep LED on for short while		*/&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://cvresumewritingservices.org/ resume writing]&lt;/div&gt;</summary>
		<author><name>Oliverjones</name></author>
	</entry>
	<entry>
		<id>https://wiki.sgmk-ssam.ch/index.php?title=KIBLIX_2011_-_Organisational_Team&amp;diff=569</id>
		<title>KIBLIX 2011 - Organisational Team</title>
		<link rel="alternate" type="text/html" href="https://wiki.sgmk-ssam.ch/index.php?title=KIBLIX_2011_-_Organisational_Team&amp;diff=569"/>
		<updated>2011-09-08T07:51:43Z</updated>

		<summary type="html">&lt;p&gt;Oliverjones: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Dejan Pestotnik (SI) - KIBLA ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Producer and managing director&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Dejan Pestotnik is Multimedia producer, Vice president of Multimedia&lt;br /&gt;
Center KIBLA (Maribor, Slovenia). As a manager he is working on EU&lt;br /&gt;
projects (IST, FP6, FP7, EU Culture, EU Structural Founds,…). With his&lt;br /&gt;
work, he is managing promotion of contemporary art production, focused on&lt;br /&gt;
multimedia and intermedia art on international level (contemporary art&lt;br /&gt;
exhibitions, presentations, strategic communications, found raising,&lt;br /&gt;
sponsorships) and connecting culture with business sector. He is author of&lt;br /&gt;
Marketing, strategic communication and promotion document for Maribor&lt;br /&gt;
candidacy for European Capital of Culture 2012 under KIBLA production.&lt;br /&gt;
Maribor was selected for this title in a competition of 4 Slovenian&lt;br /&gt;
cities. Also author of several articles about cultural management and new&lt;br /&gt;
media art production in national and international media.&lt;br /&gt;
&lt;br /&gt;
== Marc Dusseiller (CH) - SGMK / Hackteria ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Festival coordinator and curator for educational program &#039;&#039; &lt;br /&gt;
&lt;br /&gt;
Marc R. Dusseiller is a transdisciplinary scholar, lecturer for micro- and nanotechnology, cultural facilitator and artist. He works in an integral way to combine science, art and education. He performs DIY-workshops in lo-fi electronics, music and robotics, has made various short movies and is currently developing means to perform biological science (Hackteria | Open Source Biological Art) in a DIY fashion in your kitchen or your atelier. He is also co-organizing Dock18, Room for Mediacultures, and various other engagments like the diy* festival, national and international workshops for both artists and schools and children as the president of the Swiss Mechatronic Art Society, SGMK.&lt;br /&gt;
&lt;br /&gt;
links:&lt;br /&gt;
&lt;br /&gt;
[http://www.dusseiller.ch/labs dusjagr labs]&lt;br /&gt;
&lt;br /&gt;
[http://www.mechatronicart.ch Swiss Mechatronic Art Society]&lt;br /&gt;
	&lt;br /&gt;
[http://hackteria.org Hackteria | Open Source Biological Art]&lt;br /&gt;
&lt;br /&gt;
== Miha Horvat (SI) - son:DA ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Festival coordinator - adviser for exhibition and education&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Miha Horvat holds BA from ethnology and cultural anthropology at Faculty of arts Ljubljana. He studied film-directing at AGRFT in Ljubljana and at film school in UAD Helsinki. He finished his MA at University of applied arts Vienna and is currently a pDH-candidate at University in Koper at department of Philosophy and theory of visual culture. Since 2000 he&#039;s part of artistic alliance son:DA and of the off-space garage projects. In 2009 son:DA became a foundation for theory and practice of audio-visual art.  &lt;br /&gt;
&lt;br /&gt;
More on http://sonda.kibla.org&lt;br /&gt;
&lt;br /&gt;
== Pei-Wen Liu (TW/CH) - SGMK / playaround.cc ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;International coordinator and curator for sound &amp;amp; performances&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Pei has dabbled in a variety of digital domains, but has concentrated on sound design, composition and streaming video art since 1999. Her work has been influenced by neo-dada, freeform jazz as well as avant-garde electronic musicians and minimalist painter/composers. She made music pieces for radio, animation, dance,theatre projects and installations as well organising and performing at experimental electronic music events. One of her radio piece &amp;gt; un canny &amp;lt; received Honorary Mention of Digital Music in Ars Electronic 2007.&lt;br /&gt;
&lt;br /&gt;
[http://www.little-object.com little object]&lt;br /&gt;
&lt;br /&gt;
[http://2010.playaround.cc/ playaround.cc]&lt;br /&gt;
&lt;br /&gt;
== Monika Pocrnjić (SI) - ? ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Local coordinator and co-curator for educational program&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== KIBLA team ==&lt;br /&gt;
&lt;br /&gt;
[http://cvresumewritingservices.org/ resume writing services]&lt;/div&gt;</summary>
		<author><name>Oliverjones</name></author>
	</entry>
	<entry>
		<id>https://wiki.sgmk-ssam.ch/index.php?title=KIBLIX_2011&amp;diff=568</id>
		<title>KIBLIX 2011</title>
		<link rel="alternate" type="text/html" href="https://wiki.sgmk-ssam.ch/index.php?title=KIBLIX_2011&amp;diff=568"/>
		<updated>2011-09-08T07:51:07Z</updated>

		<summary type="html">&lt;p&gt;Oliverjones: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Abstract ==&lt;br /&gt;
&lt;br /&gt;
International festival KIBLIX, Maribor, Slovenia 18 – 23 NOV, 2011&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Mednarodni festival KIBLIX, Maribor, Slovenija, 18. – 23. november 2011&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
general intro, Shift from DIY to DIWO? partner festival MFRU, maribor 2012&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Keywords ===&lt;br /&gt;
&lt;br /&gt;
Education. Workshops. Installations. Performances. Presentations. Lab.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Izobraževanje. Delavnice. Instalacije. Performansi. Predstavitve. Laboratorij.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Overview ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;KIBLIX 2011 Educational Program&#039;&#039;&#039; - festival as a lab - will have a strong focus on education, hands-on making, collaboration and sharing of knowledge. The educational program is, on one side, addressing emerging artists to participate in professional / advanced workshops and exhibiting the outputs during the festival, and on the other side is reaching out to the public and the youth with various mini-workshops on creative and playful technology&amp;amp;art projects.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;KIBLIX 2011 Festival&#039;&#039;&#039; - festival as a cultural performance - aims to be a platform where artists, who are hungry to know what researchers are doing and thinking, and researchers, jealous to know of artistic experimentation come together to explore, discuss and share their ideas.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Partner Festival MFRU&#039;&#039;&#039; will happen at the same time also in Maribor. With its long tradition as an international computer arts festival they invited an interesting program of a/v performances, in collaboration with Optofonica (NL) and will have various Slovenian artists exhibiting and giving presentations. More on http://www.mfru.org/&lt;br /&gt;
&lt;br /&gt;
=== Draft program ===&lt;br /&gt;
[[File:Kiblix-ProgV02 pei.jpg|320px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Background ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;dejan &#039;&#039;&lt;br /&gt;
&lt;br /&gt;
KIBLIX history, KIBLA in general, connection and histrory with MFRU, Maribor and capitol of culture 2012 etc&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== KIBLA &amp;amp; SGMK Co-Curation ==&lt;br /&gt;
&lt;br /&gt;
=== Curational Statement ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;marc, dejan, pei, miha&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
From The Cabinet of Curiosity to Day of Wonder, for the last 200 years, public appreciation of knowing and understanding art, technology and science has transformed from a closed circle to open field, the knowledge of participating with hand-on experiences enhanced the experiences of sharing while doing, a priceless ideology forward into practice. &amp;quot; Share is in the Art&amp;quot; the theme of Kiblix Festival 2011 invite international, regional artist, tinker, hacker, scientist, philosopher, educator, social science engineer and writer with a particular emphasis on swiss participants to discuss the format of &amp;quot; festival as lab&amp;quot;; in that :&lt;br /&gt;
&lt;br /&gt;
- festival with educational focus aka festival as alternative means of self-education&lt;br /&gt;
&lt;br /&gt;
- festival that has impact on a local society in a long term&lt;br /&gt;
&lt;br /&gt;
- festival as laboratories for sharing of knowledge and hands-on collaborative making&lt;br /&gt;
&lt;br /&gt;
- festival as collaboration and network of international artists and regional community aka living, making and eating together&lt;br /&gt;
&lt;br /&gt;
- festival as build-up of regional DIWO culture&lt;br /&gt;
&lt;br /&gt;
=== Regional impact of KIBLIX 2011 ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;dejan, pei&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Kibla as organizer insists on wide sprayed of experts involved to communicate, to present and to cooperate. Long-term structural concepts enabled by Kiblix activities, aiming to establish a significant impact on regional reconnection of interested group in practicing, acting, writing and interacting wihtin/beyond the field of art, technology, media and social practices. Recent shiftings by the mode of rapid and open communication, in which emerges a significant impact on certain opinion-making target groups in the central European region. A growing demand for more cultural services and intellectual products towards knowledge and skill sharing, that is dictated by target groups – postmodern consumers whose behavior results in search for particular symbols and value marks which define the proceeding as artwork and as well the aftermath as networks. These trends correspond with the level of education. Innovation of society is encouraged by artistic heritage, processes of creation, references – in other words, by physical and non-material outputs of creative production in connection with other activities.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Organisational Team ===&lt;br /&gt;
&lt;br /&gt;
The making of [[KIBLIX 2011 - Organisational Team]] started with Dejan Pestotnik&#039;s | Producer (Kibla) and Miha Horvat&#039;s | Coordinator (son:DA) invitation to Marc Dusseiller | Liu, Pei-Wen | (SGMK) with a task to co-curate-ordinate the KIBLIX 2011. With the help of both local artists and students form Maribor this new born collaboration with a team of Swiss coordinators, workshop mentors and artists, we are becoming highly international and great expert group for the professional organisation of KIBLIX 2011.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pre KIBLIX 2011 Collaborations ===&lt;br /&gt;
&lt;br /&gt;
Preceding the start of the KIBLIX 2011 festival, we have already initiated various collaborations between Swiss communities and artists/initiatives from Slovenia/Maribor. Earliest discussions happened between Marc Dusseiller and Miha Horvat, in September 2010 (inspired by visits to highly interesting festivals, such as [http://natural-fiber.com/cellsbutton/ cellsbutton in Yogyakarta] or [http://www.pixelache.ac/helsinki/ Pixelache in Helsinki]), about visions of alternative modes of how to run a festival, how such international events MUST have a sustainable impact on local communities and how sharing, collaboration and Doing-Things-Together has to be more present in an exhibition context (instead of final pieces of art on a white wall). This finally led to the invitation of the Swiss co-production and co-curation by Marc Dusseiller and the Swiss Mechatronic Art Society for this years KIBLIX festival. During the year, we also established other moments of collaboration, such as the invitation of Monika Pocrnjić to co-assist the &amp;quot;diy makeaway&amp;quot; workshop series during the [http://www.electronfestival.ch/ Electron Festival in Geneva], April 2011, or the technical co-production, as a collaboration with SGMK, Maki3000 and Marc Dusseiller, of the JewBox by Veli&amp;amp;Amos, two emerging street artists collaborating already between Maribor and Zurich, exhibited in Perla Moda, Zürich (October 2010), and [http://www.kibla.org/en/sections/kibela-space-for-art/archive/kibela-arhiv/2011/veli-and-amos-live-in-galleries/ KiBeLa], Maribor (March 2011). Additionally, we could initiate another emerging Slovenian Collective, Marko Batista and Natasha Mušević, to participate at the [http://poollooq.ch/ poolloop festival] (by anorg, who will also participate at KIBLIX 2011) and collaborate during the SGMK@poolloop laboratory in Zürich (July 2011), again to bridge different sub-cultural communities and establish long-term networks. Finally, we are already planning to intensify these pre-festival collaborations by inviting a group of Slovenian artists to join the SGMK SummerCamp ([http://www.mechatronicart.ch/workshops/homemade-2011 Homemade DIY Arbeitswoche in Gais, Appenzell], August 2011) and for the participation for the workshops at [http://new.aec.at/cyw2011/en/about/ &amp;quot;Create Your World&amp;quot;] (the children festival, inside Ars Electronica, September 2011)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== KIBLIX Educational Program 10. - 23. Nov ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== KIBLIX Laboratory ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;marc&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== KIBLIX Professional Workshops ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;marc&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
With these intensive workshops we will address a more advanced group of artists, tinkerers and hackers across the region to join the pre-festival phase, learn, share their knowledge and collaborate with each other. The participants of the workshop will be selected through a call and a limited number of them can be hosted, including simple accommodation if needed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== [[Art in a Suitcase - Effi Tanner (CH)]] ====&lt;br /&gt;
&lt;br /&gt;
Suitcases are the ultimate sign of mobility. For an traveling artist it‘s the easiest thing to have his work as mobile as possible. Therefore we will talk about traveling, exhibitions, organisations and different kinds of (Art)spaces.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Kovčki so ultimativni simboli mobilnosti. Za potujočega umetnika je najlažje, da je njegovo delo kar se da mobilno. Zatorej bomo govorili o potovanju, razstavah, organizacijah in različnih vrsta (Art) prostorov.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== [[YOU, in the center of the world - Tobias Hoffmann (DE/CH)]] ====&lt;br /&gt;
If you ever wanted to know, how to control a 230V plug, send data over the local network and react to messages from the internet, this course is for you. The internet of real things is about connectivity. Connect your computer and control real things.&lt;br /&gt;
&lt;br /&gt;
*Tools : open sound control, networking protocol, PD, arduino API (software), arduino, wifi router (hardware)&lt;br /&gt;
*Participant should bring along : laptop with wifi, extension power cable, recycled toy or electronic or non-electronic motro driven gadgets.&lt;br /&gt;
*Required knowledge : ★★&lt;br /&gt;
**One should know which version of operating system is running on their laptop (Linux / Ubuntu and other FLOSS OS, mac osx 10.5 or earlier (32 bits), mac osx 10.6 (64 bits), or windows xp, vista, 7.&lt;br /&gt;
**One should know the administrator password/login of their laptop&lt;br /&gt;
**One should know how to install a new driver, application on their laptop&lt;br /&gt;
**One should know where to open network setting, open/close firewall setting&lt;br /&gt;
**One should know where to open video/sound card setting &lt;br /&gt;
&lt;br /&gt;
[[File:You.png|320px]] &lt;br /&gt;
[[File:Kiilo-TWITER_gateway.png|320px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== [[Hack A Sample:temp title - Jonas Ohrstorm (CH)]] ====&lt;br /&gt;
&lt;br /&gt;
&#039;&#039; Jonas &#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== [[FoldMe - dimension plus (TW/HK)]] ====&lt;br /&gt;
&lt;br /&gt;
Contemporary origami has become a new way of stimulating creative ideas nowadays. Among its various applications, design, fashion, sculpture, architecture, biotechnology, interaction, engineering, and religion are some of the more profound fields that have been broadened. Fabric Origami Experiment Project (FOE) was founded by Dimension Plus with its vision of going beyond the limitation that’s long been implemented in the traditional industry. Their aim is to further explore the possibility in the society as well as a more abstract manner. This is an open experiment that welcomes everyone to join, and deepen its belief in folding anything imaginable!&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Objective:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Understand digital software by using basic origami folding knowledge&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Intermediate:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
1. Yoshimura Pattern, Miura Ori Pattern, Diagonal Pattern &lt;br /&gt;
&lt;br /&gt;
2. Intro to Tools &lt;br /&gt;
&lt;br /&gt;
3. Texture, Paper, Garment &lt;br /&gt;
&lt;br /&gt;
4. Application (Light, Interior, Fashion, Architecture, etc.) &lt;br /&gt;
&lt;br /&gt;
5. Production (Craft ROBO)&lt;br /&gt;
&lt;br /&gt;
6. Local Culture 1. Folding Structure Deconstruction&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Advanced:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
1. Folding Structure Deconstruction&lt;br /&gt;
&lt;br /&gt;
2. Transformation (Parametric Origami, Rhino+Grasshopper) &lt;br /&gt;
&lt;br /&gt;
3. Advanced Material &lt;br /&gt;
&lt;br /&gt;
4. Craft ROBO 5. Kinetic Control (Arduino, Motor)&lt;br /&gt;
&lt;br /&gt;
6. Kinetic Application&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://wiki.sgmk-ssam.ch/images/e/ee/Workshop_dimension%2Bfold_me_2011.pdf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== [[Creative Radio - Framework Radio (UK/Estonia)]] ====&lt;br /&gt;
framework is a show consecrated to field-recording, and it’s use in composition. field-recording, phonography, the art of sound-hunting; open your ears and listen! Framework will develop together with local and international artists on the acoustic content for “creative radio”.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== [[omimorph4D - Fabienne Mayer &amp;amp; Marc Widmer (CH)]] ====&lt;br /&gt;
omnimorph is basically an open plastiline movement to share creative thoughts outside in the environment where you are living - playful street art maybe describes it best. The installation omnimorph4D can be considered as a stop-motion-loop-machine. Visitors can create their own short movies with plastiline where the background of the movie is again an other movie, either material collected during the festival/past festivals or previously created plastiline clips. Therefor it&#039;s basically possible to reuse own clips and create eternal loops. The whole software is based on puredata and GEM, both are freely available and open source.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Possible Workshops:&amp;lt;br/&amp;gt;&lt;br /&gt;
Build your own video-machine: Videoprocessing with open source sofware like Puredata, eiter with GEM, PDP-pidip or Gridflow&amp;lt;br/&amp;gt;&lt;br /&gt;
Cook your own plastiline: Alchemistic creation with ancient recipes and hidden formulas.&amp;lt;br/&amp;gt;&lt;br /&gt;
Kids-Workshop with similar topics. &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
http://omnimorph.ch/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== [[KIBLIX Educational Outreach &amp;amp; Interventions]] ====&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;marc, miha, monika&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== KIBLIX Festival 18. - 23. Nov ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Exibition &amp;amp; Public Intervention ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;all team&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==== Festival as a Lab / Lab as a Performance - SGMK (CH) ====&lt;br /&gt;
&lt;br /&gt;
==== Labs in Dialogue - KIBLIX (SI) &amp;lt;-&amp;gt; Piksel (NO)  ====&lt;br /&gt;
&lt;br /&gt;
==== HackLab Showcases - (HU/AT/CRO/SI/CH/TW) ====&lt;br /&gt;
&lt;br /&gt;
==== Kinetic Object - Pe Lang (CH) ====&lt;br /&gt;
&lt;br /&gt;
His work includes sound installations, live performances and compositions based on elegant and minimal kinetic systems, combined with different devices created by himself.&lt;br /&gt;
&lt;br /&gt;
==== to be named - Enrique Thomas (ES) ====&lt;br /&gt;
&lt;br /&gt;
Sound artist - interactive to other existing art forms - visual, computer performative - multifunctional interfaces expression&lt;br /&gt;
Interaktovno na ostale obstoječe umetniške prakse – vizualno, računalniško performativno – vmesniki multifunkcionalnega izražanja.&lt;br /&gt;
&lt;br /&gt;
==== Jewbox in Smoke - Veli &amp;amp; Amos (SI/CH) ====&lt;br /&gt;
&lt;br /&gt;
to be updated&lt;br /&gt;
&lt;br /&gt;
==== »v ŠUM_011« - Nova Gorica Students (SI) ====&lt;br /&gt;
&lt;br /&gt;
What is needed to transform the creative processes in free connections between movement, sound and picture? How in this context describe (programming) and implement the interaction of different groups, eg. in the face &amp;quot;ignorant&amp;quot; child, &amp;quot;lay person&amp;quot; and &amp;quot;professional&amp;quot; artist?&lt;br /&gt;
Kako je potrebno preoblikovati ustvarjalne procese v prostih povezavah med gibom, zvokom in sliko? Kako v tem kontekstu opisati in (programsko) izvesti interakcije različnih uporabniških skupin, npr. v soočenju »neukega« otroka,  »laika« in »profesionalnega« umetnika?&lt;br /&gt;
&lt;br /&gt;
==== Shaking hands with things - Nara Phister (CH) &amp;amp; - Mirzlekid (AT/CH) ====&lt;br /&gt;
A performance series of urban intervention in rediscovering  life cycle of a city, about growth and transciense. MIRZLEKID, Hansjörg Köfler (*1967) and Nara Pfister (*1981) are working as artist duo since 2004 in drawing, performance and installation. They are living together in Zürich, Switzerland.&lt;br /&gt;
We take things up, which we find around our working space. By reacting to their characteristics, they lead us to act. We pass the things on each other and this generates a flow, which showes earnestness as well as humour.&lt;br /&gt;
&lt;br /&gt;
=== Symposia ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;dusjagr&#039;&#039;, chaired by ... tba&lt;br /&gt;
&lt;br /&gt;
==== Workshopology ====&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;dusjagr&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==== Regional HackLab meeting ====&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;dusjagr, miha&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Lectures / performative presentations ===&lt;br /&gt;
&lt;br /&gt;
==== Hacking Dinner - (CZ) ====&lt;br /&gt;
==== KMKG studio (AT) ====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Sound performances ===&lt;br /&gt;
&lt;br /&gt;
==== little-object - pei (TW/CH) ====&lt;br /&gt;
==== frameworks radio (Int&#039;l) ====&lt;br /&gt;
==== Tim &amp;amp; Puma Mimi (CH)  ====&lt;br /&gt;
==== Jonas Ohrstrom (CH) ====&lt;br /&gt;
==== Pe Lang (CH) ====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [[KIBLIX 2011 - Participants List]] ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Festivals]]&lt;br /&gt;
[http://custom-essay-writing-service.org/index.php essay writing service]&lt;br /&gt;
&lt;br /&gt;
[http://cvresumewritingservices.org/ resume writing service]&lt;/div&gt;</summary>
		<author><name>Oliverjones</name></author>
	</entry>
	<entry>
		<id>https://wiki.sgmk-ssam.ch/index.php?title=KIBLIX_2011&amp;diff=567</id>
		<title>KIBLIX 2011</title>
		<link rel="alternate" type="text/html" href="https://wiki.sgmk-ssam.ch/index.php?title=KIBLIX_2011&amp;diff=567"/>
		<updated>2011-09-08T07:50:53Z</updated>

		<summary type="html">&lt;p&gt;Oliverjones: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Abstract ==&lt;br /&gt;
&lt;br /&gt;
International festival KIBLIX, Maribor, Slovenia 18 – 23 NOV, 2011&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Mednarodni festival KIBLIX, Maribor, Slovenija, 18. – 23. november 2011&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
general intro, Shift from DIY to DIWO? partner festival MFRU, maribor 2012&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Keywords ===&lt;br /&gt;
&lt;br /&gt;
Education. Workshops. Installations. Performances. Presentations. Lab.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Izobraževanje. Delavnice. Instalacije. Performansi. Predstavitve. Laboratorij.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Overview ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;KIBLIX 2011 Educational Program&#039;&#039;&#039; - festival as a lab - will have a strong focus on education, hands-on making, collaboration and sharing of knowledge. The educational program is, on one side, addressing emerging artists to participate in professional / advanced workshops and exhibiting the outputs during the festival, and on the other side is reaching out to the public and the youth with various mini-workshops on creative and playful technology&amp;amp;art projects.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;KIBLIX 2011 Festival&#039;&#039;&#039; - festival as a cultural performance - aims to be a platform where artists, who are hungry to know what researchers are doing and thinking, and researchers, jealous to know of artistic experimentation come together to explore, discuss and share their ideas.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Partner Festival MFRU&#039;&#039;&#039; will happen at the same time also in Maribor. With its long tradition as an international computer arts festival they invited an interesting program of a/v performances, in collaboration with Optofonica (NL) and will have various Slovenian artists exhibiting and giving presentations. More on http://www.mfru.org/&lt;br /&gt;
&lt;br /&gt;
=== Draft program ===&lt;br /&gt;
[[File:Kiblix-ProgV02 pei.jpg|320px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Background ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;dejan &#039;&#039;&lt;br /&gt;
&lt;br /&gt;
KIBLIX history, KIBLA in general, connection and histrory with MFRU, Maribor and capitol of culture 2012 etc&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== KIBLA &amp;amp; SGMK Co-Curation ==&lt;br /&gt;
&lt;br /&gt;
=== Curational Statement ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;marc, dejan, pei, miha&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
From The Cabinet of Curiosity to Day of Wonder, for the last 200 years, public appreciation of knowing and understanding art, technology and science has transformed from a closed circle to open field, the knowledge of participating with hand-on experiences enhanced the experiences of sharing while doing, a priceless ideology forward into practice. &amp;quot; Share is in the Art&amp;quot; the theme of Kiblix Festival 2011 invite international, regional artist, tinker, hacker, scientist, philosopher, educator, social science engineer and writer with a particular emphasis on swiss participants to discuss the format of &amp;quot; festival as lab&amp;quot;; in that :&lt;br /&gt;
&lt;br /&gt;
- festival with educational focus aka festival as alternative means of self-education&lt;br /&gt;
&lt;br /&gt;
- festival that has impact on a local society in a long term&lt;br /&gt;
&lt;br /&gt;
- festival as laboratories for sharing of knowledge and hands-on collaborative making&lt;br /&gt;
&lt;br /&gt;
- festival as collaboration and network of international artists and regional community aka living, making and eating together&lt;br /&gt;
&lt;br /&gt;
- festival as build-up of regional DIWO culture&lt;br /&gt;
&lt;br /&gt;
=== Regional impact of KIBLIX 2011 ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;dejan, pei&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Kibla as organizer insists on wide sprayed of experts involved to communicate, to present and to cooperate. Long-term structural concepts enabled by Kiblix activities, aiming to establish a significant impact on regional reconnection of interested group in practicing, acting, writing and interacting wihtin/beyond the field of art, technology, media and social practices. Recent shiftings by the mode of rapid and open communication, in which emerges a significant impact on certain opinion-making target groups in the central European region. A growing demand for more cultural services and intellectual products towards knowledge and skill sharing, that is dictated by target groups – postmodern consumers whose behavior results in search for particular symbols and value marks which define the proceeding as artwork and as well the aftermath as networks. These trends correspond with the level of education. Innovation of society is encouraged by artistic heritage, processes of creation, references – in other words, by physical and non-material outputs of creative production in connection with other activities.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Organisational Team ===&lt;br /&gt;
&lt;br /&gt;
The making of [[KIBLIX 2011 - Organisational Team]] started with Dejan Pestotnik&#039;s | Producer (Kibla) and Miha Horvat&#039;s | Coordinator (son:DA) invitation to Marc Dusseiller | Liu, Pei-Wen | (SGMK) with a task to co-curate-ordinate the KIBLIX 2011. With the help of both local artists and students form Maribor this new born collaboration with a team of Swiss coordinators, workshop mentors and artists, we are becoming highly international and great expert group for the professional organisation of KIBLIX 2011.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Pre KIBLIX 2011 Collaborations ===&lt;br /&gt;
&lt;br /&gt;
Preceding the start of the KIBLIX 2011 festival, we have already initiated various collaborations between Swiss communities and artists/initiatives from Slovenia/Maribor. Earliest discussions happened between Marc Dusseiller and Miha Horvat, in September 2010 (inspired by visits to highly interesting festivals, such as [http://natural-fiber.com/cellsbutton/ cellsbutton in Yogyakarta] or [http://www.pixelache.ac/helsinki/ Pixelache in Helsinki]), about visions of alternative modes of how to run a festival, how such international events MUST have a sustainable impact on local communities and how sharing, collaboration and Doing-Things-Together has to be more present in an exhibition context (instead of final pieces of art on a white wall). This finally led to the invitation of the Swiss co-production and co-curation by Marc Dusseiller and the Swiss Mechatronic Art Society for this years KIBLIX festival. During the year, we also established other moments of collaboration, such as the invitation of Monika Pocrnjić to co-assist the &amp;quot;diy makeaway&amp;quot; workshop series during the [http://www.electronfestival.ch/ Electron Festival in Geneva], April 2011, or the technical co-production, as a collaboration with SGMK, Maki3000 and Marc Dusseiller, of the JewBox by Veli&amp;amp;Amos, two emerging street artists collaborating already between Maribor and Zurich, exhibited in Perla Moda, Zürich (October 2010), and [http://www.kibla.org/en/sections/kibela-space-for-art/archive/kibela-arhiv/2011/veli-and-amos-live-in-galleries/ KiBeLa], Maribor (March 2011). Additionally, we could initiate another emerging Slovenian Collective, Marko Batista and Natasha Mušević, to participate at the [http://poollooq.ch/ poolloop festival] (by anorg, who will also participate at KIBLIX 2011) and collaborate during the SGMK@poolloop laboratory in Zürich (July 2011), again to bridge different sub-cultural communities and establish long-term networks. Finally, we are already planning to intensify these pre-festival collaborations by inviting a group of Slovenian artists to join the SGMK SummerCamp ([http://www.mechatronicart.ch/workshops/homemade-2011 Homemade DIY Arbeitswoche in Gais, Appenzell], August 2011) and for the participation for the workshops at [http://new.aec.at/cyw2011/en/about/ &amp;quot;Create Your World&amp;quot;] (the children festival, inside Ars Electronica, September 2011)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== KIBLIX Educational Program 10. - 23. Nov ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== KIBLIX Laboratory ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;marc&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== KIBLIX Professional Workshops ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;marc&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
With these intensive workshops we will address a more advanced group of artists, tinkerers and hackers across the region to join the pre-festival phase, learn, share their knowledge and collaborate with each other. The participants of the workshop will be selected through a call and a limited number of them can be hosted, including simple accommodation if needed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== [[Art in a Suitcase - Effi Tanner (CH)]] ====&lt;br /&gt;
&lt;br /&gt;
Suitcases are the ultimate sign of mobility. For an traveling artist it‘s the easiest thing to have his work as mobile as possible. Therefore we will talk about traveling, exhibitions, organisations and different kinds of (Art)spaces.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Kovčki so ultimativni simboli mobilnosti. Za potujočega umetnika je najlažje, da je njegovo delo kar se da mobilno. Zatorej bomo govorili o potovanju, razstavah, organizacijah in različnih vrsta (Art) prostorov.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== [[YOU, in the center of the world - Tobias Hoffmann (DE/CH)]] ====&lt;br /&gt;
If you ever wanted to know, how to control a 230V plug, send data over the local network and react to messages from the internet, this course is for you. The internet of real things is about connectivity. Connect your computer and control real things.&lt;br /&gt;
&lt;br /&gt;
*Tools : open sound control, networking protocol, PD, arduino API (software), arduino, wifi router (hardware)&lt;br /&gt;
*Participant should bring along : laptop with wifi, extension power cable, recycled toy or electronic or non-electronic motro driven gadgets.&lt;br /&gt;
*Required knowledge : ★★&lt;br /&gt;
**One should know which version of operating system is running on their laptop (Linux / Ubuntu and other FLOSS OS, mac osx 10.5 or earlier (32 bits), mac osx 10.6 (64 bits), or windows xp, vista, 7.&lt;br /&gt;
**One should know the administrator password/login of their laptop&lt;br /&gt;
**One should know how to install a new driver, application on their laptop&lt;br /&gt;
**One should know where to open network setting, open/close firewall setting&lt;br /&gt;
**One should know where to open video/sound card setting &lt;br /&gt;
&lt;br /&gt;
[[File:You.png|320px]] &lt;br /&gt;
[[File:Kiilo-TWITER_gateway.png|320px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== [[Hack A Sample:temp title - Jonas Ohrstorm (CH)]] ====&lt;br /&gt;
&lt;br /&gt;
&#039;&#039; Jonas &#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== [[FoldMe - dimension plus (TW/HK)]] ====&lt;br /&gt;
&lt;br /&gt;
Contemporary origami has become a new way of stimulating creative ideas nowadays. Among its various applications, design, fashion, sculpture, architecture, biotechnology, interaction, engineering, and religion are some of the more profound fields that have been broadened. Fabric Origami Experiment Project (FOE) was founded by Dimension Plus with its vision of going beyond the limitation that’s long been implemented in the traditional industry. Their aim is to further explore the possibility in the society as well as a more abstract manner. This is an open experiment that welcomes everyone to join, and deepen its belief in folding anything imaginable!&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Objective:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Understand digital software by using basic origami folding knowledge&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Intermediate:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
1. Yoshimura Pattern, Miura Ori Pattern, Diagonal Pattern &lt;br /&gt;
&lt;br /&gt;
2. Intro to Tools &lt;br /&gt;
&lt;br /&gt;
3. Texture, Paper, Garment &lt;br /&gt;
&lt;br /&gt;
4. Application (Light, Interior, Fashion, Architecture, etc.) &lt;br /&gt;
&lt;br /&gt;
5. Production (Craft ROBO)&lt;br /&gt;
&lt;br /&gt;
6. Local Culture 1. Folding Structure Deconstruction&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Advanced:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
1. Folding Structure Deconstruction&lt;br /&gt;
&lt;br /&gt;
2. Transformation (Parametric Origami, Rhino+Grasshopper) &lt;br /&gt;
&lt;br /&gt;
3. Advanced Material &lt;br /&gt;
&lt;br /&gt;
4. Craft ROBO 5. Kinetic Control (Arduino, Motor)&lt;br /&gt;
&lt;br /&gt;
6. Kinetic Application&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://wiki.sgmk-ssam.ch/images/e/ee/Workshop_dimension%2Bfold_me_2011.pdf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== [[Creative Radio - Framework Radio (UK/Estonia)]] ====&lt;br /&gt;
framework is a show consecrated to field-recording, and it’s use in composition. field-recording, phonography, the art of sound-hunting; open your ears and listen! Framework will develop together with local and international artists on the acoustic content for “creative radio”.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== [[omimorph4D - Fabienne Mayer &amp;amp; Marc Widmer (CH)]] ====&lt;br /&gt;
omnimorph is basically an open plastiline movement to share creative thoughts outside in the environment where you are living - playful street art maybe describes it best. The installation omnimorph4D can be considered as a stop-motion-loop-machine. Visitors can create their own short movies with plastiline where the background of the movie is again an other movie, either material collected during the festival/past festivals or previously created plastiline clips. Therefor it&#039;s basically possible to reuse own clips and create eternal loops. The whole software is based on puredata and GEM, both are freely available and open source.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Possible Workshops:&amp;lt;br/&amp;gt;&lt;br /&gt;
Build your own video-machine: Videoprocessing with open source sofware like Puredata, eiter with GEM, PDP-pidip or Gridflow&amp;lt;br/&amp;gt;&lt;br /&gt;
Cook your own plastiline: Alchemistic creation with ancient recipes and hidden formulas.&amp;lt;br/&amp;gt;&lt;br /&gt;
Kids-Workshop with similar topics. &amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
http://omnimorph.ch/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== [[KIBLIX Educational Outreach &amp;amp; Interventions]] ====&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;marc, miha, monika&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== KIBLIX Festival 18. - 23. Nov ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Exibition &amp;amp; Public Intervention ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;all team&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==== Festival as a Lab / Lab as a Performance - SGMK (CH) ====&lt;br /&gt;
&lt;br /&gt;
==== Labs in Dialogue - KIBLIX (SI) &amp;lt;-&amp;gt; Piksel (NO)  ====&lt;br /&gt;
&lt;br /&gt;
==== HackLab Showcases - (HU/AT/CRO/SI/CH/TW) ====&lt;br /&gt;
&lt;br /&gt;
==== Kinetic Object - Pe Lang (CH) ====&lt;br /&gt;
&lt;br /&gt;
His work includes sound installations, live performances and compositions based on elegant and minimal kinetic systems, combined with different devices created by himself.&lt;br /&gt;
&lt;br /&gt;
==== to be named - Enrique Thomas (ES) ====&lt;br /&gt;
&lt;br /&gt;
Sound artist - interactive to other existing art forms - visual, computer performative - multifunctional interfaces expression&lt;br /&gt;
Interaktovno na ostale obstoječe umetniške prakse – vizualno, računalniško performativno – vmesniki multifunkcionalnega izražanja.&lt;br /&gt;
&lt;br /&gt;
==== Jewbox in Smoke - Veli &amp;amp; Amos (SI/CH) ====&lt;br /&gt;
&lt;br /&gt;
to be updated&lt;br /&gt;
&lt;br /&gt;
==== »v ŠUM_011« - Nova Gorica Students (SI) ====&lt;br /&gt;
&lt;br /&gt;
What is needed to transform the creative processes in free connections between movement, sound and picture? How in this context describe (programming) and implement the interaction of different groups, eg. in the face &amp;quot;ignorant&amp;quot; child, &amp;quot;lay person&amp;quot; and &amp;quot;professional&amp;quot; artist?&lt;br /&gt;
Kako je potrebno preoblikovati ustvarjalne procese v prostih povezavah med gibom, zvokom in sliko? Kako v tem kontekstu opisati in (programsko) izvesti interakcije različnih uporabniških skupin, npr. v soočenju »neukega« otroka,  »laika« in »profesionalnega« umetnika?&lt;br /&gt;
&lt;br /&gt;
==== Shaking hands with things - Nara Phister (CH) &amp;amp; - Mirzlekid (AT/CH) ====&lt;br /&gt;
A performance series of urban intervention in rediscovering  life cycle of a city, about growth and transciense. MIRZLEKID, Hansjörg Köfler (*1967) and Nara Pfister (*1981) are working as artist duo since 2004 in drawing, performance and installation. They are living together in Zürich, Switzerland.&lt;br /&gt;
We take things up, which we find around our working space. By reacting to their characteristics, they lead us to act. We pass the things on each other and this generates a flow, which showes earnestness as well as humour.&lt;br /&gt;
&lt;br /&gt;
=== Symposia ===&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;dusjagr&#039;&#039;, chaired by ... tba&lt;br /&gt;
&lt;br /&gt;
==== Workshopology ====&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;dusjagr&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==== Regional HackLab meeting ====&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;dusjagr, miha&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Lectures / performative presentations ===&lt;br /&gt;
&lt;br /&gt;
==== Hacking Dinner - (CZ) ====&lt;br /&gt;
==== KMKG studio (AT) ====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Sound performances ===&lt;br /&gt;
&lt;br /&gt;
==== little-object - pei (TW/CH) ====&lt;br /&gt;
==== frameworks radio (Int&#039;l) ====&lt;br /&gt;
==== Tim &amp;amp; Puma Mimi (CH)  ====&lt;br /&gt;
==== Jonas Ohrstrom (CH) ====&lt;br /&gt;
==== Pe Lang (CH) ====&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [[KIBLIX 2011 - Participants List]] ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Festivals]]&lt;br /&gt;
[http://custom-essay-writing-service.org/index.php essay writing service]&lt;br /&gt;
&lt;br /&gt;
[http://editingwritingservices.org/ dissertation editing]&lt;/div&gt;</summary>
		<author><name>Oliverjones</name></author>
	</entry>
	<entry>
		<id>https://wiki.sgmk-ssam.ch/index.php?title=Electron_Festival_2011&amp;diff=566</id>
		<title>Electron Festival 2011</title>
		<link rel="alternate" type="text/html" href="https://wiki.sgmk-ssam.ch/index.php?title=Electron_Festival_2011&amp;diff=566"/>
		<updated>2011-09-08T07:49:52Z</updated>

		<summary type="html">&lt;p&gt;Oliverjones: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:makeaway]]&lt;br /&gt;
[[Category:Workshops]]&lt;br /&gt;
[[File:Website-Headers-3-en.png|640px|http://www.electronfestival.ch/2011/en]]&lt;br /&gt;
[[File:Pmina.jpg|240px]]&lt;br /&gt;
= electron festival geneva =&lt;br /&gt;
&lt;br /&gt;
SGMK -Société suisse des Arts mecatroniques&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
DIY MAKEAWAY @ Bâtiment d&#039;art contemporain (Bac)&lt;br /&gt;
&lt;br /&gt;
Opening &amp;amp; preparing /&lt;br /&gt;
Wednesday 20 april&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Swiss Mechatronic Art Society – DIY makeaway /&lt;br /&gt;
&lt;br /&gt;
Thursday 21 april 16h00 - 21h00&lt;br /&gt;
&lt;br /&gt;
Friday 22 april 16h00 - 21h00 &lt;br /&gt;
&lt;br /&gt;
Saturday 23 april 14h00 - 21h00&lt;br /&gt;
&lt;br /&gt;
Sunday 24 april 11h00 - 21h00&lt;br /&gt;
&lt;br /&gt;
= workshop = &lt;br /&gt;
* [http://new.mechatronicart.ch/index.php?id=134 micro_noise] / handout in [http://wiki.sgmk-ssam.ch/images/9/9e/A4_MicroNoise.pdf EN-A4]; [http://wiki.sgmk-ssam.ch/images/e/ec/A3_micronoise.pdf EN-A3] / [http://www.mechatronicart.ch/diymakeaway/wp-content/uploads/2008/07/breadboard_micronoise_big.png circuit on breadboard] / [http://www.mechatronicart.ch/diymakeaway/wp-content/uploads/2008/10/maske_new-scaled_mirrored_6x_160x100.png etching graph]&lt;br /&gt;
* [http://new.mechatronicart.ch/index.php?id=135 Light Seeker] / handout in [http://wiki.sgmk-ssam.ch/images/c/c8/LightSeeker2011.pdf EN-A4]; [http://wiki.sgmk-ssam.ch/images/4/47/A3_LightSeeker.pdf EN-A3]&lt;br /&gt;
* I&#039;M NUDE  (Ionchamber for Monitoring NUclear DEsasters ) [http://wiki.sgmk-ssam.ch/images/1/14/A4_I_am_nude.pdf EN-A4]; [http://wiki.sgmk-ssam.ch/images/9/97/A3_I_am_nude.pdf EN-A3]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
under the competent guidance of the electro-tinkerers of the Swiss Mechatronic Art Society (SGMK) one can solder an electronic toy or instrument such as a mini-robot or noise-synthesizer around 45 minutes.&lt;br /&gt;
&lt;br /&gt;
The SGMK is one of the most important groups on the current Swiss DIY scene. Until now, their activities where mostly in the German-speaking part of Switzerland (and in many countries abroad). The Electron festival will be a good occasion for them to connect. &lt;br /&gt;
&lt;br /&gt;
* http://www.electronfestival.ch/2011/en/dates.html?ditto_gd_documents=340&lt;br /&gt;
&lt;br /&gt;
== location == &lt;br /&gt;
* Venue address : BAC - Bâtiment d&#039;art contemporain, Rue des Bains 28, 1205 Genève&lt;br /&gt;
 &lt;br /&gt;
* google maps: [http://maps.google.com/maps?f=q&amp;amp;source=s_q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;q=B%C3%A2timent+d%27art+contemporain,+GENEVA&amp;amp;aq=&amp;amp;sll=37.0625,-95.677068&amp;amp;sspn=48.77566,114.169922&amp;amp;ie=UTF8&amp;amp;hq=B%C3%A2timent+d%27art+contemporain,&amp;amp;hnear=Geneva,+Gen%C3%A8ve,+Canton+of+Geneva,+Switzerland&amp;amp;t=h&amp;amp;z=16&amp;amp;iwloc=A&amp;amp;cid=2717002044073977934 Bâtiment d&#039;art contemporain]&lt;br /&gt;
&lt;br /&gt;
{{#widget:GoogleMaps&lt;br /&gt;
|key=ABQIAAAAlPm43KFQwtkRrWYtQdVTphSRNxm4qhmcBlD3iKkEiWOO73bkTBQ01pa1G4IuDXbR7MXXesalyHMJ9A&lt;br /&gt;
|width=600&lt;br /&gt;
|height=400&lt;br /&gt;
|lat=46.198661&lt;br /&gt;
|lng=6.138223&lt;br /&gt;
|centermarker=yes&lt;br /&gt;
|maptypecontrol=yes&lt;br /&gt;
|largemapcontrol=yes&lt;br /&gt;
|overviewmapcontrol=no&lt;br /&gt;
|scalecontrol=yes&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Accomodation == &lt;br /&gt;
{|&lt;br /&gt;
|&lt;br /&gt;
{{#widget:GoogleMaps&lt;br /&gt;
|key=ABQIAAAAlPm43KFQwtkRrWYtQdVTphSRNxm4qhmcBlD3iKkEiWOO73bkTBQ01pa1G4IuDXbR7MXXesalyHMJ9A&lt;br /&gt;
|width=600&lt;br /&gt;
|height=400&lt;br /&gt;
|lat=46.186964&lt;br /&gt;
|lng=6.122204&lt;br /&gt;
|centermarker=yes&lt;br /&gt;
|maptypecontrol=yes&lt;br /&gt;
|largemapcontrol=no&lt;br /&gt;
|overviewmapcontrol=no&lt;br /&gt;
|scalecontrol=yes&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
||&lt;br /&gt;
&#039;&#039;&#039;Informations pratiques&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Ouverture&#039;&#039;&#039;&lt;br /&gt;
Du mardi au dimanche de 14h à 18h et sur rendez-vous&lt;br /&gt;
Nocturne le jeudi jusqu&#039;à 20h&lt;br /&gt;
Visites guidées pour les groupes sur demande&lt;br /&gt;
Entrée libre&lt;br /&gt;
&lt;br /&gt;
Buvette pendant les expositions le jeudi de 18h à 20h et le dimanche de 14h à 18h&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Adresse&#039;&#039;&#039;&lt;br /&gt;
Villa Bernasconi&lt;br /&gt;
Route du Grand-Lancy 8&lt;br /&gt;
1212 Grand-Lancy&lt;br /&gt;
+41(0)22 794 73 03&lt;br /&gt;
info@villabernasconi.ch&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Accès&#039;&#039;&#039;&lt;br /&gt;
Trams 15 arrêt Mairie de Lancy&lt;br /&gt;
Tram 17 arrêt Pont-Rouge&lt;br /&gt;
Train depuis la gare Cornavin arrêt Pont-Rouge&lt;br /&gt;
Parking de l&#039;Etoile&lt;br /&gt;
Télécharger le plan d&#039;accès&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Service culturel de la Ville de Lancy&#039;&#039;&#039;&lt;br /&gt;
www.lancy.ch&lt;br /&gt;
Françoise Mamie et Hélène Mariéthoz, responsables&lt;br /&gt;
Déléguées à la culture&lt;br /&gt;
Route du Grand-Lancy 41&lt;br /&gt;
1212 Grand-Lancy&lt;br /&gt;
+41(0)22 706 15 33 ou 34&lt;br /&gt;
f.mamie@lancy.ch&lt;br /&gt;
h.mariethoz@lancy.ch&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Equipe à la Villa Bernasconi&#039;&#039;&#039;&lt;br /&gt;
Marie Roduit, assistante +41(0)22 794 73 03 m.roduit@lancy.ch&lt;br /&gt;
Antoine Maret, régisseur +41(0)22 794 73 57&lt;br /&gt;
&lt;br /&gt;
[[File:Villabernasconi.jpg|180px]]&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== people ==&lt;br /&gt;
we have the following people helping:&lt;br /&gt;
* Tobias Hoffmann (DE/CH)&lt;br /&gt;
* Uwe Schüler &amp;amp; Jördis Drawe (DE)&lt;br /&gt;
* Monika Pocrnjić (SI)&lt;br /&gt;
* Ranga Adrian (CA/CH), speaks fluent french&lt;br /&gt;
* Pei-Wen Liu (TW/CH)&lt;br /&gt;
* Aurelio Lucchesi (CH), speaks &amp;lt;s&amp;gt;ok&amp;lt;/s&amp;gt; broken french&lt;br /&gt;
* Michael Ulber (CH), speaks o.k. french&lt;br /&gt;
&lt;br /&gt;
== attendance list ==&lt;br /&gt;
&lt;br /&gt;
please attend  @ 3 workshops at least&lt;br /&gt;
{| style=&amp;quot;background-color:#ffffee;&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|             || ^Thu 16-21h || ^Fr.16-21h|| ^Sa.14-17:30h|| ^Sa.17:30-21h || ^Su.11-17:30h || ^Su.17:30-21h  &lt;br /&gt;
|-&lt;br /&gt;
|  Tobias     ||     x       ||     x     ||              ||       x     ||      x        ||       x       &lt;br /&gt;
|-&lt;br /&gt;
|  Pei        ||     x       ||     x     ||              ||       x     ||             ||    x       &lt;br /&gt;
|-&lt;br /&gt;
|  Uwe        ||     x       ||      x    ||       x      ||             ||      x       ||                 &lt;br /&gt;
|-&lt;br /&gt;
|  Jördis     ||     x       ||      x    ||       x      ||             ||      x       ||              &lt;br /&gt;
|-&lt;br /&gt;
|  Monica     ||      x      ||      x    ||              ||        x    ||              ||   x           &lt;br /&gt;
|-&lt;br /&gt;
|  Adrian     ||             ||           ||              ||             ||              ||              &lt;br /&gt;
|-&lt;br /&gt;
|  Aurelio    ||             ||      x    ||      x       ||             ||             ||      x       &lt;br /&gt;
|-&lt;br /&gt;
|  Michael    ||             ||      x    ||      x       ||             ||              ||              &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== TODO ==&lt;br /&gt;
* check &amp;amp; prepare material&lt;br /&gt;
* inform helpers &lt;br /&gt;
* outline schedule &lt;br /&gt;
* prepare handouts&lt;br /&gt;
&lt;br /&gt;
== Photo Documentation ==&lt;br /&gt;
&lt;br /&gt;
* 20/21 Apr diymakeaway @ http://is.gd/jHJFsV&lt;br /&gt;
* 22 Apr diymakeaway @ http://is.gd/ecIjvc&lt;br /&gt;
* 23 Apr diymakeaway @ http://is.gd/s9Nnqq&lt;br /&gt;
* 24 Apr diymakeaway @ http://is.gd/VhUEtX&lt;br /&gt;
* photo by Uwe @ http://is.gd/zMZqba&lt;br /&gt;
* photo by electron festival @ http://www.flickr.com/photos/electron-festival&lt;br /&gt;
&lt;br /&gt;
[http://editingwritingservices.org/article.php article writing service]&lt;/div&gt;</summary>
		<author><name>Oliverjones</name></author>
	</entry>
</feed>