Skip to content

Commit

Permalink
get rid of vertical sections
Browse files Browse the repository at this point in the history
  • Loading branch information
etrepum committed Mar 4, 2014
1 parent ced3714 commit 9ff8569
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 152 deletions.
79 changes: 6 additions & 73 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8">
<meta name="generator" content="pandoc">
<meta name="author" content="Bob Ippolito" />
<title>Why Haskell?</title>
<title>Intro to Haskell (for Erlangers)</title>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
Expand Down Expand Up @@ -43,9 +43,9 @@
<div class="slides">

<section>
<h1 class="title">Why Haskell?</h1>
<h1 class="title">Intro to Haskell (for Erlangers)</h1>
<h2 class="author">Bob Ippolito</h2>
<h3 class="date">December 3, 2013</h3>
<h3 class="date">March 7, 2014</h3>
</section>

<section id="haskells-appeal" class="slide level1">
Expand All @@ -72,8 +72,6 @@ <h1>
</section>
</li>
</ul>
<section id="section-history" class="stack">

<section id="haskell-history">
<h1>
Haskell
Expand Down Expand Up @@ -201,10 +199,6 @@ <h1>
</dl>
</section>

</section><!-- #section-history -->

<section id="section-domain" class="stack">

<section id="domain">
<h1>
Domain
Expand Down Expand Up @@ -368,10 +362,6 @@ <h1>
</dl>
</section>

</section><!-- #section-domain -->

<section id="section-get-started">

<section id="haskell-platform">
<h1>
Haskell Platform
Expand Down Expand Up @@ -412,8 +402,6 @@ <h1>
</dl>
</section>

</section><!-- #section-get-started -->

<section id="haskell-syntax">
<h1>
Haskell Syntax
Expand All @@ -437,7 +425,6 @@ <h1>
</dl>
</section>

<section id="section-syntax-types" class="stack">

<section id="abstract-data-types" class="big-code small-title">
<h1>
Expand Down Expand Up @@ -498,10 +485,6 @@ <h1>
isEqual as bs <span class="fu">=</span> null as <span class="fu">&amp;&amp;</span> null bs</code></pre>
</section>

</section><!-- #section-syntax-types -->

<section id="section-syntax-values" class="stack">

<section id="value-syntax" class="big-code small-title">
<h1>
Bindings &amp; Functions
Expand Down Expand Up @@ -595,8 +578,6 @@ <h1>
m <span class="fu">&gt;&gt;</span> return ()</code></pre>
</section>

</section><!-- #section-syntax-values -->

<section id="key-features">
<h1>
Key Features
Expand All @@ -613,8 +594,6 @@ <h1>
</section>
</li>
</ul>
<section id="section-ghci">

<section id="ghci-title">
<h1>
GHCi
Expand Down Expand Up @@ -737,10 +716,6 @@ <h2>
<span class="st">&quot;HELLO&quot;</span></code></pre>
</section>

</section><!-- #section-ghci -->

<section id="section-declarative" class="stack">

<section id="declarative">
<h1>
Declarative
Expand Down Expand Up @@ -900,10 +875,6 @@ <h1>
f <span class="fu">$</span> x <span class="fu">=</span> f x</code></pre>
</section>

</section><!-- #section-declarative -->

<section id="section-purity" class="stack">

<section id="purity">
<h1>
Pure
Expand Down Expand Up @@ -984,10 +955,6 @@ <h1>
<span class="co"> #-}</span></code></pre>
</section>

</section><!-- #section-purity -->

<section id="section-lazy" class="stack">

<section id="lazy">
<h1>
Lazy
Expand Down Expand Up @@ -1082,10 +1049,6 @@ <h1>
<span class="fu">|</span> otherwise <span class="fu">=</span> []</code></pre>
</section>

</section><!-- #section-lazy -->

<section id="section-types" class="stack">

<section id="types-and-typeclasses">
<h1>
Types
Expand Down Expand Up @@ -1286,9 +1249,6 @@ <h1>
reverseSort <span class="fu">=</span> map unDown <span class="fu">.</span> sort <span class="fu">.</span> map <span class="dt">Down</span></code></pre>
</section>

</section><!-- #section-types -->

