Wilfredo Velázquez-Rodríguez
Wilfredo Velázquez-Rodríguez
Oh goodness I typed up a whole response this morning but never hit submit 🤦 So I tagged this with information needed because I read a little bit up on...
Hum. I just checked the portal and it looks like the icon wasn't uploaded. Going to check the auto-upload script for anything
Interesting. I hadn't noticed that d0c9ace493d088bc70f7422705ff27dfcf162cca made it so that icons are fetched directly from GitHub. I didn't know about that as an option. I'll need to dig into this...
Ditto, I like the idea of project integration. Looks good but I'll review more in the morning. Thanks!
Yep sorry about the delay. Had a busier Friday than expected. I did take another look and I'm good with it
I don't want to create a new sequence. I want to write to an existing string with a fill pointer For example, I can ```lisp (let ((string (make-array 0 :element-type...
Gotcha - I wanted to make sure such a thing didn't already exist without me knowing. I ended up doing the following: ```lisp (defclass %string-output-stream (trivial-gray-streams:fundamental-character-output-stream) ((%string :initarg :string))) (defmethod...
@avodonosov That does not allow me to write to an existing string
It actually can, by ```lisp (defmacro my/with-output-to-string ((var str) &body body) `(let ((,var (make-string-output-stream))) ,@body (my/append-chars-to ,str (get-output-stream-string ,var)))) ``` Which is, of course, inefficient, but has the same general...
@tumashu Thanks! It does work for me. If I noticed weirdness I'll let you know. Should we post something on helm? or do you think this is an isolated issue...