Wikipedia Haiku
botsin.space
Wikipedia Haiku
1–8 of 8 posts
Re: Wikipedia Haiku
#2alas this falls short
of the state of the art in
quality haiku
Re: Wikipedia Haiku
#3Now someone make one for Hacker news. What was that library that decomps words into syllables again..
Re: Wikipedia Haiku
#4Im wondering if
this was just a webscraper
or perhaps ai
Re: Wikipedia Haiku
#5Several from that bot are great UX haiku.
Re: Wikipedia Haiku
#6The first mastodon
page I really wanted
to follow
Re: Wikipedia Haiku
#7Now someone make one for Hacker news. What was that library that decomps words into syllables again..
What's that library
For splitting up words into
Syllables again?
Re: Wikipedia Haiku
#8Could a haiku be written for Lisp?
Wow, yes; turns out we can write a working map function in TXR Lisp as a haiku:
(defun map (f x)
(if (null x)
nil
(cons [f (car x)] (map f (cdr x)))))
I.e. (defun map (f x)
(if (null x) nil (cons [f (car
x)] (map f (cdr x)))))
i.e. de-fun map eff ex
if null ex nil cons f car
ex map eff k'dr ex
Comprehensive regression test suite: 4> [map succ nil]
nil
5> [map succ '(1 2 3)]
(2 3 4)