-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (98 loc) · 3.91 KB
/
index.html
File metadata and controls
105 lines (98 loc) · 3.91 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Timefold Presentations</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
text-align: center;
}
.container {
max-width: 800px;
margin: 50px auto;
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333;
}
ul {
list-style-type: none;
padding: 0;
}
.talks {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
gap: 12px;
}
.talks li {
background: #4900f8;
border-radius: 8px;
transition: 0.3s;
}
.talks li a {
text-decoration: none;
color: white;
font-weight: bold;
display: block;
padding: 20px 14px;
height: 100%;
box-sizing: border-box;
}
.talks > li:hover {
background: #4f62f5;
}
.left, p {
text-align: left;
padding-left: 20px;
}
</style>
</head>
<body>
<div class="container">
<img width="400px" src="src/web/social/timefold-logo.svg"/>
<h1>Timefold Presentations</h1>
<p>These presentations have been presented at diverse conferences and events.
They are not strictly maintained and mostly kept as a historic archive
and might contain information which is no longer correct.
</p>
<ul class="talks">
<li><a href="events/2026-01-27-JChampions-Santa.html">Optimizing Santa's Travels 🎄</a></li>
<li><a href="events/2025-12-18-LLMsCantOptimizeSchedules.html">LLMs can't optimize schedules, but AI can!</a></li>
<li><a href="events/Field_Service_Routing.html">Field Service Routing</a></li>
<li><a href="events/Algorithms_introduction_School_Timetabling.html">Algorithms introduction (School Timetabling)</a></li>
<li><a href="events/Timefold_for_Operations_Research.html">Timefold for Operations Research</a></li>
<li><a href="events/2024-11-05-BYOM_score_calculation.html">Build Your Own Model: Writing Constraint</a></li>
<li><a href="events/2023-10-02-Devoxx_BE.html">Devoxx Belgium - Optimize the World for Fun and Profit</a></li>
<li><a href="events/2023-12-05-Maintenance_scheduling_and_school_timetabling.html">BeJUG - Fold Time and Space for Maintenance Scheduling and School Timetabling</a></li>
</ul>
<h2>Navigation Instructions</h2>
<p>Most of these slide decks are 2-dimensional, where different chapters/subjects are different columns.
Since this is different than most slide software, here are some basic instructions.</p>
<ul class="left">
<li>Press <strong>space</strong> to go to the next slide.</li>
<li>Press <strong>left/right/up/down</strong> to navigate through the deck on your own.</li>
<li>Press <strong>escape</strong> to go to the slide overview.</li>
<li>Some decks have presenter notes. Press <strong>s</strong> to show presenter view.</li>
</ul>
<h2>PDF of a Presentation</h2>
<ul>
<li>Open a presentation.</li>
<li>Add <code>?print-pdf</code> to the URL.</li>
<li>In Google Chrome, print it to a PDF.</li>
</ul>
<h2>Reuse</h2>
<p>You are free to reuse these slides to promote Timefold (but not to demote it),
including for conference talks, user groups, YouTube videos, internal events, etc
without prior approval.</p>
<blockquote>These slides are created with <a href="https://revealjs.com/">Reveal.js</a>.</blockquote>
</div>
</body>
</html>