p_l changed the topic of #lisp to: Common Lisp, the #1=(programmable . #1#) programming language | <https://irclog.tymoon.eu/freenode/%23lisp> <https://irclog.whitequark.org/lisp> <http://ccl.clozure.com/irc-logs/lisp/> | ASDF 3.3.4
republican_devil has joined #lisp
republican_devil is now known as nationalist_devl
<nationalist_devl> anyone doing big data anlytics with lisp?
<aeth> these are probably most likely to be "secret" Lisp projects, rather then publicized ones
Inline has quit [Ping timeout: 272 seconds]
<aeth> grumpyvegetable, ldb: okay, then that is a lot like DESCRIBE except if DESCRIBE locked you into a mode
<aeth> well, help() itself locks you into a mode where you just type "str", but help(str) just describes the string class (that was its example) at the REPL
<aeth> grumpyvegetable: If it's just generated from docstrings, then it's very similar to CL's describe, which is also a language with docstrings
<aeth> Afaik, Python basically took the docstrings from CL
<aeth> DESCRIBE on built-ins isn't very good. Someone needs to write some high-quality, public domain documentation that every implementation can just use for those IMO.
<aeth> Some libraries might have comparable-to-Python's-help() levels of detail, though
<Bike> shouldn't it be documentation rather than describe
sjl has joined #lisp
heisig has joined #lisp
heisig has quit [Remote host closed the connection]
<HiRE> I wonder how well CL would run a rpi 4 b+
<HiRE> I have one sitting here
<HiRE> doing nothing
<HiRE> deployed one for a pihole, I should make this one into a home automation thing
<aeth> Well, implementations are most full featured on x86-64, like most niche languages whose niches don't include mobile apps.
davepdotorg has joined #lisp
<aeth> So you might have some issues on ARM, although ARM64 will probably avoid some of those
<HiRE> pi 4b+ is arm 64
<HiRE> seems SBCL has an older compiler available.
<HiRE> 1.4.2
<aeth> iirc, the default OS itself for Pi's is still 32-bit
<HiRE> oh thats crap
<HiRE> I'll need to look into that
<aeth> A lot of people in the C world have the attitude that if it's not addressing > 4 GB RAM, then 32-bit is OK... but in the CL world, 64-bit has advantages that don't really matter to C programmers, like fewer tagged types
<HiRE> could you elaborate? This is something I've never had to consider.
<HiRE> I mean I understand the C argument
<HiRE> but fewer tagged types im not following
orivej has quit [Ping timeout: 246 seconds]
<p_l> HiRE: it's perfectly possible to run 64bit on Pi, it's just that Raspbian is 32bit as it wants to keep compatibility with first two versions
<aeth> In the typical CL implementation, types are tagged. That is, if they don't fit in a word with the type tag included, then they have to be heap allocated even when they wouldn't be in a fully-static language like C. This is "boxing", a term originally from Java iirc.
<HiRE> oh tagged types are like boxing - makes sense. If it doesnt fit tag it and heap allocate it that way we know what it is.
<aeth> A 32-bit implementation boxes single-floats. A 64-bit implementation only boxes double-floats.
<p_l> HiRE: it's easier to fit more tags while keeping usable data when your word size is 64bit than 32bit
<HiRE> interesting...I thought floats would fit in a 32 bit register
<HiRE> I guess you have arbitrary precision to worry about
<Bike> the point is that tags mean you only have, say, 30 bits to work with
<Bike> so obviously you can't fit a 32 bit float in there
<aeth> 64-bit SBCL (at least on x86-64) uses 1 bit to tag a fixnum so its non-bignum integers can express 63 bit signed bytes or 62 bit unsigned bytes. This is the theoretical maximum of expressiveness for this implementation approach. For 32-bit, the maximum is 30-bit unsigned and 31-bit signed, but even SBCL doesn't do this.
<HiRE> ah yes, you need a few bits for the tag.
davepdotorg has quit [Ping timeout: 246 seconds]
<aeth> So when you're losing like 4-5 bits, it suddenly matters a lot... 32-bit implementations have tiny fixnums
<HiRE> What would be the need for SBCL to use such a large tag in 32 bit?
<aeth> And limits of everything are usually expressed in unsigned (the top half of) fixnums, e.g. array lengths, etc...
<aeth> HiRE: I'm guessing that 32-bit is considered "legacy" (since SBCL is x86-first) so they just never bothered to optimize the tag bit to 1 like in 64-bit, but I'm not sure if there's a more serious blocker.
<aeth> even still, (- (expt 2 30) 1) is tiny while (- (expt 2 62) 1) is probably good enough for most people
<HiRE> yeah the other thing I am contending with is I probably wont need arbitrary precision
<HiRE> my use would be something dumb like automating watering my garden
<aeth> Oh, and since the limits of things depend on fixnums, you can't fill 4 GB of RAM in one array, since arrays have limits.
<aeth> You'd probably need 4+ arrays
<HiRE> CL would be nice because I could just create a DSL for watering plants and modify it on the fly.
<p_l> HiRE: Common Lisp implementations using tagged 32bit words is why X11 IDs are 29 bit
<HiRE> this is interesting. Im sure that is in the grimoire of SBCL somewhere
orivej has joined #lisp
<p_l> more X11. At the time when such a decision was made, I think the latest was CMUCL, then-recently renamed from SPICE Lisp
<HiRE> and SBCL is a direct decendent of CMUCL right
efm has joined #lisp
<no-defun-allowed> Yes.
random-nick has quit [Ping timeout: 256 seconds]
space_otter has quit [Remote host closed the connection]
Josh_2 has joined #lisp
karlosz has joined #lisp
Josh_2 has quit [Remote host closed the connection]
EvW has quit [Remote host closed the connection]
EvW1 has joined #lisp
bitmapper has quit [Ping timeout: 255 seconds]
Necktwi has quit [Read error: Connection reset by peer]
ldb has quit [Ping timeout: 246 seconds]
Necktwi has joined #lisp
karlosz has quit [Quit: karlosz]
lemoinem has quit [Read error: Connection reset by peer]
lemoinem has joined #lisp
_whitelogger has joined #lisp
orivej has quit [Ping timeout: 240 seconds]
torbo has quit [Remote host closed the connection]
ldb has joined #lisp
bilegeek has joined #lisp
ldb has quit [Ping timeout: 240 seconds]
orivej has joined #lisp
akoana has left #lisp ["Leaving"]
ldb has joined #lisp
gaqwas has quit [Ping timeout: 258 seconds]
gaqwas has joined #lisp
_whitelogger has joined #lisp
davepdotorg has quit [Ping timeout: 272 seconds]
KDr21 has joined #lisp
KDr2 has quit [Ping timeout: 255 seconds]
<HiRE> 2 articles on CL on hacker news today
Involuntary has joined #lisp
ldb has quit [Quit: leaving]
Jeanne-Kamikaze has quit [Read error: Connection reset by peer]
shifty has joined #lisp
Involuntary has quit [Client Quit]
Jeanne-Kamikaze has joined #lisp
Lycurgus has quit [Ping timeout: 250 seconds]
semz has quit [Ping timeout: 256 seconds]
earl-ducaine has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
davepdotorg has joined #lisp
karlosz has joined #lisp
nowhere_man has quit [Read error: Connection reset by peer]
shangul has joined #lisp
semz has joined #lisp
semz has quit [Changing host]
semz has joined #lisp
bilegeek has quit [Quit: Leaving]
karlosz has quit [Quit: karlosz]
EvW1 has quit [Ping timeout: 272 seconds]
ebzzry has joined #lisp
shangul has quit [Ping timeout: 250 seconds]
space_otter has joined #lisp
shangul has joined #lisp
KDr21 has quit [Remote host closed the connection]
<oni-on-ion> ohhh
<oni-on-ion> my favorite is "lisp, jazz, aikido"
KDr21 has joined #lisp
KDr21 has quit [Remote host closed the connection]
KDr21 has joined #lisp
igemnace has joined #lisp
alfonsox has joined #lisp
ebzzry has quit [Read error: Connection reset by peer]
ebzzry has joined #lisp
orivej has quit [Ping timeout: 246 seconds]
Jeanne-Kamikaze has quit [Quit: Leaving]
krid has quit [Ping timeout: 240 seconds]
ebzzry has quit [Read error: Connection reset by peer]
pilne has quit [Quit: Now if you will excuse me, I have a giant ball of oil to throw out my window]
<beach> Good morning everyone!
Bike has quit [Quit: Lost terminal]
Josh_2 has joined #lisp
<HiRE> morning beach
Bourne has quit [Remote host closed the connection]
ebzzry has joined #lisp
<beach> HiRE: A friend of mine says he always installs Ubuntu on the Raspberry Pi.
<HiRE> Isnt raspian just a *buntu?
<beach> I am afraid I don't know. He meant 64-bit Ubuntu though.
<HiRE> ah yes I will have to try it
<HiRE> I thought it would be a fun more simple project to try to automate something in my house before departing on a long journey to writing a library
<HiRE> especially since I have the hardware sitting here doing nothing
<beach> I had hoped the ARM architecture would be much simpler than that of x86-64, in which case I would have written a code generator for SICL, targeting the ARM, but I got discouraged reading the ARM documentation.
<HiRE> ARM is MIPS right?
<no-defun-allowed> Raspbian is based off Debian.
<no-defun-allowed> It also diverges enough that Debian packages are unlikely to work on Raspbian.
<beach> HiRE: I don't think so.
<no-defun-allowed> No, ARM is a separate architecture. Do you mean RISC?
<HiRE> In my compiler classes I never got to code generation implementation. By the time I hit grad school I was off in mathy computational geometry land :)
<HiRE> RISC*
<HiRE> yes
<HiRE> sorry
<no-defun-allowed> I'm sure there's less instructions than x86_64, but there's still quite many.
<HiRE> would explain why SBCL hasnt updated their ARM64/ARM ports in a long time
<beach> no-defun-allowed: "fewer". Less stuff, fewer things.
aeth has quit [Ping timeout: 260 seconds]
<HiRE> perhaps its just significantly more difficult
<no-defun-allowed> beach: Thanks, good point.
<HiRE> I did some RISC work in my architecture classes and while it was contrived I found the assembly more pleasurable to write
<HiRE> optimization however, is probably another thing entirely.
aeth has joined #lisp
<beach> From reading the documentation, I believe the ARM just barely qualifies as RISC.
<beach> Add to that the multiple encoding schemes for the instructions.
ebzzry has quit [Remote host closed the connection]
nowhere_man has joined #lisp
shifty has quit [Ping timeout: 246 seconds]
gravicappa has joined #lisp
gxt has joined #lisp
g0d_shatter has joined #lisp
<nationalist_devl> sounds risky
_whitelogger has joined #lisp
montxero has joined #lisp
vlatkoB has joined #lisp
gko has joined #lisp
v88m has quit [Ping timeout: 240 seconds]
nationalist_devl has quit [Quit: Lost terminal]
Bourne has joined #lisp
ebzzry has joined #lisp
troydm has joined #lisp
aeth has quit [Ping timeout: 246 seconds]
aoh__ has left #lisp [#lisp]
aeth has joined #lisp
ebzzry has quit [Read error: Connection reset by peer]
narimiran has joined #lisp
aeth has quit [Ping timeout: 240 seconds]
ebzzry has joined #lisp
dale has quit [Quit: My computer has gone to sleep]
aeth has joined #lisp
dddddd has quit [Ping timeout: 265 seconds]
ebzzry has quit [Read error: Connection reset by peer]
_whitelogger has joined #lisp
heisig has joined #lisp
alfonsox has quit [Ping timeout: 240 seconds]
karlosz has joined #lisp
alfonsox has joined #lisp
orivej has joined #lisp
flamebeard has joined #lisp
Cymew has joined #lisp
shka_ has quit [Ping timeout: 250 seconds]
shka_ has joined #lisp
ArthurStrong has joined #lisp
Duuqnd has joined #lisp
megalography has joined #lisp
shka_ has quit [Read error: Connection reset by peer]
ukari has quit [Remote host closed the connection]
ebzzry has quit [Read error: Connection reset by peer]
ukari has joined #lisp
shka_ has joined #lisp
ebzzry has joined #lisp
Lycurgus has joined #lisp
space_otter has quit [Remote host closed the connection]
Josh_2 has quit [Ping timeout: 250 seconds]
HDurer has quit [Ping timeout: 255 seconds]
HDurer has joined #lisp
shifty has joined #lisp
jprajzne has joined #lisp
alfonsox has quit [Ping timeout: 246 seconds]
shifty has quit [Ping timeout: 250 seconds]
chip2n_ has quit [Quit: ZNC 1.7.5 - https://znc.in]
chip2n has joined #lisp
shifty has joined #lisp
karlosz has quit [Quit: karlosz]
shifty has quit [Ping timeout: 250 seconds]
shifty has joined #lisp
shifty has quit [Ping timeout: 250 seconds]
nowhere_man has quit [Ping timeout: 272 seconds]
montxero has quit [Read error: Connection reset by peer]
oxum has quit [Remote host closed the connection]
amerlyq has joined #lisp
nostoi has joined #lisp
lnostdal_ has quit [Remote host closed the connection]
gmeister has joined #lisp
oxum has joined #lisp
hhdave has joined #lisp
varjag has joined #lisp
oxum has quit [Ping timeout: 265 seconds]
hhdave_ has joined #lisp
hhdave has quit [Ping timeout: 250 seconds]
hhdave_ is now known as hhdave
oxum has joined #lisp
alfonsox has joined #lisp
ljavorsk has joined #lisp
oxum has quit [Ping timeout: 250 seconds]
igemnace has quit [Remote host closed the connection]
schweers has joined #lisp
oxum has joined #lisp
oxum has quit [Ping timeout: 240 seconds]
oxum has joined #lisp
Lycurgus has quit [Remote host closed the connection]
jprajzne has quit [Quit: Leaving.]
oxum has quit [Remote host closed the connection]
oxum has joined #lisp
ebzzry has quit [Read error: Connection reset by peer]
nostoi has quit [Quit: Verlassend.]
jprajzne has joined #lisp
oxum_ has joined #lisp
simplegauss has quit [Ping timeout: 256 seconds]
simplegauss has joined #lisp
oxum__ has joined #lisp
oxum has quit [Ping timeout: 246 seconds]
oxum__ has quit [Client Quit]
oxum_ has quit [Ping timeout: 256 seconds]
g0d_shatter has quit [Quit: Leaving]
random-nick has joined #lisp
gravicappa has quit [Ping timeout: 240 seconds]
oxum has joined #lisp
ebzzry has joined #lisp
ArthurStrong has quit [Quit: leaving]
ebzzry has quit [Read error: Connection reset by peer]
ebzzry has joined #lisp
gaqwas has quit [Ping timeout: 246 seconds]
alfonsox has quit [Ping timeout: 256 seconds]
ljavorsk_ has joined #lisp
gaqwas has joined #lisp
_jrjsmrtn has joined #lisp
ljavorsk has quit [Ping timeout: 256 seconds]
ljavorsk_ has quit [Remote host closed the connection]
ljavorsk_ has joined #lisp
__jrjsmrtn__ has quit [Ping timeout: 255 seconds]
amnesic1101 has joined #lisp
elazul has joined #lisp
davepdotorg has quit [Remote host closed the connection]
davepdotorg has joined #lisp
ebzzry has quit [Read error: Connection reset by peer]
alfonsox has joined #lisp
shifty has joined #lisp
shifty has quit [Ping timeout: 246 seconds]
shifty has joined #lisp
shifty has quit [Ping timeout: 265 seconds]
shifty has joined #lisp
v_m_v has joined #lisp
shifty has quit [Ping timeout: 246 seconds]
shifty has joined #lisp
ggole has joined #lisp
ebzzry has joined #lisp
amnesic1101 has quit [Read error: Connection reset by peer]
shifty has quit [Ping timeout: 240 seconds]
shifty has joined #lisp
ljavorsk_ has quit [Remote host closed the connection]
oxum_ has joined #lisp
oxum has quit [Read error: Connection reset by peer]
prince1 has quit [Ping timeout: 250 seconds]
oxum_ has quit [Client Quit]
shifty has quit [Ping timeout: 240 seconds]
ljavorsk has joined #lisp
shifty has joined #lisp
amnesic1101 has joined #lisp
amnesic1101 has quit [Read error: Connection reset by peer]
isBEKaml has joined #lisp
ebzzry has quit [Remote host closed the connection]
koenig has quit [Ping timeout: 272 seconds]
koenig has joined #lisp
ljavorsk_ has joined #lisp
oxum has joined #lisp
ljavorsk has quit [Ping timeout: 246 seconds]
cosimone has joined #lisp
amerlyq has quit [Read error: Connection reset by peer]
oxum has quit [Ping timeout: 240 seconds]
amerlyq has joined #lisp
jmercouris has joined #lisp
oxum has joined #lisp
gko_ has joined #lisp
Lord_of_Life_ has joined #lisp
Lord_of_Life has quit [Ping timeout: 240 seconds]
Lord_of_Life_ is now known as Lord_of_Life
bitmapper has joined #lisp
ebzzry has joined #lisp
shifty has quit [Ping timeout: 246 seconds]
shifty has joined #lisp
oxum has quit [Ping timeout: 256 seconds]
elazul has quit [Quit: Leaving]
shifty has quit [Ping timeout: 250 seconds]
Lord_Nightmare has quit [Quit: ZNC - http://znc.in]
Lord_Nightmare has joined #lisp
prince1 has joined #lisp
dlowe_ has left #lisp [#lisp]
dlowe has joined #lisp
amerlyq has quit [Quit: amerlyq]
prince1 has quit [Ping timeout: 250 seconds]
jeosol has quit [Remote host closed the connection]
X-Scale` has joined #lisp
X-Scale has quit [Ping timeout: 256 seconds]
X-Scale` is now known as X-Scale
cosimone has quit [Quit: Terminated!]
oxum has joined #lisp
oxum has quit [Client Quit]
even4void has joined #lisp
even4void has quit [Client Quit]
isBEKaml has quit [Quit: leaving]
gravicappa has joined #lisp
v0|d has joined #lisp
ebzzry has quit [Remote host closed the connection]
Bike has joined #lisp
davepdot_ has joined #lisp
notzmv has quit [Read error: Connection reset by peer]
davepdotorg has quit [Ping timeout: 246 seconds]
<alfonsox> hi all
<alfonsox> how do you guys convert string to float ?
<flip214> alfonsox: there's a library called PARSE-FLOAT, available via quicklisp
<MichaelRaskin> There is parse-number library
jmercouris has quit [Remote host closed the connection]
davepdot_ has quit [Remote host closed the connection]
<MichaelRaskin> Oh, didn't know parse-float exists
<alfonsox> common-lisp, emacs, slime
davepdotorg has joined #lisp
<alfonsox> can't find parse-float
<alfonsox> I created simple program to calculate simple-interest
<alfonsox> (defun calculate-interest (principle rate year)
<alfonsox> (/ (* principle rate year) 100))
<alfonsox> and save it in simple-interest.lisp
<alfonsox> using buildapp i have created native executable
<alfonsox> when i tried to run programm like this
<splittist> principal
<alfonsox> $ ./simpleinterest 1000 15.0 1
tourjin has joined #lisp
<alfonsox> oops sorry for type
<alfonsox> error
<alfonsox> (CALCULATE-INTEREST ("./simpleinterest" "1000" "15" "1")) [external]
<alfonsox> I think it may be treaing values as string
<MichaelRaskin> It definitely is
<MichaelRaskin> And it also gives you argument 0, how the program name was specified
<splittist> alfonsox: what does your MAIN function look like? What does it do to ARGV? Are you doing this to explore building command-line apps, or common lisp?
cosimone has joined #lisp
<alfonsox> command line apps
<alfonsox> buildapp --load ../fun/simple-interest.lisp --entry calculate-interest --output simpleinterest
<alfonsox> it has created a binary file with name
<alfonsox> simple-interest
<alfonsox> ./simpleinterest 1000 15 1
<alfonsox> I can run programm inside slime
<splittist> right. Knowing nothing about buildapp, I imagine it is going to arrange to call your entry function with a list of strings, being the command-line arguments the executable was called with (including the name of the executable as the first element of the list). CALCULATE-INTEREST, however, does not accept such a list.
<alfonsox> this is the complete error i am getting
<alfonsox> How do you guys created executable file using common lisp?
<alfonsox> I am following this > https://www.cliki.net/Creating%20Executables
oxum has joined #lisp
<splittist> It is your responsibility as the application writer to give meaning to that list of strings. Looking at the buildapp web page, this seems correct. (This is also how every other language does things, as far as I know.)
X-Scale` has joined #lisp
X-Scale has quit [Ping timeout: 258 seconds]
X-Scale` is now known as X-Scale
<phoe> alfonsox: I usually use Shinmera's deploy, https://github.com/Shinmera/deploy
<phoe> You are running into type errors - the Unix shell passes arguments as strings, and you need to turn them into numbers if you want numbers
<phoe> use the standard function PARSE-INTEGER if you want to get an integer from a string
LiamH has joined #lisp
<alfonsox> ok
Duuqnd has quit [Ping timeout: 240 seconds]
<phoe> also, this kind of sounds like #clschool material
cosimone has quit [Quit: Quit.]
dddddd has joined #lisp
shifty has joined #lisp
cosimone has joined #lisp
asarch has joined #lisp
tourjin has quit [Ping timeout: 246 seconds]
shifty has quit [Ping timeout: 246 seconds]
shifty has joined #lisp
prince1 has joined #lisp
citizenajb has quit [Ping timeout: 245 seconds]
trittweiler_ has joined #lisp
prince1 has quit [Ping timeout: 246 seconds]
trittweiler_ has left #lisp [#lisp]
tcr has joined #lisp
gmeister has quit [Quit: WeeChat 2.4]
dale_ has joined #lisp
dale_ is now known as dale
mfiano2 has quit [Remote host closed the connection]
v_m_v has quit [Remote host closed the connection]
lnostdal has joined #lisp
Lycurgus has joined #lisp
alfonsox has quit [Ping timeout: 246 seconds]
beach has quit [Remote host closed the connection]
beach has joined #lisp
tephra_ has joined #lisp
shangul has quit [Remote host closed the connection]
shangul has joined #lisp
v_m_v has joined #lisp
ukari has quit [Remote host closed the connection]
shifty has quit [Ping timeout: 256 seconds]
shifty has joined #lisp
ukari has joined #lisp
shka_ has quit [Ping timeout: 246 seconds]
v_m_v_ has joined #lisp
flamebeard has quit []
shka_ has joined #lisp
v_m_v__ has joined #lisp
asarch has quit [Quit: Leaving]
v_m_v has quit [Read error: Connection reset by peer]
slyrus_ has joined #lisp
HiRE has quit [Ping timeout: 256 seconds]
v_m_v_ has quit [Ping timeout: 250 seconds]
HiRE has joined #lisp
ljavorsk_ has quit [Remote host closed the connection]
oxum has quit [Quit: Leaving...]
ljavorsk_ has joined #lisp
slyrus__ has quit [Ping timeout: 246 seconds]
alfonsox has joined #lisp
Lycurgus has quit [Ping timeout: 265 seconds]
varjagg has joined #lisp
varjag has quit [Ping timeout: 256 seconds]
varjagg has left #lisp [#lisp]
lucasb has joined #lisp
jprajzne has quit [Quit: Leaving.]
oxum has joined #lisp
v_m_v__ has quit [Remote host closed the connection]
oxum has quit [Read error: No route to host]
oxum has joined #lisp
schweers has quit [Remote host closed the connection]
slyrus__ has joined #lisp
Lycurgus has joined #lisp
slyrus_ has quit [Ping timeout: 256 seconds]
slyrus_ has joined #lisp
Khisanth has quit [Ping timeout: 258 seconds]
slyrus__ has quit [Ping timeout: 246 seconds]
jeosol has joined #lisp
oxum has quit [Quit: Leaving...]
asarch has joined #lisp
Khisanth has joined #lisp
v88m has joined #lisp
efm has quit [Quit: Konversation terminated!]
prince1 has joined #lisp
leo_song has quit [Ping timeout: 256 seconds]
pticochon has joined #lisp
leo_song has joined #lisp
prince1 has quit [Ping timeout: 250 seconds]
asarch has quit [Quit: Leaving]
alfonsox has quit [Ping timeout: 246 seconds]
jmercouris has joined #lisp
<jmercouris> does this cffi look correct: (defcfun newQApplication :pointer) for this signature: void* newQApplication(int argc, char** argv); ?
<jmercouris> because I keep getting: The alien function "newqapplication" is undefined.
<Bike> don't you need to give it the argument types?
<Bike> for example the documentation gives (defcfun "strlen" :int (n :string))
<_death> you also need to use the right case
<jmercouris> there are no arguments
izh_ has joined #lisp
<Bike> ...what are argc and argv?
<jmercouris> do I have to therefore do something like |newQApplication|?
<jmercouris> ah, damnit, how did I miss that
<jmercouris> I'm sorry, I changed the prototype and forgot about that
<jmercouris> thank you for spotting it
<Bike> i think you wrould write ("newQApplication" new-q-application) for the name
<jmercouris> it used to accept no arguments
<jmercouris> Bike: I will do that, I prefer that form
<Bike> or new-qapplication or however you want to refer to it in lisp
alfonsox has joined #lisp
jmercouris has quit [Remote host closed the connection]
gko_ has quit [Ping timeout: 258 seconds]
xkapastel has joined #lisp
karlosz has joined #lisp
elazul has joined #lisp
xuxuru has joined #lisp
ljavorsk_ has quit [Ping timeout: 246 seconds]
even4void has joined #lisp
hhdave has quit [Quit: hhdave]
even4void has quit [Client Quit]
shangul has quit [Quit: Leaving]
Bourne has quit [Ping timeout: 240 seconds]
EvW has joined #lisp
pjb has joined #lisp
efm has joined #lisp
alfonsox has quit [Quit: Konversation terminated!]
Bourne has joined #lisp
narimiran has quit [Ping timeout: 240 seconds]
bilegeek has joined #lisp
narimiran has joined #lisp
davepdot_ has joined #lisp
orivej has quit [Ping timeout: 246 seconds]
heisig has quit [Ping timeout: 250 seconds]
davepdotorg has quit [Ping timeout: 250 seconds]
Cymew has quit [Ping timeout: 256 seconds]
cartwright has quit [Remote host closed the connection]
asarch has joined #lisp
aap has quit [Quit: Reconnecting]
aap has joined #lisp
bilegeek has quit [Quit: Leaving]
nckx has quit [*.net *.split]
cyberlard has quit [*.net *.split]
eschatologist has quit [*.net *.split]
jackdaniel has quit [*.net *.split]
Kabriel has quit [*.net *.split]
jackdaniel has joined #lisp
eschatologist has joined #lisp
nckx has joined #lisp
cyberlard has joined #lisp
shifty has quit [Ping timeout: 256 seconds]
shifty has joined #lisp
sauvin has quit [Read error: Connection reset by peer]
Kabriel has joined #lisp
prince1 has joined #lisp
shifty has quit [Ping timeout: 250 seconds]
rippa has joined #lisp
prince1 has quit [Ping timeout: 250 seconds]
gaqwas has quit [Ping timeout: 250 seconds]
gaqwas has joined #lisp
notzmv has joined #lisp
gaqwas has quit [Ping timeout: 250 seconds]
gaqwas has joined #lisp
pticochon has quit [Remote host closed the connection]
nckx has quit [*.net *.split]
theBlackDragon has quit [*.net *.split]
theBlackDragon has joined #lisp
nckx has joined #lisp
karlosz has quit [Quit: karlosz]
izh_ has quit [Quit: Leaving]
davepdot_ has quit [Remote host closed the connection]
orivej has joined #lisp
vlatkoB has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
ukari has quit [Ping timeout: 250 seconds]
jprajzne has joined #lisp
xuxuru has quit [Quit: xuxuru]
elazul has quit [Quit: Leaving]
Lycurgus has quit [Remote host closed the connection]
vhost- has quit [Ping timeout: 265 seconds]
narendraj9 has joined #lisp
davepdotorg has joined #lisp
karlosz has joined #lisp
davepdotorg has quit [Ping timeout: 272 seconds]
jeosol has quit [Ping timeout: 240 seconds]
v1sage has joined #lisp
bilegeek has joined #lisp
notzmv has quit [Ping timeout: 264 seconds]
bilegeek has quit [Quit: Leaving]
gioyik has joined #lisp
asarch_ has joined #lisp
asarch has quit [Ping timeout: 246 seconds]
prince1 has joined #lisp
asarch_ is now known as asarch
narendraj9 has quit [Remote host closed the connection]
jprajzne has quit [Quit: jprajzne]
narendraj9 has joined #lisp
jprajzne has joined #lisp
prince1 has quit [Ping timeout: 250 seconds]
nowhere_man has joined #lisp
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
efm has quit [Quit: Konversation terminated!]
narimiran has quit [Ping timeout: 246 seconds]
pilne has joined #lisp
JohnnyL has joined #lisp
karlosz has quit [Quit: karlosz]
gravicappa has quit [Ping timeout: 246 seconds]
iAmDecim_ has joined #lisp
iAmDecim_ is now known as iAmDecim
v1sage has quit [Quit: v1sage]
karlosz has joined #lisp
karlosz has quit [Client Quit]
jprajzne has quit [Quit: jprajzne]
shka_ has quit [Ping timeout: 258 seconds]
narendraj9 has quit [Remote host closed the connection]
jprajzne has joined #lisp
ggole has quit [Quit: Leaving]
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
v_m_v has joined #lisp
random-nick has quit [Read error: Connection reset by peer]
dvdmuckle has quit [Quit: Bouncer Surgery]
jprajzne has quit [Client Quit]
slyrus__ has joined #lisp
random-nick has joined #lisp
jprajzne has joined #lisp
dvdmuckle has joined #lisp
slyrus_ has quit [Ping timeout: 250 seconds]
jprajzne has quit [Quit: jprajzne]
v_m_v has quit [Remote host closed the connection]
Bike has quit [Quit: Bike]
lucasb has quit [Quit: Connection closed for inactivity]
gaqwas has quit [Ping timeout: 264 seconds]
akoana has joined #lisp
jprajzne has joined #lisp
heisig has joined #lisp
jprajzne has quit [Quit: jprajzne]
v1sage has joined #lisp
davepdotorg has joined #lisp
heisig has quit [Ping timeout: 256 seconds]
flazh has quit [Ping timeout: 268 seconds]
v_m_v has joined #lisp
davepdotorg has quit [Ping timeout: 246 seconds]
v_m_v_ has joined #lisp
v_m_v has quit [Read error: Connection reset by peer]
vhost- has joined #lisp
cosimone has quit [Quit: Quit.]
megalography has left #lisp [#lisp]
karlosz has joined #lisp
LiamH has quit [Quit: Leaving.]
slyrus_ has joined #lisp
slyrus__ has quit [Ping timeout: 250 seconds]
slyrus__ has joined #lisp
shifty has joined #lisp
notzmv has joined #lisp
slyrus_ has quit [Ping timeout: 246 seconds]
Bike has joined #lisp
slyrus_ has joined #lisp
Khisanth has quit [Ping timeout: 265 seconds]
prince1 has joined #lisp
slyrus__ has quit [Ping timeout: 246 seconds]
prince1 has quit [Ping timeout: 246 seconds]
v_m_v_ has quit [Remote host closed the connection]
v1sage has quit [Quit: v1sage]
vhost- has quit [Remote host closed the connection]
tcr has quit [Ping timeout: 256 seconds]
vhost- has joined #lisp
karlosz has quit [Quit: karlosz]
karlosz has joined #lisp
Kaisyu7 has quit [Quit: ERC (IRC client for Emacs 26.3)]
trocado has quit [Ping timeout: 260 seconds]
flazh has joined #lisp
Josh_2 has joined #lisp
Khisanth has joined #lisp
shifty has quit [Ping timeout: 246 seconds]
Kaisyu7 has joined #lisp
nckx has quit [Ping timeout: 264 seconds]
jprajzne has joined #lisp
nckx has joined #lisp
bilegeek has joined #lisp
random-nick has quit [Ping timeout: 264 seconds]
buffergn0me has joined #lisp
efm has joined #lisp
EvW has quit [Remote host closed the connection]
EvW has joined #lisp
Lord_of_Life_ has joined #lisp
slyrus_ has quit [Ping timeout: 246 seconds]
Lord_of_Life has quit [Ping timeout: 250 seconds]
Lord_of_Life_ is now known as Lord_of_Life
aeth has quit [Ping timeout: 250 seconds]
aeth has joined #lisp
xkapastel has quit [Quit: Connection closed for inactivity]
charje has joined #lisp