From 1833ecbd8ac546f286825d8ccfda5c5daebef2f9 Mon Sep 17 00:00:00 2001 From: Gregor Kleen Date: Wed, 13 Jan 2016 17:30:59 +0100 Subject: updated linkage to git repos --- provider/posts/beuteltier-1.lhs | 3 +-- provider/posts/hakyll.md | 2 +- provider/posts/pwutil.md | 2 +- provider/posts/thermoprint-1.md | 8 ++++---- provider/posts/thermoprint-2.lhs | 2 +- provider/posts/thermoprint-3.lhs | 2 +- provider/posts/thermoprint-4.md | 2 +- 7 files changed, 10 insertions(+), 11 deletions(-) diff --git a/provider/posts/beuteltier-1.lhs b/provider/posts/beuteltier-1.lhs index c47b288..7789f40 100644 --- a/provider/posts/beuteltier-1.lhs +++ b/provider/posts/beuteltier-1.lhs @@ -27,8 +27,7 @@ We begin, as is to be expected for a haskell project, with type definitions and, design philosophy. This post in particular reproduces the file `beuteltier/Beuteltier/Types.hs` from the -[git repo](git://git.yggdrasil.li/beuteltier) with annotiations to provide some -motivation. +git repo with annotiations to provide some motivation. The `Beuteltier` library itself only provides primitives for (and a default implementation of) access to what we call a backstore. A backstore is, to us, an instance of the diff --git a/provider/posts/hakyll.md b/provider/posts/hakyll.md index 910edcb..46c56ec 100644 --- a/provider/posts/hakyll.md +++ b/provider/posts/hakyll.md @@ -9,7 +9,7 @@ I stopped using the software suite inherited from [hakyll](http://jaspervdj.be/hakyll/) instead, since I realised that the two were doing essentially the same job and keeping my mess in one haskell file (`src/Site.hs`, for those of you who are willing to checkout the -[git repo](git://git.yggdrasil.li/dirty-haskell.org)) instead of spread over a +[git repo](http://git.yggdrasil.li/dirty-haskell.org)) instead of spread over a large number of interlocking zsh and haskell scripts. I expect nothing to be seriously broken (Only the filepaths of lists have diff --git a/provider/posts/pwutil.md b/provider/posts/pwutil.md index 63a660d..d054dab 100644 --- a/provider/posts/pwutil.md +++ b/provider/posts/pwutil.md @@ -5,7 +5,7 @@ published: 2015-04-07 A long time ago I wrote a bunch of scripts (first in bash, then zsh, and later perl) to manage a, sometimes encrypted, file containing account information I get asked to create and remember on a daily basis—accounts for shopping websites spring to mind. -[pwutil](git://git.yggdrasil.li/pwutil) is the newest iteration in this line of bunches of scripts. +[pwutil](http://git.yggdrasil.li/pwutil) is the newest iteration in this line of bunches of scripts. ## Features diff --git a/provider/posts/thermoprint-1.md b/provider/posts/thermoprint-1.md index 34fc754..8851743 100644 --- a/provider/posts/thermoprint-1.md +++ b/provider/posts/thermoprint-1.md @@ -23,8 +23,8 @@ interface to the uninitiated. ## Location Recently I created a new branch in -[thermoprint](git://git.yggdrasil.li/thermoprint) called -[rewrite](git://git.yggdrasil.li/thermoprint#rewrite). +[thermoprint](http://git.yggdrasil.li/thermoprint) called +[rewrite](http://git.yggdrasil.li/thermoprint?h=rewrite). ## Architecture Overview @@ -74,11 +74,11 @@ It also does not include a web-interface and I am quite unsatisfied with the overall code quality. The [685 lines of code](http://cloc.sourceforge.net/) can be found in the -[repo](git://git.yggdrasil.li/thermoprint#master) as well. +[repo](http://git.yggdrasil.li/thermoprint?h=master) as well. ### Rewrite -Currently the [rewrite](git://git.yggdrasil.li/thermoprint#rewrite) contains a +Currently the [rewrite](http://git.yggdrasil.li/thermoprint?h=rewrite) contains a single file of moment -- spec/src/Thermoprint/Printout.hs -- wherein we define the payload for the api -- our take on a structured document format (somewhat inspired by diff --git a/provider/posts/thermoprint-2.lhs b/provider/posts/thermoprint-2.lhs index 056f1ef..878f9a5 100644 --- a/provider/posts/thermoprint-2.lhs +++ b/provider/posts/thermoprint-2.lhs @@ -4,7 +4,7 @@ published: 2016-01-11 tags: Thermoprint --- -This post is an annotated version of the file `spec/src/Thermoprint/Printout.hs` as of commit [f6dc3d1](git://git.yggdrasil.li/thermoprint#f6dc3d1). +This post is an annotated version of the file [spec/src/Thermoprint/Printout.hs](http://git.yggdrasil.li/thermoprint/tree/spec/src/Thermoprint/Printout.hs?h=rewrite&id=f6dc3d1) as of commit `f6dc3d1`. > {-# LANGUAGE DeriveGeneric, DeriveAnyClass #-} > {-# LANGUAGE OverloadedStrings #-} diff --git a/provider/posts/thermoprint-3.lhs b/provider/posts/thermoprint-3.lhs index 9227c97..acbce8c 100644 --- a/provider/posts/thermoprint-3.lhs +++ b/provider/posts/thermoprint-3.lhs @@ -4,7 +4,7 @@ published: 2016-01-11 tags: Thermoprint --- -This post is an annotated version of the file `spec/src/Thermoprint/API.hs` as of commit [3ad700c](git://git.yggdrasil.li/thermoprint#3ad700c). +This post is an annotated version of the file [spec/src/Thermoprint/API.hs](http://git.yggdrasil.li/thermoprint/tree/spec/src/Thermoprint/API.hs?h=rewrite&id=3ad700c) as of commit `3ad700c`. > {-# LANGUAGE DeriveGeneric, DeriveAnyClass #-} > {-# LANGUAGE TypeOperators, DataKinds #-} diff --git a/provider/posts/thermoprint-4.md b/provider/posts/thermoprint-4.md index d64f760..f6bc4ea 100644 --- a/provider/posts/thermoprint-4.md +++ b/provider/posts/thermoprint-4.md @@ -6,7 +6,7 @@ tags: Thermoprint The concrete application we’ll be walking through is a naive parser for [bbcode](https://en.wikipedia.org/wiki/BBCode) -- more specifically the contents of the directory `bbcode` in the -[git repo](git://git.yggdrasil.li/thermoprint#rewrite). +[git repo](http://git.yggdrasil.li/thermoprint?h=rewrite). In a manner consistent with designing software as [compositions of simple morphisms](https://en.wikipedia.org/wiki/Tacit_programming) we start by determining the type of -- cgit v1.2.3