This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "basics": { | |
| "name": "Benjamín Benavides", | |
| "label": "Interactive Developer", | |
| "image": "https://secure.gravatar.com/avatar/c85f1058b74cd38073a6bd428ac53e2e?s=300", | |
| "email": "benjavides@gmail.com", | |
| "url": "https://benjavides.com/", | |
| "summary": "Interactive developer with 10+ years of experience building real-time systems for immersive installations, museum exhibits, and educational games. I lead technical development across platforms like TouchDesigner, Unity, and Unreal, turning creative concepts into robust, interactive experiences.", | |
| "location": { | |
| "postalCode": "85774", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import tweepy | |
| import csv | |
| import unicodedata | |
| # Go to http://apps.twitter.com and create an app. | |
| # The consumer key and secret will be generated for you after | |
| consumer_key='' | |
| consumer_secret='' | |
| # After the step above, you will be redirected to your app's page. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use strict" | |
| var system; | |
| var line_system; | |
| var gravity; | |
| var wind; | |
| function setup() { | |
| createCanvas(720, 900); | |
| system = new ParticleSystem(createVector(width/2, -40)); | |
| line_system = new LineSystem(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function setup() { | |
| canvas = createCanvas(640,480, WEBGL); | |
| canvas.id("p5canvas"); | |
| video = createCapture(VIDEO); | |
| video.size(640,480); | |
| video.id("p5video"); | |
| video.hide(); | |
| var seriously = new Seriously(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use strict" | |
| var capture; | |
| var colorr = 7; | |
| var stepSize = 20; | |
| var imagen = false; | |
| function setup() { | |
| createCanvas(640, 530); | |
| capture = createCapture(VIDEO); | |
| capture.size(640, 480); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //SIMULACIÓN POSTES DE LUZ | |
| //BENJAMÍN BENAVIDES | |
| //MEDIALAB 2016-1 | |
| "use strict" | |
| var moving = false; | |
| var speed = 18; | |
| var postes; | |
| var poste; | |
| var poste1; | |
| var frame=0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use strict" | |
| var postes = []; | |
| var poste; | |
| var nuevo_poste; | |
| var cables = []; | |
| var camera; | |
| var moving = false; | |
| var xspacing = 1; | |
| var period = 200; | |
| var x; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Código de P5JS | |
| var img; | |
| var a; | |
| draw_mode = false; | |
| var display; | |
| var texto; | |
| function preload() { | |
| if (draw_mode==true){ | |
| img = loadImage("assets/bowie.jpg"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use strict"; | |
| var ball; | |
| var right; | |
| var left; | |
| var alto = 300; | |
| var ancho = 400; | |
| var ptjeizq = 0; | |
| var ptjeder = 0; | |
| var bot = true; //se juega contra el pc | |
| var rebotes = 0; |