├── .gitignore ├── 2018-conferences.ics ├── README.md ├── duplicates.js ├── index.js ├── list.json └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /2018-conferences.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburgess/2018-conferences/HEAD/2018-conferences.ics -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburgess/2018-conferences/HEAD/README.md -------------------------------------------------------------------------------- /duplicates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburgess/2018-conferences/HEAD/duplicates.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburgess/2018-conferences/HEAD/index.js -------------------------------------------------------------------------------- /list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburgess/2018-conferences/HEAD/list.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanburgess/2018-conferences/HEAD/package.json --------------------------------------------------------------------------------