IRC channel logs

2017-10-20.log

back to list of logs

<cmaloney>Evening
<amz3>héllo #guile
<OrangeShark>happy friday
<happy_gnu[m]>\\o/ happy friday
<manumanumanu>Happy friday!
<manumanumanu>I had to help a friend with a javascript task today. I have managed to completely forget the syntax.
<manumanumanu>happy times.
<ecraven>use something like parenscript!
<ecraven>I wrote a simple transpiler, use it for most javascript tasks I have ;)
<joshuaBPMan>hello, I'm trying to get sxml->string to work, but it's not working...
<joshuaBPMan>(sxml->string `(html (body (head (title))))) is returning an empty string
<daviid>joshuaBPMan: sxml->string detag an sxml tree, in the above, detag and ther is nothing left
<daviid>scheme@(guile-user)> (sxml->string `(p (i "hello world!")))
<daviid>$7 = "hello world!"