This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\begin{frame}[plain] | |
\begin{columns} | |
\column{.5\paperwidth} | |
\textcolor{blue}{\rule{.5\paperwidth}{\paperheight}} | |
\column{.5\paperwidth} | |
\textcolor{yellow}{\rule{.5\paperwidth}{\paperheight}} | |
\end{columns} | |
\end{frame} | |
\begin{frame}[plain] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Use the following command to retrieve the times of a Pings | |
# ping -c 100 www.google.co.uk | awk -F [=\ ] {'print $(NF-1)'} | grep -E "[0-9]" > pingTimes.dat | |
#Then use the following script to plot it with gnuplot | |
set terminal pdfcairo font "Gill Sans,9" linewidth 2 rounded fontscale 1.0 | |
set output "ping.pdf" | |
set ylabel "Time in milliseconds" | |
set xlabel "Number of Pings" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Anchors in MD files | |
===================== | |
To create an anchor in a markdown file use [here](#important-remarks) as the link to the section you want | |
to point to. Then simply create a section with the same title without the '#' and the '-' in between the | |
words such as this one : | |
Important Remarks | |
-------- | |