├── .editorconfig ├── .gitignore ├── CNAME ├── Gemfile ├── README.md ├── _config.yaml ├── _includes └── youtube.html ├── _layouts ├── compress.html └── default.html ├── card.png ├── index.md ├── logo.png ├── slides ├── akira-building-a-ux-app-from-scratch.pdf ├── how-to-contribute-to-elementary.pdf ├── improving-app-development-in-vala.pdf ├── making-an-accessible-app.pdf ├── my-experience-as-a-visually-impaired-developer.pdf └── state-of-the-platform.pdf └── styles └── main.scss /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/edw/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | _site/ 3 | 4 | # We always use the latest on GitHub Pages 5 | Gemfile.lock 6 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | edw.elementary.io -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/edw/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/edw/HEAD/README.md -------------------------------------------------------------------------------- /_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/edw/HEAD/_config.yaml -------------------------------------------------------------------------------- /_includes/youtube.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/edw/HEAD/_includes/youtube.html -------------------------------------------------------------------------------- /_layouts/compress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/edw/HEAD/_layouts/compress.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/edw/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/edw/HEAD/card.png -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/edw/HEAD/index.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/edw/HEAD/logo.png -------------------------------------------------------------------------------- /slides/akira-building-a-ux-app-from-scratch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/edw/HEAD/slides/akira-building-a-ux-app-from-scratch.pdf -------------------------------------------------------------------------------- /slides/how-to-contribute-to-elementary.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/edw/HEAD/slides/how-to-contribute-to-elementary.pdf -------------------------------------------------------------------------------- /slides/improving-app-development-in-vala.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/edw/HEAD/slides/improving-app-development-in-vala.pdf -------------------------------------------------------------------------------- /slides/making-an-accessible-app.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/edw/HEAD/slides/making-an-accessible-app.pdf -------------------------------------------------------------------------------- /slides/my-experience-as-a-visually-impaired-developer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/edw/HEAD/slides/my-experience-as-a-visually-impaired-developer.pdf -------------------------------------------------------------------------------- /slides/state-of-the-platform.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/edw/HEAD/slides/state-of-the-platform.pdf -------------------------------------------------------------------------------- /styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/edw/HEAD/styles/main.scss --------------------------------------------------------------------------------