Name: Anonymous 2016-08-31 16:49
Github Windows client auto-inserts 0x0D into any text file, before every 0x0A, resulting into colossal mess with myriads of possible bugs.
CL-USER> (defun this-post-is (left right)
(let* ((cnt (+ (length left) (length right)))
(true-cnt (+ cnt (ceiling (log cnt 10)))))
(concatenate 'string left (write-to-string true-cnt) right)))
THIS-POST-IS
CL-USER> (this-post-is "This poast was brought to you by RedCream's spirit. This post has " " characters in it.")