Nina and Lola,
Whenever I'm away from you and I spend a lot of time writing computer code, I think about the pretty patterns that your names make in binary code. Your names, Nina and Lola, are wonderful in so many ways that I could never describe them all. Here's one of those ways.
If you use the following Common Lisp expression, you can find the graphical binary representation of your names in binary code.
(defun binary-name (name zero one) (map 'string (lambda (c) (case c (#\1 one) (#\0 zero) (t c)))