Koga Kazuo
Koga Kazuo
Hello again! I agree that the namespace separation. src diff is more simple and less conflict too. Thanks
Hmm.. `protect-doc` is currently oneway API. (Unprotected to protected) Because `common/load-pdf` could not load password protected pdf. So, You cannot fill the form of a protected pdf. Probably I should...
I wrote the reproducible sample code. And allow-multithread-write branch just works expected. % sbcl --load this.lisp ``` ;;% uname -rpms ;;Darwin 18.2.0 x86_64 i386 (ql:quickload '("clack" "websocket-driver" "woo")) (defparameter *port*...
Another workaround (SBCL only) ``` (sb-ext:schedule-timer (sb-ext:make-timer (lambda () (wsd:send-text ws "message")) :thread th) 0) ``` with ```ws``` is websocket object and ```th``` is thread ```(bt:current-thread)``` with the time you'v...
OSX distribution tar.bz2 md5 is OK. here is my console output: ``` $ md5 ~/Downloads/haste-compiler-0.5.5.1_ghc-7.10.3-darwin.tar.bz2 MD5 (/Users/kaz/Downloads/haste-compiler-0.5.5.1_ghc-7.10.3-darwin.tar.bz2) = e73ee6b531f7a53690bf57837cd0f5c5 $ tar xf ~/Downloads/haste-compiler-0.5.5.1_ghc-7.10.3-darwin.tar.bz2 $ md5 haste-compiler/x86_64-darwin-haste-0.5.5.1-ghc-7.10.3/compiler.jar MD5 (haste-compiler/x86_64-darwin-haste-0.5.5.1-ghc-7.10.3/compiler.jar) = 9745c2b8b873eaa8c1c582262cd1d240...
I tried the linux version haste's compiler.jar. ``` $ md5 haste-compiler/x86_64-linux-haste-0.5.5.1-ghc-7.10.3/compiler.jar MD5 (haste-compiler/x86_64-linux-haste-0.5.5.1-ghc-7.10.3/compiler.jar) = 6db9233c6413855b3f466ce0d7da4248 $ java -jar haste-compiler/x86_64-linux-haste-0.5.5.1-ghc-7.10.3/compiler.jar The compiler is waiting for input via stdin. ``` probably, that...