-
Notifications
You must be signed in to change notification settings - Fork 4
/
lightning-talk.tex
279 lines (230 loc) · 7.58 KB
/
lightning-talk.tex
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
% Kompilieren mit: TEXINPUTS=minted/source: xelatex -shell-escape %
\documentclass[12pt,compress,ngerman,utf8,t]{beamer}
\usepackage[ngerman]{babel}
\usepackage{comment}
\usepackage{minted}
\setminted{linenos}
\usepackage[protrusion=true,expansion=false]{microtype}
\DeclareSymbolFont{extraup}{U}{zavm}{m}{n}
\DeclareMathSymbol{\varheart}{\mathalpha}{extraup}{86}
\DeclareMathSymbol{\vardiamond}{\mathalpha}{extraup}{87}
\title{Haskell, eine rein funktionale Programmiersprache}
\author{Ingo Blechschmidt \texttt{<[email protected]>}}
\date{Augsburger NerdNight am 13. März 2015}
\usetheme{Warsaw}
\useinnertheme{rectangles}
\usecolortheme{seahorse}
\definecolor{mypurple}{RGB}{150,0,255}
\setbeamercolor{structure}{fg=mypurple}
\usefonttheme{serif}
\usepackage{fontspec}
\defaultfontfeatures{Mapping=tex-text}
\setmainfont{Linux Libertine O}
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{headline}{}
\setbeamertemplate{frametitle}[default][colsep=-2bp,rounded=false,shadow=false,center]
\renewcommand*\insertshorttitle{%
Erste Augsburger Nerdnight im OpenLab am 13. M\"arz 2015}
\newcommand{\hil}[1]{{\usebeamercolor[fg]{item}{\textbf{#1}}}}
\begin{document}
\frame[plain]{\begin{center}
\includegraphics[scale=0.35]{images/learn-you-a-haskell-for-great-good.png}
\end{center}}
% Was ist schneller als C++, prägnanter als Perl, regelmäßiger als Python,
% flexibler als Ruby, typisierter als C#, robuster als Java und hat
% absolut nichts mit PHP gemeinsam? Es ist Haskell!
\begin{frame}[fragile]\frametitle{Quicksort in C}
\begin{columns}
\begin{column}[b]{0.6\textwidth}
\scriptsize
\begin{minted}{c}
// von rosettacode.org
void quick_sort (int *a, int n) {
int i, j, p, t;
if (n < 2)
return;
p = a[n / 2];
for (i = 0, j = n - 1;; i++, j--) {
while (a[i] < p)
i++;
while (p < a[j])
j--;
if (i >= j)
break;
t = a[i];
a[i] = a[j];
a[j] = t;
}
quick_sort(a, i);
quick_sort(a + i, n - i);
}
\end{minted}
\end{column}
\begin{column}{0.2\textwidth}
% http://freephotos.atguru.in/hdphotos/sad-cat/sad-cat-13555.jpg
\includegraphics[scale=0.3,flip]{images/sad-cat.jpg}
\end{column}
\end{columns}
\end{frame}
\begin{comment}
\begin{frame}[fragile]\frametitle{Quicksort in C\#}
\tiny\vspace{-0.5em}
\begin{minted}{csharp}
// von rosettacode.org
namespace Sort {
using System;
class QuickSort<T> where T : IComparable {
#region Constants
private const Int32 insertionLimitDefault = 16;
private const Int32 pivotSamples = 5;
#endregion
#region Properties
public Int32 InsertionLimit { get; set; }
protected Random Random { get; set; }
#endregion
#region Constructors
public QuickSort()
: this(insertionLimitDefault, new Random()) {
}
public QuickSort(Int32 insertionLimit, Random random) {
InsertionLimit = insertionLimit;
Random = random;
}
#endregion
#region Sort Methods
public void Sort(T[] entries) {
Sort(entries, 0, entries.Length - 1);
}
public void Sort(T[] entries, Int32 first, Int32 last) {
var length = last + 1 - first;
// Elide tail recursion by looping over the longer partition
while (length > 1) {
if (length < InsertionLimit) {
InsertionSort<T>.Sort(entries, first, last);
return;
}
var median = pivot(entries, first, last);
var left = first;
var right = last;
partition(entries, median, ref left, ref right);
var leftLength = right + 1 - first;
var rightLength = last + 1 - left;
if (leftLength < rightLength) {
Sort(entries, first, right);
first = left;
length = rightLength;
}
else {
Sort(entries, left, last);
last = right;
length = leftLength;
}
}
}
private T pivot(T[] entries, Int32 first, Int32 last) {
var length = last + 1 - first;
var sampleSize = Math.Min(pivotSamples, length);
var right = first + sampleSize - 1;
for (var left = first; left <= right; left++) {
// Random sampling avoids pathological cases
var random = Random.Next(left, last + 1);
// Sample without replacement
if (left != random)
Swap(entries, left, random);
}
InsertionSort<T>.Sort(entries, first, right);
return entries[first + sampleSize / 2];
}
private static void partition(T[] entries, T pivot, ref Int32 left, ref Int32 right) {
while (left <= right) {
while (pivot.CompareTo(entries[left]) > 0)
left++; // pivot follows entry
while (pivot.CompareTo(entries[right]) < 0)
right--; // pivot precedes entry
if (left < right) // Move entries to their correct partition
Swap(entries, left++, right--);
else if (left == right) { // No swap needed
left++;
right--;
}
}
}
public static void Swap(T[] entries, Int32 index1, Int32 index2) {
var entry = entries[index1];
entries[index1] = entries[index2];
entries[index2] = entry;
}
#endregion
}
#region Insertion Sort
static class InsertionSort<T> where T : IComparable {
public static void Sort(T[] entries, Int32 first, Int32 last) {
for (var i = first + 1; i <= last; i++) {
var entry = entries[i];
var j = i;
while (j > first && entries[j - 1].CompareTo(entry) > 0)
entries[j] = entries[--j];
entries[j] = entry;
}
}
}
#endregion
}
\end{minted}
\end{frame}
\end{comment}
\begin{frame}[fragile]\frametitle{Haskell, eine rein funktionale Sprache}
\large\vspace{-0.5em}
\begin{minted}{haskell}
qsort [] = []
qsort (x:xs) =
qsort kleinere ++ [x] ++ qsort groessere
where
kleinere = [y | y <- xs, y <= x]
groessere = [y | y <- xs, y > x]
\end{minted}
\vfill
\only<1>{
\vspace{1em}
\begin{center}
\includegraphics[scale=0.35]{images/katze.jpg}
\end{center}
}
\pause
Die Fibonaccizahlen: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, \ldots
\begin{minted}{haskell}
fibs = 0 : 1 : zipWith (+) fibs (tail fibs)
\end{minted}
\pause
\begin{center}
\hil{$\varheart$ Statisches Typsystem mit Typerschlie\ss ung $\varheart$} \\
\hil{rein funktional} \textbullet{}
\hil{nebenl\"aufig} \textbullet{}
\hil{lazy} \textbullet{}
\hil{7000\textsuperscript{+} Pakete}
\end{center}
\end{frame}
% <audreyt>
% Perl: "Easy things are easy, hard things are possible"
% Haskell: "Hard things are easy, the impossible just happened"
\end{document}
Achtung. Bei der Nerdnacht hatte ich vergessen zu erklären, dass das
Quicksort-Beispiel Pattern Matching verwendet. Das hätte nicht passieren
dürfen! Beim Thema Typsystem hätte ich außerdem einen Kommentar der Art
"Tatsächlich ist das Typsystem so stark, dass es folgendes Motto gibt: Code,
der einmal kompiliert, ist bereits korrekt."
Diese Folien waren für fünf oder sechs Minuten konzipiert. Für einen
10-minütigen Lightning Talk könnte man das ganze besser machen:
* Live-Coding statt fertiger Code auf der Folie.
* Bessere Erklärung des Fibonacci-Beispiels, zum Beispiel so:
fibs = 0 : 1 : ???
tail fibs = 1 : ???
zipWith (+) fibs (tail fibs)
= 1 : ???
Danach aktualisiert man die Folie:
fibs = 0 : 1 : 1 : ???
tail fibs = 1 : 1 : ???
zipWith (+) fibs (tail fibs)
= 1 : 2 : ???
Und so weiter.
* Stichwörter, wo Haskell eingesetzt wird.