<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Minsoohwang</id>
	<title>Medien Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Minsoohwang"/>
	<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/Special:Contributions/Minsoohwang"/>
	<updated>2026-05-17T17:39:33Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.6</generator>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:MinsooBot.gif&amp;diff=71832</id>
		<title>File:MinsooBot.gif</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:MinsooBot.gif&amp;diff=71832"/>
		<updated>2015-04-29T13:02:49Z</updated>

		<summary type="html">&lt;p&gt;Minsoohwang: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
&lt;br /&gt;
== Copyright status: ==&lt;br /&gt;
&lt;br /&gt;
== Source: ==&lt;/div&gt;</summary>
		<author><name>Minsoohwang</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Bots_%27n%27_Plots/minsoo_hwang&amp;diff=71831</id>
		<title>GMU:Bots &#039;n&#039; Plots/minsoo hwang</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Bots_%27n%27_Plots/minsoo_hwang&amp;diff=71831"/>
		<updated>2015-04-29T13:01:31Z</updated>

		<summary type="html">&lt;p&gt;Minsoohwang: Created page with &amp;quot;==Meditation Bot==  left  &amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;   ==== Meditation Bot Code ====  &amp;lt;pre style=&amp;quot;font-size:smaller&amp;quot; &amp;gt;  &amp;quot;&amp;quot;&amp;quot;  Meditation Bot  &amp;quot;...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Meditation Bot==&lt;br /&gt;
