-
Notifications
You must be signed in to change notification settings - Fork 0
/
_quarto.yml
117 lines (114 loc) · 3.59 KB
/
_quarto.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
project:
type: website
render:
- 404.qmd
- index.qmd
- general/*.qmd
- part-01/*.qmd
- part-02/*.qmd
- part-03/*.qmd
- part-04/*.qmd
- part-05/*.qmd
website:
title: "Programming: Everyday Decision-Making Algorithms"
repo-url: https://github.com/beyondsimulations/Programming-Everyday-Decisions
repo-actions: [edit, source, issue]
site-url: https://beyondsimulations.github.io/Programming-Everyday-Decisions
bread-crumbs: true
sidebar:
style: floating
collapse-level: 1
search: true
contents:
- text: "Welcome"
href: index.qmd
- text: "Syllabus"
href: general/syllabus.qmd
- text: "***"
- section: "01 Optimal Stopping"
contents:
- text: "Lecture"
href: part-01/lecture-optimal-stopping.qmd
- text: "01 - Variables"
href: part-01/tutorial-01-variables.qmd
- text: "02 - Comparisons"
href: part-01/tutorial-02-comparisons.qmd
- text: "03 - Decisions"
href: part-01/tutorial-03-stopping.qmd
- section: "02 Explore/Exploit"
contents:
- text: "Lecture"
href: part-02/lecture-explore-exploit.qmd
- text: "04 - Lists"
href: part-02/tutorial-04-lists.qmd
- text: "05 - Loops"
href: part-02/tutorial-05-loops.qmd
- text: "06 - Exploration"
href: part-02/tutorial-06-explore-exploit.qmd
- section: "03 Caching"
contents:
- text: "Lecture"
href: part-03/lecture-caching.qmd
- text: "07 - Recap"
href: part-03/tutorial-07-recap.qmd
- text: "08 - Functions"
href: part-03/tutorial-08-functions.qmd
- text: "09 - Packages"
href: part-03/tutorial-09-packages.qmd
- section: "04 Scheduling"
contents:
- text: "Lecture"
href: part-04/lecture-scheduling.qmd
- text: "10 - Recap"
href: part-04/tutorial-10-recap.qmd
- text: "11 - Dictionaries"
href: part-04/tutorial-11-dicts.qmd
- text: "12 - DataFrames"
href: part-04/tutorial-12-dataframes.qmd
- section: "05 Randomness"
contents:
- text: "Lecture"
href: part-05/lecture-randomness.qmd
- text: "13 - LLM"
href: part-05/tutorial-13-llm.qmd
- text: "14 - Recap"
href: part-05/tutorial-14-recap.qmd
- text: "15 - Free Tasks"
href: part-05/tutorial-15-free.qmd
- text: "***"
- text: "FAQs"
href: general/faq.qmd
- text: "Literature"
href: general/literature.qmd
- text: "Cheatsheet"
href: general/cheatsheet.qmd
page-footer:
center: "Programming: Everyday Decision-Making Algorithms</br>Tobias Vlćek and Nils Roemer</br>CC BY-NC-SA 4.0"
right:
- icon: github
href: https://github.com/beyondsimulations/Programming-Everyday-Decisions
- icon: linkedin
href: https://linkedin.com/in/tobiasvlcek
format:
html:
theme: litera
toc: true
highlight-style: arrow
linkcolor: "#BF7C63"
code-copy: true
code-link: true
toc-location: right
code-overflow: wrap
code-block-bg: true
code-block-border-left: "#D99D55"
pdf:
documentclass: report
geometry:
- margin=1in
fontfamily: roboto
fontfamilyoptions: sfdefault
colorlinks: true
include-in-header:
text: |
\usepackage{fvextra}
\DefineVerbatimEnvironment{Highlighting}{Verbatim}{breaklines,commandchars=\\\{\}}