IRC channel logs

2020-06-23.log

back to list of logs

<rekado>looks like neither of the two moderators of r/guile are using Reddit
<rekado>since the r/guile community is restricted nobody can post there
<rekado>(unless they have been approved by the moderators in the past)
<daviid>there was a 6h internet 'cut' im my area, back a little while ago, now trying tho read the logs (a coupl of times the last half hour or so) repeatedly fails here, with a 504 Gateway Time-out, is it just 'here' or there are not accessible for others as well?
<RhodiumToad>logs also not working for me.
<RhodiumToad>dsmith-work: did you see my earlier answer to the question about ABI docs?
<daviid>RhodiumToad: ok tx for the confirmation
<dsmith>RhodiumToad: Yes! I have the pdf. Thanks muchly.
<dsmith>Yes, I'm getting 504 on the logs too.
<dsmith>RhodiumToad: So. Since that byte-to-mem code seems to be used for both writing into a string and pushing on to a stack, something needs to be added somewhere to tell it to pad to the word size.
<dsmith>Like some extra flags to encode the size of the destination.
<dsmith>RhodiumToad: Also, I would think *other* arches would also get it wrong too.
***catonano_ is now known as catonano
<RhodiumToad>I'm not sure what the requirements are for other arches.
<dsmith>No proof, but I'm almost certain all args must on word size bounds for any arch. (for sane pushing and popping the stack) I guess the real question is the padding.
***wxie1 is now known as wxie
***apteryx_ is now known as apteryx
<cnmne>hello, i'm playing with the web server module and i'm not sure how to access server-local-ip:8080 from a different computer on the same LAN. not sure if this is a guile question, but wanted to make sure it wasn't a missing parameter for `run-server'
<dsmith>You can check if it's listening with "netstat -ltp" (or "ss -ltp" if no netstat). Being root allows the "-p" to show more info.
<dsmith>If it's litening on 0.0.0.0, then you should able to get to it. If 127.0.0.1, then local only.
***terpri_ is now known as terpri
***rekado_ is now known as rekado
*rekado kicks the logs
<chrislck>sneek: botsnack
<sneek>:)
<dsmith-work>Tuesday Greetings, Guilers
<b4283>greetings
<mwette>o/
***wxie1 is now known as wxie
<manumanumanu>Ahoy hoy!
<manumanumanu>What a nice release 3.0.3 seems to be!
<dsmith-work>yes!
<RhodiumToad>still needs work for arm
<dsmith-work>RhodiumToad: I was looking at another abi. 64bit x86. A bool has bit 0 set, bits 1-8 zeroed, and remaining bits don't care.
<dsmith-work>Didn't see anything about bytes or shorts.
<dsmith-work>I would not have expected that.
<RhodiumToad>x86 has no problem treating registers as byte or word values
<manumanumanu>what's up with macro expansion in the repl in 3.0.3?
<manumanumanu>am I alone in getting way too much information?
<manumanumanu>noooooooo. Disregard that
<manumanumanu>jesus i'm such a noob
***heisenberg-25 is now known as Habush
<manumanumanu>does the fx+ do anything these days compared to regular +?
<RhodiumToad>it's slower
<civodul>yup, it's an elaborate way to get slower code :-)
<Habush>Hi, where can I find the documentation and source code for the sneek bot?
<dsmith-work>Habush: /msg help to the bot
<dsmith-work>Habush: No source at this time.
<civodul>i'm looking at 'strip' in psyntax and wondering
<civodul>it's typically linear in the size of the input
<civodul>and it conses a lot
<dsmith>Didn't guile used to have a macroexpand-1 at one time?
<dsmith>Maybe that was for defmacro type macros.