-
-
Notifications
You must be signed in to change notification settings - Fork 128
ITP Data Flows S2: make teamwork workshop standalone with job board scenario #1843
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
Draft
omkarv
wants to merge
3
commits into
CodeYourFuture:main
Choose a base branch
from
omkarv:fix/itp-s2-teamwork-standalone-job-board
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.
Draft
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -14,6 +14,7 @@ publishResources = false | |||||
| {{<tabs name="Teamwork Project Sprint 3" >}} | ||||||
|
|
||||||
| ===[[👉🏽 PD Session]]=== | ||||||
| ⏱️ **Time:** 15 minutes | ||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. WDYT about:
Suggested change
To avoid someone thing the whole workshop is 15 minutes? |
||||||
|
|
||||||
| ### Preparation | ||||||
|
|
||||||
|
|
@@ -63,12 +64,13 @@ However, we cannot deliver everything at once. And we also cannot plan every det | |||||
| </div> | ||||||
| This process is often called User Journey Mapping or Story Mapping. Because we cannot deliver everything at once, we must prioritize must-have features first. | ||||||
|
|
||||||
| ===[[🧩 1) What questions should we ask to identify what was built?]]=== | ||||||
| ===[[🧩 1) What questions should we ask to understand what we need to build?]]=== | ||||||
|
|
||||||
| ### What questions should we ask to identify what was built? | ||||||
| ### What questions should we ask to understand what we need to build? | ||||||
|
|
||||||
| ⏱️ **Time:** 15 minutes | ||||||
|
|
||||||
| 🎯 Goal: To understand the requirements of building a library(5 minutes) | ||||||
| 🎯 Goal: To understand the requirements of building a library | ||||||
|
|
||||||
| Let’s assume we have been asked to build a library website that allows you to borrow books. | ||||||
|
|
||||||
|
|
@@ -80,7 +82,9 @@ Instructions | |||||
| - Focus is on the questions, not the answers! | ||||||
|
|
||||||
| ===[[🧩 Exercise 2: What features should this website have?]]=== | ||||||
| 🎯 Goal: Learn how to break down a broad product into specific features (10 minutes) | ||||||
| ⏱️ **Time:** 10 minutes | ||||||
|
|
||||||
| 🎯 Goal: Learn how to break down a broad product into specific features | ||||||
|
|
||||||
| Scenario: Assume we have answers to our product questions. Our goal is to build a website with a catalogue of books that can be borrowed online. | ||||||
|
|
||||||
|
|
@@ -92,6 +96,8 @@ Examples: book search, shopping cart, user accounts. | |||||
|
|
||||||
| One person from each group shares the group's thoughts with the class. | ||||||
|
|
||||||
| ☕ **15 minute break** | ||||||
|
|
||||||
| ===[[🧩 Exercise 3: User Stories]]=== | ||||||
| ⏱️ Time: 15 minutes | ||||||
|
|
||||||
|
|
@@ -114,24 +120,46 @@ Example (Shopping Cart): | |||||
| Group representatives volunteer to share their stories with the class. | ||||||
|
|
||||||
| ===[[🧩 Exercise 4: Task Breakdown]]=== | ||||||
| ⏱️ Time: 15 minutes | ||||||
| ⏱️ **Time:** 15 minutes | ||||||
|
|
||||||
| 🎯 Goal: Understand technical tasks and dependencies | ||||||
| 🎯 Goal: Understand how to break a user story into technical tasks and map dependencies between them | ||||||
|
|
||||||
| Instructions | ||||||
| ### Instructions | ||||||
|
|
||||||
| 1. In your groups, choose one user story from Exercise 3. | ||||||
| 2. Identify the technical tasks needed to deliver that user story. | ||||||
| 3. Map dependencies between your tasks: | ||||||
| - How does Task A affect other tasks? | ||||||
| - Does Task A need to be completed before Task B can start? | ||||||
| 4. Size each task based on complexity — pick **one** sizing approach for this exercise: | ||||||
| - **Story points** (relative effort, e.g. 1, 2, 3, 5, 8) | ||||||
| - **Days** (rough time estimate, e.g. 0.5d, 1d, 2d) | ||||||
| > Real teams use one or the other consistently. Story points are more common in agile teams as they reflect effort rather than time, but both are valid. Just don't mix them! | ||||||
| 5. Discuss: When is the right time to assign tasks? What criteria should you follow? | ||||||
|
|
||||||
| ### Example | ||||||
|
|
||||||
| In your groups, choose one user story from Exercise 3. | ||||||
| **User story:** "As a library user, I want to search for books so that I can find what I need quickly." | ||||||
|
|
||||||
| Identify the tasks needed to deliver that outcome (e.g., "Create database table," "Build UI search bar"). | ||||||
| | Task | Depends on | Size | | ||||||
| |---|---|---| | ||||||
| | Agree on frontend/backend API contract | — | 1 point | | ||||||
| | Build a search bar UI component | API contract | 3 points | | ||||||
| | Create a `/books/search` API endpoint | API contract | 3 points | | ||||||
| | Connect the search API to the database | API endpoint | 2 points | | ||||||
|
|
||||||
| Map dependencies: | ||||||
| ===[[🎯 Wrap-up: How does this work on real teams?]]=== | ||||||
| ⏱️ **Time:** 15 minutes | ||||||
|
|
||||||
| How does Task A affect other tasks? | ||||||
| 🎯 Goal: Connect today's exercises to real engineering team practice | ||||||
|
|
||||||
| Does Task A need to be completed before Task B can start? | ||||||
| Talk with your volunteers about how this works day-to-day: | ||||||
|
|
||||||
| Size the tasks based on complexity. | ||||||
| - How does your team manage user stories and task breakdowns? (Jira, Linear, Notion, etc.) | ||||||
| - Who writes user stories — product managers, engineers, or both? | ||||||
| - How do you handle dependencies between tasks in a sprint? | ||||||
| - What happens when a task turns out to be bigger than expected? | ||||||
|
|
||||||
| Discuss: When is the right time to assign tasks? What criteria should you follow? | ||||||
| This is a chance to ask questions and hear real examples from people working in tech today. | ||||||
|
|
||||||
| {{< /tabs >}} | ||||||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
WDYT about:
To avoid someone thing the whole workshop is 15 minutes?