Skip to content

Instantly share code, notes, and snippets.

@baptiste
Created April 10, 2024 20:55
Show Gist options
  • Save baptiste/13214e4cc77a7143fb7be2d5ac1a5a20 to your computer and use it in GitHub Desktop.
Save baptiste/13214e4cc77a7143fb7be2d5ac1a5a20 to your computer and use it in GitHub Desktop.
---
name: "Pumpkins and peanuts committee"
date: "03/01/2000"
time: "2 pm"
location: "baseball field"
invited:
- Sally
- Shroeder
- Pig-pen
- Marcie
format:
typst:
keep-typ: true
keep-md: true
template-partials:
- typst-show.typ
engine: knitr
---
```{r, echo=FALSE}
library(glue)
library(yaml)
library(knitr)
knitr::knit_engines$set(yamltypst = function(options) {
# options[["results"]] <- "asis"
# get code together
code <- paste(options$code, collapse = '\n')
# reset language for markdown highlighting
options$engine <- "yaml"
out <- knitr::raw_block(glue::glue("
#let yamlentries = yaml.decode(`{ code }`.text)
#agenda-table(yamlentries)
"), "typst")
knitr::engine_output(
options,
options$code,
out = out
)
})
```
```{yamltypst}
#| output: asis
#| echo: false
"admin":
Topic: Misc. admin
Time: 5 mins
Lead: baptiste
Purpose: Inform, Admin
Preparation: |
- Anything to change on the agenda?
- Read minutes from last meeting
- Review action points
Process: |
- Check if agenda needs to be adjusted
- Check if everyone's happy with the minutes
- List top priorities of meeting and items needing decisions
"snoopy update":
Topic: Snoopy's latest
Time: 10 mins
Lead: Charlie Brown
Purpose: Share, Discuss
Preparation: |
- Bring your favorite comic strip
- Reflect on Snoopy's recent escapades
Process: |
- Discuss Snoopy's ongoing "battle" with the Red Baron
- Share anecdotes of Snoopy's fiercest war moves
- Plan a group outing to visit Snoopy's doghouse
"woodstock sighting":
Topic: Woodstock's whereabouts
Time: 5 mins
Lead: Linus
Purpose: Locate, Update
Preparation: |
- Bring binoculars for bird-watching
- Brush up on bird calls
Process: |
- Share any recent sightings or chirpings from Woodstock
- Discuss strategies for bringing Woodstock back to the tunes
- Plan an upside-down birdhouse-building workshop
"great pumpkin plans":
Topic: Prep for Great Pumpkin
Time: 15 mins
Lead: Linus
Purpose: Plan, Excite
Preparation: |
- Bring your pumpkin-carving tools
- Practice your most sincere pumpkin patch speech
Process: |
- Discuss tactics for maximizing sincerity in the pumpkin patch
- Brainstorm new ways to attract the Great Pumpkin's attention
- Assign roles for the annual pumpkin carving contest
"philosophical discussion":
Topic: Philosophical Musings
Time: 20 mins
Lead: Lucy and Charles
Purpose: Ponder, Reflect
Preparation: |
- Bring your favorite existentialist quotes
- Contemplate the meaning of life #v(100%)
Process: |
- Engage in deep philosophical discussions under the night sky
- Debate the nature of happiness, existence, and 5c psychiatry
- Seek wisdom from Linus's trusty security blanket
"beethoven appreciation":
Topic: Beethoven's Legacy
Time: 10 mins
Lead: Schroeder
Purpose: Appreciate, Discuss
Preparation: |
- Bring your favorite Beethoven compositions
- Practice your air piano skills
Process: |
- Listen to Schroeder perform select Beethoven pieces
- Discuss the timeless appeal of Beethoven's music
- Plan a Beethoven-themed recital for Christmas
"baseball game":
Topic: Baseball Game
Time: 30 mins
Lead: Charlie Brown
Purpose: Play, Bond
Preparation: |
- Bring your baseball glove and bat
- Review the rules of baseball
Process: |
- Divide into teams for an exciting game of baseball
- Cheer on Charlie Brown as he attempts to finally kick that football
- Enjoy snacks and camaraderie under the shade of the old oak tree
"summer camp":
Topic: Summer Camp Adventures
Time: 15 mins
Lead: Peppermint Patty
Purpose: Plan, Excite
Preparation: |
- Bring ideas for summer camp activities!
- Check availability of camping gear!
Process: |
- Brainstorm camping trip destinations and outdoor activities
- Discuss potential guest speakers or counselors
- Organize a talent show and marshmallow roasting competition
"marcie school update":
Topic: Marcie's Academic Progress
Time: 10 mins
Lead: Peppermint Patty
Purpose: Discuss, Support
Preparation: |
- Bring Marcie's recent report card
- Reflect on Marcie's study habits and strengths
Process: |
- Share updates on Marcie's academic achievements and challenges
- Discuss strategies to help Marcie excel in school
- Offer encouragement and support to Marcie in her studies
"linus blanket workshop":
Topic: Linus and his blanket
Time: 20 mins
Lead: Lucy
Purpose: Understand, *Support*
Preparation: |
- Bring your own security blanket (optional)
- Reflect on the significance of Linus's blanket
Process: |
- Discuss the history and symbolism of Linus's security blanket
- Explore ways to help both Linus and Snoopy
- Release a blanket statement
"snoopy plane fights":
Topic: Snoopy vs the Baron
Time: 10 mins
Lead: Woodstock
Purpose: Support
Preparation: |
- Bring your favorite Snoopy flying ace memory
- Reflect on Snoopy's aerial prowess
Process: |
- Share anecdotes from Snoopy's battles
- Discuss the psychological implications of Snoopy's dogging of bullets
```
#import "@preview/yagenda:0.1.0": *
#show: doc => agenda(
name: text[$name$],
date: "$date$",
time: "$time$",
location: text[$location$],
invited: text[$for(invited/allbutlast)$$it$$sep$, $endfor$ and $invited/last$],
doc
)
@baptiste
Copy link
Author

Screenshot 2024-04-11 at 08 56 31

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment