-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8971aed
commit 5c6fc42
Showing
92 changed files
with
9,161 additions
and
29 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* @rramoscabral |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
name: Submit an issue | ||
about: Submit an issue. | ||
title: 'Issue' | ||
labels: '' | ||
assignees: rramoscabral | ||
|
||
--- | ||
|
||
# Issue guidance | ||
|
||
Thanks for opening an issue. | ||
|
||
I use GitHub issues as the primary channel for feedback. | ||
|
||
## Creating an issue | ||
|
||
Make sure you choose one of the issues from the following list: | ||
|
||
- [ ] Contribution with relevant information. | ||
- [ ] Typo error. | ||
- [ ] The Internet address of one of the contents is not available. | ||
- [ ] Content removed or replaced by the author. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
|
||
# Sample workflow for building and deploying a Jekyll site to GitHub Pages | ||
name: Deploy Jekyll site to Pages | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
paths-ignore: 'Solution/**' | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
# Allow one concurrent deployment | ||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
# Build job | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Setup Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: '3.1' # Not needed with a .ruby-version file | ||
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | ||
cache-version: 0 # Increment this number if you need to re-download cached gems | ||
path-ignore: 'Solution/**' | ||
- name: Setup Pages | ||
id: pages | ||
uses: actions/configure-pages@v2 | ||
- name: Build with Jekyll | ||
# Outputs to the './_site' directory by default | ||
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" | ||
env: | ||
JEKYLL_ENV: production | ||
- name: Upload artifact | ||
# Automatically uploads an artifact from the './_site' directory by default | ||
uses: actions/upload-pages-artifact@v1 | ||
|
||
# Deployment job | ||
deploy: | ||
environment: | ||
name: github-pages | ||
url: "${{ steps.deployment.outputs.page_url }}" | ||
runs-on: ubuntu-latest | ||
needs: build | ||
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ai102.rramoscabral.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Contributing | ||
|
||
Thank you for taking the time to contribute. | ||
|
||
All contributed content must not be used for commercial purposes. | ||
|
||
|
||
## How can I contribute? | ||
|
||
Review existing content. | ||
|
||
Submission of content with an issue or a pull request. | ||
- Content created by you, please mention yourself. | ||
- Examples or source code with the respective author's name. | ||
|
||
Submissions of commercial products for advertising or marketing purposes are not accepted. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem "jekyll", "~> 4.3" # installed by `gem jekyll` | ||
# gem "webrick" # required when using Ruby >= 3 and Jekyll <= 4.2.2 | ||
|
||
gem "just-the-docs", "0.4.2" # pinned to the current release | ||
# gem "just-the-docs" # always download the latest release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
addressable (2.8.1) | ||
public_suffix (>= 2.0.2, < 6.0) | ||
colorator (1.1.0) | ||
concurrent-ruby (1.1.10) | ||
em-websocket (0.5.3) | ||
eventmachine (>= 0.12.9) | ||
http_parser.rb (~> 0) | ||
eventmachine (1.2.7) | ||
ffi (1.15.5) | ||
forwardable-extended (2.6.0) | ||
http_parser.rb (0.8.0) | ||
i18n (1.12.0) | ||
concurrent-ruby (~> 1.0) | ||
jekyll (4.3.0) | ||
addressable (~> 2.4) | ||
colorator (~> 1.0) | ||
em-websocket (~> 0.5) | ||
i18n (~> 1.0) | ||
jekyll-sass-converter (>= 2.0, < 4.0) | ||
jekyll-watch (~> 2.0) | ||
kramdown (~> 2.3, >= 2.3.1) | ||
kramdown-parser-gfm (~> 1.0) | ||
liquid (~> 4.0) | ||
mercenary (>= 0.3.6, < 0.5) | ||
pathutil (~> 0.9) | ||
rouge (>= 3.0, < 5.0) | ||
safe_yaml (~> 1.0) | ||
terminal-table (>= 1.8, < 4.0) | ||
webrick (~> 1.7) | ||
jekyll-sass-converter (2.2.0) | ||
sassc (> 2.0.1, < 3.0) | ||
jekyll-seo-tag (2.8.0) | ||
jekyll (>= 3.8, < 5.0) | ||
jekyll-watch (2.2.1) | ||
listen (~> 3.0) | ||
just-the-docs (0.4.2) | ||
jekyll (>= 3.8.5) | ||
jekyll-seo-tag (>= 2.0) | ||
rake (>= 12.3.1) | ||
kramdown (2.4.0) | ||
rexml | ||
kramdown-parser-gfm (1.1.0) | ||
kramdown (~> 2.0) | ||
liquid (4.0.3) | ||
listen (3.7.1) | ||
rb-fsevent (~> 0.10, >= 0.10.3) | ||
rb-inotify (~> 0.9, >= 0.9.10) | ||
mercenary (0.4.0) | ||
pathutil (0.16.2) | ||
forwardable-extended (~> 2.6) | ||
public_suffix (5.0.0) | ||
rake (13.0.6) | ||
rb-fsevent (0.11.2) | ||
rb-inotify (0.10.1) | ||
ffi (~> 1.0) | ||
rexml (3.3.6) | ||
strscan | ||
rouge (4.0.0) | ||
safe_yaml (1.0.5) | ||
sassc (2.4.0) | ||
ffi (~> 1.9) | ||
strscan (3.1.0) | ||
terminal-table (3.0.2) | ||
unicode-display_width (>= 1.1.1, < 3) | ||
unicode-display_width (2.3.0) | ||
webrick (1.7.0) | ||
|
||
PLATFORMS | ||
arm64-darwin-21 | ||
x86_64-darwin-19 | ||
x86_64-linux | ||
|
||
DEPENDENCIES | ||
jekyll (~> 4.3) | ||
just-the-docs (= 0.4.2) | ||
|
||
BUNDLED WITH | ||
2.3.9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0) | ||
|
||
Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use. | ||
|
||
NonCommercial — You may not use the material for commercial purposes. | ||
|
||
NoDerivatives — If you remix, transform, or build upon the material, you may not distribute the modified material. | ||
|
||
No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits. | ||
|
||
|
||
Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# {PR title} | ||
|
||
<!-- Thank you for submitting a pull request to our repo. --> | ||
|
||
- [ ] There's an open issue for the PR that you are making. Please open an issue to discuss the change or find an existing issue. | ||
|
||
<!-- Once all that is done, you're ready to go. Open the PR with the content below. --> | ||
|
||
Summary of the changes | ||
|
||
## Description | ||
|
||
{Detail} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,53 @@ | ||
# AI-102---Training---Designing-and-Implementing-a-Microsoft-Azure-AI-Solution- | ||
AI-102T00-A: Designing and Implementing a Microsoft Azure AI Solution | ||
<a id="top" /> | ||
|
||
<br/> | ||
|
||
|
||
# AI-102T00-A: Designing and Implementing a Microsoft Azure AI Solution | ||
|
||
Companion Material and Resources for Class Delivery by [**Ricardo Cabral**](https://www.rramoscabral.com) for Microsoft Course AI-102T00-A: Designing and Implementing a Microsoft Azure AI Solution . | ||
|
||
<br/> | ||
|
||
## Description | ||
|
||
This course provides students with the fundamental knowledge and skillsto build AI infused applications that leverage Azure AI Services, Azure AI Search, and Azure OpenAI. | ||
|
||
--- | ||
|
||
<!-- followme --> | ||
|
||
<a id="followme" /> | ||
|
||
<br/> | ||
|
||
**You can follow me at:** | ||
|
||
<br/> | ||
<div id="badges" align="center"> | ||
<a href="https://www.linkedin.com/in/rrcabral"> | ||
<img src="https://img.shields.io/badge/LinkedIn-blue?style=for-the-badge&logo=linkedin&logoColor=white" alt="LinkedIn Badge"/> | ||
</a> | ||
<a href="https://www.rramoscabral.com"> | ||
<img src="https://img.shields.io/badge/Website-blue?style=for-the-badge&logo=website&logoColor=white" alt="Website Badge"/> | ||
</a> | ||
<a href="https://github.com/rramoscabral/"> | ||
<img src="https://img.shields.io/badge/GitHub-blue?style=for-the-badge&logo=github&logoColor=white" alt="GitHub Badge"/> | ||
</a> | ||
<a href="https://twitter.com/rramoscabral"> | ||
<img src="https://img.shields.io/badge/Twitter-blue?style=for-the-badge&logo=x&logoColor=white" alt="X (formerly Twitter) Badge"/> | ||
</a> | ||
<a href="https://www.youtube.com/channel/UCKClueNUPLPluB6WIY3Joug"> | ||
<img src="https://img.shields.io/badge/Youtube-blue?style=for-the-badge&logo=youtube&logoColor=white" alt="Youtube Badge"/> | ||
</a> | ||
<a href="https://www.nworkit.pt"> | ||
<img src="https://img.shields.io/badge/Company-blue?style=for-the-badge&logo=website&logoColor=white" alt="Company Badge"/> | ||
</a> | ||
</div> | ||
|
||
|
||
<br/> | ||
|
||
--- | ||
|
||
<br/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Security Policy | ||
|
||
|
||
## Reporting a Vulnerability | ||
|
||
If there are any vulnerabilities don't hesitate to report them. | ||
|
||
Security issues should be reported privately, via email, by rramoscabral(at)rramoscabral(dot)com. |
Oops, something went wrong.