-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (58 loc) · 3.66 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
<!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>Presentations</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="row">
<h1>Presentations</h1>
<h3>La modularisation avant l’heure : Compiler OpenJDK 8 en 10Mo</h3>
<p><span class="label label-primary">Fr</span> Version enrichie de ma présentation à Bdx.io sur la compilation et la minimisation d'OpenJDK 8.</p>
<p><em>Devoxx France 2016 2016-04-22</em></p>
<p>
<a href="devoxx_fr_2016/compile-openjdk8/slides_fr.html" class="btn btn-primary">Version Française</a>
</p>
<h3>Des compilations VRAIMENT reproductibles avec Maven / Bit-for-bit reproducible builds with Maven</h3>
<p><span class="label label-primary">Fr</span> Présentation sur la compilation reproductible avec Maven.</p>
<p><span class="label label-danger">En</span> Presentation on reproducible builds with Maven.</p>
<p><em>Devoxx France 2016 2016-04-21</em></p>
<p>
<a href="devoxx_fr_2016/reproducible-builds/slides_fr.html" class="btn btn-primary">Version Française</a>
<a href="devoxx_fr_2016/reproducible-builds/slides_en.html" class="btn btn-danger">English Version</a>
</p>
<h3>Compiler OpenJDK 8 pour l'embarqué / How to compile OpenJDK 8 for embedded devices</h3>
<p><span class="label label-primary">Fr</span> Présentation sur comment compiler l'implémentation libre de Java et minimiser la taille du runtime.</p>
<p><span class="label label-danger">En</span> Presentation on how to compile the Open Source implementation of Java and reduce its runtime footprint.</p>
<p><em>Bdx.io 2015-10-16</em></p>
<p>
<a href="compile-openjdk8/slides_fr.html" class="btn btn-primary">Version Française</a>
<a href="compile-openjdk8/slides_en.html" class="btn btn-danger">English Version</a>
</p>
<h3>Accès au hardware en Java pour le développement d'applications industrielles</h3>
<p><span class="label label-primary">Fr</span> Présentation des solutions d'accès natif en Java (JNI, JNA, BridJ), introduction détaillée à JNA et benchmarks.</p>
<p><em>Présentation prévue pour Devoxx France 2013, malheureusement annulée à la dernière minute à cause de la naissance de mon fils</em></p>
<p>
<a href="acces-hardware-java/Devoxx2013_Appels_Natifs_Java.pdf" class="btn btn-warning">PDF</a>
</p>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</body>
</html>