Skip to content

Commit

Permalink
Trying to fix line endings (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrHinsh authored Nov 27, 2024
2 parents e9bcac5 + 00fb9ec commit a0e8d41
Show file tree
Hide file tree
Showing 250 changed files with 951 additions and 1,685 deletions.
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* text=auto
* text eol=lf
4 changes: 3 additions & 1 deletion .powershell/_includes/HugoHelpers.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,9 @@ function Save-HugoMarkdown {
)

$updatedContent = "---`n$(ConvertTo-Yaml $hugoMarkdown.FrontMatter)`n---`n$($hugoMarkdown.BodyContent.TrimEnd())"
Set-Content -Path $Path -Value $updatedContent
$updatedContent = $updatedContent -replace "`r`n", "`n" # Normalize line endings
$updatedContent += "`n"
Set-Content -Path $Path -Value $updatedContent -Encoding UTF8NoBOM -NoNewline
}

Write-Host "HugoHelpers.ps1 loaded" -ForegroundColor Green
2 changes: 1 addition & 1 deletion .powershell/build/Update-YoutubeChannelData.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ $outputDir = "site\content\resources\videos\youtube"
$dataDirectory = ".\site\data"
$refreshData = $false
$captionsDownloadLimit = 0
$videoUpdateLimit = 10
$videoUpdateLimit = 50
$captionsManafestUpdateLimit = 10
$maxYoutubeSearchResults = 1000

