From 86a1a1de1776a5be4906e55d920e9c0cb56c540e Mon Sep 17 00:00:00 2001 From: Gabriel Zalles Date: Tue, 28 Feb 2017 14:14:03 -0500 Subject: [PATCH 1/6] template for markdown :) --- README.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/README.md b/README.md index e964225..7cabdcd 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,31 @@ # ImmersiveAudioVR A repository for a library of tools and templates for the production, manipulation and reproduction of immersive audio for virtual reality experiences + +Look, a list! + + * foo + * bar + * baz + +And here's some code! :+1: + +```javascript +$(function(){ + $('div').html('I am a div.'); +}); +``` + +This is [on GitHub](https://github.com/jbt/markdown-editor) so let me know if I've b0rked it somewhere. + + +Props to Mr. Doob and his [code editor](http://mrdoob.com/projects/code-editor/), from which +the inspiration to this, and some handy implementation hints, came. + +### Stuff used to make this: + + * [markdown-it](https://github.com/markdown-it/markdown-it) for Markdown parsing + * [CodeMirror](http://codemirror.net/) for the awesome syntax-highlighted editor + * [highlight.js](http://softwaremaniacs.org/soft/highlight/en/) for syntax highlighting in output code blocks + * [js-deflate](https://github.com/dankogai/js-deflate) for gzipping of data to make it fit in URLs + + From 539c95c513a55c112f2eb1853eeb903a7e1df3da Mon Sep 17 00:00:00 2001 From: Gabriel Zalles Date: Thu, 1 Jun 2017 18:49:14 -0400 Subject: [PATCH 2/6] Added gitignore file and updated README --- README.md | 42 +++++++++++++++++++++++++----------------- 1 file changed, 25 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 7cabdcd..24e3324 100644 --- a/README.md +++ b/README.md @@ -1,31 +1,39 @@ -# ImmersiveAudioVR -A repository for a library of tools and templates for the production, manipulation and reproduction of immersive audio for virtual reality experiences +# ImmersiveAudioVR :+1: +The NYU Immersive Audio group is constantly developing and testing new VR reality tools and experiences designed primarily in, but not limited to, [Unity](https://unity3d.com/) and [Max](https://cycling74.com/). A number of researchers including PhD student Andrea Genovese, Master student Greg Reardon and recently graduated Masters students like Simon Calle, have developed these tools and experiences in conjunction with faculty and would now like to share them with the community. We hence present this repository of tools and templates for the production, manipulation and reproduction of virtual reality experiences with a focus on immersive audio. -Look, a list! + + + +## Usage + +All of the experiences and tools found in this repository are completely open to the public, all we ask is that credit be given to the author of a specific script and that anyone downloading this code tries to go beyond what is already there. Please contact us if you add something valuable to this code so that we may include your contributions on this repo or, if that is not desired, we get so see what you did with it! + +## Contributing +1. Fork it! +2. Create your feature branch: `git checkout -b my-new-feature` +3. Commit your changes: `git commit -am 'Add some feature'` +4. Push to the branch: `git push origin my-new-feature` +5. Submit a pull request :D -This is [on GitHub](https://github.com/jbt/markdown-editor) so let me know if I've b0rked it somewhere. + +## Credits -Props to Mr. Doob and his [code editor](http://mrdoob.com/projects/code-editor/), from which -the inspiration to this, and some handy implementation hints, came. +1. Jean-Luc Cohen @NYU . +2. Agnieska Roginska @NYU. -### Stuff used to make this: +## License - * [markdown-it](https://github.com/markdown-it/markdown-it) for Markdown parsing - * [CodeMirror](http://codemirror.net/) for the awesome syntax-highlighted editor - * [highlight.js](http://softwaremaniacs.org/soft/highlight/en/) for syntax highlighting in output code blocks - * [js-deflate](https://github.com/dankogai/js-deflate) for gzipping of data to make it fit in URLs - - +MIT License +Copyright (c) 2017 IAG NYU From 72de7c4e13900dd4b19cccb028305725b1eeeedd Mon Sep 17 00:00:00 2001 From: Gabriel Zalles Date: Thu, 1 Jun 2017 19:02:21 -0400 Subject: [PATCH 3/6] added README for subfolders --- MAX Patches/README.md | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 MAX Patches/README.md diff --git a/MAX Patches/README.md b/MAX Patches/README.md new file mode 100644 index 0000000..24e3324 --- /dev/null +++ b/MAX Patches/README.md @@ -0,0 +1,39 @@ +# ImmersiveAudioVR :+1: +The NYU Immersive Audio group is constantly developing and testing new VR reality tools and experiences designed primarily in, but not limited to, [Unity](https://unity3d.com/) and [Max](https://cycling74.com/). A number of researchers including PhD student Andrea Genovese, Master student Greg Reardon and recently graduated Masters students like Simon Calle, have developed these tools and experiences in conjunction with faculty and would now like to share them with the community. We hence present this repository of tools and templates for the production, manipulation and reproduction of virtual reality experiences with a focus on immersive audio. + + + + +## Usage + +All of the experiences and tools found in this repository are completely open to the public, all we ask is that credit be given to the author of a specific script and that anyone downloading this code tries to go beyond what is already there. Please contact us if you add something valuable to this code so that we may include your contributions on this repo or, if that is not desired, we get so see what you did with it! + +## Contributing +1. Fork it! +2. Create your feature branch: `git checkout -b my-new-feature` +3. Commit your changes: `git commit -am 'Add some feature'` +4. Push to the branch: `git push origin my-new-feature` +5. Submit a pull request :D + + + +## Credits + +1. Jean-Luc Cohen @NYU . +2. Agnieska Roginska @NYU. + +## License + +MIT License +Copyright (c) 2017 IAG NYU From ebebdff7ed2f81bea8f627ea7d7a955c7b13881f Mon Sep 17 00:00:00 2001 From: Gabriel Zalles Date: Thu, 1 Jun 2017 19:04:00 -0400 Subject: [PATCH 4/6] More READMEs --- Matlab/README.md | 16 ++++++++++++++++ Unity Experiences/README.md | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 Matlab/README.md create mode 100644 Unity Experiences/README.md diff --git a/Matlab/README.md b/Matlab/README.md new file mode 100644 index 0000000..caa799a --- /dev/null +++ b/Matlab/README.md @@ -0,0 +1,16 @@ +# Matlab Stuff :+1: + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean sollicitudin a lacus eu bibendum. Aenean ornare dignissim urna quis interdum. Phasellus lobortis elit arcu, eget tristique justo egestas et. Mauris lobortis at dolor eget pharetra. Ut faucibus sapien mattis dolor scelerisque, porttitor elementum velit accumsan. Quisque sagittis nisl dapibus, elementum nisl pharetra, finibus neque. Nulla ut turpis sodales, porta augue vitae, suscipit nisl. Pellentesque fringilla ipsum et elementum convallis. Cras vel tempor velit, et facilisis ante. Donec sed ex nec felis efficitur eleifend id at felis. Ut pellentesque tellus ac rutrum pretium. Mauris eget accumsan ante, id auctor sem. + + + diff --git a/Unity Experiences/README.md b/Unity Experiences/README.md new file mode 100644 index 0000000..442366d --- /dev/null +++ b/Unity Experiences/README.md @@ -0,0 +1,16 @@ +# Max Stuff :+1: + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean sollicitudin a lacus eu bibendum. Aenean ornare dignissim urna quis interdum. Phasellus lobortis elit arcu, eget tristique justo egestas et. Mauris lobortis at dolor eget pharetra. Ut faucibus sapien mattis dolor scelerisque, porttitor elementum velit accumsan. Quisque sagittis nisl dapibus, elementum nisl pharetra, finibus neque. Nulla ut turpis sodales, porta augue vitae, suscipit nisl. Pellentesque fringilla ipsum et elementum convallis. Cras vel tempor velit, et facilisis ante. Donec sed ex nec felis efficitur eleifend id at felis. Ut pellentesque tellus ac rutrum pretium. Mauris eget accumsan ante, id auctor sem. + + + From d0a1cb056e8ee6b09820ac47a3ed55db9e800ced Mon Sep 17 00:00:00 2001 From: Gabriel Zalles Date: Thu, 1 Jun 2017 19:04:43 -0400 Subject: [PATCH 5/6] Updated README with Lorem Ipsum --- MAX Patches/README.md | 29 +++-------------------------- 1 file changed, 3 insertions(+), 26 deletions(-) diff --git a/MAX Patches/README.md b/MAX Patches/README.md index 24e3324..442366d 100644 --- a/MAX Patches/README.md +++ b/MAX Patches/README.md @@ -1,5 +1,6 @@ -# ImmersiveAudioVR :+1: -The NYU Immersive Audio group is constantly developing and testing new VR reality tools and experiences designed primarily in, but not limited to, [Unity](https://unity3d.com/) and [Max](https://cycling74.com/). A number of researchers including PhD student Andrea Genovese, Master student Greg Reardon and recently graduated Masters students like Simon Calle, have developed these tools and experiences in conjunction with faculty and would now like to share them with the community. We hence present this repository of tools and templates for the production, manipulation and reproduction of virtual reality experiences with a focus on immersive audio. +# Max Stuff :+1: + +Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean sollicitudin a lacus eu bibendum. Aenean ornare dignissim urna quis interdum. Phasellus lobortis elit arcu, eget tristique justo egestas et. Mauris lobortis at dolor eget pharetra. Ut faucibus sapien mattis dolor scelerisque, porttitor elementum velit accumsan. Quisque sagittis nisl dapibus, elementum nisl pharetra, finibus neque. Nulla ut turpis sodales, porta augue vitae, suscipit nisl. Pellentesque fringilla ipsum et elementum convallis. Cras vel tempor velit, et facilisis ante. Donec sed ex nec felis efficitur eleifend id at felis. Ut pellentesque tellus ac rutrum pretium. Mauris eget accumsan ante, id auctor sem. - -## Usage - -All of the experiences and tools found in this repository are completely open to the public, all we ask is that credit be given to the author of a specific script and that anyone downloading this code tries to go beyond what is already there. Please contact us if you add something valuable to this code so that we may include your contributions on this repo or, if that is not desired, we get so see what you did with it! - -## Contributing -1. Fork it! -2. Create your feature branch: `git checkout -b my-new-feature` -3. Commit your changes: `git commit -am 'Add some feature'` -4. Push to the branch: `git push origin my-new-feature` -5. Submit a pull request :D - - - -## Credits - -1. Jean-Luc Cohen @NYU . -2. Agnieska Roginska @NYU. - -## License - -MIT License -Copyright (c) 2017 IAG NYU From 56e3f12591bd45de7aebe8d411dfa21eede6b7c5 Mon Sep 17 00:00:00 2001 From: Gabriel Zalles Date: Thu, 1 Jun 2017 19:21:13 -0400 Subject: [PATCH 6/6] added gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e43b0f9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_Store