diff options
-rwxr-xr-x | journal.lisp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/journal.lisp b/journal.lisp index 9afbff4..2b720e2 100755 --- a/journal.lisp +++ b/journal.lisp @@ -445,8 +445,12 @@ after another in any arbitrary order." (<:a :href "journal.cgi?action=index" "Kompottkins Weisheiten")) (<:div :id :main-subtitle (<:as-is - "NEU! Jetzt ohne regelmäßige - Serverabstürze!"))) + (random-elt + '(("Geschwafel eines + libertärsozialistischen Geeks") + ("NEU! Jetzt ohne regelmäßige + Serverabstürze!") + ("NEU! Jetzt mit mehr als 3 % Uptime!")))))) (<:div :id :contents (case *action* ((:index nil) @@ -498,7 +502,8 @@ after another in any arbitrary order." (defun main () - (let ((*journal-entries* (read-journal-entries))) + (let ((*journal-entries* (read-journal-entries)) + (*random-state* (make-random-state t))) (ext:letf ((custom:*terminal-encoding* (ext:make-encoding :charset charset:utf-8))) (case *action* |