-
Notifications
You must be signed in to change notification settings - Fork 4
Retro guide #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
jcamilleri-scottlogic
wants to merge
14
commits into
main
Choose a base branch
from
retro-guide
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Retro guide #4
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
d838f57
Retrospectives overview and Optimising Process retros
jcamilleri-scottlogic baea7c4
New site look and feel to matct the Blogs.
jcamilleri-scottlogic f6a5b7c
Updated guide link and deleted duplicate picture.
jcamilleri-scottlogic 0ac6855
Updated Matt's headshot.
jcamilleri-scottlogic 7f7af3b
Update _pages/Retorspectives-1-Overview.md
jcamilleri-scottlogic 806218b
Update _pages/Retorspectives-1-Overview.md
jcamilleri-scottlogic 2777880
Update _pages/Retorspectives-1-Overview.md
jcamilleri-scottlogic 2f5dcfc
Cropped illustration
jcamilleri-scottlogic 71eaf72
Merge branch 'retro-guide' of https://github.com/ScottLogic/practitio…
jcamilleri-scottlogic ab48664
Corrected spelling errors and linked the articles to each other as th…
jcamilleri-scottlogic 860baef
Code review feedback
jcamilleri-scottlogic 0fdfef5
Cleaned up markdown for ordered lists.
jcamilleri-scottlogic 0e2fa24
Spelling
jcamilleri-scottlogic 0319a77
Code review feedback
jcamilleri-scottlogic File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 @@ | ||
| authors: | ||
| cpratt: | ||
| name: 'Catherine Pratt' | ||
| picture: picture.jpg | ||
| author-summary: "I'm a Delivery Principal at Scott Logic." | ||
| mcline: | ||
| name: "Matt Cline" | ||
| picture: mcline.jpg | ||
| author-summary: "I am a Lead Developer and Scrum Master at Scott Logic with a keen interest in Agile Software Development and supporting Agile teams. My background is in fullstack development across .NET and Java applications with frontends in React and Angular." | ||
| abennamane: | ||
| name: 'Atika Bennamane' | ||
| picture: abennamane.jpg | ||
| author-summary: "I'm a Design Principal at Scott Logic." |
This file contains hidden or 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,15 @@ | ||
| {% assign author-id = include.author-id %} | ||
| {% assign author = site.data.authors.authors[author-id] %} | ||
| <div class="author-information cell"> | ||
| <img src="{{ site.baseurl }}/authors/{{ author-id }}/assets/{{ author.picture }}" alt="{{ author.name }}"/> | ||
| {{ author.name }} | ||
| </div> | ||
| <div class="cell"> | ||
| {{ author.author-summary }} | ||
| {% if author.twitter-url %} | ||
| {% assign twitter-url-split = author.twitter-url | split: '/' %} | ||
| <div class="author-social-media-link"> | ||
| <a rel="author" href="{{ author.twitter-url}}">@{{ twitter-url-split[3] }}</a> | ||
| </div> | ||
| {% endif %} | ||
| </div> |
This file contains hidden or 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,15 @@ | ||
| {% assign date = include.date | date: "%s" %} | ||
| {% assign days = date | date: "%-d" %} | ||
| {% case days %} | ||
| {% when "1" or "21" or "31" %}{{ days }}<sup>st</sup> | ||
| {% when "2" or "22" %}{{ days }}<sup>nd</sup> | ||
| {% when "3" or "23" %}{{ days }}<sup>rd</sup> | ||
| {% else %}{{ days }}<sup>th</sup> | ||
| {% endcase %} | ||
| {% assign year = date | date: "%Y" %} | ||
| {% assign currentYear = 'now' | date: "%Y" %} | ||
| {% if year == currentYear %} | ||
| {{ date | date: "%b" }} | ||
| {% else %} | ||
| {{ date | date: "%b %Y" }} | ||
| {% endif %} |
This file contains hidden or 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,11 @@ | ||
| {% if include.post.colour %} | ||
| {{ include.post.colour }} | ||
| {% else %} | ||
| {% assign colourIndex = include.post.title | size | modulo:4 %} | ||
| {% case colourIndex %} | ||
| {% when 0 %}teal | ||
| {% when 1 %}orange | ||
| {% when 2 %}pink | ||
| {% when 3 %}yellow | ||
| {% endcase %} | ||
| {% endif %} |
This file contains hidden or 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,11 @@ | ||
| {% if include.post.colour %} | ||
| {{ include.post.colour }} | ||
| {% else %} | ||
| {% assign colourIndex = include.post.title | size | modulo:4 %} | ||
| {% case colourIndex %} | ||
| {% when 0 %}#2bb3bb | ||
| {% when 1 %}#ef8547 | ||
| {% when 2 %}#c41565 | ||
| {% when 3 %}#f8be4f | ||
| {% endcase %} | ||
| {% endif %} |
This file contains hidden or 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,20 @@ | ||
| <div class="post-index grid-container"> | ||
| <h1 class="super-title"><a href="{{ site.github.url }}">Practitioner's Guides</a></h1> | ||
| <div class="cell grid-x"> | ||
| <div class="cell large-7 large-offset-1"> | ||
| <p>The Practitioner's Guides are designed to be small practical guides for IT professionals - authored by the team at [Scott Logic](https://www.scottlogic.com/). We draw on our collective experience to tackle topics that we don't feel are addressed elsewhere. Our hope is that these little 'value adds' will help you just as much as they have helped us.</p> | ||
|
|
||
| <p>Topics covered include:</p> | ||
| <ul> | ||
| {% for item in site.pages %} | ||
| <li>- {{item.title}}</li> | ||
| {% endfor %} | ||
| </ul> | ||
| <p>The Practitioners Guides site is an ongoing project, where we expect new guides to be published on a somewhat regular basis, watch this space!</p> | ||
|
|
||
| <p>If you're interested in finding out more, or want to get involved, please visit the [GitHub project](https://github.com/ScottLogic/practitioners-guides).</p> | ||
| </div> | ||
| </div> | ||
| </div> | ||
|
|
||
| {% include site-footer.html %} | ||
This file contains hidden or 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,18 @@ | ||
| {% assign post = include.post %} | ||
| {% assign allContributors = post.contributors | join: '|' | prepend: '|' | prepend: post.author | split: '|' %} | ||
| <div> | ||
| <span> | ||
| {% for contributorId in allContributors %} | ||
| {% assign contributor = site.data.authors.authors[contributorId] %} | ||
| <a href="{{ site.baseurl }}/{{ contributorId }}">{{ contributor.name }}</a>{% unless forloop.last %}, {% endunless %} | ||
| {% endfor %} | ||
| <span> ·</span> | ||
| </span> | ||
| <span class="timestamp" date-published="{{ post.date }}"> | ||
| {% include format_date.html date=post.date %} | ||
| </span> | ||
| {% unless post.layout == 'video_post' %} | ||
| <span>·</span> | ||
| <span>{% include reading_time.html post=post %}</span> | ||
| {% endunless %} | ||
| </div> |
This file contains hidden or 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,5 @@ | ||
| {% if include.post.header-shape %} | ||
| {{ include.post.header-shape }} | ||
| {% else %} | ||
| shape{{ include.post.title | size | modulo:5 }} | ||
| {% endif %} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.