├── .gitattributes ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── LICENSE-CODE ├── README.md ├── SECURITY.md ├── assets └── logo.png ├── events ├── 2024-fabric-hacktogether.md ├── 2024-fabric-webinar.md ├── 2024-microsoft-ai-tour.md ├── 2024-python-data-science-day.md └── assets │ ├── aitour-homepage.png │ ├── azure-webinar-getting-started-fabric.png │ ├── fabric-hacktogether.png │ └── fabricnotes.png ├── presentations ├── 00. Microsoft Fabric Community Resources.pptx ├── 01. Introducing Unified Analytics.pptx ├── 02. Data Engineering with Microsoft Synapse.pptx ├── 03. Data Science in Microsoft Fabric.pptx ├── 04. Data Warehousing with Microsoft Fabric.pptx ├── 05. Synapse Real-Time Analytics in Microsoft Fabric.pptx ├── 06. Data Integration with Data Factory.pptx └── 07. Introduction to Microsoft Fabric for Power BI Users.pptx └── readiness-hands-on-day ├── assets ├── fabric-handson-day-agenda.png └── fabric-handson-day.png ├── readme-instructor.md ├── readme.md └── slides ├── fabric-handson-day-afternoon-keynote.pdf ├── fabric-handson-day-afternoon-keynote.pptx ├── fabric-handson-day-morning-keynote.pdf └── fabric-handson-day-morning-keynote.pptx /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-CODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/LICENSE-CODE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/assets/logo.png -------------------------------------------------------------------------------- /events/2024-fabric-hacktogether.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/events/2024-fabric-hacktogether.md -------------------------------------------------------------------------------- /events/2024-fabric-webinar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/events/2024-fabric-webinar.md -------------------------------------------------------------------------------- /events/2024-microsoft-ai-tour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/events/2024-microsoft-ai-tour.md -------------------------------------------------------------------------------- /events/2024-python-data-science-day.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/events/2024-python-data-science-day.md -------------------------------------------------------------------------------- /events/assets/aitour-homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/events/assets/aitour-homepage.png -------------------------------------------------------------------------------- /events/assets/azure-webinar-getting-started-fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/events/assets/azure-webinar-getting-started-fabric.png -------------------------------------------------------------------------------- /events/assets/fabric-hacktogether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/events/assets/fabric-hacktogether.png -------------------------------------------------------------------------------- /events/assets/fabricnotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/events/assets/fabricnotes.png -------------------------------------------------------------------------------- /presentations/00. Microsoft Fabric Community Resources.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/presentations/00. Microsoft Fabric Community Resources.pptx -------------------------------------------------------------------------------- /presentations/01. Introducing Unified Analytics.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/presentations/01. Introducing Unified Analytics.pptx -------------------------------------------------------------------------------- /presentations/02. Data Engineering with Microsoft Synapse.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/presentations/02. Data Engineering with Microsoft Synapse.pptx -------------------------------------------------------------------------------- /presentations/03. Data Science in Microsoft Fabric.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/presentations/03. Data Science in Microsoft Fabric.pptx -------------------------------------------------------------------------------- /presentations/04. Data Warehousing with Microsoft Fabric.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/presentations/04. Data Warehousing with Microsoft Fabric.pptx -------------------------------------------------------------------------------- /presentations/05. Synapse Real-Time Analytics in Microsoft Fabric.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/presentations/05. Synapse Real-Time Analytics in Microsoft Fabric.pptx -------------------------------------------------------------------------------- /presentations/06. Data Integration with Data Factory.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/presentations/06. Data Integration with Data Factory.pptx -------------------------------------------------------------------------------- /presentations/07. Introduction to Microsoft Fabric for Power BI Users.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/presentations/07. Introduction to Microsoft Fabric for Power BI Users.pptx -------------------------------------------------------------------------------- /readiness-hands-on-day/assets/fabric-handson-day-agenda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/readiness-hands-on-day/assets/fabric-handson-day-agenda.png -------------------------------------------------------------------------------- /readiness-hands-on-day/assets/fabric-handson-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/readiness-hands-on-day/assets/fabric-handson-day.png -------------------------------------------------------------------------------- /readiness-hands-on-day/readme-instructor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/readiness-hands-on-day/readme-instructor.md -------------------------------------------------------------------------------- /readiness-hands-on-day/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/readiness-hands-on-day/readme.md -------------------------------------------------------------------------------- /readiness-hands-on-day/slides/fabric-handson-day-afternoon-keynote.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/readiness-hands-on-day/slides/fabric-handson-day-afternoon-keynote.pdf -------------------------------------------------------------------------------- /readiness-hands-on-day/slides/fabric-handson-day-afternoon-keynote.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/readiness-hands-on-day/slides/fabric-handson-day-afternoon-keynote.pptx -------------------------------------------------------------------------------- /readiness-hands-on-day/slides/fabric-handson-day-morning-keynote.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/readiness-hands-on-day/slides/fabric-handson-day-morning-keynote.pdf -------------------------------------------------------------------------------- /readiness-hands-on-day/slides/fabric-handson-day-morning-keynote.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Fabric-Readiness/HEAD/readiness-hands-on-day/slides/fabric-handson-day-morning-keynote.pptx --------------------------------------------------------------------------------