&lt;br /&gt;
[[File:MinsooBot.gif|100x100px|thumb|left]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Meditation Bot Code ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;font-size:smaller&amp;quot; &amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Meditation Bot&lt;br /&gt;
&lt;br /&gt;
&amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
diameter = 400&lt;br /&gt;
centerX = diameter/2&lt;br /&gt;
centerY = diameter/2&lt;br /&gt;
boxSize = 120&lt;br /&gt;
balls = [(100,20,-2.5,3,20),(120,50,-3.5,-3,10),(70,20,-3.5,-3,10),&lt;br /&gt;
         (190,50,-1,-3,20),(300,50,-5,-3,10),(330,100,-2,-3,10)]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
def setup():&lt;br /&gt;
    size(diameter, diameter+100)&lt;br /&gt;
    colorMode(RGB, 1)&lt;br /&gt;
    &lt;br /&gt;
&lt;br /&gt;
def draw():&lt;br /&gt;
    &lt;br /&gt;
    #style&lt;br /&gt;
    rectMode(CENTER)&lt;br /&gt;
    ellipseMode(CENTER)&lt;br /&gt;
    noStroke()&lt;br /&gt;
          &lt;br /&gt;
    boxsize = 100&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    angle = PI * sin(frameCount * 0.02)&lt;br /&gt;
&lt;br /&gt;
    background(1,.1)&lt;br /&gt;
    &lt;br /&gt;
    &lt;br /&gt;
    #body&lt;br /&gt;
    fill(1,.1,.6,.6)&lt;br /&gt;
    rect(centerX,centerY+50,boxSize,boxSize)&lt;br /&gt;
    &lt;br /&gt;
    #head&lt;br /&gt;
    fill(1,.1,.6,.6)&lt;br /&gt;
    ellipse(centerX,centerY-boxSize+50, boxSize,boxSize)&lt;br /&gt;
    &lt;br /&gt;
    #leg&lt;br /&gt;
    fill(1,.1,.6,.6)&lt;br /&gt;
    rect(centerX-45,centerY+170,boxSize/4,boxSize)&lt;br /&gt;
    rect(centerX+45,centerY+170,boxSize/4,boxSize)&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
    position1x = centerX - boxsize/2&lt;br /&gt;
    &lt;br /&gt;
    position1y = centerY - boxsize/2 +50 &lt;br /&gt;
    position2x = centerX + boxsize/2 &lt;br /&gt;
    position2y = centerY - boxsize/2 +50&lt;br /&gt;
    &lt;br /&gt;
    # Right Arms&lt;br /&gt;
    drawArm(position2x, position2y, +1, angle - TWO_PI * .5)&lt;br /&gt;
&lt;br /&gt;
    &lt;br /&gt;
    # Left Arms&lt;br /&gt;
    drawArm(position1x, position1y, -1, angle -TWO_PI * .5)&lt;br /&gt;
&lt;br /&gt;
    &lt;br /&gt;
    #ball&lt;br /&gt;
    fill(0,.5,.8,.3)&lt;br /&gt;
&lt;br /&gt;
    for i in range(len(balls)):&lt;br /&gt;
        x,y,dx,dy,r = balls[i]&lt;br /&gt;
        x += dx&lt;br /&gt;
        if constrain(x,r,diameter-r) != x: dx = -dx&lt;br /&gt;
        y += dy&lt;br /&gt;
        if constrain(y,r,diameter+100-r) != y: dy = -dy&lt;br /&gt;
        balls[i] = x,y,dx,dy,r&lt;br /&gt;
        ellipse(x,y,r,r)&lt;br /&gt;
        saveFrame(&amp;quot;MinsooBot.gif&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
    &lt;br /&gt;
def drawArm(xpos, ypos, direction, angle = -TWO_PI /2):&lt;br /&gt;
    pushMatrix()&lt;br /&gt;
    translate(xpos, ypos)&lt;br /&gt;
    scale(direction, 1)&lt;br /&gt;
    rotate(angle)&lt;br /&gt;
    rectMode(CORNER)&lt;br /&gt;
    rect(0, 0, 20, 150)&lt;br /&gt;
    popMatrix()&lt;br /&gt;
&lt;br /&gt;
    &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Minsoohwang</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Minsoo.png&amp;diff=71613</id>
		<title>File:Minsoo.png</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:Minsoo.png&amp;diff=71613"/>
		<updated>2015-04-22T16:54:05Z</updated>

		<summary type="html">&lt;p&gt;Minsoohwang: alt text&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
[[Image:minsoo.png|200px|thumb|left|alt text]]&lt;br /&gt;
== Copyright status: ==&lt;br /&gt;
&lt;br /&gt;
== Source: ==&lt;/div&gt;</summary>
		<author><name>Minsoohwang</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:SminKimRobot.png&amp;diff=71608</id>
		<title>File:SminKimRobot.png</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=File:SminKimRobot.png&amp;diff=71608"/>
		<updated>2015-04-22T16:52:43Z</updated>

		<summary type="html">&lt;p&gt;Minsoohwang: alt text&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
[[Image:sminKimRobot.png|100*100px|thumb|left|alt text]]&lt;br /&gt;
== Copyright status: ==&lt;br /&gt;
&lt;br /&gt;
== Source: ==&lt;/div&gt;</summary>
		<author><name>Minsoohwang</name></author>
	</entry>
	<entry>
		<id>https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Bots_%27n%27_Plots&amp;diff=71500</id>
		<title>GMU:Bots &#039;n&#039; Plots</title>
		<link rel="alternate" type="text/html" href="https://www.uni-weimar.de/kunst-und-gestaltung/wiki/index.php?title=GMU:Bots_%27n%27_Plots&amp;diff=71500"/>
		<updated>2015-04-15T18:27:33Z</updated>

		<summary type="html">&lt;p&gt;Minsoohwang: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Bots-n-plots-maillardet-drawing.png|thumb|left|300px|&#039;&#039;Drawing by [[wikipedia:Maillardet&#039;s automaton|the Draughtsman-Writer Bot]] ca. 1800&#039;&#039;]] &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Bots &#039;n&#039; Plots &amp;amp;mdash; Malen nach 0 und 1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[:Category:Werkmodul|Werkmodul]]/[[:Category:Fachmodul|Fachmodul]]&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;Lecturer:&#039;&#039; [[User:ms|Martin Schneider]]&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;Credits:&#039;&#039; 6 [[ECTS]], 4 [[SWS]]&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;Date:&#039;&#039; Wednesday 17:00 - 20:30 Uhr &amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;Venue:&#039;&#039; [[Marienstraße 7b]], Room 204&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;First meeting:&#039;&#039; Wednesday, 15. Apr. 2015&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear: both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NEWS&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;&#039;The Deadline has been extended by 24 hours :)&#039;&#039;&#039;&lt;br /&gt;
 &#039;&#039;&#039;You need to apply until 24:00 on April 13th, 2015.&#039;&#039;&#039;&lt;br /&gt;
 Applications after the deadline will not be taken into consideration.&lt;br /&gt;
 I will let you know if you made it onto the list on April 14th.&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;&#039;Follow [http://twitter.com/botsnplots @botsnplots] on Twitter!&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;The internet of things is infiltrating the social web.&#039;&#039; &amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;A rich ecosystem of social bots is evolving right now.&#039;&#039; &amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;Those bots range from the purposeful via the poetic to the philosophical.&#039;&#039; &amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;And they are starting to talk to each other.&#039;&#039; &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the Bots &#039;n&#039; Plots course, we will create little robots that doodle and babble.  &amp;lt;br&amp;gt;&lt;br /&gt;
Our robots will be based in software, but we will also learn how to connect them with the physical world, using vision sound and serial connections.  &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the course of the class you will:&lt;br /&gt;
&lt;br /&gt;
* Learn programming with Python&lt;br /&gt;
* Process images and text&lt;br /&gt;
* Create generative drawings and poems&lt;br /&gt;
* Use APIs for the social web, including Twitter and Mediawiki&lt;br /&gt;
* Create your own software bots and make them talk to each other&lt;br /&gt;
&lt;br /&gt;
The course requires no previous programming experience.&lt;br /&gt;
&lt;br /&gt;
As a result of the course you will acquire fundamental programming skills that will enable you to take more advanced courses in the future. &amp;lt;br&amp;gt;&lt;br /&gt;
It is recommended to combine the course with the [[GMU:eval(nature)|eval(nature) module]].&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Beschreibung ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Das Internet der Dinge erobert die sozialen Netzwerke.&#039;&#039;  &amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;Im Augenblick entwickelt sich ein vielfältiges Ökosystem sozialer Bots.&#039;&#039;  &amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;Die Bots decken ein weites Spektrum ab, vom Praktischen, über Poetisches bis hin zum Philosophischen.&#039;&#039; &amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;Und sie fangen an miteinander zu kommunizieren...&#039;&#039; &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In &#039;&#039;Malen nach 0 und 1&#039;&#039; werden wir kleine Roboter erschaffen, die kritzeln und brabbeln. &amp;lt;br&amp;gt;&lt;br /&gt;
Unsere Roboter bestehen aus Nullen und Einsen, aber wir werden auch lernen sie mit der materiellen Welt zu verbinden, wobei Kameras, Töne und Kabel zum Einsatz kommen. &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Im Rahmen des Moduls werdet ihr:&lt;br /&gt;
&lt;br /&gt;
* Programmieren mit Python lernen&lt;br /&gt;
* Grafik und Text verarbeiten&lt;br /&gt;
* Generative Grafiken und Gedichte erzeugen&lt;br /&gt;
* APIs für Soziale Netzwerke nutzen, inkl. Twitter und Mediawiki&lt;br /&gt;
* Eigene Software-Bots entwickeln und sie dazu bringen miteinander zu reden.&lt;br /&gt;
&lt;br /&gt;
Dieses Modul erfordert keine Programmierkentnisse.&lt;br /&gt;
&lt;br /&gt;
Im Rahmen des Kurses werden grundlegende Programmierkentnisse vermittelt, die es ermöglichen in Zukunft fortgeschrittene Kurse zu belegen.&amp;lt;br&amp;gt;&lt;br /&gt;
Es wird empfohlen diesen Kurs mit dem Projekt-Modul [[GMU:eval(nature)|eval(nature)]] zu kombinieren.&lt;br /&gt;
&lt;br /&gt;
== Language ==&lt;br /&gt;
&lt;br /&gt;
The course will be in English, unless all participants are speaking German.&lt;br /&gt;
&lt;br /&gt;
== Eligible Participants ==&lt;br /&gt;
&lt;br /&gt;
Undergraduates and graduates enrolled in the faculties of:&lt;br /&gt;
&lt;br /&gt;
* Media Art/Design&lt;br /&gt;
* Visual Communication&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
&lt;br /&gt;
* Burning Interest in Artificial Intelligence, Computer-Linguistics and Generative Design&lt;br /&gt;
* Previous course about the Internet of Things highly recommended&lt;br /&gt;
* Working knowledge of Web Technologies (HTML, CSS, Javascript ...)&lt;br /&gt;
* Time and Devotion for lots of coding homework, which may be frustrating at times&lt;br /&gt;
* Programming experience considered helpful&lt;br /&gt;
&lt;br /&gt;
== Application ==&lt;br /&gt;
&lt;br /&gt;
The deadline to apply for this course is April 13th, 2015&lt;br /&gt;
&lt;br /&gt;
 You need to provide links to previous work to be elligible to this course.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;To:&#039;&#039;&#039; [[User:ms|Martin Schneider]]&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Subject:&#039;&#039;&#039; Bots n Plots /// Application&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Content:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
# Please provide links to three of your visual, poetic or algorithmic works online.&lt;br /&gt;
# Please answer these questions:&lt;br /&gt;
#* What is your favourite bot on twitter?&lt;br /&gt;
#* What kind of bot would you like to be able to create at the end of the course?&lt;br /&gt;
# Please tell us about you:&lt;br /&gt;
#* program and semester (Studienprogramm und Fachsemester)&lt;br /&gt;
#* matriculation number (Matrikelnummer)&lt;br /&gt;
#* Valid email address @uni-weimar.de (no other mailing addresses will be accepted) [[SCC-Services#E-Mail|Why?]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Schedule ==&lt;br /&gt;
&lt;br /&gt;
 This is the outline of the course.&lt;br /&gt;
 The details may still be subject to change.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Theme !! Topic !!  Date &lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;2&amp;quot; | [[/Part1|Part 1: Python]]&lt;br /&gt;
| 01: Programming I&lt;br /&gt;
| 15. April 2015&lt;br /&gt;
|-&lt;br /&gt;
| 02: Programming II&lt;br /&gt;
| 22. April 2015&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;4&amp;quot; | [[/Part2|Part 2: Plotter Bots]]&lt;br /&gt;
| 03: Drawing and Plotting I&lt;br /&gt;
| 29. April 2015&lt;br /&gt;
|-&lt;br /&gt;
| 04: Drawing and Plotting II&lt;br /&gt;
| 06. May 2015&lt;br /&gt;
|-&lt;br /&gt;
| 05: Image Processing I&lt;br /&gt;
| 13. May 2015&lt;br /&gt;
|-&lt;br /&gt;
| 06: Image Processing II&lt;br /&gt;
| 20. May 2015&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;3&amp;quot; | [[/Part3|Part 3: Chatter Bots]]&lt;br /&gt;
| 07: Language Processing I&lt;br /&gt;
| 27. May 2015&lt;br /&gt;
|-&lt;br /&gt;
| 08: Language Processing II&lt;br /&gt;
| 03. June 2015&lt;br /&gt;
|-&lt;br /&gt;
| 09: Generating Poetry&lt;br /&gt;
| 10. June 2015&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;4&amp;quot; | [[/Part4|Part 4: Social Bots]]&lt;br /&gt;
| 10: Twitter Bots I&lt;br /&gt;
| 17. June 2015&lt;br /&gt;
|-&lt;br /&gt;
| 11: Twitter Bots II&lt;br /&gt;
| 24. June 2015&lt;br /&gt;
|-&lt;br /&gt;
| 12: Wiki Bots I&lt;br /&gt;
| 01. July 2015&lt;br /&gt;
|-&lt;br /&gt;
| 13: Wiki Bots II&lt;br /&gt;
| 08. July 2015&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Evaluation ==&lt;br /&gt;
&lt;br /&gt;
* Presence and active participation (required)&lt;br /&gt;
* Punctual and complete submission of homework (required)&lt;br /&gt;
&lt;br /&gt;
* 50% Technical and aesthetic execution of the final bot project&lt;br /&gt;
* 20% Emergent behaviour from making the robots talk&lt;br /&gt;
* 20% Documentation of the final project&lt;br /&gt;
* 10% Contribution to the MediaWiki&lt;br /&gt;
&lt;br /&gt;
== Participants ==&lt;br /&gt;
&lt;br /&gt;
* [[GMU:Bots_&#039;n&#039;_Plots/Sebastian Stang|Sebastian Stang]]&lt;br /&gt;
* [[GMU:Bots_&#039;n&#039;_Plots/Maria Degand|Maria Degand]]&lt;br /&gt;
* [[GMU:Bots_&#039;n&#039;_Plots/Klaus Kraemer|Klaus Kraemer]]&lt;br /&gt;
* [[GMU:Bots_&#039;n&#039;_Plots/Angelica Sohn|Angelica Sohn]]&lt;br /&gt;
* [[GMU:Bots_&#039;n&#039;_Plots/Luis Hurtarte|Luis Hurtarte]]&lt;br /&gt;
* [[GMU:Bots_&#039;n&#039;_Plots/Apasri Titatarn|Apasri Titatarn]]&lt;br /&gt;
* [[GMU:Bots_&#039;n&#039;_Plots/Jan Dropmann|Jan Dropmann]]&lt;br /&gt;
* [[GMU:Bots_&#039;n&#039;_Plots/Azucena Sanchez|Azucena Sanchez]]&lt;br /&gt;
* [[GMU:Bots_&#039;n&#039;_Plots/Natalia Martínez|Natalia Martínez]]&lt;br /&gt;
* [[GMU:Bots_&#039;n&#039;_Plots/smin kim|Smin Kim]]&lt;br /&gt;
* [[GMU:Bots_&#039;n&#039;_Plots/minsoo hwang|minsoo Hwang]]&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
&lt;br /&gt;
Here are a couple of links that should give you an idea of where this course is heading ...&lt;br /&gt;
&lt;br /&gt;
=== Learning Python ===&lt;br /&gt;
* [http://www.codecademy.com/en/tracks/python Learn Python] at Code Academy&lt;br /&gt;
=== Image Processing ===&lt;br /&gt;
* [http://software-carpentry.org/v4/media/ Multimedia Programming] by Software Carpentry&lt;br /&gt;
=== Video Processing ===&lt;br /&gt;
* [https://zulko.github.io/moviepy/ MoviePy] by Zulko&lt;br /&gt;
* [https://zulko.github.io/blog/2014/09/20/vector-animations-with-python/ Vector Animations with Python]&lt;br /&gt;
=== Language Processing ===&lt;br /&gt;
* [http://h6o6.com/2013/03/using-python-and-the-nltk-to-find-haikus-in-the-public-twitter-stream/ Using Python and the NLTK to find Haikus in the public twitter stream]&lt;br /&gt;
* [http://dhconnelly.com/paip-python/docs/paip/eliza.html Eliza.py]&lt;br /&gt;
=== Twitter ===&lt;br /&gt;
* [https://zulko.github.io/blog/2014/07/26/a-tweets-controlled-python-script/|A Python Script controlled via Twitter]&lt;br /&gt;
&lt;br /&gt;
== Literature ==&lt;br /&gt;
* Bird, Steven: &#039;&#039;Natural Language Processing with Python&#039;&#039; ISBN 978-0596516499 ([http://www.nltk.org/book/ online])&lt;br /&gt;
* Lobin, Hennig:&#039;&#039;Computerlinguistik und Texttechnologie&#039;&#039; ISBN 978-3825232825 &lt;br /&gt;
* Russel, Mathew: &#039;&#039;Mining the Social Web&#039;&#039; ISBN 978-1449367619&lt;br /&gt;
* Segaran, Toby&#039;&#039;: Programming Collective Intelligence&#039;&#039; ISBN 978-0596529321&lt;br /&gt;
&lt;br /&gt;
=== Python ===&lt;br /&gt;
This is a list of recommended books for the Python language:&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;!-- {{PythonBooks}} --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Beazley, David: &#039;&#039;Python Cookbook&#039;&#039; ISBN 978-1449340377 &lt;br /&gt;
* Blum, Richard: &#039;&#039;Python Programming for Raspberry Pi&#039;&#039; ISBN 978-0789752055 &lt;br /&gt;
* Chan, Jamie: &#039;&#039;Learn Python in One Day and Learn it Well&#039;&#039; ISBN 978-1506094380&lt;br /&gt;
* Zelle, John: &#039;&#039;Python Programming: An Introduction to Computer Science&#039;&#039; ISBN 978-1590282410 ([http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.111.6062 online])&lt;br /&gt;
&lt;br /&gt;
=== Further Reading ===&lt;br /&gt;
There are a couple of books in the Semesterapparat of [[Society of Networked Things]], that you might want to flip trough.&lt;br /&gt;
&lt;br /&gt;
[[Category:SS15]]&lt;br /&gt;
[[Category:Werkmodul]]&lt;br /&gt;
[[Category:Fachmodul]]&lt;br /&gt;
[[Category:Martin Schneider]]&lt;br /&gt;
[[Category:Python]]&lt;br /&gt;
[[Category:Gestaltung]]&lt;br /&gt;
[[Category:Design]]&lt;br /&gt;
[[Category:Poetry]]&lt;br /&gt;
[[Category:Generative Gestaltung]]&lt;br /&gt;
[[Category:Robots]]&lt;/div&gt;</summary>
		<author><name>Minsoohwang</name></author>
	</entry>
</feed>