Chris Hinsley

Results 118 comments of Chris Hinsley

Yeah, so would I :) I've got a TODO item to port or implement a TCP/IP service !

Another approach, which might be better, is to provide access to the NNG protocol library via the host main.c function table. Provide a bridge between the internal messaging and the...

Don't put yourself down ! It takes a while to fully understand new things, but your involvement has already lead to many new and improved developments ! Take time to...

NNG is the new or rather reworked version of Nanomsg. I used it for some work related stuff recently and did get a good feeling from it. Presenting a bridge...

IRC probably a good thing. I’ve never set one up before.... Fancy volunteering to look into it ?

Only just noticed this !!! Will hop on tomorrow :)

Great idea ! Now if only I had a personal biographer.... ;) I will try to do this the very next time I do it.

```lisp (defmacro seq? (form) ; (seq? form) -> t|nil `(or (lst? ,form) (str? ,form))) ``` I'm beginning to think that the (type-of) function should be a bit pattern. For instance...

DIARY just pushed, your lucky that's not called DAIRY !!!

```lisp (defun get-stream (args alen) ; (get-stream args argslen) -> file-stream (file-stream (cond ((or (= alen 0) (= alen 2)) 'stdin) ((= alen 1) (elem 0 args)) (t (if (=...