1d988c779594

Update
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Tue, 23 Aug 2016 22:51:44 +0000
parents e482349e84e7
children 9aadf6ee2d05
branches/tags (none)
files README.markdown

Changes

--- a/README.markdown	Tue Aug 23 10:37:03 2016 +0000
+++ b/README.markdown	Tue Aug 23 22:51:44 2016 +0000
@@ -70,6 +70,7 @@
 [cl-ppcre]: http://www.weitz.de/cl-ppcre/
 [huffman-trees]: https://en.wikipedia.org/wiki/Huffman_coding
 [cl-adt]: https://bitbucket.org/tarballs_are_good/cl-algebraic-data-type
+[gdl-bench]: http://cgi.cse.unsw.edu.au/%7Emit/GGP/GIGA-13-Proceedings.pdf#page=55
 
 ## June 2016
 
@@ -1213,3 +1214,14 @@
 
 So even after just one day it's already paying off.  Once I finish reading
 Alexandria I'll move on to [cl-ppcre][] and then who knows where from there.
+
+### 2016-08-23
+
+* With Stephan's help I got part of his [GDL Reasoner Benchmark][gdl-bench] up
+  and running.  I think I should be able to plug in Temperance with another day
+  or so of work.  It'll be nice to have a decent benchmark.
+* Changed Temperance's API to be more functional (e.g. instead of `(query foo)`
+  using a global variable for a database it's now `(query db foo)`).  This
+  should make maintenance and composing things saner, at the cost of a bit of
+  extra typing.
+* More [SICP][].  Finished playing around with [Huffman Trees][huffman-trees].