00c3e5a57159

Update
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Fri, 24 Jan 2020 23:07:41 -0500
parents 608cfc181855
children 00e9be6d3dc5
branches/tags (none)
files README.markdown

Changes

--- a/README.markdown	Fri Jan 24 20:44:54 2020 -0500
+++ b/README.markdown	Fri Jan 24 23:07:41 2020 -0500
@@ -203,7 +203,13 @@
 
 ## 2020-01-24
 
-Solved the `FIB` Rosalind problem.  Tried doing it in straight bash, but
-I couldn't figure out how to get the bash function to use a global bash array
-for memoization after like 10 minutes of searching.  Ended up rewriting it in
-Awk, which took two minutes, was simple, and runs fast.  Great.
+Solved the `FIB` Rosalind problem in my shell/Awk repo.  Tried doing it in
+straight bash, but I couldn't figure out how to get the bash function to use
+a global bash array for memoization after like 10 minutes of searching.  Ended
+up rewriting it in Awk, which took two minutes, was simple, and runs fast.
+Great.
+
+Solved `MMCH` in my Lisp repo.  Much like the previous problem in this line, it
+was way easier than they made it seem.  Also fixed the Uniprot cache to use the
+filesystem instead of just keeping a hash table, to save a few seconds of my
+life every time I `(run-tests)` in a fresh Lisp session.