<section id="section-abstractions">
<section id="abstractions">
<h1>
Abstractions
Expand Down Expand Up @@ -1384,10 +1344,6 @@ <h1>
<span class="dt">Nothing</span> <span class="fu">&gt;&gt;=</span> _ <span class="fu">=</span> <span class="dt">Nothing</span></code></pre>
</section>

</section><!-- #section-abstractions -->

<section id="section-parsing" class="stack">

<section id="parsing-title" class="small-title">
<h1>
Parser Combinators
Expand Down Expand Up @@ -1420,10 +1376,6 @@ <h1>
pArray <span class="fu">=</span> <span class="dt">JArray</span> <span class="fu">&lt;$&gt;</span> <span class="st">&quot;[&quot;</span> <span class="fu">.*&gt;</span> (pJSON <span class="ot">`sepBy`</span> <span class="st">&quot;,&quot;</span>) <span class="fu">&lt;*.</span> <span class="st">&quot;]&quot;</span></code></pre>
</section>

</section><!-- #section-parsing -->

<section id="section-ffi" class="stack">

<section id="ffi-title" class="small-title">
<h1>
Foreign Function Interface
Expand All @@ -1444,10 +1396,6 @@ <h1>
main <span class="fu">=</span> replicateM_ <span class="dv">20</span> (c_rand <span class="fu">&gt;&gt;=</span> print)</code></pre>
</section>

</section><!-- #section-ffi -->

<section id="section-parallel" class="stack">

<section id="parallel-title" class="small-title">
<h1>
Parallel Programming
Expand Down Expand Up @@ -1477,10 +1425,6 @@ <h1>
(<span class="dt">Z</span> <span class="fu">:.</span> x <span class="fu">-</span> i <span class="fu">-</span> <span class="dv">1</span> <span class="fu">:.</span> y <span class="fu">-</span> j <span class="fu">-</span> <span class="dv">1</span> <span class="fu">:.</span> k)</code></pre>
</section>

</section><!-- #section-parallel -->

<section id="section-concurrency" class="stack">

<section id="concurrency-title">
<h1>
Concurrency
Expand Down Expand Up @@ -1587,10 +1531,6 @@ <h1>
mapM_ takeMVar mvars</code></pre>
</section>

</section><!-- #section-concurrency -->

<section id="section-weaknesses">

<section id="why-not-haskell">
<h1>
Why not Haskell?
Expand Down Expand Up @@ -1677,11 +1617,6 @@ <h1>
go acc [] <span class="fu">=</span> acc</code></pre>
</section>

</section><!-- #section-weaknesses -->


<section id="section-libraries" class="stack">

<section id="libraries-title">
<h1>
Notable Libraries
Expand Down Expand Up @@ -1814,8 +1749,6 @@ <h1>
</dl>
</section>

</section><!-- #section-libraries -->

<section id="learn-more">
<h1>
Learn More
Expand Down Expand Up @@ -1852,14 +1785,14 @@ <h1>
</h1>

<table>
<col style="width: 19%" /><col style="width: 65%" /><tbody>
<col style="width: 19%" /><col style="width: 73%" /><tbody>
<tr class="odd">
<td style="text-align: left;"><p><strong>Slides</strong></p></td>
<td style="text-align: left;"><p><a href="http://bob.ippoli.to/why-haskell-2013/">http://bob.ippoli.to/why-haskell-2013/</a></p></td>
<td style="text-align: left;"><p><a href="http://bob.ippoli.to/haskell-for-erlangers-2014/">http://bob.ippoli.to/haskell-for-erlangers-2014/</a></p></td>
</tr>
<tr class="even">
<td style="text-align: left;"><p><strong>Source</strong></p></td>
<td style="text-align: left;"><p><a href="https://github.com/etrepum/why-haskell-2013">github.com/etrepum/why-haskell-2013</a></p></td>
<td style="text-align: left;"><p><a href="https://github.com/etrepum/haskell-for-erlangers-2014">github.com/etrepum/haskell-for-erlangers-2014</a></p></td>
</tr>
<tr class="odd">
<td style="text-align: left;"><p><strong>Email</strong></p></td>
Expand Down
Loading

0 comments on commit 9ff8569

Please sign in to comment.