phoe changed the topic of #lisp to: Common Lisp, the #1=(programmable . #1#) programming language | <http://cliki.net/> <https://irclog.tymoon.eu/freenode/%23lisp> <https://irclog.whitequark.org/lisp> <http://ccl.clozure.com/irc-logs/lisp/> | SBCL 1.4.16, CMUCL 21b, ECL 16.1.3, CCL 1.11.5, ABCL 1.5.0
<makomo> i see
<makomo> right, that makes sense i guess
robdog has quit [Ping timeout: 250 seconds]
<MichaelRaskin> It makes _no_ sense not to have a defined type for env, but oh well
<MichaelRaskin> (I do think Common Lisp standard is a great document; I just don't like what has happenned to some specific places)
<makomo> ah, you were talking in general about the environment objects
robdog has joined #lisp
karlosz has joined #lisp
<MichaelRaskin> Well, I make choices because I cannot trust generic env objects
<makomo> yeah, i would be very happy if we had some extra tools and were able to write a portable code walker
abhixec has quit [Ping timeout: 246 seconds]
<makomo> but it is what it is :D
etimmons has joined #lisp
<MichaelRaskin> We could write a CDR
<MichaelRaskin> My paper and slides list what is actually needed — it's not that much
<MichaelRaskin> implementations _might_ have mercy
<makomo> i haven't looked into CDRs that much. i assume they're something like scheme's SRFIs, but informal?
<makomo> yeah, might :-)
<p_l> some implementations can be extended without opening the source code
<p_l> though I guess getting deep into compiler might be a problem
<MichaelRaskin> Well, the talk was well-received, the walker is used by Petalisp… And I don't need anything that compilers don't have to have internally anyway
frodef has quit [Ping timeout: 272 seconds]
robdog has quit [Ping timeout: 264 seconds]
<makomo> MichaelRaskin: is this what i'm looking for? https://common-lisp.net/project/cdr/
<MichaelRaskin> I don't want extensions, I want the function to extract the list of names from environment — preferably based on the same code compiler uses
<MichaelRaskin> Probably
<makomo> "The Common Lisp Document Repository is hosted at http://cdr.eurolisp.org." but the link is dead
<MichaelRaskin> Yes
<MichaelRaskin> Sigh
<makomo> yeah... :(
<MichaelRaskin> Actually, the project has all the content
<MichaelRaskin> On Common-Lisp.net
<MichaelRaskin> The homepage link should lead to common-lisp.net but wasn't updated
<makomo> MichaelRaskin: and getting a list of *just* the names, without any definitions is enough? is that because you can always use MACRO-FUNCTION to get at the definition?
<p_l> MichaelRaskin: I was thinking of "actually getting the right internal APIs from compiler"
Lord_of_Life_ has joined #lisp
<MichaelRaskin> p_l: I want accepted names for stuff, I explicitly don't want "user-agent sniffing", and I am afraid of trying to call random internal functions and seeing what breaks
<MichaelRaskin> makomo: see macroexpand-1, it should be not too hard to extract a function «macro-definition» out of that
<MichaelRaskin> Than you can use it as macrop without _calling_ the expander
<p_l> MichaelRaskin: I was thinking more in style of (old?) package-conduits system, which provided a simple API while handling the implementation-specific ways to get conduits working
<MichaelRaskin> Calling macroexpand (not even -1) as macrop is definitely overkill
Kaisyu has joined #lisp
<MichaelRaskin> p_l: trivial- wrappers have benefits and drawbacks
Lord_of_Life has quit [Ping timeout: 245 seconds]
Lord_of_Life_ is now known as Lord_of_Life
<p_l> MichaelRaskin: true - I just hope to maybe one day get an initiative of moving code from trivial- wrappers (with apropriate license) to inside implementations
<makomo> MichaelRaskin: hm, would that involve *macroexpand-hook* tricks or?
<makomo> maybe i misunderstood
<MichaelRaskin> makomo: no-no
<MichaelRaskin> There is metaenv-macroexpand-1
<MichaelRaskin> It finds macro definition and applies it
buffergn0me has joined #lisp
<makomo> oh, you were talking about AL's macroexpand-1
<makomo> i see
<MichaelRaskin> I am not factoring out these two steps now
<MichaelRaskin> I should sleep already
<makomo> same :-)
<makomo> right, this relies on macro-function as i expected
<makomo> so just being able to list the names stored within the environment object would be enough
<MichaelRaskin> Of course, performance would be much better if I also had with-augmented-environment
<makomo> yeah
<MichaelRaskin> Which compiler almost certainly has inside
<makomo> from what i've seen, hu.dwim.walker takes the approach of having a small independent with-augmented-environment interface and then various implementation-specific parts which just implement the interface
<makomo> i wonder how bitrotten it is and if at all
<MichaelRaskin> Yep, and they support around 1.5 implementations
<makomo> LOL :')
<MichaelRaskin> Look up my local-variable-code-walker talk
<makomo> i remember watching it but i don't rmemeber the details
<MichaelRaskin> I used hu.dwim.walker to move forward quickly, but I have some regrets about its state — and the slides and paper do list them
<makomo> ah, ok
<MichaelRaskin> The state of h.d.w is basically why agnostic lizard is agnostic
<makomo> it would be interesting to see what exactly changed over time in those implementations that caused hu.dwim.walker to become bitrotten
eschatologist has joined #lisp
<makomo> i saw that hdw has some tests. do those not help to prevent bitrot?
<buffergn0me> MichaelRaskin: Is this the talk? https://european-lisp-symposium.org/static/2016/raskin.pdf
<MichaelRaskin> tests only help with bitrot if someone runs them!
<MichaelRaskin> Yes, 2016 talk is local-variable-debug-wrapper
<MichaelRaskin> And indeed unlike ICALP my surname identifies me
lumm has quit [Quit: lumm]
<makomo> jeez, just to run the tests i need a crapload of dependencies
<makomo> one even needs grovelling
<makomo> which failed
<MichaelRaskin> Ahaha
<MichaelRaskin> Well, it is hu.dwim
<MichaelRaskin> They do ship a ton of libraries
<makomo> DWIM indeed :')
<MichaelRaskin> And do use them
<MichaelRaskin> Grovelling is a bit too much maybe
<MichaelRaskin> OK, any reason why I should not shut down my laptop right now and put it into backpack (then fall asleep)?
<makomo> guess not. it's time for me to crash as well :-)
<MichaelRaskin> Good night everyone in approximately comparable timezones.
<makomo> i'll have more questions soon :-)
<makomo> night
<MichaelRaskin> (And good rest of the day to the rest of the world)
MichaelRaskin has quit [Quit: MichaelRaskin]
robdog has joined #lisp
Ukari has joined #lisp
karlosz has quit [Quit: karlosz]
robdog has quit [Ping timeout: 250 seconds]
robdog has joined #lisp
robdog has quit [Ping timeout: 264 seconds]
Ukari has quit [Remote host closed the connection]
robdog has joined #lisp
Ukari has joined #lisp
robdog has quit [Ping timeout: 250 seconds]
Kundry_Wag has joined #lisp
robdog has joined #lisp
robdog has quit [Ping timeout: 264 seconds]
makomo has quit [Ping timeout: 246 seconds]
akater has quit [Ping timeout: 256 seconds]
lavaflow_ has quit [Ping timeout: 245 seconds]
Kundry_Wag has quit [Quit: Leaving...]
robdog has joined #lisp
rozenglass has quit [Remote host closed the connection]
akater has joined #lisp
robdog has quit [Ping timeout: 264 seconds]
_whitelogger has joined #lisp
notzmv has joined #lisp
robdog has joined #lisp
Nomenclatura has joined #lisp
coetry has joined #lisp
<coetry> hello friends, i'm running slime and trying to execute the following function, but always get this error: `Process inferior-lisp<1> stopped (tty input): 21`
robdog has quit [Ping timeout: 264 seconds]
robdog has joined #lisp
robdog has quit [Read error: Connection reset by peer]
loli has quit [Quit: WeeChat 2.3]
<no-defun-allowed> you missed a paren before read-line
<no-defun-allowed> but slime shouldn't lose like that
robdog has joined #lisp
<coetry> no-defun-allowed woops, that was a mistake in my gist
<coetry> i do have a paren in my actual code, and i tested it on a raw sbcl session outside of emacs and it works fine
<coetry> i'm using emacs in my terminal, but i don't think that should be an issue
robdog has quit [Ping timeout: 250 seconds]
ChuckleBerry has joined #lisp
ChuckleBerry has quit [Client Quit]
akoana has left #lisp ["Leaving"]
robdog has joined #lisp
Jackiew2 has joined #lisp
robdog has quit [Ping timeout: 268 seconds]
Jackiew2 has left #lisp ["User left"]
Jackiew2 has joined #lisp
coetry has quit [Quit: Lost terminal]
jonh has left #lisp ["WeeChat 1.9.1"]
robdog has joined #lisp
xkapastel has quit [Quit: Connection closed for inactivity]
robdog has quit [Ping timeout: 250 seconds]
wanz has joined #lisp
joseph2 has joined #lisp
robdog has joined #lisp
robdog has quit [Ping timeout: 264 seconds]
<fiddlerwoaroof> minion: memo for coetry: it's probably a bug, I'd mention it in #slime and possibly open a ticket on Github
Oladon has joined #lisp
<minion> Remembered. I'll tell coetry when he/she/it next speaks.
<fiddlerwoaroof> minion: memo for coetry: one thing I noticed is that you probably should call FINISH-OUTPUT before reading
<minion> Remembered. I'll tell coetry when he/she/it next speaks.
robdog has joined #lisp
karlosz has joined #lisp
robdog has quit [Ping timeout: 246 seconds]
robdog has joined #lisp
robdog has quit [Ping timeout: 264 seconds]
joseph2 has quit [Quit: leaving]
etimmons has left #lisp ["Using Circe, the loveliest of all IRC clients"]
dddddd has quit [Remote host closed the connection]
robdog has joined #lisp
robdog has quit [Ping timeout: 264 seconds]
holycow has joined #lisp
robdog has joined #lisp
robdog_ has joined #lisp
robdog has quit [Ping timeout: 264 seconds]
karlosz has quit [Quit: karlosz]
robdog_ has quit [Ping timeout: 268 seconds]
holycow has quit [Quit: Lost terminal]
akoana has joined #lisp
robdog has joined #lisp
emaczen has joined #lisp
robdog has quit [Ping timeout: 264 seconds]
robdog has joined #lisp
ebrasca has joined #lisp
robdog has quit [Ping timeout: 264 seconds]
robdog has joined #lisp
robdog_ has joined #lisp
robdog has quit [Ping timeout: 264 seconds]
robdog_ has quit [Ping timeout: 250 seconds]
<beach> Good morning everyone!
orivej has joined #lisp
robdog has joined #lisp
marvin2 has quit [Ping timeout: 255 seconds]
<slac-in-the-box> Good Morning, Beach!
robdog has quit [Ping timeout: 264 seconds]
<loke> hello beach!
<loke> Question:
<loke> if I have a compilation unit with (IN-PACKAGE :FOO), and in this compilation unit I have a DEFMACRO form like: (defmacro foo () (intern "BAR"))
<loke> In other words, I have a call to INTERN inside a macro function.
<no-defun-allowed> Sorry, in the current package.
<loke> My question: Is it guaranteed that this symbol BAR will always be interned in the package FOO, regardless of when the macro is expanded?
<no-defun-allowed> It'll be interned in the package it is expanded in.
<beach> loke: What no-defun-allowed says.
<no-defun-allowed> Very odd, my second message went through but not the first.
<loke> I see
<loke> Maxima is full of broken code. :-)
<no-defun-allowed> Maxima is mostly Maclisp-era code from what I've heard.
<beach> loke: Someone should start a project to clean it up.
<loke> beach: Working on it
<p_l> minimal porting and improvement was done since DOE-Macsyma, afaik
<loke> this is part of that cleanup
<beach> Excellent!
<p_l> (no idea about Symbolics Macsyma)
<loke> There is a _lot_ of code assuming that MAXIMA is the current package
<loke> So right now I'm cleaning up all the 140 or so calls to INTERN
<beach> Wow.
<beach> Very good.
<loke> Takes a bit of effort to understand what the purpose of some of these things are...
<loke> (setq .fa. (intern (string-append (second defa) (symbol-name '#:-a))))
<beach> And you don't even have a good refactoring tool since Second Climacs is not working yet. :)
robdog has joined #lisp
<loke> beach: indeed. :-)
<fiddlerwoaroof> Isn't MAXIMA atypical because (at least some of) the developers prefer GCL?
<loke> fiddlerwoaroof: Most of the dvelopmers use SBCL
<loke> fiddlerwoaroof: The developers want to preserve the ability to build on all CL's. Some work was done recently to make it run properly on ABCL too.
<beach> And preferring GCL is one thing. Preferring non-conforming code is another.
<fiddlerwoaroof> Hmm, which was the project that insisted on avoiding CLOS because of GCL
<no-defun-allowed> MaximaOnAndroid will be more fun then with ABCL.
<loke> It can be self-defeating though, since you have distributions shipping Maxima built with GCL and CLISP. Those two being the worst choices.
<loke> fiddlerwoaroof: CLOS is OK. It's not used much.
<beach> fiddlerwoaroof: Wow, that would be some twisted reasoning.
<no-defun-allowed> Not that Maxima on a phone is cool enough, but having the CL in the application instead of being an external binary will be interesting.
<loke> (gcl has clos last time I checked)
<fiddlerwoaroof> I thought it was a relatively recent addition, though
<p_l> fiddlerwoaroof: maxima's history with GCL goes the other way around
<loke> fiddlerwoaroof: My involvement in Maxima is a recent addition too, so I'm not sure what happened in the past.
<p_l> fiddlerwoaroof: a significant driver of GCL development was "to make maxima compile and work on it"
<fiddlerwoaroof> ok, cool, I wonder which project I'm thinking of
<loke> SBCL is by far the best platform for Maxima, and I haven't seen anyone arguing otherwise.
robdog has quit [Ping timeout: 250 seconds]
<fiddlerwoaroof> (if any)
<aeth> fiddlerwoaroof: I'd assume Maxima developers would prefer SBCL (like loke said) because SBCL seems to be the CL for numerical stuff at the moment.
<p_l> So, IIRC, things that weren't used by maxima kinda got less care (which didn't help with the GCL deciding to concentrate on CLtL instead of ANSI)
<loke> fiddlerwoaroof: I do recall some issue with CLOS and Maxima where GCL was mentioned, way back many years ago. Long before I cared about the project.
<fiddlerwoaroof> aeth: yeah, I thought there was something about GCL or clisp because they were GNU projects
<fiddlerwoaroof> /shrug
<loke> fiddlerwoaroof: Possibly. Maxima isn't a GNU projec thtough.
robdog has joined #lisp
<loke> Anyway, following the maxima mailing list shows that there is a very large number of non-lispers, and even non-programmer people using it. That makes that project somewhat different from most other Lisp projects.
ggole has joined #lisp
akoana has left #lisp ["Leaving"]
robdog_ has joined #lisp
robdog has quit [Ping timeout: 268 seconds]
smasta has quit [Ping timeout: 244 seconds]
smasta has joined #lisp
robdog_ has quit [Ping timeout: 250 seconds]
rumbler31 has joined #lisp
rippa has joined #lisp
smasta has quit [Ping timeout: 246 seconds]
rumbler31 has quit [Remote host closed the connection]
dan64 has quit [Ping timeout: 245 seconds]
ltriant has quit [Quit: leaving]
Josh_2 has quit [Remote host closed the connection]
<Nomenclatura> maxima is lispy?
<slac-in-the-box> I chose sbcl because I like typing (save-lisp-and-die); it felt like swearing...
<Nomenclatura> oh yes it is
robdog has joined #lisp
<no-defun-allowed> slac-in-the-box: (sb-ext:sa-l-a-d TAB ...)
<no-defun-allowed> now it's healthy!
trocado has quit [Ping timeout: 244 seconds]
slac-in-the-box has quit [Remote host closed the connection]
<fiddlerwoaroof> I thought it was a relatively recent addition, though
<fiddlerwoaroof> ok, cool, I wonder which project I'm thinking of
<fiddlerwoaroof> (if any)
<fiddlerwoaroof> aeth: yeah, I thought there was something about GCL or clisp because they were GNU projects
<fiddlerwoaroof> /shrug
robdog has quit [Ping timeout: 264 seconds]
<fiddlerwoaroof> does anyone still use poplog?
<fiddlerwoaroof> it sounds interesting
slac-in-the-box has joined #lisp
Oladon has quit [Quit: Leaving.]
robdog has joined #lisp
<slac-in-the-box> weird: slime made exwm crash... started it again, and then slime worked, so I could see that (sb-ext: sa-l-a TAB..) expanded into (sb-ext:save-lisp-and-die) Thanks, btw, it still feels like swearing, but with less typing :)
robdog has quit [Ping timeout: 264 seconds]
robdog_ has joined #lisp
dale has quit [Quit: dale]
<no-defun-allowed> how is salad swearing?
amerlyq has quit [Quit: amerlyq]
<slac-in-the-box> Just feels like when I finish something complicated, I get to tell it to go die :)
Bike has quit [Quit: Lost terminal]
robdog_ has quit [Ping timeout: 264 seconds]
smasta has joined #lisp
phenoble has quit [Quit: ZNC 1.7.0 - https://znc.in]
smasta has quit [Ping timeout: 255 seconds]
phenoble has joined #lisp
smasta has joined #lisp
smasta has quit [Ping timeout: 258 seconds]
robdog has joined #lisp
wanz has quit [Quit: wanz]
wanz has joined #lisp
robdog has quit [Ping timeout: 264 seconds]
_whitelogger has joined #lisp
robdog has joined #lisp
robdog has quit [Ping timeout: 250 seconds]
volkov has joined #lisp
Ukari has quit [Remote host closed the connection]
Ukari has joined #lisp
Ukari has quit [Client Quit]
Ukari has joined #lisp
Ukari has quit [Remote host closed the connection]
Ukari has joined #lisp
Ukari has quit [Remote host closed the connection]
Ukari has joined #lisp
smasta has joined #lisp
Nomenclatura has quit [Quit: q]
smasta has quit [Ping timeout: 255 seconds]
Lycurgus has joined #lisp
robdog has joined #lisp
slyrus__ has joined #lisp
robdog has quit [Ping timeout: 250 seconds]
zmt00 has quit [Read error: Connection reset by peer]
slyrus_ has quit [Ping timeout: 245 seconds]
volkov has quit [Quit: volkov]
<no-defun-allowed> Xach: I saw you have recordings of ILC 2002 on your youtube channel, do you have Peter Norvig's keynote recorded by chance?
jprajzne has joined #lisp
drewes has joined #lisp
schjetne has quit [Ping timeout: 255 seconds]
<aeth> fiddlerwoaroof: ah
<ebrasca> Good morning!
scymtym has quit [Ping timeout: 245 seconds]
smasta has joined #lisp
shrdlu68 has joined #lisp
smasta has quit [Ping timeout: 246 seconds]
drewes has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
drewes has joined #lisp
frodef has joined #lisp
schjetne has joined #lisp
JohnMS_WORK has joined #lisp
drewes has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
drewes has joined #lisp
<splittist> Good morning!
<beach> Hello splittist.
drewes has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
schweers has joined #lisp
drewes has joined #lisp
smasta has joined #lisp
slyrus_ has joined #lisp
karlosz has joined #lisp
nowhere_man has quit [Ping timeout: 258 seconds]
drewes has quit [Client Quit]
Lycurgus has quit [Quit: Exeunt]
smasta has quit [Ping timeout: 246 seconds]
slyrus__ has quit [Ping timeout: 245 seconds]
pierpal has joined #lisp
smasta has joined #lisp
makomo has joined #lisp
scymtym has joined #lisp
smasta has quit [Ping timeout: 245 seconds]
robdog has joined #lisp
<makomo> morning
drewes has joined #lisp
<dim> hi there!
robdog has quit [Ping timeout: 264 seconds]
drewes has quit [Client Quit]
robdog has joined #lisp
ofi has joined #lisp
drewes has joined #lisp
flamebeard has joined #lisp
flamebeard has quit [Remote host closed the connection]
drewes has quit [Client Quit]
robdog_ has joined #lisp
drewes has joined #lisp
juristi has joined #lisp
robdog has quit [Ping timeout: 268 seconds]
zhlyg has joined #lisp
ofi has quit [Remote host closed the connection]
robdog_ has quit [Ping timeout: 250 seconds]
deepestthought42 has joined #lisp
drewes has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
robdog has joined #lisp
shka_ has joined #lisp
robdog_ has joined #lisp
flamebeard has joined #lisp
robdog has quit [Ping timeout: 250 seconds]
smasta has joined #lisp
flamebeard has quit [Ping timeout: 245 seconds]
xkapastel has joined #lisp
drewes has joined #lisp
smasta has quit [Ping timeout: 244 seconds]
robdog_ has quit [Ping timeout: 264 seconds]
deepestthought42 has quit [Read error: Connection reset by peer]
robdog has joined #lisp
wanz has quit [Quit: wanz]
drewes has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
robdog has quit [Ping timeout: 264 seconds]
flamebeard has joined #lisp
flamebeard has quit [Ping timeout: 255 seconds]
robdog has joined #lisp
flamebeard has joined #lisp
flamebeard has quit [Ping timeout: 245 seconds]
robdog has quit [Ping timeout: 264 seconds]
Grauwolf has quit [Remote host closed the connection]
smasta has joined #lisp
Grauwolf has joined #lisp
flamebeard has joined #lisp
robdog has joined #lisp
smasta has quit [Ping timeout: 250 seconds]
flamebeard has quit [Read error: Connection reset by peer]
pierpal has quit [Quit: Poof]
pierpal has joined #lisp
robdog has quit [Ping timeout: 250 seconds]
drewes has joined #lisp
robdog has joined #lisp
jb__ has quit [Ping timeout: 246 seconds]
dddddd has joined #lisp
m00natic has joined #lisp
robdog has quit [Ping timeout: 250 seconds]
milivoj has quit [Ping timeout: 245 seconds]
drewes has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
pierpal has quit [Quit: Poof]
pierpal has joined #lisp
heisig has joined #lisp
schjetne has quit [Ping timeout: 255 seconds]
slac-in-the-box has quit [Ping timeout: 272 seconds]
charh has quit [Ping timeout: 246 seconds]
robdog has joined #lisp
robdog has quit [Ping timeout: 252 seconds]
charh has joined #lisp
lumm has joined #lisp
ggole has quit [Ping timeout: 268 seconds]
robdog has joined #lisp
smasta has joined #lisp
orivej has quit [Ping timeout: 258 seconds]
scymtym has quit [Read error: Connection reset by peer]
robdog has quit [Ping timeout: 264 seconds]
smasta has quit [Ping timeout: 246 seconds]
smasta has joined #lisp
froggey has quit [Ping timeout: 268 seconds]
robdog has joined #lisp
froggey has joined #lisp
scymtym has joined #lisp
drewes has joined #lisp
smasta has quit [Ping timeout: 245 seconds]
wanz has joined #lisp
Aruseus has joined #lisp
robdog has quit [Ping timeout: 250 seconds]
robdog has joined #lisp
lerax has quit [Ping timeout: 255 seconds]
robdog has quit [Ping timeout: 250 seconds]
flamebeard has joined #lisp
robdog has joined #lisp
flamebeard has quit [Ping timeout: 258 seconds]
karlosz has quit [Quit: karlosz]
robdog has quit [Ping timeout: 264 seconds]
marvin2 has joined #lisp
robdog has joined #lisp
robdog has quit [Ping timeout: 250 seconds]
pierpal has quit [Ping timeout: 255 seconds]
robdog has joined #lisp
ggole has joined #lisp
robdog has quit [Ping timeout: 264 seconds]
xkapastel has quit [Quit: Connection closed for inactivity]
robdog has joined #lisp
notzmv has quit [Ping timeout: 255 seconds]
robdog has quit [Ping timeout: 264 seconds]
smasta has joined #lisp
robdog has joined #lisp
trocado has joined #lisp
macdavid313_ has joined #lisp
smasta has quit [Ping timeout: 246 seconds]
smasta has joined #lisp
rotty has quit [Quit: WeeChat 2.3]
robdog_ has joined #lisp
robdog has quit [Ping timeout: 264 seconds]
macdavid313_ has quit [Client Quit]
ofi has joined #lisp
macdavid313 has joined #lisp
macdavid313 has quit [Client Quit]
macdavid313 has joined #lisp
smasta has quit [Ping timeout: 240 seconds]
robdog_ has quit [Ping timeout: 264 seconds]
Zaab1t has joined #lisp
Zaab1t has quit [Remote host closed the connection]
robdog has joined #lisp
drewes has quit [Quit: Textual IRC Client: www.textualapp.com]
robdog_ has joined #lisp
robdog has quit [Ping timeout: 264 seconds]
nirved has quit [Ping timeout: 257 seconds]
Lord_of_Life_ has joined #lisp
robdog_ has quit [Ping timeout: 250 seconds]
Lord_of_Life has quit [Ping timeout: 255 seconds]
Lord_of_Life_ is now known as Lord_of_Life
robdog has joined #lisp
nirved has joined #lisp
ofi has quit [Remote host closed the connection]
nowhere_man has joined #lisp
bgardner has joined #lisp
ofi has joined #lisp
lumm has quit [Quit: lumm]
lumm has joined #lisp
robdog has quit [Ping timeout: 258 seconds]
Lycurgus has joined #lisp
lumm has quit [Client Quit]
lumm has joined #lisp
trocado has quit [Ping timeout: 246 seconds]
_whitelogger has joined #lisp
rozenglass has joined #lisp
macdavid313 has quit [Quit: macdavid313]
<moldybits> thinking out loud. i'm parsing bit stream. i think i'll have pairs of procedures, e.g. parse-int and read-int. the read-int does the stream thing, and parse-int puts it into a tree, and maybe a sequential listing.
<shka_> not the best name for parse-int
<shka_> but ok
<shka_> what else?
<moldybits> i don't have a question :)
<moldybits> i'm trying to translate/understand some C code
robdog has joined #lisp
<moldybits> i'm just starting to get an idea of how it works, and i want to start thinking about what kind of approach to take
<shka_> ok
<moldybits> i did make a horrible macro (--doc-- <expression> :context :read-version-number) and then had it print something like "INT 1010 (2) ; verion 2"
lumm has quit [Remote host closed the connection]
<moldybits> i got really messy and i want to do something less stupid now :)
<Xach> no-defun-allowed: i don't know - youtube search should say
<moldybits> i made that macro so that i didn't have to clutter up the reading code with printing. i just made a call to --doc-- and put the printing code somewhere else
robdog has quit [Ping timeout: 246 seconds]
lumm has joined #lisp
robdog has joined #lisp
jmercouris has joined #lisp
<jmercouris> I have a function, I want to verify that it is invoked with an argument, how can I do that?
<jmercouris> This is within the context of a FiveAM Test
<jmercouris> I don't want to actually invoke the function though, as it has a side effect of sending out an email
<jmercouris> I have some answers in mind, just trying to avoid the XY problem
<jmercouris> s/invoked with an argument/invoked with a lambda list of known values/
amerlyq has joined #lisp
robdog has quit [Ping timeout: 268 seconds]
smasta has joined #lisp
<shka_> jmercouris: mock
<jmercouris> Yes, which library
<_death> jmercouris: a naive answer would be to think about some kind of a "mock".. e.g., using a dry-run variable, or another layer of indirection.. additionally, it is quite possible that a unit test is not the right level for testing this functionality
<shka_> no library, you can do that differently
<jmercouris> lexical shadow with an flet?
pierpal has joined #lisp
<shka_> (defun interface (x) (implementation *mode* x))
<shka_> (defgeneric implementation (mode var))
<shka_> or you can go even further
<jmercouris> you are suggesting I use objects?
<jmercouris> with different modes?
<shka_> jmercouris: or symbols,
<shka_> you can even go furthere
<jmercouris> hmmm
<shka_> (defgeneric invoke (mode function &rest arguments))
<jmercouris> so I would do this for all functions that have side effects I'd like to mock?
<_death> (let ((*mail-backend* (make-instance 'test-backend ...))) ...)
<shka_> jmercouris: yup
<jmercouris> and why would I do this over something like mockingbird?
<_death> at some point (very early point), mocking becomes silly
<jmercouris> I just want to make sure I understand
<shka_> basicly instead of (side-effects-function arg) (invoke #'side-effects-function arg))
<jmercouris> why is mocking silly?
<_death> because unit tests are not worth the layers upon layers of indirection
<shka_> jmercouris: well, this approach is simple and and fairly efficient
<jmercouris> I trust your expertise, but can you please expand?
<jmercouris> is this just from personal experience?
<shka_> and you can even dispatch invoke function on the function argument
<jmercouris> this is my first time writing unit tests in CL
<_death> jmercouris: yes..
smasta has quit [Ping timeout: 272 seconds]
<jmercouris> so let's say I didn't want to make functions
<jmercouris> what if I had a key argument something like :test-mode-p to a function
<jmercouris> would that also be acceptable?
<jmercouris> s/functions/objects and methods
<shka_> i guess
<shka_> yeah, i think that this would do the trick, but it is small scale solution
<jmercouris> yes, because if you have something that calls something that calls something
<shka_> if that's what you need, that's fine, but this approach get's you just so far
<jmercouris> you would need to thread that :test-mode-p through to everything
<jmercouris> through the whole call stack
<shka_> use dynamic variables
<shka_> they are just for that
<jmercouris> use dynamic variables... this statement is too ambiguous
<jmercouris> I don't know what you mean
<jmercouris> I am not so clever, you'll have to be very explicit with me :D
<shka_> (defvar *mode*) (let ((*mode* :test)) (test-logic-goes-here))
<jmercouris> that's what I thought, ok
<shka_> ok
<jmercouris> ok, I think I will use ENVY for this
<jmercouris> thank you for the advice
robdog has joined #lisp
slyrus__ has joined #lisp
pierpal has quit [Quit: Poof]
pierpal has joined #lisp
slyrus_ has quit [Ping timeout: 255 seconds]
robdog has quit [Ping timeout: 250 seconds]
xkapastel has joined #lisp
amerlyq has quit [Quit: amerlyq]
<_death> moldybits: do you know about TRACE? you can also separate these concerns in other ways.. for example have a debugging-mixin that uses :around methods to print results, or you may be satisfied with reading into a structure (the tree) and afterwards using a function to print it
matijja has joined #lisp
selwyn has joined #lisp
slyrus_ has joined #lisp
nowhere_man has quit [Ping timeout: 255 seconds]
Lycurgus has quit [Quit: Exeunt]
Bike has joined #lisp
slyrus__ has quit [Ping timeout: 255 seconds]
q9929t has joined #lisp
robdog has joined #lisp
orivej has joined #lisp
robdog has quit [Ping timeout: 264 seconds]
anewuser has joined #lisp
smasta has joined #lisp
wxie has joined #lisp
smasta has quit [Ping timeout: 246 seconds]
LiamH has joined #lisp
robdog has joined #lisp
arpunk_ has joined #lisp
flamebeard has joined #lisp
arpunk has quit [Ping timeout: 246 seconds]
robdog has quit [Ping timeout: 264 seconds]
flamebeard has quit [Ping timeout: 250 seconds]
flamebeard has joined #lisp
makomo has quit [Ping timeout: 255 seconds]
jmercouris has quit [Remote host closed the connection]
flamebeard has quit [Ping timeout: 250 seconds]
Lycurgus has joined #lisp
Lycurgus has quit [Remote host closed the connection]
dale_ has joined #lisp
makomo has joined #lisp
dale_ is now known as dale
wxie has quit [Ping timeout: 264 seconds]
jmercouris has joined #lisp
<jmercouris> _death: how do you verify if a function has been called without using mocks?
<jmercouris> so I do have a (if (testp) (test-form) (normal-form)) but, now I have a problem
<jmercouris> I invoke the function within a bordeaux thread
<jmercouris> and I need to know the value the function was invoked with
<jmercouris> had I mocked that function with something like mockingbird
<jmercouris> I could verify if a function was called with what arguments
frodef has quit [Ping timeout: 268 seconds]
<_death> I've already said that unit testing may not be the right level.. is it really important to verify that that particular function is called, or is it more about verifying that an email is sent
makomo has quit [Ping timeout: 240 seconds]
<jmercouris> so what, you would write an integration test instead?
<_death> seems more reasonable
<jmercouris> hmm
<jmercouris> more to think about...
smasta has joined #lisp
frodef has joined #lisp
amerlyq has joined #lisp
robdog has joined #lisp
smasta has quit [Ping timeout: 245 seconds]
smasta has joined #lisp
<pjb> jmercouris: are you testing an email system?
<jmercouris> not exactly, I'm using cl-smtp
<jmercouris> I'm just testing that I send a user a recovery password with the correct pin
<pjb> Yes.
<jmercouris> I wanted to verify the functions I wrapped cl-smtp in is getting the correct values, as the ones stored in the database
q9929t1 has joined #lisp
q9929t has quit [Ping timeout: 245 seconds]
q9929t1 is now known as q9929t
robdog has quit [Ping timeout: 264 seconds]
wanz has quit [Quit: wanz]
<pjb> Once upon a time, I wrote tests for a SMTP system, in emacs lisp, where I composed and sent emails, and checked the logs of the smtp server to verify their reception and processing.
smasta has quit [Ping timeout: 255 seconds]
<pjb> An alternative, if you want to check that you sent specific data, and it's well received, is to put an alias to forward the received messages to a script where you can analyse them.
wanz has joined #lisp
<dim> use OpenSTMPd (or any other MTA really) and hack the setup to accept any email and deliver (MDA) to either a directory or even a pipe process; OpenSMTPd makes it very easy to do that in my memory, it's like a 2-lines setup
robdog has joined #lisp
wanz has quit [Quit: wanz]
keep_learning has quit [Remote host closed the connection]
robdog has quit [Ping timeout: 264 seconds]
vaporatorius has joined #lisp
q9929t has quit [Quit: q9929t]
FreeBirdLjj has joined #lisp
smasta has joined #lisp
smasta has quit [Ping timeout: 240 seconds]
jprajzne has quit [Quit: jprajzne]
heisig has quit [Quit: Leaving]
xkapastel has quit [Quit: Connection closed for inactivity]
robdog has joined #lisp
makomo has joined #lisp
sjl_ has joined #lisp
sjl_ has quit [Client Quit]
moldybits has quit [Quit: leaving]
robdog has quit [Ping timeout: 264 seconds]
sjl_ has joined #lisp
zmt00 has joined #lisp
matijja has quit [Ping timeout: 268 seconds]
varjag has quit [Quit: ERC (IRC client for Emacs 25.2.2)]
milivoj has joined #lisp
lumm has quit [Remote host closed the connection]
moldybits has joined #lisp
moldybits has quit [Client Quit]
moldybits has joined #lisp
smasta has joined #lisp
hhdave has joined #lisp
shrdlu68 has quit [Quit: WeeChat 2.3]
smasta has quit [Ping timeout: 250 seconds]
JohnMS_WORK has quit [Quit: KVIrc 4.2.0 Equilibrium http://www.kvirc.net/]
Aruseus has quit [Remote host closed the connection]
robdog has joined #lisp
arpunk_ is now known as arpunk
robdog has quit [Ping timeout: 264 seconds]
moldybits has quit [Quit: leaving]
moldybits has joined #lisp
makomo has quit [Ping timeout: 246 seconds]
wilfredh has joined #lisp
m00natic has quit [Remote host closed the connection]
jmercouris has quit [Remote host closed the connection]
robdog has joined #lisp
aeth has quit [Ping timeout: 244 seconds]
Essadon has joined #lisp
lumm has joined #lisp
smasta has joined #lisp
robdog has quit [Ping timeout: 264 seconds]
makomo has joined #lisp
arpunk has quit [Ping timeout: 255 seconds]
schweers has quit [Ping timeout: 264 seconds]
robdog has joined #lisp
aeth has joined #lisp
Josh_2 has joined #lisp
robdog has quit [Ping timeout: 268 seconds]
arpunk has joined #lisp
smasta has quit [Ping timeout: 245 seconds]
smasta has joined #lisp
DGASAU has joined #lisp
anewuser has quit [Quit: anewuser]
lumm_ has joined #lisp
milivoj has quit [Quit: milivoj]
milivoj has joined #lisp
smasta has quit [Ping timeout: 245 seconds]
lumm has quit [Ping timeout: 245 seconds]
lumm_ is now known as lumm
robdog has joined #lisp
lumm has quit [Client Quit]
lumm has joined #lisp
milivoj has quit [Client Quit]
milivoj has joined #lisp
robdog_ has joined #lisp
xkapastel has joined #lisp
robdog has quit [Ping timeout: 250 seconds]
<moldybits> i want to do something like this: (when (ql:quickload :snake) (snake:start)) ; but the reader complains that the snake package doesn't exists
<makomo> moldybits: yeah, because the package SNAKE doesn't exist until QL:QUICKLOAD has executed
<makomo> but QL:QUICKLOAD is executed at *run-time*, while the reader works at *read-time*
<makomo> forms first have to be read in order to be executed, i.e. read-time happens before run-time
<makomo> you'll have to separate the loading of the system that creates the package and the usage of any of those packages into 2 separate top-level forms
<pjb> (when (ql:quickload :snake) (funcall (or (find-symbol "START""SNAKE") (error "NO snake:start symbol."))))
ebrasca has quit [Ping timeout: 245 seconds]
robdog_ has quit [Ping timeout: 264 seconds]
<makomo> or you can do something like this ^, which will dynamically find the snake:start symbol
<makomo> and i forgot to add, when loading a file, top-level forms are processed sequentially
<makomo> each top-level form is read and then evaluated
rozenglass has quit [Ping timeout: 245 seconds]
quazimodo has quit [Ping timeout: 268 seconds]
gxt has quit [Ping timeout: 245 seconds]
quazimodo has joined #lisp
smasta has joined #lisp
robdog has joined #lisp
<moldybits> pjb: makomo: thanks.
buffergn0me has quit [Remote host closed the connection]
robdog_ has joined #lisp
robdog has quit [Ping timeout: 264 seconds]
robdog_ has quit [Ping timeout: 264 seconds]
smasta has quit [Ping timeout: 250 seconds]
gxt has joined #lisp
varjag has joined #lisp
Lycurgus has joined #lisp
selwyn has quit [Read error: Connection reset by peer]
robdog has joined #lisp
hhdave has quit [Ping timeout: 250 seconds]
robdog has quit [Ping timeout: 264 seconds]
lumm_ has joined #lisp
lumm has quit [Quit: lumm]
makomo has quit [Ping timeout: 250 seconds]
lumm_ is now known as lumm
robdog has joined #lisp
<Grue`> moldybits: use uiop:symbol-call
ravenous_ has joined #lisp
robdog has quit [Ping timeout: 264 seconds]
ravenou__ has joined #lisp
raveno___ has joined #lisp
ravenous_ has quit [Ping timeout: 250 seconds]
raveno___ has quit [Client Quit]
robdog has joined #lisp
ravenou__ has quit [Ping timeout: 258 seconds]
ravenous_ has joined #lisp
lumm has quit [Ping timeout: 245 seconds]
robdog has quit [Ping timeout: 250 seconds]
<macbug> hi, i am new to common lisp and currently trying to find my way. I Wonder if there are any web based forums(i like that form) on the world wide web i can have a look at?
<macbug> ops wrote www two times, sorry.
<moldybits> Grue`: interesting. thanks.
<macbug> i found lispforum, thanks to google.
Josh_2 has quit [Remote host closed the connection]
Josh_2 has joined #lisp
robdog has joined #lisp
karlosz has joined #lisp
<Grue`> macbug: /r/lisp /r/common_lisp on reddit are somewhat active
<Josh_2> but that means going on Reddit, which is never a smart idea
<Grue`> you don't have to go outside of these ;)
makomo has joined #lisp
Arcaelyx has joined #lisp
lumm has joined #lisp
lumm has quit [Client Quit]
<verisimilitude> I know of one, if you're interested, macbug.
robdog has quit [Ping timeout: 252 seconds]
<verisimilitude> Are you familiar with anonymous imageboards?
<Josh_2> oof 4chan
<verisimilitude> Well, that's the most popular English one, sure; that's not what I refer to, though.
<macbug> Grue`: thanls, will have a look.
<macbug> thanks
<Josh_2> that wierd programme or whatever its called
<verisimilitude> Here's a link, macbug: https://www.lainchan.org/%CE%BB/res/12185.html
ravenous_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
lumonom has joined #lisp
<macbug> verisimilitude: thanks, i subscirbed to those even though i hardly never visits reddit.
<macbug> my kbd and me are not friends today
<verisimilitude> I don't understand what you mean by that.
<macbug> i mean thanks :)
<verisimilitude> Alright; you're welcome.
<verisimilitude> If you ever want to make a post instead of just read things, read the rules and look at the post #1 that describes the rules for that board and whatnot.
<verisimilitude> I'll answer any questions you have, but you should PM me those to avoid clutter here.
robdog has joined #lisp
buffergn0me has joined #lisp
robdog has quit [Ping timeout: 268 seconds]
nalkri has joined #lisp
jbayardo has joined #lisp
jbayardo has quit [Max SendQ exceeded]
jbayardo has joined #lisp
ravenous_ has joined #lisp
jb__ has joined #lisp
nowhere_man has joined #lisp
specbot has quit [Ping timeout: 268 seconds]
minion has quit [Ping timeout: 268 seconds]
karlosz has quit [Quit: karlosz]
minion has joined #lisp
specbot has joined #lisp
jb____ has joined #lisp
Adamclisi has quit [Ping timeout: 244 seconds]
jb__ has quit [Ping timeout: 272 seconds]
hiroaki_ has joined #lisp
Lycurgus has quit [Quit: Exeunt]
terpri has quit [Ping timeout: 250 seconds]
terpri_ has joined #lisp
robdog has joined #lisp
karlosz has joined #lisp
karlosz has quit [Client Quit]
xkapastel has quit [Quit: Connection closed for inactivity]
aeth has quit [Ping timeout: 246 seconds]
robdog has quit [Ping timeout: 268 seconds]
aeth has joined #lisp
jb____ has quit [Ping timeout: 272 seconds]
jb__ has joined #lisp
robdog has joined #lisp
rotty has joined #lisp
MichaelRaskin has joined #lisp
robdog has quit [Ping timeout: 250 seconds]
robdog has joined #lisp
lumonom has quit [Quit: WeeChat 1.4]
jb__ has quit [Ping timeout: 245 seconds]
robdog has quit [Ping timeout: 264 seconds]
jb__ has joined #lisp
lucasb has joined #lisp
jb____ has joined #lisp
Zaab1t has joined #lisp
jb__ has quit [Ping timeout: 268 seconds]
makomo has quit [Ping timeout: 246 seconds]
robdog has joined #lisp
lumm has joined #lisp
robdog_ has joined #lisp
makomo has joined #lisp
karlosz has joined #lisp
karlosz has quit [Remote host closed the connection]
lumm has quit [Client Quit]
igemnace has quit [Quit: WeeChat 2.4]
robdog has quit [Ping timeout: 250 seconds]
lumm has joined #lisp
orivej has quit [Ping timeout: 240 seconds]
orivej has joined #lisp
ggole has quit [Quit: Leaving]
ravenous_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
rozenglass has joined #lisp
robdog_ has quit [Ping timeout: 264 seconds]
lumm has quit [Ping timeout: 258 seconds]
orivej has quit [Ping timeout: 240 seconds]
lumm has joined #lisp
dtornabene has joined #lisp
robdog has joined #lisp
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
lumm has quit [Ping timeout: 257 seconds]
Zaab1t has quit [Quit: bye bye friends]
makomo has quit [Ping timeout: 250 seconds]
robdog_ has joined #lisp
frodef has quit [Ping timeout: 246 seconds]
robdog has quit [Ping timeout: 264 seconds]
robdog_ has quit [Ping timeout: 264 seconds]
hiroaki_ has quit [Ping timeout: 258 seconds]
ravenous_ has joined #lisp
jb____ has quit [Ping timeout: 255 seconds]
robdog has joined #lisp
ravenous_ has quit [Client Quit]
abhixec has joined #lisp
q3d has joined #lisp
jb__ has joined #lisp
lumm has joined #lisp
robdog has quit [Ping timeout: 258 seconds]
xkapastel has joined #lisp
amerlyq has quit [Ping timeout: 255 seconds]
<moldybits> :around and friends are really nice ...
scymtym has quit [Ping timeout: 264 seconds]
amerlyq has joined #lisp
lumm has quit [Quit: lumm]
lumm has joined #lisp
milivoj_ has joined #lisp
lumm has quit [Client Quit]
lumm has joined #lisp
milivoj has quit [Ping timeout: 250 seconds]
milivoj_ is now known as milivoj
nicdev has quit [Ping timeout: 268 seconds]
lavaflow has joined #lisp
nalkri has quit [Ping timeout: 245 seconds]
Ukari has quit [Remote host closed the connection]
lumm has quit [Remote host closed the connection]
lumm has joined #lisp
Lycurgus has joined #lisp
mathrick_ has joined #lisp
makomo has joined #lisp
mathrick has quit [Ping timeout: 250 seconds]
Denommus has joined #lisp
lumm has quit [Quit: lumm]
lumm has joined #lisp
dmiles has quit [Ping timeout: 244 seconds]
logicmoo has joined #lisp
orivej has joined #lisp
Denommus` has joined #lisp
Denommus has quit [Ping timeout: 258 seconds]
<moldybits> i wish i could hide the :around definitions easily
<pjb> Why do you want to hide them?
robdog has joined #lisp
milivoj has quit [Quit: milivoj]
<moldybits> i have them in this sequence: read-version read-version:around read-version-major read-version-major:around read-version-minor read-version-minor:around
<pjb> Why do you write :around methods?
<moldybits> i want to separate the (tree building and listing printing) from the (bit reading & constructing symbol tables etc.)
<moldybits> the former i put into the :around methods
<pjb> So you have a part where you build-tree, and a part where you read-bits. Why do you use the same name for those different parts?
robdog_ has joined #lisp
robdog has quit [Ping timeout: 250 seconds]
karlosz has joined #lisp
karlosz has quit [Client Quit]
quazimodo has quit [Ping timeout: 240 seconds]
<moldybits> i guess i want to pretend they're running in parallel.
robdog_ has quit [Ping timeout: 250 seconds]
<moldybits> like the read part is doing its thing while the tree building part is observing from afar
robdog has joined #lisp
robdog has quit [Ping timeout: 264 seconds]
<moldybits> hm. maybe i'm trying to do too many things at once.
ironChicken has joined #lisp
frodef has joined #lisp
robdog has joined #lisp
<ironChicken> i'm trying to ql:quickload my own new project. it has a defsystem which includes `:components ((:module :src :components ((:file "package"))))` but when i try to quickload it fails with "Failed to find the TRUENAME of /tmp/src/package.lisp"
<ironChicken> any ideas why it's looking in /tmp?
robdog has quit [Ping timeout: 264 seconds]
akater has quit [Ping timeout: 256 seconds]
dtornabene has quit [Remote host closed the connection]
akater has joined #lisp
q3d has quit [Ping timeout: 256 seconds]
robdog has joined #lisp
smasta has joined #lisp
lumm has quit [Read error: Connection reset by peer]
lumm has joined #lisp
<pfdietz> PuercoPop: glad you like it :)
robdog has quit [Ping timeout: 264 seconds]
<pfdietz> fiddlerwoaroof: I suggest using an SMT solver like Z3. It's easy to call out to Z3 from Common Lisp, since the standard SMT syntax is very lispy (with one annoying exception, the printing of empty lists).
akoana has joined #lisp
Denommus` has quit [Ping timeout: 258 seconds]
pierpal has quit [Ping timeout: 244 seconds]
stux|RC has quit [Read error: Connection reset by peer]
aindilis has quit [Read error: Connection reset by peer]
<Xach> ironChicken: are you by any chance using C-c C-c to compile your defsystem form?
<Xach> ironChicken: or otherwise compiling it through slime?
lnostdal has quit [Ping timeout: 244 seconds]
smasta has quit [Ping timeout: 246 seconds]
smasta has joined #lisp
lnostdal has joined #lisp
lumm has quit [Quit: lumm]
robdog has joined #lisp
smasta has quit [Ping timeout: 250 seconds]
Lycurgus has quit [Quit: Exeunt]
aindilis has joined #lisp
robdog_ has joined #lisp
smasta has joined #lisp
robdog has quit [Ping timeout: 264 seconds]
MichaelRaskin has quit [Quit: MichaelRaskin]
<ironChicken> Xach: yes, it was with slime via C-c C-c
<jasom> ironChicken: C-C C-k instead should work then
<jasom> ironChicken: asdf cares about *where* the asd file is, and C-c C-c creates a temporary file with just the single form you are compiling; operations that work over the entire file (such as C-c C-k) should work.
robdog_ has quit [Ping timeout: 264 seconds]
<ironChicken> ah cool. i also tried in a plain sbcl repl and that worked too
<ironChicken> jasom: thanks for the explanation
Bike has quit []
<jasom> FYI at the repl you should use asdf:load-asd rather than cl:load for loading .asd files (it's only corner cases that make a difference). Recent versions of slime are smart enough to do that for you.
akoana has left #lisp [#lisp]
Arcaelyx has quit [Ping timeout: 250 seconds]
scymtym has joined #lisp
akoana has joined #lisp
Arcaelyx has joined #lisp
robdog has joined #lisp
akoana has left #lisp [#lisp]
q3d has joined #lisp
akoana has joined #lisp
robdog has quit [Ping timeout: 264 seconds]
robdog has joined #lisp
lavaflow has quit [Ping timeout: 245 seconds]
nicdev has joined #lisp
Adamclisi has joined #lisp
moei has quit [Quit: Leaving...]
robdog has quit [Ping timeout: 264 seconds]
smasta has quit [Ping timeout: 244 seconds]
smasta has joined #lisp
lavaflow has joined #lisp
<fiddlerwoaroof> pfdietz: what does Z3 give me? it will tell me if the boolean conditions are satisfiable, but will it simplify them for me? and, does it expect its input to be in CNCF?
<fiddlerwoaroof> I've been really interested in learning about Z3 for a bunch of reasons, but I don't really understand what its use-cases are
LiamH has quit [Quit: Leaving.]
robdog has joined #lisp
tfb has quit [Ping timeout: 250 seconds]
tfb has joined #lisp
orivej has quit [Ping timeout: 255 seconds]
robdog_ has joined #lisp
robdog has quit [Ping timeout: 264 seconds]
lucasb has quit [Quit: Connection closed for inactivity]
amerlyq has quit [Quit: amerlyq]
robdog has joined #lisp
robdog_ has quit [Ping timeout: 250 seconds]
<moldybits> pjb: thanks for the questions, btw. got me thinking and put me on a more productive track ... for now. :)
varjag has quit [Ping timeout: 245 seconds]
robdog has quit [Ping timeout: 250 seconds]
<pjb> moldybits: good.
Aruseus has joined #lisp
karlosz has joined #lisp
q3d has quit [Ping timeout: 256 seconds]
smasta has quit [Ping timeout: 244 seconds]
plathrop has quit [Ping timeout: 258 seconds]
Essadon has quit [Quit: Qutting]
plathrop has joined #lisp
ltriant has joined #lisp
Bike has joined #lisp
emaczen has quit [Ping timeout: 264 seconds]
frodef has quit [Ping timeout: 245 seconds]
masterdonx has quit [Ping timeout: 246 seconds]
robdog has joined #lisp
zhlyg has quit [Ping timeout: 272 seconds]
masterdonx has joined #lisp