<davexunit>does anyone happen to know how to specialize how a goops accessor sets a value? <davexunit>I want (set! (bar foo) 'frob) to do more than just (slot-set! foo 'bar 'frob) <daviid>davexunit: there is an option for that <daviid>#:slot-set! (lambda (self value) <your code here>) <daviid>davexunit: another way is to define a setter or an accessor and writ a method for it <daviid>that might be cleaner, becuse at some point you want to actually call (slot-set1 name value) ... the above example I use only for virtual allocation ... <daviid>davexunit: not sure I was clear but you would would specify an accessor n the slot def, then write a setter method, within which you call slot-set! ... <davexunit>daviid: the #:slot-set! slot option seems to only work for virtual slots <davexunit>daviid: a-ha! (define-method ((setter ...) ...) ...) <laertus>i'm trying to compile guile-wm, and configure tells me: "error: required guile module not found: (xcb xml)" <laertus>guile doesn't have a package manager i could use <OrangeShark>laertus: a lot of people are using GNU Guix as their package manager, but you can install the module yourself <laertus>ah, guix, yeah... that's way too heavyweight for me, unfortunately <kristofer>I've been coding up a web app with artanis.. it's doable but particularly frustrating that the art work command doesn't spawn a repl server for geiser to connect to. I have attempted to spawn one from the ENTRY file with (spawn-server ..) -- if I connect geiser to the socket, artanis crashes. <kristofer>excitingly, using the guile server instead of ragnarok does the trick. <happy_gnu[m]>kristofer: hi!! I can't help because I am too noob but can you share your code with me and an artanis link :) <amz3`>about the gentleman that added autotools to my project, he is working on graph stuff <amz3`>something about mowing stuff a getting the shortest path to do it <amz3`>but it's still no ready for production (tm) ***apteryx is now known as Guest6762