-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
159 lines (148 loc) · 3.95 KB
/
index.html
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Developer's Conference</title>
<style>
body {
background-color: #1c1c1c;
color: #fff;
font-family: 'Courier New', Courier, monospace;
}
h1 {
text-align: center;
font-size: 3em;
margin-top: 50px;
text-shadow: 3px 3px #ff8c00;
}
ul {
margin-top: 50px;
list-style-type: none;
}
li {
font-size: 2em;
margin-bottom: 30px;
position: relative;
}
.time {
font-size: 0.7em;
position: absolute;
top: -20px;
left: 0;
color: #ff8c00;
text-shadow: 2px 2px #fff;
}
.title {
margin-left: 100px;
display: inline-block;
padding: 10px 20px;
border: 2px solid #ff8c00;
border-radius: 10px;
text-transform: uppercase;
letter-spacing: 2px;
transition: all 0.3s ease-in-out;
cursor: pointer;
background-color: #1c1c1c;
}
.author {
text-transform: none;
font-style: bold;
}
.title:hover {
background-color: #ff8c00;
color: #1c1c1c;
text-shadow: none;
transform: scale(1.1);
}
.desc {
display: none;
font-style: italic;
font-size: 0.6em;
}
.title:hover .desc {
display: block;
}
</style>
</head>
<body>
<h1>Freja<br/>Dev Afternoon <br/>18/05/2023</h1>
<ul>
<li>
<span class="time">15:00</span>
<span class="title">Start with coffee ☕
<span class="desc">There's no much point <br/>in starting the workshop <br/>without a decent coffee</span>
</span>
</li>
<li>
<span class="time">15:15</span>
<span class="title">
Programming anti-patterns
<br/>
<span class="author">Bane</span>
<span class="desc">Workshop - presenting common code smells, <br/>anti-patterns and how to address them</span>
</span>
</li>
<li>
<span class="time">15:45</span>
<span class="title">
Flutter learnings
<br/>
<span class="author">Dule, Andrija, Kockica</span>
<span class="desc">Our learnings while migrating <br/>part of Freja app to Flutter</span>
</span>
</li>
<li>
<span class="time">16:15</span>
<span class="title">
Selenium grid
<br/>
<span class="author">Isi</span>
<span class="desc">Testing web apps <br/>on a remote Selenium machinery</span>
</span>
</li>
<li>
<span class="time">16:45</span>
<span class="title">
Quantum computing
<br/>
<span class="author">Aleksa</span>
<span class="desc">Computers of the future, <br/>an intro to quantum computing</span>
</span>
</li>
<li>
<span class="time">17:30</span>
<span class="title">
Latest trends in Android development
<br/>
<span class="author">Rista</span>
<span class="desc">Technologies and frameworks <br/>at the edge of Android development</span>
</span>
</li>
<li>
<span class="time">18:00</span>
<span class="title">
SQL query optimizer
<br/>
<span class="author">Deki</span>
<span class="desc">How DBMS works <br/>to efectivelly execute SQL queries</span>
</span>
</li>
<li>
<span class="time">18:30</span>
<span class="title">
Securing web apps
<br/>
<span class="author">Mica, Igor</span>
<span class="desc">Learnigs and fixes <br/>after pen testing</span>
</span>
</li>
<li>
<span class="time">19:00</span>
<span class="title">
End with a beer, or two 🍺
<span class="desc">or three ... </span>
</span>
</li>
</ul>
</body>
</html>