Expand Down
13 changes: 9 additions & 4 deletions .powershell/build/Update-YoutubeMarkdownFiles.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ function Update-YoutubeMarkdownFiles {

# Load the video data from data.json if available
if (Test-Path $jsonFilePath) {

$videoData = Get-Content -Path $jsonFilePath | ConvertFrom-Json
$videoId = $videoData.id
$source = $null;
# Load existing markdown or create a new HugoMarkdown object
if (Test-Path $markdownFile) {
Expand All @@ -58,8 +59,8 @@ function Update-YoutubeMarkdownFiles {
return
}

$videoData = Get-Content -Path $jsonFilePath | ConvertFrom-Json
$videoId = $videoData.id


$videoSnippet = $videoData.snippet
$durationISO = $videoData.contentDetails.duration

Expand Down Expand Up @@ -98,7 +99,7 @@ function Update-YoutubeMarkdownFiles {
if (-not $hugoMarkdown.FrontMatter.Contains("description")) {
# Update description using OpenAI if needed
$fullDescription = Get-UpdatedDescription -videoData $videoData
Update-Field -frontMatter $hugoMarkdown.FrontMatter -fieldName 'description' -fieldValue (Get-Excerpt -InputString $fullDescription)
Update-Field -frontMatter $hugoMarkdown.FrontMatter -fieldName 'description' -fieldValue $fullDescription -addAfter "title"
}
Update-Field -frontMatter $hugoMarkdown.FrontMatter -fieldName 'date' -fieldValue $publishedAt
Update-Field -frontMatter $hugoMarkdown.FrontMatter -fieldName 'videoId' -fieldValue $videoId
Expand All @@ -123,6 +124,10 @@ function Update-YoutubeMarkdownFiles {
$priority = 0.6
}
$hugoMarkdown.FrontMatter["sitemap"] = @{ filename = "sitemap.xml"; priority = $priority } # Update sitemap filename
if ($source -eq "youtube" -or [string]::IsNullOrWhiteSpace($hugoMarkdown.BodyContent)) {
# Ensure Content
$hugoMarkdown.BodyContent = "{{< youtube $videoId >}} `n $($videoData.snippet.description) `n [Watch on Youtube](https://www.youtube.com/watch?v=$videoId)"
}
# Save the updated HugoMarkdown to index.md
Save-HugoMarkdown -hugoMarkdown $hugoMarkdown -Path $markdownFile
Write-Host "Markdown created or updated for video: $($videoSnippet.title)"
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 4 additions & 8 deletions site/content/resources/videos/youtube/-Mz9cH0uiTQ/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,8 @@ sitemap:
source: youtube

---
{{< youtube -Mz9cH0uiTQ >}}

# Does a client tell an agile consultant what they need or does it work the other way around?

Making the transition from #projectmanagement to #agile #productdevelopment can be intimidating. You don't know where to start, you aren't sure of what the top priorities are, and you may not even be 100% clear about what problems you are trying to solve.
{{< youtube -Mz9cH0uiTQ >}}
Making the transition from #projectmanagement to #agile #productdevelopment can be intimidating. You don't know where to start, you aren't sure of what the top priorities are, and you may not even be 100% clear about what problems you are trying to solve.

So, how do you move forward when it feels like you are in quicksand? Do you need to figure it all out before contracting an #agileconsultant or is that something that an #agileconsultant helps you identify and define?

Expand All @@ -47,6 +44,5 @@ If you have identified the need for #agilecoaching and #agileconsulting, visit h

We would love to work with you.

#scrum #agile #scrumteam #agileprojectmanagement #agileproductdevelopment #projectmanagement #productdevelopment #agilecoach #agileconsultant #agiletraining #scrumtraining #scrumorg

[Watch on YouTube](https://www.youtube.com/watch?v=-Mz9cH0uiTQ)
#scrum #agile #scrumteam #agileprojectmanagement #agileproductdevelopment #projectmanagement #productdevelopment #agilecoach #agileconsultant #agiletraining #scrumtraining #scrumorg
[Watch on Youtube](https://www.youtube.com/watch?v=-Mz9cH0uiTQ)
12 changes: 4 additions & 8 deletions site/content/resources/videos/youtube/-T1e8hjLt24/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,8 @@ sitemap:
source: youtube

---
{{< youtube -T1e8hjLt24 >}}
{{< youtube -T1e8hjLt24 >}}
#shorts #shortsvideo #shortvideo Martin Hinshelwood walks us through the top 5 things he would teach a newbie #productowner. This is part 5. Visit https://youtu.be/XKmWMXagVgQ to watch the full video.

# shorts 5 things you would teach a produtowner apprentice. Part 5

#shorts #shortsvideo #shortvideo Martin Hinshelwood walks us through the top 5 things he would teach a newbie #productowner. This is part 5. Visit https://youtu.be/XKmWMXagVgQ to watch the full video.

#scrum #agile #scrumteam #agileprojectmanagement #agileproductdevelopment #projectmanagement #productdevelopment #agilecoach #agileconsultant #agiletraining #scrumtraining #scrumorg

[Watch on YouTube](https://www.youtube.com/watch?v=-T1e8hjLt24)
#scrum #agile #scrumteam #agileprojectmanagement #agileproductdevelopment #projectmanagement #productdevelopment #agilecoach #agileconsultant #agiletraining #scrumtraining #scrumorg
[Watch on Youtube](https://www.youtube.com/watch?v=-T1e8hjLt24)
12 changes: 4 additions & 8 deletions site/content/resources/videos/youtube/0fz91w-_6vE/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,8 @@ sitemap:
source: youtube

---
{{< youtube 0fz91w-_6vE >}}

# What is your primary role in a DevOps consulting gig?

As a #devops #consultant, Martin Hinshelwood has worked in multiple geographies, across multiple industry applications, and with a wide variety of clients.
{{< youtube 0fz91w-_6vE >}}
As a #devops #consultant, Martin Hinshelwood has worked in multiple geographies, across multiple industry applications, and with a wide variety of clients.

Each of those unique environments requires their own special agenda and set of capabilities, but there are common problems shared by all companies in all #devops applications.

Expand All @@ -47,6 +44,5 @@ If you have identified the need for #agilecoaching and #agileconsulting, visit h

We would love to work with you.

#scrum #agile #scrumteam #agileprojectmanagement #agileproductdevelopment #projectmanagement #productdevelopment #agilecoach #agileconsultant #agiletraining #scrumtraining #scrumorg

[Watch on YouTube](https://www.youtube.com/watch?v=0fz91w-_6vE)
#scrum #agile #scrumteam #agileprojectmanagement #agileproductdevelopment #projectmanagement #productdevelopment #agilecoach #agileconsultant #agiletraining #scrumtraining #scrumorg
[Watch on Youtube](https://www.youtube.com/watch?v=0fz91w-_6vE)
10 changes: 3 additions & 7 deletions site/content/resources/videos/youtube/1M2_AVqoRbs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,6 @@ sitemap:
source: youtube

---
{{< youtube 1M2_AVqoRbs >}}

# Technical debt costs you more than you think

Technical debt costs you more than you think. Visit https://www.nkdagility.com #agile #agileproductdevelopment #productdevelopment #agileprojectmanagement #projectmanagement #projectmanager #productowner #scrummaster #productmanager #developer #technicaldebt

[Watch on YouTube](https://www.youtube.com/watch?v=1M2_AVqoRbs)
{{< youtube 1M2_AVqoRbs >}}
Technical debt costs you more than you think. Visit https://www.nkdagility.com #agile #agileproductdevelopment #productdevelopment #agileprojectmanagement #projectmanagement #projectmanager #productowner #scrummaster #productmanager #developer #technicaldebt
[Watch on Youtube](https://www.youtube.com/watch?v=1M2_AVqoRbs)
12 changes: 4 additions & 8 deletions site/content/resources/videos/youtube/1TaIjFL-0o8/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,8 @@ sitemap:
source: youtube

---
{{< youtube 1TaIjFL-0o8 >}}

# What is the most common epiphany in a PSM II course?

The #PSMII or #advancedprofessionalscrummaster course from #scrumorg has been created to elevate the skills, competence, and capability of a #scrummaster from basic to advanced level.
{{< youtube 1TaIjFL-0o8 >}}
The #PSMII or #advancedprofessionalscrummaster course from #scrumorg has been created to elevate the skills, competence, and capability of a #scrummaster from basic to advanced level.

It's a skills development and validation certification that is designed to equip a #scrummaster with the competencies and capabilities necessary to serve the #scrumteam, #productowner, and organization effectively in a complex #agile #productdevelopment environment.

Expand All @@ -49,6 +46,5 @@ If you have identified the need for #agilecoaching and #agileconsulting, visit h

We would love to work with you.

#scrum #agile #scrumteam #agileprojectmanagement #agileproductdevelopment #projectmanagement #productdevelopment #agilecoach #agileconsultant #agiletraining #scrumtraining #scrumorg

[Watch on YouTube](https://www.youtube.com/watch?v=1TaIjFL-0o8)
#scrum #agile #scrumteam #agileprojectmanagement #agileproductdevelopment #projectmanagement #productdevelopment #agilecoach #agileconsultant #agiletraining #scrumtraining #scrumorg
[Watch on Youtube](https://www.youtube.com/watch?v=1TaIjFL-0o8)
12 changes: 4 additions & 8 deletions site/content/resources/videos/youtube/2-AyrLPg-8Y/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,8 @@ sitemap:
source: youtube

---
{{< youtube 2-AyrLPg-8Y >}}

# Why is training such a critical element in a manager or leader journey?

#shorts #shortsvideo #shortvideo Transitioning from a #projectmanager or traditional #manager to an #agileleader can be super tricky, especially if you have never received training. In this short excerpt, Martin explains why #agileleadership training is critical. Watch the full video here: https://youtu.be/W3cyrYFXDfg
{{< youtube 2-AyrLPg-8Y >}}
#shorts #shortsvideo #shortvideo Transitioning from a #projectmanager or traditional #manager to an #agileleader can be super tricky, especially if you have never received training. In this short excerpt, Martin explains why #agileleadership training is critical. Watch the full video here: https://youtu.be/W3cyrYFXDfg

About NKD Agility

Expand All @@ -60,6 +57,5 @@ If you have identified the need for #agilecoaching and #agileconsulting, visit h

We would love to work with you.

#scrum #agile #scrumteam #agileprojectmanagement #agileproductdevelopment #projectmanagement #productdevelopment #agilecoach #agileconsultant #agiletraining #scrumtraining #scrumorg

[Watch on YouTube](https://www.youtube.com/watch?v=2-AyrLPg-8Y)
#scrum #agile #scrumteam #agileprojectmanagement #agileproductdevelopment #projectmanagement #productdevelopment #agilecoach #agileconsultant #agiletraining #scrumtraining #scrumorg
[Watch on Youtube](https://www.youtube.com/watch?v=2-AyrLPg-8Y)
12 changes: 4 additions & 8 deletions site/content/resources/videos/youtube/21k6OgxeKjo/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,8 @@ sitemap:
source: youtube

---
{{< youtube 21k6OgxeKjo >}}

# shorts 5 kinds of Agile bandits. 5th kind

#shorts #shortsvideo #shortvideo Martin Hinshelwood walks us through the 5 #agile bandits. This video features a toxic #productowner
{{< youtube 21k6OgxeKjo >}}
#shorts #shortsvideo #shortvideo Martin Hinshelwood walks us through the 5 #agile bandits. This video features a toxic #productowner

About NKD Agility

Expand All @@ -60,6 +57,5 @@ If you have identified the need for #agilecoaching and #agileconsulting, visit h

We would love to work with you.

#scrum #agile #scrumteam #agileprojectmanagement #agileproductdevelopment #projectmanagement #productdevelopment #agilecoach #agileconsultant #agiletraining #scrumtraining #scrumorg

[Watch on YouTube](https://www.youtube.com/watch?v=21k6OgxeKjo)
#scrum #agile #scrumteam #agileprojectmanagement #agileproductdevelopment #projectmanagement #productdevelopment #agilecoach #agileconsultant #agiletraining #scrumtraining #scrumorg
[Watch on Youtube](https://www.youtube.com/watch?v=21k6OgxeKjo)
10 changes: 3 additions & 7 deletions site/content/resources/videos/youtube/220tyMrhSFE/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@ sitemap:
source: youtube

---
{{< youtube 220tyMrhSFE >}}

# Kanban principles

Kanban Principles. Visit https://www.nkdagility.com #agile #agileprojectmanagement #agileproductdevelopment #kanban #agileframework

[Watch on YouTube](https://www.youtube.com/watch?v=220tyMrhSFE)
{{< youtube 220tyMrhSFE >}}
Kanban Principles. Visit https://www.nkdagility.com #agile #agileprojectmanagement #agileproductdevelopment #kanban #agileframework
[Watch on Youtube](https://www.youtube.com/watch?v=220tyMrhSFE)
12 changes: 4 additions & 8 deletions site/content/resources/videos/youtube/2KovKxNpZpg/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,8 @@ sitemap:
source: youtube

---
{{< youtube 2KovKxNpZpg >}}

# Pet Peeve in Scrum

#shorts As a #professionalscrumtrainer, #scrum expert, and #agileconsultant, Martin Hinshelwood has worked with multiple clients, in multiple applications of #scrum, in multiple geographies around the world.
{{< youtube 2KovKxNpZpg >}}
#shorts As a #professionalscrumtrainer, #scrum expert, and #agileconsultant, Martin Hinshelwood has worked with multiple clients, in multiple applications of #scrum, in multiple geographies around the world.

in this short video, Martin talks about his pet peeve when it comes to #scrum consulting engagements.

Expand All @@ -46,6 +43,5 @@ If you have identified the need for #agilecoaching and #agileconsulting, visit h

We would love to work with you.

#scrum #agile #scrumteam #agileprojectmanagement #agileproductdevelopment #projectmanagement #productdevelopment #agilecoach #agileconsultant #agiletraining #scrumtraining #scrumorg

[Watch on YouTube](https://www.youtube.com/watch?v=2KovKxNpZpg)
#scrum #agile #scrumteam #agileprojectmanagement #agileproductdevelopment #projectmanagement #productdevelopment #agilecoach #agileconsultant #agiletraining #scrumtraining #scrumorg
[Watch on Youtube](https://www.youtube.com/watch?v=2KovKxNpZpg)
12 changes: 4 additions & 8 deletions site/content/resources/videos/youtube/2QojN_k3JZ4/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,8 @@ sitemap:
source: youtube

---
{{< youtube 2QojN_k3JZ4 >}}

# shorts 7 Virtues of agile. Diligence

#shorts #shortvideo #shortsvideo 7 virtues of #agile. Diligence. #agile #scrum #agileprojectmanagement #agileproductdevelopment #agileproductmanagement #projectmanagement #projectmanager #agilecoach #scrummaster #productowner #agileleader #developer
{{< youtube 2QojN_k3JZ4 >}}
#shorts #shortvideo #shortsvideo 7 virtues of #agile. Diligence. #agile #scrum #agileprojectmanagement #agileproductdevelopment #agileproductmanagement #projectmanagement #projectmanager #agilecoach #scrummaster #productowner #agileleader #developer

Naked Agility is an #agile consultancy that specializes in #scrumtraining, #agilecoaching and #agileconsulting to help teams evolve, integrate, and continuously improve.

Expand All @@ -58,6 +55,5 @@ If you have identified the need for #agilecoaching and #agileconsulting, visit h

We would love to work with you.

#scrum #agile #scrumteam #agileprojectmanagement #agileproductdevelopment #projectmanagement #productdevelopment #agilecoach #agileconsultant #agiletraining #scrumtraining #scrumorg

[Watch on YouTube](https://www.youtube.com/watch?v=2QojN_k3JZ4)
#scrum #agile #scrumteam #agileprojectmanagement #agileproductdevelopment #projectmanagement #productdevelopment #agilecoach #agileconsultant #agiletraining #scrumtraining #scrumorg
[Watch on Youtube](https://www.youtube.com/watch?v=2QojN_k3JZ4)
10 changes: 3 additions & 7 deletions site/content/resources/videos/youtube/2Sal3OneFfo/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ sitemap:
source: youtube

---
{{< youtube 2Sal3OneFfo >}}

# Azure DevOps Migration services. Part 1

DevOps Migration Services from NKD Agility. #azure #azuredevops #devopsmigration #devopsconsulting #devopsconsultant #devopscoach #devopstraining #migration #agile #productdevelopment #productmanagement #projectmanagement #informationtechnology

[Watch on YouTube](https://www.youtube.com/watch?v=2Sal3OneFfo)
{{< youtube 2Sal3OneFfo >}}
DevOps Migration Services from NKD Agility. #azure #azuredevops #devopsmigration #devopsconsulting #devopsconsultant #devopscoach #devopstraining #migration #agile #productdevelopment #productmanagement #projectmanagement #informationtechnology
[Watch on Youtube](https://www.youtube.com/watch?v=2Sal3OneFfo)
12 changes: 4 additions & 8 deletions site/content/resources/videos/youtube/2cSsuEzGkvU/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,8 @@ sitemap:
source: youtube

---
{{< youtube 2cSsuEzGkvU >}}

# shorts 7 Virtues of agile. Humility

#shorts #shortsvideo #shortvideo 7 virtues of #agile. Humility. #agile #agileprojectmanagement #agileproductdevelopment #agileproductmanagement #projectmanagement #productmanagement #productdevelopment #projectmanager #productmanager #developer #scrummaster #productowner #agilecoach #agileleadership
{{< youtube 2cSsuEzGkvU >}}
#shorts #shortsvideo #shortvideo 7 virtues of #agile. Humility. #agile #agileprojectmanagement #agileproductdevelopment #agileproductmanagement #projectmanagement #productmanagement #productdevelopment #projectmanager #productmanager #developer #scrummaster #productowner #agilecoach #agileleadership

Naked Agility is an #agile consultancy that specializes in #scrumtraining, #agilecoaching and #agileconsulting to help teams evolve, integrate, and continuously improve.

Expand All @@ -58,6 +55,5 @@ If you have identified the need for #agilecoaching and #agileconsulting, visit h

We would love to work with you.

#scrum #agile #scrumteam #agileprojectmanagement #agileproductdevelopment #projectmanagement #productdevelopment #agilecoach #agileconsultant #agiletraining #scrumtraining #scrumorg

[Watch on YouTube](https://www.youtube.com/watch?v=2cSsuEzGkvU)
#scrum #agile #scrumteam #agileprojectmanagement #agileproductdevelopment #projectmanagement #productdevelopment #agilecoach #agileconsultant #agiletraining #scrumtraining #scrumorg
[Watch on Youtube](https://www.youtube.com/watch?v=2cSsuEzGkvU)
12 changes: 4 additions & 8 deletions site/content/resources/videos/youtube/2k1726k9zvg/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,8 @@ sitemap:
source: youtube

---
{{< youtube 2k1726k9zvg >}}

# What is the difference between a newbie scrum master and a professional scrum master?

*Unraveling the Scrum Master Role: Insights and Misconceptions*
{{< youtube 2k1726k9zvg >}}
*Unraveling the Scrum Master Role: Insights and Misconceptions*

Discover the true essence of a Scrum Master's role in our latest video. Uncover the myths and realities of what it takes to lead effectively in a Scrum environment. First 120 characters: Dive into the Scrum Master role - myth vs. reality, effective leadership, and team dynamics.

Expand All @@ -55,6 +52,5 @@ _Sign up for one of our upcoming professional Scrum classes:_ https://nkdagility

Because you don't just need agility, you need Naked Agility.

#scrum, #agile, #projectmanagement, #productdevelopment, #agilecoach, #agileconsultant, #agiletraining, #scrumtraining, #scrumorg, #scrummaster, #productowner, #kanban, #continousdelivery, #devops, #azuredevops

[Watch on YouTube](https://www.youtube.com/watch?v=2k1726k9zvg)
#scrum, #agile, #projectmanagement, #productdevelopment, #agilecoach, #agileconsultant, #agiletraining, #scrumtraining, #scrumorg, #scrummaster, #productowner, #kanban, #continousdelivery, #devops, #azuredevops
[Watch on Youtube](https://www.youtube.com/watch?v=2k1726k9zvg)
Loading

0 comments on commit a0e8d41

Please sign in to comment.