BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//The NODE Institute - ECPv6.15.20//NONSGML v1.0//EN
CALSCALE:GREGORIAN
METHOD:PUBLISH
X-ORIGINAL-URL:https://thenodeinstitute.org
X-WR-CALDESC:Events for The NODE Institute
REFRESH-INTERVAL;VALUE=DURATION:PT1H
X-Robots-Tag:noindex
X-PUBLISHED-TTL:PT1H
BEGIN:VTIMEZONE
TZID:Europe/Berlin
BEGIN:DAYLIGHT
TZOFFSETFROM:+0100
TZOFFSETTO:+0200
TZNAME:CEST
DTSTART:20190331T010000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:+0200
TZOFFSETTO:+0100
TZNAME:CET
DTSTART:20191027T010000
END:STANDARD
BEGIN:DAYLIGHT
TZOFFSETFROM:+0100
TZOFFSETTO:+0200
TZNAME:CEST
DTSTART:20200329T010000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:+0200
TZOFFSETTO:+0100
TZNAME:CET
DTSTART:20201025T010000
END:STANDARD
BEGIN:DAYLIGHT
TZOFFSETFROM:+0100
TZOFFSETTO:+0200
TZNAME:CEST
DTSTART:20210328T010000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:+0200
TZOFFSETTO:+0100
TZNAME:CET
DTSTART:20211031T010000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=Europe/Berlin:20200611T180000
DTEND;TZID=Europe/Berlin:20200611T210000
DTSTAMP:20260501T020339
CREATED:20200528T162650Z
LAST-MODIFIED:20201120T162759Z
UID:15032-1591898400-1591909200@thenodeinstitute.org
SUMMARY:Building a game from scratch with VVVV gamma
DESCRIPTION:In this webinar we’re going to build a simple game and along the way get familiar with how to structure the different components of applications in vvvv gamma.\nThis webinar is ideal as a follow up option if you took one of the vvvv gamma introduction webinars we are offering. \nOnce you’re familiar with the basics of the visual language you might need a little challenge. Building a game from scratch is a usually a good way of diving deeper. Games have all the aspects of proper applications. They require you to handle user input\, manage the game logic\, maybe keep a high-score or save a state to disk so it can be recalled the next day. So in this webinar we’re going to build a simple game and along the way get familiar with how to structure the different components of applications. \nYou can find all infos on vvvv gamma and VL on http://visualprogramming.net \nYou will learn how to:\n\n# Structure a program# Model data types to fit a given scenario# Deal with user input# Load/Save game state to disk \n\nRequirements:\n\n# Windows PC# 3 button mouse# You should be familiar with the basics of patching in vvvv gamma. \n\nyour instructor\n   \n \n Joreg \n \n  \n \nCreative Coder \nCreative Coder\, Developer\, Educator\, Founder\, Software Developer\, Technologist: Joreg is co-founder of vvvv.org and core-developer of the multipurpose toolkit vvvv and the general purpose visual programming language VL. Besides he teaches\, works for money under the label checksum5.com and is otherwise concerned with the integration of sound\, image and computer code. For the NODE Forum for Digital Arts he co-curates the educational program focusing on vvvv and vl workshops\, bringing together users who want to share their expertise with those eager to learn. \n \nGeneral infos\n \nFor a successful webinar please prepare the following:\n\nConnect to the webinar with a Windows machine \nPlease download and install the latest release of vvvv gamma from http://visualprogramming.net \nIf you can: Connect a second screen. Put the presenters screen left and patch your vvvv patches on the right. Or vice versa. \nClean desktop from private stuff. You might be sharing your screen with the others. \n\nWhere?\n\nYou will receive a link with the ticket purchase. \n\nGeneral Info:\n\nThe webinar runs from 18:00 am to 21:00 CETWe take a maximum of 15 participants.The webinar will happen if we have 5 or more participants.The webinar language is english. \n\nABOUT VVVV\nThe new vvvv equips you with visual object-oriented programming. Extend your node menu with any .NET library. Anything you need for your interactive installations. \n More Info
URL:https://thenodeinstitute.org/event/building-a-game-from-scratch-with-vvvv-gamma/
LOCATION:AEJAA Video Room\, AEJAA\, Berlin\, Berlin\, Germany
CATEGORIES:Events,Webinar
ATTACH;FMTTYPE=image/jpeg:https://thenodeinstitute.org/wp-content/uploads/2020/05/vvvGame_16-9.jpg
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=Europe/Berlin:20200609T180000
DTEND;TZID=Europe/Berlin:20200609T210000
DTSTAMP:20260501T020339
CREATED:20200528T152748Z
LAST-MODIFIED:20201120T162806Z
UID:15019-1591725600-1591736400@thenodeinstitute.org
SUMMARY:Reactive patching with vvvv gamma
DESCRIPTION:In this webinar\, we’re introducing you to the basic concepts of visual reactive programming with vvvv gamma.\n\nYou’re familiar with the basics of vvvv gamma but want to understand more? VL offers features that will help you to create more complex and performant programs. \nIn this webinar\, we’re introducing you to the basic concepts of reactive programming. The new Reactive category gives you tools to handle asynchronous events\, background calculations and even enables you to build your own mainloop that runs on a different CPU core. But let’s start with a pragmatic explanation of what it is:  \n\nReactive programming is programming with asynchronous data streams\nIn a way\, this isn’t anything new. Event buses or your typical click events are really an asynchronous event stream on which you can observe and do some side effects. Reactive is that idea on steroids. You are able to create data streams of anything\, not just from click and hover events. Streams are cheap and ubiquitous\, anything can be a stream: variables\, user inputs\, properties\, caches\, data structures\, etc. For example\, imagine your Twitter feed would be a data stream in the same fashion that click events are. You can listen to that stream and react accordingly. On top of that\, you are given an amazing toolbox of functions to combine\, create and filter any of those streams. \nAndré Staltz \n  \n\n  \nSince a while VVVV and VL use these so called Observables to handle external events (i.e. mouse\, keyboard etc.) and asynchronous data. This was mostly under the hood and the actual operations for observables are hidden in the VL.DevLib. The reason is that out of the box the operations do not go well together with the frame based Update concept of VL because they are intended to be called only once or when something has changed. But as of now we have wrapper nodes for the most common observable operations that do exactly that\, listen for change and only rebuild the observables when necessary. \n Blog post on reactive programming   Reference in the gray book  \nIn the webinar you will learn how to:\n\nWork with Observables \nReact on device events \nRun computations on a background thread \nShare data between Observable events and the mainloop \n\nRequirements:\nThis workshop assumes that you’re familiar with the basics of patching in vvvv gamma.\nInstructor\n   \n \n Tebjan Halm \n \nTonfilm \nArtist\, Creative Coder\, Designer\, Developer\, Educator\, Media Designer\, Researcher\, Software Developer\, Technologist: Tebjan Halm has studied mathematics and computer science and is closely related to the vvvv group as a core developer since 2004. He also does contract work as software consultant and developer of media projects for several agencies in europe. \n \nGeneral infos\n \nWe take a maximum of 10 participants. The webinar will happen if we have 5 or more participants. The webinar language is english. \nFor a successful webinar please prepare the following\n\nConnect to the webinar with a Windows machine \nPlease download and install the latest release of vvvv gamma from http://visualprogramming.net \nIf you can: Connect a second screen. Put the presenters screen left and patch your vvvv patches on the right. Or vice versa. \nClean desktop from private stuff. You might be sharing your screen with the others. \n\nWhere?\n\nYou will receive a link with the ticket purchase. \n\nGeneral Info:\n\nThe webinar runs from 18:00 am to 21:00 CETWe take a maximum of 15 participants.The webinar will happen if we have 5 or more participants.The webinar language is english.Have a good reason to visit this course for free? Get in touch!
URL:https://thenodeinstitute.org/event/reactive-patching-with-vvvv-gamma/
LOCATION:AEJAA Video Room\, AEJAA\, Berlin\, Berlin\, Germany
CATEGORIES:Events,Webinar
ATTACH;FMTTYPE=image/png:https://thenodeinstitute.org/wp-content/uploads/2020/04/grafik.png
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=Europe/Berlin:20200605T180000
DTEND;TZID=Europe/Berlin:20200605T210000
DTSTAMP:20260501T020339
CREATED:20200528T142152Z
LAST-MODIFIED:20201120T162813Z
UID:14996-1591380000-1591390800@thenodeinstitute.org
SUMMARY:Introduction to creative coding with vvvv gamma
DESCRIPTION:Get started with creative coding using the new all-new visual programming environment vvvv gamma. In this webinar we’re starting from scratch!\n\nYou’ll learn the fundamentals of building little interactive programs. Afterwards you’ll be able to follow further workshops or take the next steps on your own\, continuing with online learning resources. \nYou can find all infos on vvvv gamma on http://visualprogramming.net \n  \nWho is it for?\nThe ones afraid of coding\, who want to try visual programming instead.The lazy ones who want to get their things done more efficiently.The curious\, who are interested in adding a new tool to their toolbox.Those familliar with vvvv beta who want to move to vvvv gamma. \nIn this webinar you will learn how to:\n\nFind help using the Help Browser \nTweak parameters in existing demo patches \nBuild little interactive programs from scratch \nUse loops as a fundamental building block for programs \n\nRequirements\n\nWindows PC \n3 button mouse \nDownload and install the latest release of vvvv gamma from https://visualprogramming.net \nNo prior knowledge of vvvv needed \n \n  \n\nInstructor
URL:https://thenodeinstitute.org/event/introduction-to-creative-coding-with-vvvv-gamma-english/
LOCATION:AEJAA Video Room\, AEJAA\, Berlin\, Berlin\, Germany
CATEGORIES:Events,Webinar
ATTACH;FMTTYPE=image/jpeg:https://thenodeinstitute.org/wp-content/uploads/2020/05/FrenchVVVVgamma_16-9.jpg
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=Europe/Berlin:20200529T180000
DTEND;TZID=Europe/Berlin:20200529T210000
DTSTAMP:20260501T020339
CREATED:20200405T144640Z
LAST-MODIFIED:20201120T162838Z
UID:12766-1590775200-1590786000@thenodeinstitute.org
SUMMARY:Building applications with vvvv gamma
DESCRIPTION:A webinar on how you can properly structure the architecture of our applications in vvvv gamma. The Model runtime editor!\n\nThanks to vvvv gamma we can now properly structure the architecture of our applications… and there are so many ways to do it! In this webinar we’ll focus on the Model-Runtime-Editor programming pattern\, a convenient way to patch flexible and very modular systems. \nYou will learn how to:\n\nThink about application architecture \nModularize your application \nBuild a control UI for your app \nSynchronize over network multiple apps \n\nRequirements:\n\nWindows PC \n3 button mouse \nYou should be familiar with the basics of patching in vvvv gamma. \n  \n\nInstructor
URL:https://thenodeinstitute.org/event/building-apps-with-vvvv-gamma/
LOCATION:AEJAA Video Room\, AEJAA\, Berlin\, Berlin\, Germany
CATEGORIES:Events,Webinar
ATTACH;FMTTYPE=image/jpeg:https://thenodeinstitute.org/wp-content/uploads/2020/04/ModelRuntime_16-9.jpg
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=Europe/Berlin:20200527T140000
DTEND;TZID=Europe/Berlin:20200527T160000
DTSTAMP:20260501T020339
CREATED:20200513T135120Z
LAST-MODIFIED:20201120T162906Z
UID:14160-1590588000-1590595200@thenodeinstitute.org
SUMMARY:Notch and TouchDesigner - a love affair
DESCRIPTION:The live webinar has passed\,\nbut you can get the course.\n			\n						Get the Course !\n					 \nNotch and Touch – a love affair \n \n			Your Instructor:
URL:https://thenodeinstitute.org/event/notch-touchdesigner-a-love-affair/
LOCATION:Tieranatomisches Theater\, Philippstr.13\, Berlin\, 10115\, Germany
CATEGORIES:Events,Webinar
ATTACH;FMTTYPE=image/png:https://thenodeinstitute.org/wp-content/uploads/2020/05/EnTiempoReal_TerceraSesion4..png
GEO:52.47228;13.4406812
X-APPLE-STRUCTURED-LOCATION;VALUE=URI;X-ADDRESS=Tieranatomisches Theater Philippstr.13 Berlin 10115 Germany;X-APPLE-RADIUS=500;X-TITLE=Philippstr.13:geo:13.4406812,52.47228
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=Europe/Berlin:20200526T200000
DTEND;TZID=Europe/Berlin:20200526T200000
DTSTAMP:20260501T020339
CREATED:20200514T170045Z
LAST-MODIFIED:20201120T162914Z
UID:14489-1590523200-1590523200@thenodeinstitute.org
SUMMARY:#3 Worldwide VVVV Meetup
DESCRIPTION:This is the third online meetup for vvvv users around the globe and it won’t be the last for sure. Prepare your family and cool the wine. Members of the community will entertain you with fresh projects and shiny patches. \nWe’ll be using a video-conferencing platform for hosts and presenters and will be streaming out to evvvveryone via the NODE Institute Stream with our chat as your backchannel.  Please consider asking your questions in the official vvvv support channel on Riot.im \nhttps://youtu.be/pa3HRQ7kj6w\n			\n						VVVV Riot Channel\n					\n			Want to present?		 \nWe could have one or two more demos/presentations! Anything more or less related to vvvv\, yourself and your projects. Share some thoughts\, share your funny fails. Share what you are up to.  Please get in touch via meetup@vvvv.org and let us know what you want to present. We’ll then get back to you and organize the streaming tool etc. We are looking forward to this! \nAnni\, Sebl\, Joreg\, David \n  \n			Confirmed presenters
URL:https://thenodeinstitute.org/event/worldwide-vvvv-meetup-3/
LOCATION:AEJAA Video Room\, AEJAA\, Berlin\, Berlin\, Germany
CATEGORIES:Events,Meetup
ATTACH;FMTTYPE=image/png:https://thenodeinstitute.org/wp-content/uploads/2020/05/Unbenannt.png
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=Europe/Berlin:20200525T180000
DTEND;TZID=Europe/Berlin:20200525T210000
DTSTAMP:20260501T020339
CREATED:20200514T130948Z
LAST-MODIFIED:20201120T162924Z
UID:14394-1590429600-1590440400@thenodeinstitute.org
SUMMARY:Using .NET nugets with VVVV gamma
DESCRIPTION:You’ve heard that with vvvv you can simply use any of the more than 100.000 .NET libraries available on http://nuget.org? \n\nIn this webinar we’ll show you how easy it is to do that and how to navigate common issues that you may encounter doing so. \nThe webinar trains you further in making use of the possiblities of the new visual programming language VL. You can find all infos on vvvv gamma and VL on http://visualprogramming.net \nYou will learn how to:\n\nUse .NET nugets from nuget.org \nWork with nugets that have unmanaged dependencies \nDeal with incompatible types for e.g. Vector\, Matrix \nDeal with events \nCreate a wrapper library for a nuget to apply your modifications \n\nRequirements:\n\nWindows PC \n3 button mouse \nYou should be familiar with the basics of patching in vvvv gamma. \n  \n\nInstructor
URL:https://thenodeinstitute.org/event/using-net-nugets-with-vvvv-gamma-2/
LOCATION:AEJAA Video Room\, AEJAA\, Berlin\, Berlin\, Germany
CATEGORIES:Events,Webinar
ATTACH;FMTTYPE=image/jpeg:https://thenodeinstitute.org/wp-content/uploads/2020/05/Nugget_16-9.jpg
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=Europe/Berlin:20200523T180000
DTEND;TZID=Europe/Berlin:20200523T210000
DTSTAMP:20260501T020339
CREATED:20200514T132435Z
LAST-MODIFIED:20201120T162941Z
UID:14406-1590256800-1590267600@thenodeinstitute.org
SUMMARY:Introducción a creative coding con vvvv gamma - español
DESCRIPTION:Empecemos a aprender creative coding utilizando vvvv gamma\, el nuevo ambiente de programación visual. En este webinar empezaremos desde cero.\n\nAprenderemos los conceptos fundamentales para construir pequeños programas interactivos. Al finalizar\, tendremos lo necesario para movernos a otros webinars o tomar los siguientes pasos en nuestras propias manos\, continuando con material educativo en línea. \nPueden encontrar toda la información en vvvv gamma en http://visualprogramming.net \n¿Para quién es el webinar?\nLos que le tienen miedo a programar textualmente y prefieren aprender programación visual \nLos perezosos que quieren hacer sus cosas más eficientemente \nLos curiosos\, aquellos interesados en agregar algo nuevo a su caja de herramientas \nAquellos familiarizados con vvvv beta y con deseos de moverse a vvvv gamma \nAprenderemos cómo::\n\nEncontrar ayuda usando el “Help Browser” (Navegador de Ayuda) \nModificar parámetros en patches demostrativos existentes \nConstruir pequeños programas desde cero \nUsar “loops” (ciclos/bucles) como bloque fundamental en la construcción de programas \n\nRequisitos:\n\nPC con Windows \nMouse de tres botones \nDescargar e instalar la última versión de vvvv gamma disponible en https://visualprogramming.net \nNo se necesita conocimiento previo de vvvv \n  \n\nInstructor\n   \n \n Randall Vázquez \n \n  \n \nCreative Coder\, Developer\, Educator \nComputer Software Professional and vvvv evangelist. \n \nTickets\n\n            JavaScript ist in Ihrem Browser deaktiviert. Um unseren Ticket-Shop ohne JavaScript aufzurufen\, klicken Sie bitte hier.\n \nABOUT VVVV\nThe new vvvv equips you with visual object-oriented programming. Extend your node menu with any .NET library. Anything you need for your interactive installations. \n More Info   \nGeneral infos\n \nPara que todo salga bien durante el webinar es importante preparar lo siguiente:\n\nConectarse al webinar desde una máquina con Windows \nTener un mouse con tres botones Descargar e instalar el último release de vvvv gamma de http://visualprogramming.net \nDe ser posible: Conectar una segunda pantalla para poder ver al presentador y trabajar en el patch simultáneamente \nLimpiar el escritorio de información personal ya que puede que tengan que compartir su pantalla \n\n¿Dónde?\n\nRecibirán un link al Webinar antes de que inicie el evento. Información general: \n\nInformación general:\n\nEl webinar es de las 18:00 a las 21:00 CET \nAceptaremos un máximo de 15 participantes. \nEl webinar ocurrirá si tenemos 5 o más participantes. \nEl idioma del webinar es español.
URL:https://thenodeinstitute.org/event/introduction-au-creative-coding-avec-vvvv-gamma-espanol/
LOCATION:AEJAA Video Room\, AEJAA\, Berlin\, Berlin\, Germany
CATEGORIES:Events,Webinar
ATTACH;FMTTYPE=image/jpeg:https://thenodeinstitute.org/wp-content/uploads/2020/05/FrenchVVVVgamma_16-9.jpg
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=Europe/Berlin:20200522T180000
DTEND;TZID=Europe/Berlin:20200522T210000
DTSTAMP:20260501T020339
CREATED:20200514T131524Z
LAST-MODIFIED:20201120T162950Z
UID:14396-1590170400-1590181200@thenodeinstitute.org
SUMMARY:Introduction au creative coding avec vvvv gamma - francais
DESCRIPTION:Initiez-vous au creative coding avec le tout nouvel environnement de programmation vvvv gamma. Dans ce webinaire\, nous partons de zéro. \n\nVous apprendrez les bases nécessaires pour concevoir de petits programmes interactifs. Par la suite\, vous pourrez suivre d’autres workshops ou bien apprendre seul\, grâce à des ressources d’apprentissage en ligne. \nVous pouvez trouver toutes les infos sur vvvv gamma sur http://visualprogramming.net \nCe que vous apprendrez :\n\nTrouver de l’aide grâce au Help-Browser \nModifier des patches de démo pré-existants \nCréer de petits programmes interactifs en partant de zéro \nUtiliser les boucles comme base pour vos programmes \n\nPrérequis:\n\nUn ordinateur sous Windows \nUne souris à trois boutons \nLa dernière version de vvvv gamma installée\, disponible sur www.visualprogramming.net \nAucune connaissance de vvvv \n  \n\nInstructor
URL:https://thenodeinstitute.org/event/introduction-creative-coding-vvvv-gamma-french/
LOCATION:AEJAA Video Room\, AEJAA\, Berlin\, Berlin\, Germany
CATEGORIES:Events,Webinar
ATTACH;FMTTYPE=image/jpeg:https://thenodeinstitute.org/wp-content/uploads/2020/05/FrenchVVVVgamma_16-9.jpg
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=Europe/Berlin:20200521T180000
DTEND;TZID=Europe/Berlin:20200521T210000
DTSTAMP:20260501T020339
CREATED:20200514T135335Z
LAST-MODIFIED:20201120T162958Z
UID:14419-1590084000-1590094800@thenodeinstitute.org
SUMMARY:Visual programming for Coders
DESCRIPTION:You are familiar with words like class\, method\, interface and generics? You always wanted to change the software you made while it is running? Great! This webinar is for you!\nYou are a a vvvv user already\, have used vvvv beta in your life before\, coded in c# or other languages. Great! Join in! vvvv is a visual live programming environment that allows you to build and change .NET applications in real-time while they are running\, thanks to incremental compilation and state hot-reload. Oh\, and we are serious about this – everything is statically typed. You can find all infos on vvvv gamma and VL on http://visualprogramming.net \nYou will learn how to:\n\nTranslate your knowledge about object oriented programming into the visual paradigms of VL \nWrite VL nodes in C# \nConvert textual code into visual code \nUse generics \n\nRequirements:\n\nWindows PC \n3 button mouse \nYou should be familiar with words like class\, method\, interface and generics and have a basic understanding of programming. \n\nInstructors\n   \n \n Elias Holzer \n \nelias \nCreative Coder\, Designer\, Developer\, Educator\, Researcher\, Software Developer\, Technologist: Elias is on of the core-developers on vvvv. Starting of as an intern he began working for the vvvv group as a programmer in 2008.. \n \n   \n \n Tebjan Halm \n \nTonfilm \nArtist\, Creative Coder\, Designer\, Developer\, Educator\, Media Designer\, Researcher\, Software Developer\, Technologist: Tebjan Halm has studied mathematics and computer science and is closely related to the vvvv group as a core developer since 2004. He also does contract work as software consultant and developer of media projects for several agencies in europe. \n \nTickets\n\n            JavaScript ist in Ihrem Browser deaktiviert. Um unseren Ticket-Shop ohne JavaScript aufzurufen\, klicken Sie bitte hier.\n \nABOUT VVVV\nThe new vvvv equips you with visual object-oriented programming. Extend your node menu with any .NET library. Anything you need for your interactive installations. \n More Info   \nGeneral infos\n \nFor a successful webinar please prepare the following:\n\nConnect to the webinar with a Windows machine \nPlease download and install the latest release of vvvv gamma from http://visualprogramming.net \nIf you can: Connect a second screen. Put the presenters screen left and patch your vvvv patches on the right. Or vice versa. \nClean desktop from private stuff. You might be sharing your screen with the others. \n\nWhere?\n\nYou will receive a link with the ticket purchase. \n\nGeneral Info:\n\nThe webinar runs from 18:00 am to 21:00 CETWe take a maximum of 15 participants.The webinar will happen if we have 5 or more participants.The webinar language is english.
URL:https://thenodeinstitute.org/event/visual-programming-coders-vvvv/
LOCATION:AEJAA Video Room\, AEJAA\, Berlin\, Berlin\, Germany
CATEGORIES:Events,Webinar
ATTACH;FMTTYPE=image/jpeg:https://thenodeinstitute.org/wp-content/uploads/2020/04/VPFP_Cover_16-9.jpg
END:VEVENT
BEGIN:VEVENT
DTSTART;TZID=Europe/Berlin:20200515T180000
DTEND;TZID=Europe/Berlin:20200515T210000
DTSTAMP:20260501T020339
CREATED:20200514T144643Z
LAST-MODIFIED:20201120T163015Z
UID:14442-1589565600-1589576400@thenodeinstitute.org
SUMMARY:Building a game from scratch with VVVV gamma
DESCRIPTION:In this webinar we’re going to build a simple game and along the way get familiar with how to structure the different components of applications.\nOnce you’re familiar with the basics of a programming language you need a little challenge. Building a game from scratch is a usually a good way of diving deeper. Games have all the aspects of proper applications. They require you to handle user input\, manage the game logic\, maybe keep a high-score or save a state to disk so it can be recalled the next day. So in this webinar we’re going to build a simple game and along the way get familiar with how to structure the different components of applications. \nYou can find all infos on vvvv gamma and VL on http://visualprogramming.net \nYou will learn how to:\n\n# Structure a program# Model data types to fit a given scenario# Deal with user input# Load/Save game state to disk \n\nRequirements:\n\n# Windows PC# 3 button mouse# You should be familiar with the basics of patching in vvvv gamma. \n\nyour instructor\n   \n \n Joreg \n \n  \n \nCreative Coder \nCreative Coder\, Developer\, Educator\, Founder\, Software Developer\, Technologist: Joreg is co-founder of vvvv.org and core-developer of the multipurpose toolkit vvvv and the general purpose visual programming language VL. Besides he teaches\, works for money under the label checksum5.com and is otherwise concerned with the integration of sound\, image and computer code. For the NODE Forum for Digital Arts he co-curates the educational program focusing on vvvv and vl workshops\, bringing together users who want to share their expertise with those eager to learn. \n \ntickets\n\n            JavaScript ist in Ihrem Browser deaktiviert. Um unseren Ticket-Shop ohne JavaScript aufzurufen\, klicken Sie bitte hier.\n \nHave a good reason to visit this course for free -> Get in touch! \nGeneral infos\n \nFor a successful webinar please prepare the following:\n\nConnect to the webinar with a Windows machine \nPlease download and install the latest release of vvvv gamma from http://visualprogramming.net \nIf you can: Connect a second screen. Put the presenters screen left and patch your vvvv patches on the right. Or vice versa. \nClean desktop from private stuff. You might be sharing your screen with the others. \n\nWhere?\n\nYou will receive a link with the ticket purchase. \n\nGeneral Info:\n\nThe webinar runs from 18:00 am to 21:00 CETWe take a maximum of 15 participants.The webinar will happen if we have 5 or more participants.The webinar language is english. \n\nABOUT VVVV\nThe new vvvv equips you with visual object-oriented programming. Extend your node menu with any .NET library. Anything you need for your interactive installations. \n More Info
URL:https://thenodeinstitute.org/event/building-game-with-vvvv-gamma/
LOCATION:AEJAA Video Room\, AEJAA\, Berlin\, Berlin\, Germany
CATEGORIES:Events,Webinar
ATTACH;FMTTYPE=image/jpeg:https://thenodeinstitute.org/wp-content/uploads/2020/05/vvvGame_16-9.jpg
END:VEVENT
END:VCALENDAR