├── .DS_Store ├── .github ├── dependabot.yml └── workflows │ └── scorecard.yml ├── CODE_OF_CONDUCT.md ├── K8s2AzureSQL ├── README.md ├── code │ ├── .dockerignore │ ├── .env │ ├── .gitignore │ ├── Dockerfile │ ├── app.py │ ├── flask2sql.yaml │ └── requirements.txt └── graphics │ └── FlaskReturn01.png ├── LICENSE ├── README.md ├── SECURITY.md ├── _config.yml ├── ai_ml_dl ├── .DS_Store ├── AI History.ipynb ├── AI-ML-DL-NLP-LLM.ipynb ├── AI.ipynb ├── DL.ipynb ├── ML.ipynb ├── OpenAI-SQLML.ipynb └── README.md ├── ai_whattousewhen ├── .DS_Store ├── AAProjectAssets │ ├── 1 - Discovery.docx │ ├── 2 - Envisioning.pptx │ ├── 3 - ADS Decision Tree.xlsx │ ├── 3 - ADS.vsdx │ ├── 3- Predictive Maintenance Diagram.pdf │ ├── 4 - POC.mpp │ ├── 4 - POC.xlsx │ ├── 5 - Implementation.mpp │ ├── 6 - Handoff.pptx │ ├── Charter.md │ ├── Contoso Manufacturing and Service.vsdx │ ├── DataDefinition.md │ ├── DataDictionary.md │ ├── ML, AI, DL for the Data Professional.pptx │ ├── Project Plan.xlsx │ └── ProjectCloseout.md └── bwoody - What to Use When.pptx ├── bdc ├── Fraud.ipynb └── SQL Server 2019 Big Data Clusters Workshop.pptx ├── dataliteracy ├── .vscode │ └── tasks.json ├── README.md └── dataliteracy │ ├── 00-pre-requisites.md │ ├── 01-find_authoritative_data.md │ ├── 02-work_with_data_tools.md │ ├── 03-analyze_data_in_context.md │ └── 04-use_data_for_intelligent_decisions.md ├── genai ├── promptbuilder.html └── prompting.md ├── graphics ├── .DS_Store ├── BWLogo001.png ├── BWLogo002.png ├── BWLogo003.png ├── BuckWoody001.png ├── Seaborn.png └── tempsnip.png ├── presentation_workshop └── Career - Presentation Workshop.pptx ├── problemtosolution ├── 01-IntroAndSetup.ipynb ├── 02-QueryProblemsAndSolutionsDB.ipynb ├── SQLToAzure.pbix ├── Solutions.vsdx ├── Stencil - Azure.vss ├── graphics │ └── erd.png ├── solutions.bak └── solutions_database_script.sql ├── secureai └── Designing Secure Artificial Intelligence Applications.pptx ├── shut_the_front_door ├── .DS_Store ├── LICENSES │ ├── CODE_OF_CONDUCT.md │ ├── LICENSE │ ├── LICENSE-CODE │ ├── README.md │ └── SECURITY.md ├── README.md ├── graphics │ ├── .DS_Store │ ├── bookpencil.png │ ├── building1.png │ ├── bulletlist.png │ ├── checkbox.png │ ├── checkmark.png │ ├── clipboardcheck.png │ ├── cloud1.png │ ├── education1.png │ ├── factory.png │ ├── geopin.png │ ├── hdfs.png │ ├── kubectl.png │ ├── listcheck.png │ ├── microsoftlogo.png │ ├── owl.png │ ├── paperclip1.png │ ├── pencil2.png │ ├── pinmap.png │ ├── point1.png │ └── textbubble.png └── shut_the_front_door │ ├── 00 - Pre-Requisites.md │ ├── Module01.md │ ├── Module02.md │ ├── Module03.md │ └── SecurityAuditChecklist-Edge.md ├── system_setup ├── ubuntu.md └── windows.md └── tdsp ├── Data Science - The Team Data Science Process.pptx └── tdsp_handout.docx /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /K8s2AzureSQL/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/K8s2AzureSQL/README.md -------------------------------------------------------------------------------- /K8s2AzureSQL/code/.dockerignore: -------------------------------------------------------------------------------- 1 | .venv/ 2 | __pycache__/ 3 | *.local -------------------------------------------------------------------------------- /K8s2AzureSQL/code/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/K8s2AzureSQL/code/.env -------------------------------------------------------------------------------- /K8s2AzureSQL/code/.gitignore: -------------------------------------------------------------------------------- 1 | .venv/ 2 | __pycache__/ 3 | *.local -------------------------------------------------------------------------------- /K8s2AzureSQL/code/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/K8s2AzureSQL/code/Dockerfile -------------------------------------------------------------------------------- /K8s2AzureSQL/code/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/K8s2AzureSQL/code/app.py -------------------------------------------------------------------------------- /K8s2AzureSQL/code/flask2sql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/K8s2AzureSQL/code/flask2sql.yaml -------------------------------------------------------------------------------- /K8s2AzureSQL/code/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/K8s2AzureSQL/code/requirements.txt -------------------------------------------------------------------------------- /K8s2AzureSQL/graphics/FlaskReturn01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/K8s2AzureSQL/graphics/FlaskReturn01.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/SECURITY.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/_config.yml -------------------------------------------------------------------------------- /ai_ml_dl/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_ml_dl/.DS_Store -------------------------------------------------------------------------------- /ai_ml_dl/AI History.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_ml_dl/AI History.ipynb -------------------------------------------------------------------------------- /ai_ml_dl/AI-ML-DL-NLP-LLM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_ml_dl/AI-ML-DL-NLP-LLM.ipynb -------------------------------------------------------------------------------- /ai_ml_dl/AI.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_ml_dl/AI.ipynb -------------------------------------------------------------------------------- /ai_ml_dl/DL.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_ml_dl/DL.ipynb -------------------------------------------------------------------------------- /ai_ml_dl/ML.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_ml_dl/ML.ipynb -------------------------------------------------------------------------------- /ai_ml_dl/OpenAI-SQLML.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_ml_dl/OpenAI-SQLML.ipynb -------------------------------------------------------------------------------- /ai_ml_dl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_ml_dl/README.md -------------------------------------------------------------------------------- /ai_whattousewhen/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_whattousewhen/.DS_Store -------------------------------------------------------------------------------- /ai_whattousewhen/AAProjectAssets/1 - Discovery.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_whattousewhen/AAProjectAssets/1 - Discovery.docx -------------------------------------------------------------------------------- /ai_whattousewhen/AAProjectAssets/2 - Envisioning.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_whattousewhen/AAProjectAssets/2 - Envisioning.pptx -------------------------------------------------------------------------------- /ai_whattousewhen/AAProjectAssets/3 - ADS Decision Tree.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_whattousewhen/AAProjectAssets/3 - ADS Decision Tree.xlsx -------------------------------------------------------------------------------- /ai_whattousewhen/AAProjectAssets/3 - ADS.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_whattousewhen/AAProjectAssets/3 - ADS.vsdx -------------------------------------------------------------------------------- /ai_whattousewhen/AAProjectAssets/3- Predictive Maintenance Diagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_whattousewhen/AAProjectAssets/3- Predictive Maintenance Diagram.pdf -------------------------------------------------------------------------------- /ai_whattousewhen/AAProjectAssets/4 - POC.mpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_whattousewhen/AAProjectAssets/4 - POC.mpp -------------------------------------------------------------------------------- /ai_whattousewhen/AAProjectAssets/4 - POC.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_whattousewhen/AAProjectAssets/4 - POC.xlsx -------------------------------------------------------------------------------- /ai_whattousewhen/AAProjectAssets/5 - Implementation.mpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_whattousewhen/AAProjectAssets/5 - Implementation.mpp -------------------------------------------------------------------------------- /ai_whattousewhen/AAProjectAssets/6 - Handoff.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_whattousewhen/AAProjectAssets/6 - Handoff.pptx -------------------------------------------------------------------------------- /ai_whattousewhen/AAProjectAssets/Charter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_whattousewhen/AAProjectAssets/Charter.md -------------------------------------------------------------------------------- /ai_whattousewhen/AAProjectAssets/Contoso Manufacturing and Service.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_whattousewhen/AAProjectAssets/Contoso Manufacturing and Service.vsdx -------------------------------------------------------------------------------- /ai_whattousewhen/AAProjectAssets/DataDefinition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_whattousewhen/AAProjectAssets/DataDefinition.md -------------------------------------------------------------------------------- /ai_whattousewhen/AAProjectAssets/DataDictionary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_whattousewhen/AAProjectAssets/DataDictionary.md -------------------------------------------------------------------------------- /ai_whattousewhen/AAProjectAssets/ML, AI, DL for the Data Professional.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_whattousewhen/AAProjectAssets/ML, AI, DL for the Data Professional.pptx -------------------------------------------------------------------------------- /ai_whattousewhen/AAProjectAssets/Project Plan.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_whattousewhen/AAProjectAssets/Project Plan.xlsx -------------------------------------------------------------------------------- /ai_whattousewhen/AAProjectAssets/ProjectCloseout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_whattousewhen/AAProjectAssets/ProjectCloseout.md -------------------------------------------------------------------------------- /ai_whattousewhen/bwoody - What to Use When.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/ai_whattousewhen/bwoody - What to Use When.pptx -------------------------------------------------------------------------------- /bdc/Fraud.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/bdc/Fraud.ipynb -------------------------------------------------------------------------------- /bdc/SQL Server 2019 Big Data Clusters Workshop.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/bdc/SQL Server 2019 Big Data Clusters Workshop.pptx -------------------------------------------------------------------------------- /dataliteracy/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/dataliteracy/.vscode/tasks.json -------------------------------------------------------------------------------- /dataliteracy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/dataliteracy/README.md -------------------------------------------------------------------------------- /dataliteracy/dataliteracy/00-pre-requisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/dataliteracy/dataliteracy/00-pre-requisites.md -------------------------------------------------------------------------------- /dataliteracy/dataliteracy/01-find_authoritative_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/dataliteracy/dataliteracy/01-find_authoritative_data.md -------------------------------------------------------------------------------- /dataliteracy/dataliteracy/02-work_with_data_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/dataliteracy/dataliteracy/02-work_with_data_tools.md -------------------------------------------------------------------------------- /dataliteracy/dataliteracy/03-analyze_data_in_context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/dataliteracy/dataliteracy/03-analyze_data_in_context.md -------------------------------------------------------------------------------- /dataliteracy/dataliteracy/04-use_data_for_intelligent_decisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/dataliteracy/dataliteracy/04-use_data_for_intelligent_decisions.md -------------------------------------------------------------------------------- /genai/promptbuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/genai/promptbuilder.html -------------------------------------------------------------------------------- /genai/prompting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/genai/prompting.md -------------------------------------------------------------------------------- /graphics/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/graphics/.DS_Store -------------------------------------------------------------------------------- /graphics/BWLogo001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/graphics/BWLogo001.png -------------------------------------------------------------------------------- /graphics/BWLogo002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/graphics/BWLogo002.png -------------------------------------------------------------------------------- /graphics/BWLogo003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/graphics/BWLogo003.png -------------------------------------------------------------------------------- /graphics/BuckWoody001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/graphics/BuckWoody001.png -------------------------------------------------------------------------------- /graphics/Seaborn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/graphics/Seaborn.png -------------------------------------------------------------------------------- /graphics/tempsnip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/graphics/tempsnip.png -------------------------------------------------------------------------------- /presentation_workshop/Career - Presentation Workshop.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/presentation_workshop/Career - Presentation Workshop.pptx -------------------------------------------------------------------------------- /problemtosolution/01-IntroAndSetup.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/problemtosolution/01-IntroAndSetup.ipynb -------------------------------------------------------------------------------- /problemtosolution/02-QueryProblemsAndSolutionsDB.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/problemtosolution/02-QueryProblemsAndSolutionsDB.ipynb -------------------------------------------------------------------------------- /problemtosolution/SQLToAzure.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/problemtosolution/SQLToAzure.pbix -------------------------------------------------------------------------------- /problemtosolution/Solutions.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/problemtosolution/Solutions.vsdx -------------------------------------------------------------------------------- /problemtosolution/Stencil - Azure.vss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/problemtosolution/Stencil - Azure.vss -------------------------------------------------------------------------------- /problemtosolution/graphics/erd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/problemtosolution/graphics/erd.png -------------------------------------------------------------------------------- /problemtosolution/solutions.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/problemtosolution/solutions.bak -------------------------------------------------------------------------------- /problemtosolution/solutions_database_script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/problemtosolution/solutions_database_script.sql -------------------------------------------------------------------------------- /secureai/Designing Secure Artificial Intelligence Applications.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/secureai/Designing Secure Artificial Intelligence Applications.pptx -------------------------------------------------------------------------------- /shut_the_front_door/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/.DS_Store -------------------------------------------------------------------------------- /shut_the_front_door/LICENSES/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/LICENSES/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /shut_the_front_door/LICENSES/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/LICENSES/LICENSE -------------------------------------------------------------------------------- /shut_the_front_door/LICENSES/LICENSE-CODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/LICENSES/LICENSE-CODE -------------------------------------------------------------------------------- /shut_the_front_door/LICENSES/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/LICENSES/README.md -------------------------------------------------------------------------------- /shut_the_front_door/LICENSES/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/LICENSES/SECURITY.md -------------------------------------------------------------------------------- /shut_the_front_door/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/README.md -------------------------------------------------------------------------------- /shut_the_front_door/graphics/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/graphics/.DS_Store -------------------------------------------------------------------------------- /shut_the_front_door/graphics/bookpencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/graphics/bookpencil.png -------------------------------------------------------------------------------- /shut_the_front_door/graphics/building1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/graphics/building1.png -------------------------------------------------------------------------------- /shut_the_front_door/graphics/bulletlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/graphics/bulletlist.png -------------------------------------------------------------------------------- /shut_the_front_door/graphics/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/graphics/checkbox.png -------------------------------------------------------------------------------- /shut_the_front_door/graphics/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/graphics/checkmark.png -------------------------------------------------------------------------------- /shut_the_front_door/graphics/clipboardcheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/graphics/clipboardcheck.png -------------------------------------------------------------------------------- /shut_the_front_door/graphics/cloud1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/graphics/cloud1.png -------------------------------------------------------------------------------- /shut_the_front_door/graphics/education1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/graphics/education1.png -------------------------------------------------------------------------------- /shut_the_front_door/graphics/factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/graphics/factory.png -------------------------------------------------------------------------------- /shut_the_front_door/graphics/geopin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/graphics/geopin.png -------------------------------------------------------------------------------- /shut_the_front_door/graphics/hdfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/graphics/hdfs.png -------------------------------------------------------------------------------- /shut_the_front_door/graphics/kubectl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/graphics/kubectl.png -------------------------------------------------------------------------------- /shut_the_front_door/graphics/listcheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/graphics/listcheck.png -------------------------------------------------------------------------------- /shut_the_front_door/graphics/microsoftlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/graphics/microsoftlogo.png -------------------------------------------------------------------------------- /shut_the_front_door/graphics/owl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/graphics/owl.png -------------------------------------------------------------------------------- /shut_the_front_door/graphics/paperclip1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/graphics/paperclip1.png -------------------------------------------------------------------------------- /shut_the_front_door/graphics/pencil2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/graphics/pencil2.png -------------------------------------------------------------------------------- /shut_the_front_door/graphics/pinmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/graphics/pinmap.png -------------------------------------------------------------------------------- /shut_the_front_door/graphics/point1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/graphics/point1.png -------------------------------------------------------------------------------- /shut_the_front_door/graphics/textbubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/graphics/textbubble.png -------------------------------------------------------------------------------- /shut_the_front_door/shut_the_front_door/00 - Pre-Requisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/shut_the_front_door/00 - Pre-Requisites.md -------------------------------------------------------------------------------- /shut_the_front_door/shut_the_front_door/Module01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/shut_the_front_door/Module01.md -------------------------------------------------------------------------------- /shut_the_front_door/shut_the_front_door/Module02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/shut_the_front_door/Module02.md -------------------------------------------------------------------------------- /shut_the_front_door/shut_the_front_door/Module03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/shut_the_front_door/Module03.md -------------------------------------------------------------------------------- /shut_the_front_door/shut_the_front_door/SecurityAuditChecklist-Edge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/shut_the_front_door/shut_the_front_door/SecurityAuditChecklist-Edge.md -------------------------------------------------------------------------------- /system_setup/ubuntu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/system_setup/ubuntu.md -------------------------------------------------------------------------------- /system_setup/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/system_setup/windows.md -------------------------------------------------------------------------------- /tdsp/Data Science - The Team Data Science Process.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/tdsp/Data Science - The Team Data Science Process.pptx -------------------------------------------------------------------------------- /tdsp/tdsp_handout.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BuckWoody/PresentationsAndBlogs/HEAD/tdsp/tdsp_handout.docx --------------------------------------------------------------------------------