aboutsummaryrefslogtreecommitdiff
path: root/slides/2019-it-intro-computer-systems/img/trends.tex
diff options
context:
space:
mode:
authorRasmus Dahlberg <rasmus@rgdd.se>2024-10-15 15:35:20 +0200
committerRasmus Dahlberg <rasmus@rgdd.se>2024-10-15 15:35:45 +0200
commit76bae02bcd7d6b3ec9eea428e5e95da184a8dbfb (patch)
tree410ab71c78c99d35aecd46733958a5699cdf5204 /slides/2019-it-intro-computer-systems/img/trends.tex
parent883a67439aff566962adafeb0385c6ae972073a3 (diff)
Rescue some slides from old private mono repos
Diffstat (limited to 'slides/2019-it-intro-computer-systems/img/trends.tex')
-rw-r--r--slides/2019-it-intro-computer-systems/img/trends.tex47
1 files changed, 47 insertions, 0 deletions
diff --git a/slides/2019-it-intro-computer-systems/img/trends.tex b/slides/2019-it-intro-computer-systems/img/trends.tex
new file mode 100644
index 0000000..7dea798
--- /dev/null
+++ b/slides/2019-it-intro-computer-systems/img/trends.tex
@@ -0,0 +1,47 @@
+\begin{tikzpicture}[
+ arrow/.style = {
+ draw,
+ -latex,
+ },
+ plain/.style = {
+ draw=none,
+ }
+]
+ \coordinate(o) at (0,0);
+ \coordinate(y) at (0,4);
+ \coordinate(x) at (6,0);
+
+ \coordinate(c1) at (0.5,0.5);
+ \coordinate(c2) at (2.5,2.5);
+ \coordinate(c3) at (3.5,2.5);
+ \coordinate(c4) at (5.5,0.5);
+
+ \path[arrow]
+ (o) --
+ node[plain, below, pos=0.9]{time}
+ (x);
+ \path[arrow]
+ (o) --
+ node[plain, pos=0.2, left]{%
+ \begin{tabular}{c}
+ thin\\
+ clients
+ \end{tabular}
+ }
+ node[plain, pos=0.8, left]{%
+ \begin{tabular}{c}
+ thick\\
+ clients
+ \end{tabular}
+ }
+ (y);
+
+ \path[arrow]
+ (c1) --
+ node[plain, sloped, above]{faster computers}
+ (c2);
+ \path[arrow]
+ (c3) --
+ node[plain, sloped, above]{faster network}
+ (c4);
+\end{tikzpicture}