-
Notifications
You must be signed in to change notification settings - Fork 5
/
posts.html
109 lines (88 loc) · 3.91 KB
/
posts.html
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>All Posts - The Life Monadic</title>
<link rel="stylesheet" href="//cdn.jsdelivr.net/pure/0.4.2/pure-min.css" />
<link rel="stylesheet" type="text/css" href="./css/skin.css" />
<link rel="stylesheet" type="text/css" href="./css/default.css" />
<link rel="stylesheet" type="text/css" href="./css/syntax.css" />
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="./apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./favicon-16x16.png">
<link rel="manifest" href="./site.webmanifest">
<link rel="mask-icon" href="./safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#603cba">
<meta name="theme-color" content="#f1e7f6">
<!-- Twitter card -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@duplode" />
<meta name="twitter:title" content="All Posts" />
</head>
<body class="pure-skin-duplode">
<div class="pure-g-r">
<div class="pure-u-1-4">
<div id="navigation" class="no-print">
<div class="pure-menu pure-menu-open">
<a class="pure-menu-heading menu-title">
The Life<br>
Monadic<br>
<span class="menu-subtitle">by duplode</span>
</a>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./posts.html">Posts</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./rss.xml">RSS</a></li>
</ul>
</div>
</div>
</div>
<div class="pure-u-3-4">
<div id="content">
<h1>All Posts</h1>
<div class="post-index">
<p>
<a href="./posts/every-distributive-is-representable.html">Every Distributive is Representable</a> - February 7, 2022
</p>
<p>
<a href="./posts/divisible-and-the-monoidal-quartet.html">Divisible and the Monoidal Quartet</a> - November 12, 2021
</p>
<p>
<a href="./posts/idempotent-applicatives-parametricity-and-a-puzzle.html">Idempotent Applicatives, Parametricity, and a Puzzle</a> - April 1, 2019
</p>
<p>
<a href="./posts/traversable-a-remix.html">Traversable: A Remix</a> - May 19, 2017
</p>
<p>
<a href="./posts/whats-in-a-fold.html">What's in a Fold: The Basic Catamorphism in recursion-schemes</a> - March 10, 2017
</p>
<p>
<a href="./posts/casual-hacking-with-stack-reloaded.html">Casual Hacking With stack, Reloaded</a> - February 26, 2017
</p>
<p>
<a href="./posts/migrating-a-project-to-stack.html">Migrating a Project to stack</a> - July 27, 2015
</p>
<p>
<a href="./posts/casual-hacking-with-stack.html">Casual Hacking With stack</a> - July 23, 2015
</p>
<p>
<a href="./posts/applicative-archery.html">Applicative Archery</a> - July 6, 2015
</p>
<p>
<a href="./posts/what-does-fmap-preserve.html">What Does fmap Preserve?</a> - June 2, 2014
</p>
<p>
<a href="./posts/lenses-you-can-make-at-home.html">Lenses You Can Make at Home</a> - April 26, 2014
</p>
</div>
</div>
<div id="footer" class="no-print">
<p>Powered by <a href="http://jaspervdj.be/hakyll">Hakyll</a></p>
</div>
</div>
</div>
</body>
</html>