Rajout de slide pour les questions
This commit is contained in:
parent
6c81fae32b
commit
176893cbe7
2 changed files with 55 additions and 6 deletions
10
makefile
10
makefile
|
@ -81,6 +81,7 @@ clean-rapport :
|
|||
rm -f rapport.gls
|
||||
rm -f rapport.glo
|
||||
rm -f texput.log
|
||||
rm -f -r _minted-rapport
|
||||
|
||||
clean-poster :
|
||||
rm -f poster.aux
|
||||
|
@ -98,6 +99,7 @@ clean-poster :
|
|||
rm -f poster.gls
|
||||
rm -f poster.glo
|
||||
rm -f texput.log
|
||||
rm -f -r _minted-poster
|
||||
|
||||
clean-handout :
|
||||
rm -f handout.aux
|
||||
|
@ -114,7 +116,11 @@ clean-handout :
|
|||
rm -f handout.glg
|
||||
rm -f handout.gls
|
||||
rm -f handout.glo
|
||||
rm -f handout.nav
|
||||
rm -f handout.snm
|
||||
rm -f handout.vrb
|
||||
rm -f texput.log
|
||||
rm -f -r _minted-handout
|
||||
|
||||
clean-presentation :
|
||||
rm -f presentation.aux
|
||||
|
@ -131,7 +137,11 @@ clean-presentation :
|
|||
rm -f presentation.glg
|
||||
rm -f presentation.gls
|
||||
rm -f presentation.glo
|
||||
rm -f presentation.nav
|
||||
rm -f presentation.snm
|
||||
rm -f presentation.vrb
|
||||
rm -f texput.log
|
||||
rm -f -r _minted-presentation
|
||||
|
||||
svg_img/%.pdf : svg_img/%.svg svg_img/%.pdf_tex
|
||||
inkscape -D -z --file=$< --export-pdf=$@ --export-latex
|
||||
|
|
|
@ -282,12 +282,51 @@
|
|||
\begin{frame}[standout]{}
|
||||
Conclusion
|
||||
\end{frame}
|
||||
|
||||
\appendix
|
||||
|
||||
\begin{frame}{OSI}
|
||||
\begin{table}[htp]
|
||||
\centering
|
||||
\caption{Le modèle OSI pour Internet, les couches principales.}
|
||||
\begin{tabular}{lll}
|
||||
\toprule
|
||||
Couche & Rôle & Protocole\\
|
||||
\midrule
|
||||
7 - Application & Utilisation finale & HTTP, ssh, CoAP...\\
|
||||
4 - Transport & CC \& multiplexage & TCP, UDP\\
|
||||
3 - Réseau & Routage & IP\\
|
||||
1 \& 2 - Physique & Support & Ethernet, Wi-Fi...\\
|
||||
\bottomrule
|
||||
\end{tabular}
|
||||
\end{table}
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}{OSI}
|
||||
\begin{table}[htp]
|
||||
\centering
|
||||
\caption{Le dilemme du prisonnier}
|
||||
\begin{tabular}{l|l|l}
|
||||
& Silence & Dénonce \\\hline
|
||||
Silence & $\left( 1 ; 1 \right)$ & $\left( 10 ; 0 \right)$ \\\hline
|
||||
Dénonce & $\left( 0 ; 10 \right)$ & $\left( 5 ; 5 \right)$ \\
|
||||
\end{tabular}
|
||||
\end{table}
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}{interface RestFull}
|
||||
\begin{description}
|
||||
\item[GET] demande une ressource,
|
||||
\item[POST, PUT] envoie une ressource,
|
||||
\item[DELETE] supprime une ressource,
|
||||
\item[OBSERVE] demande à etre tenu au courant des mise à jour d'une ressource.
|
||||
\end{description}
|
||||
\end{frame}
|
||||
|
||||
\begin{frame}{Call Stack \coapthon{}}
|
||||
\begin{figure}[htp]
|
||||
\centering
|
||||
\includegraphics[width=\linewidth]{puml/call_stack_envoie.png}
|
||||
\caption{Appel de fonction pour l'envoi d'une transaction \coapthon{}}
|
||||
\end{figure}
|
||||
\end{frame}
|
||||
\begin{figure}[htp]
|
||||
\centering
|
||||
\includegraphics[width=\linewidth]{puml/call_stack_envoie.png}
|
||||
\caption{Appel de fonction pour l'envoi d'une transaction \coapthon{}}
|
||||
\end{figure}
|
||||
\end{frame}
|
||||
|
|
Loading…
Reference in a new issue