├── .DS_Store ├── .github ├── ISSUE_TEMPLATE │ ├── ---community-buzz--articles-authored-by-you-.md │ ├── ---product-feedback--share-your-product-specific-questions--comments.md │ ├── platform--request-website-feature--or-report-website-bug.md │ ├── project-submission-30DaysOfMSGraph.md │ ├── project-submission-data-science.md │ └── project-submission-template.md └── workflows │ ├── deploy-on-push.yml │ └── test-deploy-on-pull.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Contributing.md ├── LICENSE ├── Microsoft License.md ├── NOTICE.txt ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── images ├── Guide.png ├── conect.png ├── landing.png └── welcome.png └── website ├── .gitignore ├── README.md ├── babel.config.js ├── blog ├── 2022-08-31 │ └── index.md ├── authors.yml ├── curricula │ └── 2022-09-20 │ │ ├── 01-webdev.md │ │ ├── 02-ml.md │ │ ├── 03-iot.md │ │ ├── 04-datasci.md │ │ ├── 05-ai.md │ │ └── 06-xr.md ├── data-analytics │ ├── data-analytics.md │ └── img │ │ └── domo.png ├── data-science │ ├── 2022-10-17.md │ ├── 2022-10-21.md │ ├── 2022-10-24.md │ ├── 2022-10-28.md │ ├── 2022-10-31.md │ ├── 2022-11-04.md │ ├── 2022-11-07.md │ ├── 2022-11-11.md │ └── img │ │ ├── CSC-30DS.png │ │ ├── localenv.jpg │ │ ├── pulse check.png │ │ ├── roadmap-blog.png │ │ ├── roadmap.png │ │ └── twitter.jpg ├── fusion │ ├── 2022-09-12 │ │ ├── fusion.md │ │ └── img │ │ │ ├── ConnectorHack.png │ │ │ └── fusiondev-process.png │ ├── 2022-09-15.md │ ├── 2022-09-19.md │ ├── 2022-09-21.md │ ├── 2022-09-28.md │ └── img │ │ ├── connector-best-practices.png │ │ ├── connector-creation.png │ │ ├── connector-def.png │ │ ├── connector-types.png │ │ ├── consume-connector.png │ │ ├── daraja-api-postman.png │ │ ├── error-details.png │ │ ├── icons8-youtube.svg │ │ ├── intro-slide.png │ │ ├── nestjs.png │ │ ├── policy-example.png │ │ ├── power-platform.png │ │ ├── problem-statement.png │ │ ├── proposal-for-NFTMania.png │ │ └── types-of-triggers.png └── serverless │ └── 2022-09-01.md ├── docs ├── challenges │ ├── _category_.json │ ├── images │ │ ├── Competition.png │ │ ├── Develop skills.png │ │ └── Training.png │ └── intro.md ├── curricula │ ├── _category_.json │ ├── ai.md │ ├── datasci.md │ ├── iot.md │ ├── ml.md │ ├── web.md │ └── xr.md ├── playbook │ ├── _category_.json │ └── intro.md ├── roadmaps │ ├── 01-pwa.md │ ├── 02-swa.md │ ├── 03-power-roadmap.md │ ├── 04-fusion.md │ ├── 05-data-science.md │ ├── 06-data-analytics.md │ ├── 07-serverless.md │ ├── 08-microsoft-graph.md │ ├── _category_.json │ └── img │ │ ├── fusion-progress.png │ │ ├── guide.svg │ │ ├── hackathon-winners.png │ │ └── powerbikickoff.png └── video-series │ ├── _category_.json │ └── intro.md ├── docusaurus.config.js ├── package-lock.json ├── package.json ├── sidebars.js ├── src ├── components │ └── HomepageFeatures │ │ ├── index.js │ │ └── styles.module.css ├── css │ └── custom.css └── pages │ ├── calendar.md │ ├── index.js │ ├── index.module.css │ ├── markdown-page.md │ ├── onboarding.md │ └── tools.md └── static ├── .nojekyll ├── img ├── banners │ ├── blue-flowers.png │ ├── data-analytics.png │ ├── data-science.png │ ├── empty.png │ ├── fucshia-laptop.png │ ├── fusion.png │ ├── green-flowers.png │ ├── kickoff-profiles.png │ ├── learning.png │ ├── microsoft-graph-roadmap.jpg │ ├── microsoft-graph-team.jpg │ ├── microsoft-graph.jpg │ ├── power-platform.png │ ├── purple-flowers.png │ ├── pwa.png │ ├── pwa │ │ ├── week-1.png │ │ ├── week-2.png │ │ ├── week-3.png │ │ └── week-4.png │ ├── red-books.png │ ├── red-flowers.png │ ├── serverless.png │ ├── serverless │ │ ├── 30days.png │ │ ├── compute-choices.png │ │ ├── kickoff.png │ │ └── week1-roadmap.png │ ├── swa.png │ ├── wallpaper-small.png │ ├── wallpaper.png │ └── yellow-flowers.png ├── coming-soon.png ├── curricula │ ├── curricula-ai.png │ ├── curricula-datasci.png │ ├── curricula-iot.jpeg │ ├── curricula-ml.png │ └── curricula-web.png ├── favicon.ico ├── landing │ ├── connect-dark.svg │ ├── connect.svg │ ├── explore-dark.svg │ ├── explore.svg │ ├── share-dark.svg │ ├── share.svg │ ├── start-dark.svg │ └── start.svg ├── logo.svg ├── logo │ ├── iot.svg │ ├── powerbi.svg │ ├── pwa.svg │ └── swa.svg └── roadmaps │ ├── bookstack.svg │ ├── data-analytics.png │ ├── data-science.png │ ├── default.svg │ ├── flowers.svg │ ├── fusion.png │ ├── microsoft-graph.png │ ├── power-platform.png │ ├── pwa.png │ ├── serverless.png │ └── swa.png └── scripts └── wcp-init.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---community-buzz--articles-authored-by-you-.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/.github/ISSUE_TEMPLATE/---community-buzz--articles-authored-by-you-.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/---product-feedback--share-your-product-specific-questions--comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/.github/ISSUE_TEMPLATE/---product-feedback--share-your-product-specific-questions--comments.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/platform--request-website-feature--or-report-website-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/.github/ISSUE_TEMPLATE/platform--request-website-feature--or-report-website-bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/project-submission-30DaysOfMSGraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/.github/ISSUE_TEMPLATE/project-submission-30DaysOfMSGraph.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/project-submission-data-science.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/.github/ISSUE_TEMPLATE/project-submission-data-science.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/project-submission-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/.github/ISSUE_TEMPLATE/project-submission-template.md -------------------------------------------------------------------------------- /.github/workflows/deploy-on-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/.github/workflows/deploy-on-push.yml -------------------------------------------------------------------------------- /.github/workflows/test-deploy-on-pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/.github/workflows/test-deploy-on-pull.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/LICENSE -------------------------------------------------------------------------------- /Microsoft License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/Microsoft License.md -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /images/Guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/images/Guide.png -------------------------------------------------------------------------------- /images/conect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/images/conect.png -------------------------------------------------------------------------------- /images/landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/images/landing.png -------------------------------------------------------------------------------- /images/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/images/welcome.png -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/README.md -------------------------------------------------------------------------------- /website/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/babel.config.js -------------------------------------------------------------------------------- /website/blog/2022-08-31/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/2022-08-31/index.md -------------------------------------------------------------------------------- /website/blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/authors.yml -------------------------------------------------------------------------------- /website/blog/curricula/2022-09-20/01-webdev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/curricula/2022-09-20/01-webdev.md -------------------------------------------------------------------------------- /website/blog/curricula/2022-09-20/02-ml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/curricula/2022-09-20/02-ml.md -------------------------------------------------------------------------------- /website/blog/curricula/2022-09-20/03-iot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/curricula/2022-09-20/03-iot.md -------------------------------------------------------------------------------- /website/blog/curricula/2022-09-20/04-datasci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/curricula/2022-09-20/04-datasci.md -------------------------------------------------------------------------------- /website/blog/curricula/2022-09-20/05-ai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/curricula/2022-09-20/05-ai.md -------------------------------------------------------------------------------- /website/blog/curricula/2022-09-20/06-xr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/curricula/2022-09-20/06-xr.md -------------------------------------------------------------------------------- /website/blog/data-analytics/data-analytics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/data-analytics/data-analytics.md -------------------------------------------------------------------------------- /website/blog/data-analytics/img/domo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/data-analytics/img/domo.png -------------------------------------------------------------------------------- /website/blog/data-science/2022-10-17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/data-science/2022-10-17.md -------------------------------------------------------------------------------- /website/blog/data-science/2022-10-21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/data-science/2022-10-21.md -------------------------------------------------------------------------------- /website/blog/data-science/2022-10-24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/data-science/2022-10-24.md -------------------------------------------------------------------------------- /website/blog/data-science/2022-10-28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/data-science/2022-10-28.md -------------------------------------------------------------------------------- /website/blog/data-science/2022-10-31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/data-science/2022-10-31.md -------------------------------------------------------------------------------- /website/blog/data-science/2022-11-04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/data-science/2022-11-04.md -------------------------------------------------------------------------------- /website/blog/data-science/2022-11-07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/data-science/2022-11-07.md -------------------------------------------------------------------------------- /website/blog/data-science/2022-11-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/data-science/2022-11-11.md -------------------------------------------------------------------------------- /website/blog/data-science/img/CSC-30DS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/data-science/img/CSC-30DS.png -------------------------------------------------------------------------------- /website/blog/data-science/img/localenv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/data-science/img/localenv.jpg -------------------------------------------------------------------------------- /website/blog/data-science/img/pulse check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/data-science/img/pulse check.png -------------------------------------------------------------------------------- /website/blog/data-science/img/roadmap-blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/data-science/img/roadmap-blog.png -------------------------------------------------------------------------------- /website/blog/data-science/img/roadmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/data-science/img/roadmap.png -------------------------------------------------------------------------------- /website/blog/data-science/img/twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/data-science/img/twitter.jpg -------------------------------------------------------------------------------- /website/blog/fusion/2022-09-12/fusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/fusion/2022-09-12/fusion.md -------------------------------------------------------------------------------- /website/blog/fusion/2022-09-12/img/ConnectorHack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/fusion/2022-09-12/img/ConnectorHack.png -------------------------------------------------------------------------------- /website/blog/fusion/2022-09-12/img/fusiondev-process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/fusion/2022-09-12/img/fusiondev-process.png -------------------------------------------------------------------------------- /website/blog/fusion/2022-09-15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/fusion/2022-09-15.md -------------------------------------------------------------------------------- /website/blog/fusion/2022-09-19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/fusion/2022-09-19.md -------------------------------------------------------------------------------- /website/blog/fusion/2022-09-21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/fusion/2022-09-21.md -------------------------------------------------------------------------------- /website/blog/fusion/2022-09-28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/fusion/2022-09-28.md -------------------------------------------------------------------------------- /website/blog/fusion/img/connector-best-practices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/fusion/img/connector-best-practices.png -------------------------------------------------------------------------------- /website/blog/fusion/img/connector-creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/fusion/img/connector-creation.png -------------------------------------------------------------------------------- /website/blog/fusion/img/connector-def.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/fusion/img/connector-def.png -------------------------------------------------------------------------------- /website/blog/fusion/img/connector-types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/fusion/img/connector-types.png -------------------------------------------------------------------------------- /website/blog/fusion/img/consume-connector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/fusion/img/consume-connector.png -------------------------------------------------------------------------------- /website/blog/fusion/img/daraja-api-postman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/fusion/img/daraja-api-postman.png -------------------------------------------------------------------------------- /website/blog/fusion/img/error-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/fusion/img/error-details.png -------------------------------------------------------------------------------- /website/blog/fusion/img/icons8-youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/fusion/img/icons8-youtube.svg -------------------------------------------------------------------------------- /website/blog/fusion/img/intro-slide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/fusion/img/intro-slide.png -------------------------------------------------------------------------------- /website/blog/fusion/img/nestjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/fusion/img/nestjs.png -------------------------------------------------------------------------------- /website/blog/fusion/img/policy-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/fusion/img/policy-example.png -------------------------------------------------------------------------------- /website/blog/fusion/img/power-platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/fusion/img/power-platform.png -------------------------------------------------------------------------------- /website/blog/fusion/img/problem-statement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/fusion/img/problem-statement.png -------------------------------------------------------------------------------- /website/blog/fusion/img/proposal-for-NFTMania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/fusion/img/proposal-for-NFTMania.png -------------------------------------------------------------------------------- /website/blog/fusion/img/types-of-triggers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/fusion/img/types-of-triggers.png -------------------------------------------------------------------------------- /website/blog/serverless/2022-09-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/blog/serverless/2022-09-01.md -------------------------------------------------------------------------------- /website/docs/challenges/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/challenges/_category_.json -------------------------------------------------------------------------------- /website/docs/challenges/images/Competition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/challenges/images/Competition.png -------------------------------------------------------------------------------- /website/docs/challenges/images/Develop skills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/challenges/images/Develop skills.png -------------------------------------------------------------------------------- /website/docs/challenges/images/Training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/challenges/images/Training.png -------------------------------------------------------------------------------- /website/docs/challenges/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/challenges/intro.md -------------------------------------------------------------------------------- /website/docs/curricula/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/curricula/_category_.json -------------------------------------------------------------------------------- /website/docs/curricula/ai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/curricula/ai.md -------------------------------------------------------------------------------- /website/docs/curricula/datasci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/curricula/datasci.md -------------------------------------------------------------------------------- /website/docs/curricula/iot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/curricula/iot.md -------------------------------------------------------------------------------- /website/docs/curricula/ml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/curricula/ml.md -------------------------------------------------------------------------------- /website/docs/curricula/web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/curricula/web.md -------------------------------------------------------------------------------- /website/docs/curricula/xr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/curricula/xr.md -------------------------------------------------------------------------------- /website/docs/playbook/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/playbook/_category_.json -------------------------------------------------------------------------------- /website/docs/playbook/intro.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar_position: 1 3 | --- 4 | 5 | # Contributor Guide -------------------------------------------------------------------------------- /website/docs/roadmaps/01-pwa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/roadmaps/01-pwa.md -------------------------------------------------------------------------------- /website/docs/roadmaps/02-swa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/roadmaps/02-swa.md -------------------------------------------------------------------------------- /website/docs/roadmaps/03-power-roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/roadmaps/03-power-roadmap.md -------------------------------------------------------------------------------- /website/docs/roadmaps/04-fusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/roadmaps/04-fusion.md -------------------------------------------------------------------------------- /website/docs/roadmaps/05-data-science.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/roadmaps/05-data-science.md -------------------------------------------------------------------------------- /website/docs/roadmaps/06-data-analytics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/roadmaps/06-data-analytics.md -------------------------------------------------------------------------------- /website/docs/roadmaps/07-serverless.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/roadmaps/07-serverless.md -------------------------------------------------------------------------------- /website/docs/roadmaps/08-microsoft-graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/roadmaps/08-microsoft-graph.md -------------------------------------------------------------------------------- /website/docs/roadmaps/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/roadmaps/_category_.json -------------------------------------------------------------------------------- /website/docs/roadmaps/img/fusion-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/roadmaps/img/fusion-progress.png -------------------------------------------------------------------------------- /website/docs/roadmaps/img/guide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/roadmaps/img/guide.svg -------------------------------------------------------------------------------- /website/docs/roadmaps/img/hackathon-winners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/roadmaps/img/hackathon-winners.png -------------------------------------------------------------------------------- /website/docs/roadmaps/img/powerbikickoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/roadmaps/img/powerbikickoff.png -------------------------------------------------------------------------------- /website/docs/video-series/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/video-series/_category_.json -------------------------------------------------------------------------------- /website/docs/video-series/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docs/video-series/intro.md -------------------------------------------------------------------------------- /website/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/docusaurus.config.js -------------------------------------------------------------------------------- /website/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/package-lock.json -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/package.json -------------------------------------------------------------------------------- /website/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/sidebars.js -------------------------------------------------------------------------------- /website/src/components/HomepageFeatures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/src/components/HomepageFeatures/index.js -------------------------------------------------------------------------------- /website/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /website/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/src/css/custom.css -------------------------------------------------------------------------------- /website/src/pages/calendar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/src/pages/calendar.md -------------------------------------------------------------------------------- /website/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/src/pages/index.js -------------------------------------------------------------------------------- /website/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/src/pages/index.module.css -------------------------------------------------------------------------------- /website/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/src/pages/markdown-page.md -------------------------------------------------------------------------------- /website/src/pages/onboarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/src/pages/onboarding.md -------------------------------------------------------------------------------- /website/src/pages/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/src/pages/tools.md -------------------------------------------------------------------------------- /website/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/img/banners/blue-flowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/blue-flowers.png -------------------------------------------------------------------------------- /website/static/img/banners/data-analytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/data-analytics.png -------------------------------------------------------------------------------- /website/static/img/banners/data-science.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/data-science.png -------------------------------------------------------------------------------- /website/static/img/banners/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/empty.png -------------------------------------------------------------------------------- /website/static/img/banners/fucshia-laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/fucshia-laptop.png -------------------------------------------------------------------------------- /website/static/img/banners/fusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/fusion.png -------------------------------------------------------------------------------- /website/static/img/banners/green-flowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/green-flowers.png -------------------------------------------------------------------------------- /website/static/img/banners/kickoff-profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/kickoff-profiles.png -------------------------------------------------------------------------------- /website/static/img/banners/learning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/learning.png -------------------------------------------------------------------------------- /website/static/img/banners/microsoft-graph-roadmap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/microsoft-graph-roadmap.jpg -------------------------------------------------------------------------------- /website/static/img/banners/microsoft-graph-team.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/microsoft-graph-team.jpg -------------------------------------------------------------------------------- /website/static/img/banners/microsoft-graph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/microsoft-graph.jpg -------------------------------------------------------------------------------- /website/static/img/banners/power-platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/power-platform.png -------------------------------------------------------------------------------- /website/static/img/banners/purple-flowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/purple-flowers.png -------------------------------------------------------------------------------- /website/static/img/banners/pwa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/pwa.png -------------------------------------------------------------------------------- /website/static/img/banners/pwa/week-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/pwa/week-1.png -------------------------------------------------------------------------------- /website/static/img/banners/pwa/week-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/pwa/week-2.png -------------------------------------------------------------------------------- /website/static/img/banners/pwa/week-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/pwa/week-3.png -------------------------------------------------------------------------------- /website/static/img/banners/pwa/week-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/pwa/week-4.png -------------------------------------------------------------------------------- /website/static/img/banners/red-books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/red-books.png -------------------------------------------------------------------------------- /website/static/img/banners/red-flowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/red-flowers.png -------------------------------------------------------------------------------- /website/static/img/banners/serverless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/serverless.png -------------------------------------------------------------------------------- /website/static/img/banners/serverless/30days.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/serverless/30days.png -------------------------------------------------------------------------------- /website/static/img/banners/serverless/compute-choices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/serverless/compute-choices.png -------------------------------------------------------------------------------- /website/static/img/banners/serverless/kickoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/serverless/kickoff.png -------------------------------------------------------------------------------- /website/static/img/banners/serverless/week1-roadmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/serverless/week1-roadmap.png -------------------------------------------------------------------------------- /website/static/img/banners/swa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/swa.png -------------------------------------------------------------------------------- /website/static/img/banners/wallpaper-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/wallpaper-small.png -------------------------------------------------------------------------------- /website/static/img/banners/wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/wallpaper.png -------------------------------------------------------------------------------- /website/static/img/banners/yellow-flowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/banners/yellow-flowers.png -------------------------------------------------------------------------------- /website/static/img/coming-soon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/coming-soon.png -------------------------------------------------------------------------------- /website/static/img/curricula/curricula-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/curricula/curricula-ai.png -------------------------------------------------------------------------------- /website/static/img/curricula/curricula-datasci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/curricula/curricula-datasci.png -------------------------------------------------------------------------------- /website/static/img/curricula/curricula-iot.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/curricula/curricula-iot.jpeg -------------------------------------------------------------------------------- /website/static/img/curricula/curricula-ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/curricula/curricula-ml.png -------------------------------------------------------------------------------- /website/static/img/curricula/curricula-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/curricula/curricula-web.png -------------------------------------------------------------------------------- /website/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/favicon.ico -------------------------------------------------------------------------------- /website/static/img/landing/connect-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/landing/connect-dark.svg -------------------------------------------------------------------------------- /website/static/img/landing/connect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/landing/connect.svg -------------------------------------------------------------------------------- /website/static/img/landing/explore-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/landing/explore-dark.svg -------------------------------------------------------------------------------- /website/static/img/landing/explore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/landing/explore.svg -------------------------------------------------------------------------------- /website/static/img/landing/share-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/landing/share-dark.svg -------------------------------------------------------------------------------- /website/static/img/landing/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/landing/share.svg -------------------------------------------------------------------------------- /website/static/img/landing/start-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/landing/start-dark.svg -------------------------------------------------------------------------------- /website/static/img/landing/start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/landing/start.svg -------------------------------------------------------------------------------- /website/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/logo.svg -------------------------------------------------------------------------------- /website/static/img/logo/iot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/logo/iot.svg -------------------------------------------------------------------------------- /website/static/img/logo/powerbi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/logo/powerbi.svg -------------------------------------------------------------------------------- /website/static/img/logo/pwa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/logo/pwa.svg -------------------------------------------------------------------------------- /website/static/img/logo/swa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/logo/swa.svg -------------------------------------------------------------------------------- /website/static/img/roadmaps/bookstack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/roadmaps/bookstack.svg -------------------------------------------------------------------------------- /website/static/img/roadmaps/data-analytics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/roadmaps/data-analytics.png -------------------------------------------------------------------------------- /website/static/img/roadmaps/data-science.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/roadmaps/data-science.png -------------------------------------------------------------------------------- /website/static/img/roadmaps/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/roadmaps/default.svg -------------------------------------------------------------------------------- /website/static/img/roadmaps/flowers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/roadmaps/flowers.svg -------------------------------------------------------------------------------- /website/static/img/roadmaps/fusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/roadmaps/fusion.png -------------------------------------------------------------------------------- /website/static/img/roadmaps/microsoft-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/roadmaps/microsoft-graph.png -------------------------------------------------------------------------------- /website/static/img/roadmaps/power-platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/roadmaps/power-platform.png -------------------------------------------------------------------------------- /website/static/img/roadmaps/pwa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/roadmaps/pwa.png -------------------------------------------------------------------------------- /website/static/img/roadmaps/serverless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/roadmaps/serverless.png -------------------------------------------------------------------------------- /website/static/img/roadmaps/swa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/img/roadmaps/swa.png -------------------------------------------------------------------------------- /website/static/scripts/wcp-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/30daysof/HEAD/website/static/scripts/wcp-init.js --------------------------------------------------------------------------------