87 lines
3.7 KiB
HTML
87 lines
3.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;700&family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="./style.css">
|
|
<title>Syllabus — Adrien Decosse</title>
|
|
</head>
|
|
<body>
|
|
<header class="site-header">
|
|
<div class="container">
|
|
<a class="brand" href="index.html">Decosse Adrien</a>
|
|
<nav class="nav" aria-label="Main navigation">
|
|
<a href="index.html">Accueil</a>
|
|
<a href="syllabus.html">Syllabus</a>
|
|
<a href="cours/index.html">Cours</a>
|
|
<a href="riichi">Riichi</a>
|
|
<a href="croco.html">Crocoloop</a>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="container">
|
|
<section class="main-card">
|
|
<div id="contenu-markdown" class="markdown-content"></div>
|
|
</section>
|
|
</main>
|
|
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<small class="muted">© Adrien Decosse — site personnel</small>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
|
|
<script>
|
|
// Render the syllabus content (markdown -> HTML) inside the page.
|
|
const contenuMarkdown = `# My ENS Syllabus
|
|
|
|
## Aggregation
|
|
|
|
## M1
|
|
### First semester
|
|
- Advanced operating systems with [Isabelle Puaut](https://team.inria.fr/pacap/members/isabelle-puaut/)
|
|
- Complexity theory with [François Schwarzentruber](https://people.irisa.fr/Francois.Schwarzentruber/)
|
|
- Software formal analysis and design with [Thomas Genet](http://people.irisa.fr/Thomas.Genet/)
|
|
- Digital sobriety with [Olivier Ridoux](http://www.irisa.fr/lande/ridoux/page.pro.e.html)
|
|
- Signal processing with [Nicolas Keriven](https://nkeriven.github.io/)
|
|
### Second semester
|
|
- Information theory and coding with [Eric Fabre](http://people.rennes.inria.fr/Eric.Fabre/)
|
|
- General compiler concepts with [Simon Rokicki](https://people.irisa.fr/Simon.Rokicki/)
|
|
- Machine learning with [Ewa Kijak](http://people.irisa.fr/Ewa.Kijak)
|
|
- Computer graphics with [Marc Christie](https://people.irisa.fr/Marc.Christie/)
|
|
- Epistemology with [Filipe Drapeau-Contim](https://philo.univ-rennes.fr/interlocuteurs/filipe-drapeau-vieira-contim)
|
|
|
|
## L3
|
|
### First semester
|
|
- Algorithmic 1 with [François Schwarzentruber](https://people.irisa.fr/Francois.Schwarzentruber/)
|
|
- System architecture 1 with [Steven Derrien](https://people.irisa.fr/Steven.Derrien/wordpress)
|
|
- Network and C programming with [Simon Rokicki](https://people.irisa.fr/Simon.Rokicki/)
|
|
- Language theory and computability with [Gilles Lesventes]()
|
|
- Programming 1 in OCAML with [David Baelde](http://www.lsv.fr/~baelde/)
|
|
- Complementary math: optimization with [Baptiste Huguet](https://bhuguet.perso.math.cnrs.fr/enseignement.html)
|
|
- Lebesgue's integral
|
|
|
|
### Second semester
|
|
- Algorithmic 2 with [François Schwarzentruber](https://people.irisa.fr/Francois.Schwarzentruber/)
|
|
- Probability and statistics with [François Schwarzentruber](https://people.irisa.fr/Francois.Schwarzentruber/)
|
|
- Complementary math: algebra
|
|
- System architecture 2 with [Simon Rokicki](https://people.irisa.fr/Simon.Rokicki/)
|
|
- Cryptography with [Adeline Roux-Langlois](https://langloi227.users.greyc.fr/)
|
|
- Image processing with [Emmanuel Caruyer](http://www.emmanuelcaruyer.com)
|
|
- Logic with [David Baelde](http://www.lsv.fr/~baelde/)
|
|
- Object programming with C with [Martin Quinson](https://people.irisa.fr/Martin.Quinson/)
|
|
|
|
## Agregation
|
|
The syllabus is the french academic programme of
|
|
- [High School](./agreg/Terminal.pdf)
|
|
- [MPI](./agreg/MPI.pdf)
|
|
- [Licence](./agreg/Licence.pdf)
|
|
`;
|
|
|
|
document.getElementById('contenu-markdown').innerHTML = marked.parse(contenuMarkdown);
|
|
</script>
|
|
</body>
|
|
</html>
|