april 10 - 11, 2021
-Conceptualize the future with us.
--
-
what is it?
-join us for 2 days (april 10 - 11) where you and your team can identify and propose creative solutions to some - of the major issues in tech. these solutions could take the form of a government policy/tax/subsidy, app, program, - educational class–anything! absolutely feel free to think outside the box!
+ function addVoxel(scene, intersects, x, y, z) { + var geometry = new THREE.CubeGeometry(50, 50, 50); + for (var i = 0; i < geometry.faces.length; i++) { + geometry.faces[i].color.setHex(0x00ff80); + } -at the end of the Ideathon, your team will submit a slideshow presentation and a 3 minute recorded video of an - elevator pitch for the problem you are addressing and your solution. we will provide detailed guidelines for what - we are looking for in your slide deck.
+ var material = new THREE.MeshLambertMaterial({ vertexColors: THREE.FaceColors }); + var voxel = new THREE.Mesh(geometry, material); + voxel.position.x = Math.floor(x / 50) * 50 + 25; + voxel.position.y = Math.floor(y / 50) * 50 + 25; + voxel.position.z = Math.floor(z / 50) * 50 + 25; + voxel.matrixAutoUpdate = false; + voxel.updateMatrix(); + scene.add(voxel); + } -who is it for?
-anyone who attends the University of Chicago! we want to create an open space for discussion and thoughtful - collaboration across all majors and schools.
+ function onWindowResize() { -we are asking for teams of 2-4 students. at the time of registration, you may register as a team or as an - individual. during the ideathon, we will match individuals to form teams.
+ camera.aspect = window.innerWidth / window.innerHeight; + camera.updateProjectionMatrix(); -where is it?
-it’s completely virtual! in the coming weeks, we will release an agenda with speakers and events–all of which - will happen on Zoom. all attendees will join a Slack channel to facilitate real-time updates during the event.
+ renderer.setSize(window.innerWidth, window.innerHeight); -tell me more
-no technical or coding skills necessary! we will have $2500 worth of prizes for the following winning - categories: best overall, best design, best presentation, most creative, most uchicago, fan favorite! Grubhub - vouchers will also be given to all attendees!
+ } - + function onDocumentMouseMove(event) { --
fill out our interest form - to be notified of latest updates and for the registration form
+ event.preventDefault(); -
-
-
-
-
-
-
-
-
-
-
+
+