Michał "phoe" Herda
Michał "phoe" Herda
You could use a bit of Lisp trickery to always drop the last three digits of a number. ```lisp CL-USER> (prin1-to-string (round (parse-integer "157204849300") 1000)) "157204849" ``` If the number...
I sadly cannot, as my pgloader-fu is too small; let's wait on @dimitri for that one.
OK - thanks for the reply. We'll implement the semaphore count function in CCL; it should be available in the next CCL release.
I don't know about the release itself, but I still have not implemented this part; sorry, and thank you for the reminder.
I completely forgot about this issue and I do not have any progress in this matter or the related CCL ticket.
If I want to use vanilla 1AM, [I use a very simple 1AM wrapper](https://github.com/phoe/petri/blob/master/test.lisp#L14) to achieve multiple test suites. ```common-lisp (defvar *my-tests* '()) (defun run () (1am:run *my-tests*)) (defmacro define-test...
I second this idea. I enjoy the idea of defining keywords and/or regexes describing toots that are going to be automatically CWed by the system for me.
I don't think this does ever need to leave the UI. You can define the filter on the UI frontend, it gets saved in the user's setting on the instance,...
Perhaps a greyed-out CW? Normal CWs are white now; perhaps automated CWs could be different coloristically. Dnia 5 lipca 2018 17:14:46 CEST, Eugen Rochko napisał(a): >What I want to understand...
It seems that `(flex:with-output-to-sequence (stream) (vecto:save-png-stream stream))` solves this problem, albeit with an external dependency. It might be a bit heavy-weight to use as a dependency since it's a big...