IRC channel logs

2023-04-19.log

back to list of logs

<dokma>old: you around? I'm still trying to figure out that websockets thingy. Have you done anything with websockets in Guile?
<dokma>Has anyone done anything with websockets in Guile?
<flatwhatson>dokma: did you find https://dthompson.us/projects/guile-websocket.html ?
<dokma>flatwhatson: I talked to him yesterday. It doesn't use encryption so I cannot access wss: sockets.
<flatwhatson>ah, right. gnutls provides a workable TLS implementation for guile, it would be feasible to implement wss. iirc it's just regular websocket protocols over a TLS connection.
<dokma>flatwhatson: I learned scheme like 2 months ago. I'm not at that level yet.
<dthompson>flatwhatson: thanks for the websockets patch :) I will push that soon when I have some free time.
<flatwhatson>dthompson: thanks!
<dthompson>flatwhatson: pushed your websocket patch. thanks again!
<ArneBab>dthompson, flatwhatson: yay! thank you both!
<qookie>hm there appears to be a bogus warning when using nested "~{...~}" within format
<qookie>evaluating '(format #t "~{~{~d~^, ~}~%~}" '((1 2) (3 4 5)))' yields 'warning: "~{~{~d~^, ~}~%~}": wrong number of `format' arguments: expected 2, got 1' but still works fine
<qookie>the manual seems to back up that this should work fine
<qookie>oh this was reported nearly 8 years ago, neat :^)