-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcur.html
More file actions
213 lines (178 loc) · 5.26 KB
/
Copy pathcur.html
File metadata and controls
213 lines (178 loc) · 5.26 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
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-C4TVS1004P"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-C4TVS1004P');
</script>
<meta charset="UTF-8">
<title>Courses - Daniel de Oliveira</title>
<meta name="description" content="Courses taught by Daniel de Oliveira at UFF">
<meta name="keywords" content="Courses, Teaching, Daniel de Oliveira, UFF, IC-UFF">
<style>
body {
font-family: Arial, Helvetica, sans-serif;
background-color: #ffffff;
color: #333;
margin: 0;
line-height: 1.6;
}
a { color: #004f9e; text-decoration: none; }
a:hover { text-decoration: underline; }
header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 40px;
border-bottom: 1px solid #ccc;
background: #fafafa;
}
header img { height: 60px; }
nav ul {
list-style: none;
display: flex;
gap: 20px;
padding: 0;
margin: 0;
}
nav ul li a { font-weight: bold; }
main {
padding: 40px;
max-width: 1100px;
margin: auto;
}
h1 { font-size: 2em; }
h2 {
margin-top: 40px;
background: #004f9e;
color: #fff;
padding: 10px 15px;
border-radius: 4px;
}
.courses-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.course-item {
background: #f9f9f9;
padding: 15px;
border-radius: 6px;
box-shadow: 0 2px 5px rgba(0,0,0,0.08);
transition: transform 0.2s;
}
.course-item:hover { transform: scale(1.02); }
.course-title {
font-weight: bold;
color: #004f9e;
margin-bottom: 8px;
}
.course-code { color: #666; font-size: 0.9em; margin-bottom: 10px; }
.course-links a {
margin-right: 10px;
display: inline-flex;
align-items: center;
gap: 6px;
}
.classroom-icon {
width: 150px;
height: 40px;
vertical-align: middle;
}
footer {
display: flex;
justify-content: space-between;
padding: 20px 40px;
border-top: 1px solid #ccc;
background: #f1f1f1;
font-size: 0.9em;
}
</style>
</head>
<body>
<header>
<a href="http://www.uff.br"><img src="arquivos/uff.png" alt="UFF Logo"></a>
<nav>
<ul>
<li><a href="https://danielcmo.github.io">Home</a></li>
<li><a href="https://danielcmo.github.io/cv.html">Publications</a></li>
<li><a href="https://danielcmo.github.io/books.html">Books</a></li>
<li><a href="https://danielcmo.github.io/ap.html">Research Areas</a></li>
<li><a href="https://danielcmo.github.io/cur.html">Teaching</a></li>
</ul>
</nav>
<a href="http://www.ic.uff.br"><img src="arquivos/logo-ic.png" alt="IC-UFF Logo"></a>
</header>
<main>
<h1>Courses</h1>
<p>
This page presents undergraduate and graduate courses taught at UFF.
</p>
<h2>Undergraduate Courses</h2>
<div class="courses-grid">
<!-- 2025.2 -->
<div class="course-item">
<div class="course-title">Principles of Databases (2025.2)</div>
<div class="course-code">TCC00334</div>
<div class="course-description">
Introduction to database concepts, SQL, relational model and design.
</div>
<div class="course-links">
<a href="https://classroom.google.com/c/Nzc0MjA2MjAyMDU5">
<img class="classroom-icon" src="arquivos/GoogleClassroomBanner.png" alt="Classroom">
Google Classroom
</a>
</div>
</div>
<div class="course-item">
<div class="course-title">Data Warehouse, NoSQL and Big Data (2025.2)</div>
<div class="course-code">TCC00336</div>
<div class="course-description">
Big data systems, Spark, Hadoop and distributed processing.
</div>
<div class="course-links">
<a href="https://classroom.google.com/c/Nzc0MjA2Mjc4NzM5">
<img class="classroom-icon" src="arquivos/GoogleClassroomBanner.png" alt="Classroom">
Google Classroom
</a>
</div>
</div>
<!-- 2026.1 (NOVOS) -->
<div class="course-item">
<div class="course-title">Principles of Databases (2026.1)</div>
<div class="course-code">TCC00334</div>
<div class="course-description">
Updated edition covering relational databases, SQL optimization and transactions.
</div>
<div class="course-links">
<a href="#">
<img class="classroom-icon" src="arquivos/GoogleClassroomBanner.png" alt="Classroom">
Google Classroom
</a>
</div>
</div>
<div class="course-item">
<div class="course-title">Data Warehouse, NoSQL and Big Data (2026.1)</div>
<div class="course-code">TCC00336</div>
<div class="course-description">
Modern distributed systems, cloud data platforms and analytics pipelines.
</div>
<div class="course-links">
<a href="#">
<img class="classroom-icon" src="arquivos/GoogleClassroomBanner.png" alt="Classroom">
Google Classroom
</a>
</div>
</div>
</div>
</main>
<footer>
<div><b>Phone: +55 (21) 2629-5637</b></div>
<div><b>danielcmo (at) ic (dot) uff (dot) br</b></div>
</footer>
</body>
</html>