Skip to content

Commit

Permalink
Reorder LT round B and C
Browse files Browse the repository at this point in the history
  • Loading branch information
damithc committed Mar 6, 2024
1 parent 6ae1727 commit 4a02710
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion students/talksSchedule.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ footer:
**Usefulness to YOU**: `1` not useful at all | `3` >25% of the talk useful | `5` >75% of the talk useful

<table style="width:100%">
{% for project in projects %}
{% for project in sorted_projects %}
{% for student in project.students %}
{% if round in student %}
{{ print_row(student) }}
Expand All @@ -48,6 +48,8 @@ footer:

{% set criteria%}:far-square: started with PUNCH | :far-square: gave WIIFY | :far-square: gave roadmap | :far-square: key points clear | :far-square: ended with key points and CtA{% endset %}

{% set sorted_projects = projects %}

{{ print_feedback_table('A1') }}
{{ print_feedback_table('A2') }}
{{ print_feedback_table('A3') }}
Expand All @@ -56,6 +58,7 @@ footer:

## Round B (week 7, 8, 9)

{% set sorted_projects = [projects[1], projects[2], projects[3], projects[0]] %}
{{ print_feedback_table('B1') }}
{{ print_feedback_table('B2') }}
{{ print_feedback_table('B3') }}
Expand All @@ -66,6 +69,7 @@ footer:

{% set criteria %}:far-square: slides visual-enough | :far-square: no visual clutter | :far-square: key slides stand out | :far-square: _assertion-evidence_ style used (if applicable) | :far-square: no excessive jargons :far-square: meaningful animations | :far-square: demo not too late | :far-square: PUNCH, WIIFY, Roadmap, Key Points, Last Slide etc.{% endset %}

{% set sorted_projects = [projects[3], projects[0], projects[1], projects[2]] %}
{{ print_feedback_table('C1') }}
{{ print_feedback_table('C2') }}
{{ print_feedback_table('C3') }}

0 comments on commit 4a02710

Please sign in to comment.