-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteaching.html
More file actions
149 lines (112 loc) · 4.74 KB
/
teaching.html
File metadata and controls
149 lines (112 loc) · 4.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Teaching/Supervision - Blog</title>
<meta name="description" content="Snippets of thoughts.">
<link rel="stylesheet" href="/assets/styles/core.css?v=20240820212204">
<link rel="stylesheet" href="/assets/styles/fontello.css?v=20240820212204">
<link rel="stylesheet" href="/assets/styles/highlighting/default.css?v=20240820212204">
<link rel="canonical" href="/teaching.html">
<link rel="alternate" type="application/rss+xml" title="Blog" href="/feed.xml">
<!-- Load KaTeX -->
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.css">
<script src="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.js"></script>
<!-- To automatically render math in text elements, include the auto-render extension: -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/contrib/auto-render.min.js" integrity="sha384-mll67QQFJfxn0IYznZYonOWZ644AWYC+Pt2cHqMaRhXVrursRwvLnLaebdGIlYNa" crossorigin="anonymous"
onload="renderMathInElement(document.body);"></script>
<!-- JQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
</head>
<body>
<main class="page-content" aria-label="Content">
<div class="wrapper">
<nav class="site-nav">
<a class="page-link" href="/about/" >About/CV</a>
<a class="page-link" href="/participation.html" >Scientific committees</a>
<a class="page-link" href="/presentations.html" >Talks</a>
<a class="page-link" href="/publications.html" >Publications</a>
<a class="page-link" href="/teaching.html" >Teaching/Supervision</a>
</nav>
<article class="page" lang="en" itemscope itemtype="http://schema.org/BlogPosting">
<header class="post-header">
<a class="site-title" href="/">Blog</a>
<h1 class="post-title" itemprop="name headline">Teaching/Supervision</h1>
</header>
<ul>
<li><strong>Courses</strong>
<ul>
<li>Introduction to Algorithms. Undergraduate. February - August 2024. FAMAF, UNC.</li>
<li>Introduction to Algorithms. Undergraduate. August 2023, February 2024. FAMAF, UNC.</li>
<li>Introduction to Algorithms. Undergraduate. March - August, 2023. FAMAF, UNC.</li>
<li>Introduction to Algorithms. Undergraduate. August 2022, February 2023. FAMAF, UNC.</li>
<li>Undergraduate entrance course to FAMAF, UNC. February 2022.</li>
</ul>
</li>
<li><strong>Supervision</strong>
<ul>
<li>Barraco, Ramiro Julián. <em>Formalization of type narrowing in the Crystal programming language</em>. Undergraduate thesis, ongoing. FAMAF, UNC.</li>
</ul>
</li>
<li><strong>Member of examination boards</strong>
<ul>
<li>Marsiglione, Francisco. <em>Análisis y clasificación de preguntas y respuestas en espacios virtuales de formación profesional sobre desarrollo de software</em>. Advisors: Dr. Benotti, Luciana and Dr. Echeveste, M. Emilia. Undergraduate thesis. November 2023. FAMAF, UNC.</li>
</ul>
</li>
</ul>
</article>
</div>
<script type="text/javascript">
(function () {
var resize = function () {
this.width = 0.5 * (this.naturalWidth || this.width);
}
Array.prototype.forEach.call(document.querySelectorAll(".half-size, .retina2x"), function(el) {
if (el.naturalWidth) {
resize.call(el);
} else {
el.onload = resize;
}
});
})();
</script>
</main>
<footer class="site-footer">
<div class="wrapper">
<div class="social-links">
<a class="social-link social-github" href="https://github.com/Mallku2">
<i class="icon-github"></i>
</a>
<!-- <a class="social-link social-twitter" href="https://twitter.com/"> -->
<!-- <i class="icon-twitter"></i> -->
<!-- </a> -->
<!-- <a class="social-link social-instagram" href="https://instagram.com/"> -->
<!-- <i class="icon-instagram"></i> -->
<!-- </a> -->
<!-- <a class="social-link social-rss" href="/feed.xml" target="_blank"> -->
<!-- <i class="icon-rss"></i> -->
<!-- </a> -->
</div>
<div class="credits">
KAGAMI, made with <i class="icon-heart"></i> by Kamikat
</div>
</div>
<!-- Parse the Latex divs with Katex-->
<script type="text/javascript">
$("script[type='math/tex']").replaceWith(
function(){
var tex = $(this).text();
return katex.renderToString(tex, {displayMode: false});
});
$("script[type='math/tex; mode=display']").replaceWith(
function(){
var tex = $(this).text();
return katex.renderToString(tex.replace(/%.*/g, ''), {displayMode: true});
});
</script>
</footer>
</body>
</html>