summaryrefslogtreecommitdiff
path: root/provider/posts/thermoprint
diff options
context:
space:
mode:
Diffstat (limited to 'provider/posts/thermoprint')
-rw-r--r--provider/posts/thermoprint/1.md1
-rw-r--r--provider/posts/thermoprint/2.lhs4
-rw-r--r--provider/posts/thermoprint/3.lhs4
-rw-r--r--provider/posts/thermoprint/4.md6
-rw-r--r--provider/posts/thermoprint/5.md1
-rw-r--r--provider/posts/thermoprint/6.lhs1
6 files changed, 10 insertions, 7 deletions
diff --git a/provider/posts/thermoprint/1.md b/provider/posts/thermoprint/1.md
index 032e2f6..9d0a5b2 100644
--- a/provider/posts/thermoprint/1.md
+++ b/provider/posts/thermoprint/1.md
@@ -2,6 +2,7 @@
2title: On the Architecture of a tool-set for interacting with character-oriented printers 2title: On the Architecture of a tool-set for interacting with character-oriented printers
3published: 2015-12-25 3published: 2015-12-25
4tags: Thermoprint 4tags: Thermoprint
5repo: https://git.yggdrasil.li/thermoprint?h=rewrite
5--- 6---
6 7
7# Motivation 8# Motivation
diff --git a/provider/posts/thermoprint/2.lhs b/provider/posts/thermoprint/2.lhs
index a144fb5..28b59b8 100644
--- a/provider/posts/thermoprint/2.lhs
+++ b/provider/posts/thermoprint/2.lhs
@@ -2,10 +2,10 @@
2title: On the design of a structured document format compatible with character oriented printers 2title: On the design of a structured document format compatible with character oriented printers
3published: 2016-01-11 3published: 2016-01-11
4tags: Thermoprint 4tags: Thermoprint
5repo: https://git.yggdrasil.li/thermoprint?h=rewrite
6base: https://git.yggdrasil.li/thermoprint/tree/spec/src/Thermoprint/Printout.hs?h=rewrite&id=f6dc3d1
5--- 7---
6 8
7This post is an annotated version of the file [spec/src/Thermoprint/Printout.hs](https://git.yggdrasil.li/thermoprint/tree/spec/src/Thermoprint/Printout.hs?h=rewrite&id=f6dc3d1) as of commit `f6dc3d1`.
8
9> {-# LANGUAGE DeriveGeneric, DeriveAnyClass #-} 9> {-# LANGUAGE DeriveGeneric, DeriveAnyClass #-}
10> {-# LANGUAGE OverloadedStrings #-} 10> {-# LANGUAGE OverloadedStrings #-}
11> {-# OPTIONS_HADDOCK show-extensions #-} 11> {-# OPTIONS_HADDOCK show-extensions #-}
diff --git a/provider/posts/thermoprint/3.lhs b/provider/posts/thermoprint/3.lhs
index 4068cac..f0f52f5 100644
--- a/provider/posts/thermoprint/3.lhs
+++ b/provider/posts/thermoprint/3.lhs
@@ -2,10 +2,10 @@
2title: Thoughts on a network protocol for a toolset for interacting with character-oriented printers 2title: Thoughts on a network protocol for a toolset for interacting with character-oriented printers
3published: 2016-01-11 3published: 2016-01-11
4tags: Thermoprint 4tags: Thermoprint
5repo: https://git.yggdrasil.li/thermoprint?h=rewrite
6base: https://git.yggdrasil.li/thermoprint/tree/spec/src/Thermoprint/API.hs?h=rewrite&id=3ad700c
5--- 7---
6 8
7This post is an annotated version of the file [spec/src/Thermoprint/API.hs](https://git.yggdrasil.li/thermoprint/tree/spec/src/Thermoprint/API.hs?h=rewrite&id=3ad700c) as of commit `3ad700c`.
8
9> {-# LANGUAGE DeriveGeneric, DeriveAnyClass #-} 9> {-# LANGUAGE DeriveGeneric, DeriveAnyClass #-}
10> {-# LANGUAGE TypeOperators, DataKinds #-} 10> {-# LANGUAGE TypeOperators, DataKinds #-}
11> {-# LANGUAGE OverloadedStrings #-} 11> {-# LANGUAGE OverloadedStrings #-}
diff --git a/provider/posts/thermoprint/4.md b/provider/posts/thermoprint/4.md
index 756c166..c9775dc 100644
--- a/provider/posts/thermoprint/4.md
+++ b/provider/posts/thermoprint/4.md
@@ -2,11 +2,11 @@
2title: On the Design of a Parser 2title: On the Design of a Parser
3published: 2016-01-12 3published: 2016-01-12
4tags: Thermoprint 4tags: Thermoprint
5repo: https://git.yggdrasil.li/thermoprint?h=rewrite
6base: https://git.yggdrasil.li/thermoprint/tree/bbcode?h=rewrite&id=dc99dae
5--- 7---
6 8
7The concrete application we’ll be walking through is a naive parser for [bbcode](https://en.wikipedia.org/wiki/BBCode) 9The concrete application we’ll be walking through is a naive parser for [bbcode](https://en.wikipedia.org/wiki/BBCode).
8-- more specifically the contents of the directory `bbcode` in the
9[git repo](https://git.yggdrasil.li/thermoprint/tree/bbcode?h=rewrite&id=dc99dae).
10 10
11In a manner consistent with designing software as 11In a manner consistent with designing software as
12[compositions of simple morphisms](https://en.wikipedia.org/wiki/Tacit_programming) we start by determining the type of 12[compositions of simple morphisms](https://en.wikipedia.org/wiki/Tacit_programming) we start by determining the type of
diff --git a/provider/posts/thermoprint/5.md b/provider/posts/thermoprint/5.md
index 0249734..d4f624b 100644
--- a/provider/posts/thermoprint/5.md
+++ b/provider/posts/thermoprint/5.md
@@ -2,6 +2,7 @@
2title: Building an Extensible Framework for Specifying Compile-Time Configuration using Universal Quantification 2title: Building an Extensible Framework for Specifying Compile-Time Configuration using Universal Quantification
3tags: Thermoprint 3tags: Thermoprint
4published: 2016-02-18 4published: 2016-02-18
5repo: https://git.yggdrasil.li/thermoprint?h=rewrite
5--- 6---
6 7
7When I write *Universal Quantification* I mean what is commonly referred to as 8When I write *Universal Quantification* I mean what is commonly referred to as
diff --git a/provider/posts/thermoprint/6.lhs b/provider/posts/thermoprint/6.lhs
index 9182427..2d2a77d 100644
--- a/provider/posts/thermoprint/6.lhs
+++ b/provider/posts/thermoprint/6.lhs
@@ -2,6 +2,7 @@
2title: Deriving a Client Library for Interacting with Character-Oriented Printers 2title: Deriving a Client Library for Interacting with Character-Oriented Printers
3tags: Thermoprint 3tags: Thermoprint
4published: 2016-02-18 4published: 2016-02-18
5repo: https://git.yggdrasil.li/thermoprint?h=rewrite
5--- 6---
6 7
7> {-# LANGUAGE DataKinds #-} 8> {-# LANGUAGE DataKinds #-}