jackdaniel 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/> | offtopic --> #lispcafe
rig0rmortis has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
dmiles has quit [Read error: Connection reset by peer]
SenasOzys has quit [Ping timeout: 260 seconds]
cgay has quit [Quit: Connection closed for inactivity]
rig0rmortis has joined #lisp
EvW has quit [Ping timeout: 260 seconds]
natj212_ has joined #lisp
nicktick has joined #lisp
dmiles has joined #lisp
terpri_ is now known as terpri
EvW has joined #lisp
bsd4me has quit [Quit: The early bird may get the worm, but the second mouse gets the cheese]
dmiles has quit []
AeroNotix has quit [Quit: WeeChat 2.9]
galex-713 has joined #lisp
<galex-713> Hello
<galex-713> Hello
<galex-713> Is networking standardized into common lisp?
<no-defun-allowed> Not in ANSI Common Lisp, but usocket is basically universally supported.
<galex-713> where is it described best? where does it come?
<galex-713> thank you very much!
<galex-713> is there such an universal API for graphical toolkit(s) (like gtk/qt) for common lisp? or does each implementation have its own thing?
<no-defun-allowed> Qtools for Qt, I haven't heard of anything for Gtk, but there is also McCLIM for CLIM which is all Lisp (and only supports the X window protocol officially).
natj212_ has quit [Remote host closed the connection]
Jeanne-Kamikaze has quit [Ping timeout: 260 seconds]
natj212_ has joined #lisp
nicktick has quit [Ping timeout: 260 seconds]
Jeanne-Kamikaze has joined #lisp
ebrasca has quit [Remote host closed the connection]
EvW has quit [Ping timeout: 246 seconds]
mindCrime has quit [Excess Flood]
mindCrime has joined #lisp
secretmyth has quit [Ping timeout: 260 seconds]
Jeanne-Kamikaze has quit [Quit: Leaving]
Kundry_Wag has joined #lisp
torbo has joined #lisp
dmiles has joined #lisp
rig0rmortis has quit [Ping timeout: 256 seconds]
rig0rmortis has joined #lisp
Harag has joined #lisp
Harag has left #lisp ["ERC (IRC client for Emacs 26.3)"]
aaaaaa has left #lisp [#lisp]
akoana has joined #lisp
bsd4me has joined #lisp
bsd4me has quit [Read error: Connection reset by peer]
bsd4me has joined #lisp
rig0rmortis has quit [Quit: Textual IRC Client: www.textualapp.com]
bsd4me has left #lisp [#lisp]
jesse1010 has quit [Ping timeout: 240 seconds]
sekva has joined #lisp
choegusung has joined #lisp
Alfr_ has joined #lisp
Alfr has quit [Ping timeout: 260 seconds]
orivej_ has quit [Ping timeout: 256 seconds]
orivej has joined #lisp
choegusung has quit [Quit: leaving]
<beach> Good morning everyone!
<markasoftware> and to you too!
<markasoftware> is there a better way to capture the value of a loop variable in a lambda during every loop iteration than (loop for i from 0 to 5 collect (let ((k i)) (lambda () k))) ?
<markasoftware> (If I do not bind k to the value of i, then all the lambdas will return 6 -- the final value of i)
<beach> Correct.
<beach> So it's either capturing it in a closure or in some data structure.
<beach> Er, the data structure would not hold the variable, of course, but the value.
<markasoftware> i see, i guess i will learn to live with the extra (let)
orivej has quit [Quit: No Ping reply in 180 seconds.]
jibanes has quit [Ping timeout: 256 seconds]
Alloc has quit [Read error: Connection reset by peer]
jibanes has joined #lisp
Alloc has joined #lisp
sekva has quit [Quit: Leaving]
sekva has joined #lisp
sekva_ has joined #lisp
sekva_ has quit [Remote host closed the connection]
torbo has quit [Quit: ERC (IRC client for Emacs 27.1)]
Alloc has quit [Ping timeout: 260 seconds]
Alloc has joined #lisp
orivej has joined #lisp
Kundry_Wag has quit [Remote host closed the connection]
Bike has quit [Quit: Lost terminal]
minerjoe has quit [Ping timeout: 256 seconds]
Kundry_Wag has joined #lisp
Kundry_Wag has quit [Ping timeout: 260 seconds]
space_otter has joined #lisp
iAmDecim has joined #lisp
iissaacc has joined #lisp
iAmDecim has quit [Ping timeout: 265 seconds]
Kundry_Wag has joined #lisp
Lord_of_Life_ has joined #lisp
Kundry_Wag has quit [Ping timeout: 240 seconds]
Lord_of_Life has quit [Ping timeout: 256 seconds]
Lord_of_Life_ is now known as Lord_of_Life
narimiran has joined #lisp
IPmonger has quit [Ping timeout: 256 seconds]
IPmonger has joined #lisp
duuqnd has joined #lisp
brown121407 has joined #lisp
Oladon has quit [Quit: Leaving.]
bilegeek has quit [Quit: Leaving]
todun has joined #lisp
Kundry_Wag has joined #lisp
brown121407 has quit [Remote host closed the connection]
<galex-713> no-defun-allowed: is Qtools portable? do you have some link too?
<galex-713> thank you very much again btw
<beach> Why would you choose an FFI solution over a native one?
<no-defun-allowed> I haven't used it, but I would say so.
<no-defun-allowed> galex-713: https://shinmera.github.io/qtools/
<galex-713> thank you!
<galex-713> beach: is Qtools FFI?
<White_Flame> massive list here, old & new, with clim and lots of ffi stuff: https://cliki.net/GUI
<galex-713> beach: by native, do you mean something like CLIM?
<no-defun-allowed> beach: It might be necessary if one wants to write graphical programs that run on Windows or macOS without an X server (with established backends).
<beach> galex-713: I suppose it is not written in Common Lisp, so yes.
<no-defun-allowed> Qt is written in C++, so it is not native to Lisp.
<galex-713> no-defun-allowed: for compatibility, I would like
<galex-713> interoperability with existing widgets, other applications
<galex-713> better integration
<beach> Good luck with the debugging.
<no-defun-allowed> And admittedly, I only write GUIs when absolutely necessary; my domain is basically backend stuff.
<galex-713> beach: thank you
<White_Flame> and I tend to stick to HTML GUIs, for the for-free multiuser & remoting
<contrapunctus> White_Flame: "multiuser and remoting"? 🤔
<White_Flame> yeah, 1 process, any number of sockets from anywhere each with a gui
Kundry_Wag has quit [Ping timeout: 265 seconds]
<contrapunctus> I see...
Alloc has quit [Ping timeout: 260 seconds]
Alloc has joined #lisp
ajpaon has joined #lisp
ajpaon has left #lisp [#lisp]
Blukunfando has quit [Ping timeout: 256 seconds]
<markasoftware> is there a canonical way to create an empty string that is safe to modify?
<markasoftware> I've heard that literals are not safe to modify
<markasoftware> make-string, nvm
todun has quit [Quit: todun]
<iissaacc> what's the time complexity of hash-table-count?
<beach> It would be surprising if it were more than O(1). But the standard has no opinion about it.
<White_Flame> it's not specified, but sbcl at least maintains a count so it's just a single slot lookup
<iissaacc> O(1) or O(n)? seems like the count is part of the hash data from "#<HASH-TABLE :TEST EQUAL :COUNT 4 {1001AE9963}>"
<iissaacc> oh cool
<beach> It would be surprising because, in order to determine whether to grow or shrink the table after each operation, it has to compare the count to the threshold.
<beach> So if it were O(n), then that would make each operation O(n) as well.
<iissaacc> right
<no-defun-allowed> Using the segmenting implementation of concurrent-hash-tables leads to a slow (but still O(1)) hash-table-count, as it must lock each segment to get each sub-count.
natj212_ has quit [Ping timeout: 265 seconds]
<no-defun-allowed> Odds are you aren't using that, but it could feasibly be a CL hash table implementation. (And resizing is done per segment/sub-table, so it doesn't affect the performance of resizing.)
<beach> I guess the count does not have to be checked for each operation. Only from time to time.
liberliver has quit [Ping timeout: 272 seconds]
<iissaacc> good to know, thanks folks
ldb has joined #lisp
<ldb> good afternoon
<no-defun-allowed> Hello ldb
<ldb> no-defun-allowed: hi
<ldb> I think loke has made a McCLIM fronted for Maxima
Kundry_Wag has joined #lisp
<beach> Indeed, it is called Climaxima.
<beach> Not sure what letters should be capitalized.
<markasoftware> http://markasoftware.com:4321/cons sneak peek of a server-rendered HTML <form> library I'm working on
<no-defun-allowed> Don't worry, it is still 1972, no one has fancy teletypes that can write CLIMAXIMA and LISP other than in all-caps. (Apologies for the non-fresh joke.)
<markasoftware> nevermind it already crashed
<no-defun-allowed> markasoftware: A link preview was generated here, but when I open a browser window to see that, it cannot connect.
Kundry_Wag has quit [Ping timeout: 264 seconds]
<ldb> beach: from the project description Climaxima uses FreeType to render symbols, does that mean the specified fonts are required to be present?
gaqwas has joined #lisp
gaqwas has joined #lisp
gaqwas has quit [Changing host]
<markasoftware> link should work now
aartaka has joined #lisp
<beach> ldb: I don't know. You could ask loke.
gaqwas has quit [Remote host closed the connection]
iamFIREc1 has joined #lisp
iamFIREcracker has quit [Ping timeout: 256 seconds]
gaqwas has joined #lisp
gaqwas has joined #lisp
gaqwas has quit [Changing host]
gaqwas has quit [Remote host closed the connection]
aartaka has quit [Read error: Connection reset by peer]
gaqwas has joined #lisp
shka_ has joined #lisp
sekva has quit [Ping timeout: 260 seconds]
xantoz has quit [Read error: Connection reset by peer]
xantoz has joined #lisp
aartaka has joined #lisp
<aeth> markasoftware: You might also want make-array instead of make-string because it has more options.
<aeth> markasoftware: In particular, you can (make-array 8 :element-type 'character :adjustable t :fill-pointer 0) (for some arbitrary size, not just 8) to get a string that you can vector-push-extend to
<aeth> I often do this sort of algorithm to create a fixed-length string of an unknown length: (let ((s (make-array 8 :element-type 'character :adjustable t :fill-pointer 0))) (vector-push-extend #\A s) (subseq s 0 (fill-pointer s)))
<aeth> There's probably a few other ways to do it other than SUBSEQ, e.g. (coerce s 'simple-string)
<scymtym> ldb: the freetype-based font sub-system locates and renders fonts more like a, say, GTK application would. so it is better at finding and selecting fonts which are present on the system (compared McCLIM's native font sub-system). that is independent of the questions whether climaxima requires special fonts and whether those are distributed with climaxima
<aeth> Hmm... Okay, it looks like the SUBSEQ one is mandated by the standard as a way of getting a fresh simple array with otherwise the same type. I guess it makes sense because you wouldn't always want the whole length like with COERCE so if it didn't work like this you'd sometimes have to copy twice instead of once. http://www.lispworks.com/documentation/HyperSpec/Body/f_subseq.htm
sekva has joined #lisp
pve has joined #lisp
aartaka has quit [Read error: Connection reset by peer]
iissaacc has quit [Remote host closed the connection]
iissaacc has joined #lisp
iissaacc has quit [Remote host closed the connection]
aartaka has joined #lisp
jprajzne has joined #lisp
iissaacc has joined #lisp
iissaacc has quit [Ping timeout: 265 seconds]
galex-713 has quit [Ping timeout: 246 seconds]
aartaka has quit [Read error: Connection reset by peer]
scymtym has quit [Ping timeout: 240 seconds]
galex-713 has joined #lisp
rogersm has joined #lisp
scymtym has joined #lisp
hendursa1 has joined #lisp
tumdum has quit [Remote host closed the connection]
hendursaga has quit [Ping timeout: 240 seconds]
akoana has left #lisp ["Leaving"]
davepdotorg has joined #lisp
Kundry_Wag has joined #lisp
ljavorsk has joined #lisp
treflip has joined #lisp
Kundry_Wag has quit [Ping timeout: 256 seconds]
cosimone has joined #lisp
mindCrime_ has joined #lisp
mindCrime has quit [Ping timeout: 244 seconds]
ldb has quit [Quit: Connection closed]
galex-713 has quit [Ping timeout: 272 seconds]
cosimone_ has joined #lisp
cosimone has quit [Ping timeout: 260 seconds]
galex-713 has joined #lisp
jonatack has quit [Ping timeout: 260 seconds]
aartaka has joined #lisp
nicktick has joined #lisp
cosimone has joined #lisp
cosimone_ has quit [Ping timeout: 256 seconds]
space_otter has quit [Remote host closed the connection]
galex-713 has quit [Ping timeout: 244 seconds]
ayuce has joined #lisp
sekva has quit [Ping timeout: 258 seconds]
<phoe> beach: could you send me the abstract for your current talk?
<phoe> (I'm sorry for losing it, again - I promise to be better in the future)
<beach> I don't think I sent one.
<beach> This is for next week, yes?
<beach> phoe: I'll do it this afternoon. I am a bit busy with SICL work right now.
<beach> By the way, when is the meeting this week?
<phoe> beach: Wednesday. I am heavily disorganized and am only sending the mails right now. I apologize.
<beach> Not a problem for me. You'll have the abstract for my talk text week sometime this afternoon.
jesse1010 has joined #lisp
Cymew has joined #lisp
<phoe> Thanks.
<beach> Great!
<phoe> ;; I perhaps should not do such things while running low on sleep since they are prone to errors, but I guess that an invitation with errors is better than no invitation
<contrapunctus> phoe: worse is better 😏
<beach> APL means "A Programming Language", not "Array Programming Language", unless the abstract refers to something different.
liberliver has joined #lisp
Necktwi has quit [Ping timeout: 240 seconds]
Necktwi has joined #lisp
ljavorsk has quit [Ping timeout: 260 seconds]
minerjoe has joined #lisp
<phoe> beach: it likely means "the APL", just with a backronymed modification of the name
<phoe> but then again, I'm just a messenger here
<beach> Sure.
nicktick has quit [Ping timeout: 265 seconds]
davepdotorg has quit [Remote host closed the connection]
progfun has joined #lisp
liberliver has quit [Ping timeout: 240 seconds]
nicktick has joined #lisp
Aurora_v_kosmose has quit [Remote host closed the connection]
Aurora_v_kosmose has joined #lisp
nicktick has quit [Ping timeout: 246 seconds]
aartaka has quit [Read error: Connection reset by peer]
ebrasca has joined #lisp
snowyfox has joined #lisp
davepdotorg has joined #lisp
snowyfox has left #lisp [#lisp]
jonatack has joined #lisp
liberliver has joined #lisp
iissaacc has joined #lisp
<p_l> phoe: pretty sure it wasn't a backronym, though it shares a similar trait with Lisp in its origins as pure theory early on
luckless has joined #lisp
luckless_ has quit [Ping timeout: 240 seconds]
<phoe> p_l: yes, it's A Programming Language, but I've seen plenty of people nowadays refer to it as "Array PL" in informal contexts
zaquest has quit [Quit: Leaving]
zaquest has joined #lisp
mindCrime_ has quit [Ping timeout: 260 seconds]
Blukunfando has joined #lisp
ljavorsk has joined #lisp
liberliver has quit [Ping timeout: 260 seconds]
liberliver has joined #lisp
davepdotorg has quit [Remote host closed the connection]
ravndal has quit [Ping timeout: 240 seconds]
galex-713 has joined #lisp
thevishy has joined #lisp
thevishy has left #lisp [#lisp]
Bike has joined #lisp
cosimone has quit [Quit: Quit.]
bitmapper has quit [Ping timeout: 256 seconds]
galex-713 has quit [Ping timeout: 272 seconds]
<phoe> aaaaa
<phoe> the first ProgAlgs review for Apress is done.
iissaacc has quit [Ping timeout: 256 seconds]
<phoe> this took me a long while to do and should result in an even better book overall
OptimusMKD has quit [Quit: Leaving]
EvW1 has joined #lisp
davepdotorg has joined #lisp
flazh has quit [Quit: flazh]
ljavorsk has quit [Ping timeout: 265 seconds]
Bourne has joined #lisp
nicktick has joined #lisp
davepdotorg has quit [Remote host closed the connection]
davepdotorg has joined #lisp
Alloc has quit [Ping timeout: 240 seconds]
Alloc has joined #lisp
igemnace has quit [Remote host closed the connection]
Alloc has quit [Ping timeout: 256 seconds]
jonatack has quit [Read error: Connection reset by peer]
contrapunctus has left #lisp ["Disconnected: Replaced by new connection"]
contrapunctus has joined #lisp
contrapunctus has left #lisp ["Disconnected: closed"]
nullman has quit [Ping timeout: 240 seconds]
contrapunctus has joined #lisp
<beach> phoe: Congratulations! And thanks for doing that!
progfun has quit [Ping timeout: 240 seconds]
<phoe> beach: my pleasure. ; and exhaustion, but that one will pass in a few days
nullman has joined #lisp
orivej has quit [Quit: No Ping reply in 180 seconds.]
hendursa1 has quit [Quit: hendursa1]
hendursaga has joined #lisp
Alloc has joined #lisp
Lord_of_Life has quit [Read error: Connection reset by peer]
Lord_of_Life has joined #lisp
gko_ has joined #lisp
jealousmonk has joined #lisp
SenasOzys has joined #lisp
progfun has joined #lisp
davepdotorg has quit [Remote host closed the connection]
__jrjsmrtn__ has joined #lisp
_jrjsmrtn has quit [Ping timeout: 260 seconds]
jw4 has quit [Read error: Connection reset by peer]
jw4 has joined #lisp
davepdotorg has joined #lisp
galex-713 has joined #lisp
renzhi has joined #lisp
treflip has quit [Quit: WeeChat 2.6]
galex-713 has quit [Ping timeout: 272 seconds]
sekva has joined #lisp
progfun has quit [Ping timeout: 240 seconds]
skapata has joined #lisp
galex-713 has joined #lisp
sekva has quit [Quit: Leaving]
sekva has joined #lisp
skapata has left #lisp [#lisp]
sekva_ has joined #lisp
sekva_ has quit [Remote host closed the connection]
sekva has quit [Client Quit]
davepdotorg has quit [Remote host closed the connection]
random-nick has joined #lisp
davepdotorg has joined #lisp
simendsjo has joined #lisp
bitmapper has joined #lisp
torbo has joined #lisp
<phoe> beach: thanks, I will submit the invitation today.
terpri has quit [Remote host closed the connection]
<beach> Sounds good.
terpri has joined #lisp
scymtym has quit [Ping timeout: 256 seconds]
galex-713 has quit [Remote host closed the connection]
ravndal has joined #lisp
sr-hm has joined #lisp
galex-713 has joined #lisp
sr-hm has quit [Remote host closed the connection]
sr-hm has joined #lisp
srhm has quit [Ping timeout: 240 seconds]
srhm has joined #lisp
terpri has quit [Remote host closed the connection]
terpri has joined #lisp
AeroNotix has joined #lisp
sr-hm has quit [Ping timeout: 240 seconds]
rogersm has quit [Quit: Leaving...]
duuqnd has quit [Read error: Connection reset by peer]
duuqnd has joined #lisp
<Xach> hmm, it would be nice to undefine a method from xref.
<Xach> and also to refresh it with "g"
<AeroNotix> do you get much value out of xref? I've used it but not worked it into my workflow much
Cymew has quit [Ping timeout: 240 seconds]
<AeroNotix> huh weird you popped up, just added a dep to your timers package in something I am using
treflip has joined #lisp
orivej has joined #lisp
Oladon has joined #lisp
<Xach> AeroNotix: oh no! that project is now part of SBCL and should not be used on its own.
<AeroNotix> Xach: oh ok, cool
<Xach> see sb-timer, i think
<AeroNotix> I saw the sb interface to it and assumed that you had wrapped it in the timers library in the hopes you would make it support cross-implementation, eventually
<Xach> no, it was the other way around
<AeroNotix> gotcha ok
<Xach> i invented the api, and sbcl cloned it
<Xach> well, not really
<AeroNotix> Well, this thing I am writing is tied pretty heavily to sbcl any way
<Xach> i stole it from lispworks!
<AeroNotix> lol
<Xach> but i wrote the code for sbcl, and sbcl folded it in
<AeroNotix> gotcha, oke doke then
<Xach> your interpretation is funny to me, but only because i know the history from 17 years ago
<Xach> TIMER can almost vote in the USA!
<AeroNotix> yeah it's just that you see google results as a point in time, you're not given the full history of everything. I see the sbcl API, I see the timer API, my assumption is that your timers exists because sbcl is implementation specific
<AeroNotix> but w/e. I already use a tonne of `sb-*` APIs in this project
<Xach> I should add a note to my page
Kundry_Wag has joined #lisp
orivej has quit [Quit: No Ping reply in 180 seconds.]
liberliver has quit [Ping timeout: 260 seconds]
<AeroNotix> yeah might help others
EvW1 has quit [Ping timeout: 260 seconds]
* Xach does so now
Alloc has quit [Ping timeout: 240 seconds]
orivej has joined #lisp
scymtym has joined #lisp
orivej has quit [Client Quit]
orivej has joined #lisp
progfun has joined #lisp
orivej has quit [Quit: No Ping reply in 180 seconds.]
iamFIREcracker has joined #lisp
flazh has joined #lisp
iamFIREc1 has quit [Ping timeout: 258 seconds]
iissaacc has joined #lisp
davepdotorg has quit [Remote host closed the connection]
davepdotorg has joined #lisp
iissaacc has quit [Ping timeout: 258 seconds]
jonatack has joined #lisp
iissaacc has joined #lisp
Alloc has joined #lisp
iissaacc has quit [Ping timeout: 246 seconds]
cosimone has joined #lisp
jesse1010 has quit [Remote host closed the connection]
natj212_ has joined #lisp
Bourne has quit [Ping timeout: 258 seconds]
<Xach> pve: cool!
srhm has quit [Read error: Connection reset by peer]
<pve> Xach: :)
simendsj` has joined #lisp
simendsjo has quit [Ping timeout: 260 seconds]
<pve> still needs a mode hook or define-key
Jeanne-Kamikaze has joined #lisp
Kundry_Wag has quit [Ping timeout: 246 seconds]
orivej has joined #lisp
xrash has joined #lisp
progfun has quit [Ping timeout: 256 seconds]
bsd4me has joined #lisp
bsd4me has left #lisp [#lisp]
sonologico has joined #lisp
orivej has quit [Quit: No Ping reply in 180 seconds.]
davepdotorg has quit [Remote host closed the connection]
brown121407 has joined #lisp
orivej has joined #lisp
secretmyth has joined #lisp
davepdotorg has joined #lisp
davepdotorg has quit [Remote host closed the connection]
<AeroNotix> if I have used cffi:defcallback to define a callback, should I be able to call it with cffi:foreign-funcall-pointer?
<AeroNotix> I am getting: Unhandled memory fault at #x0.
orivej has quit [Quit: No Ping reply in 180 seconds.]
<AeroNotix> oh em gee
<_death> AeroNotix: to get a pointer you need to use (cffi:callback name)
<AeroNotix> I've figured it out
<AeroNotix> I was using a progn to foreign-allocate and set up a struct, but I wasn't returning the struct from it, d'oh
<AeroNotix> think I've solved it now
<AeroNotix> d'oh yeah that was it. I was returning a setf call which was a pointer itself, so my debugging made me think it was the func pointer I wanted rather than some random other pointer I was using
renzhi has quit [Ping timeout: 256 seconds]
ggole has joined #lisp
srhm has joined #lisp
Josh_2 has joined #lisp
<tychoish> hey, so I'm having trouble loading swank (in stumpwm; built from quicklisp with recent SBCL; using slime from melpa) and I keep getting sb-cltl2 load/find errors, and I can't reproduce the error outside of stump
<Bike> like what error, it can't fidn sb-cltl2 to load it?
<tychoish> yep
<Bike> swank does require sb-cltl2, but if it's only broken with stump that's uh, weid
treflip has quit [Quit: WeeChat 2.6]
<tychoish> agreed. (my outside-of-stump reproduction was in a slime session, which admittedly could have been tainted in a different way)
<_death> check SBCL_HOME.. stumpwm (used to?) munge with it
<tychoish> I did rebuild that after finding something on stack overflow
<tychoish> and just did it again to be sure
orivej has joined #lisp
rumbler31 has joined #lisp
<tychoish> bam _death that was it... I set it at compile time but not at build time.
orivej has quit [Client Quit]
torbo` has joined #lisp
torbo has quit [Ping timeout: 256 seconds]
mindCrime_ has joined #lisp
Bourne has joined #lisp
Lord_of_Life_ has joined #lisp
orivej has joined #lisp
contrapunctus has left #lisp ["Disconnected: Replaced by new connection"]
Lord_of_Life has quit [Ping timeout: 260 seconds]
galex-713 has quit [Ping timeout: 246 seconds]
contrapunctus has joined #lisp
Lord_of_Life_ is now known as Lord_of_Life
contrapunctus has left #lisp ["Disconnected: closed"]
orivej has quit [Client Quit]
gko_ has quit [Ping timeout: 240 seconds]
contrapunctus has joined #lisp
contrapunctus has left #lisp ["Disconnected: closed"]
contrapunctus has joined #lisp
secretmyth has quit [Remote host closed the connection]
secretmyth has joined #lisp
orivej has joined #lisp
orivej has quit [Client Quit]
Aurora_v_kosmose has quit [Quit: later]
brown121407 has quit [Remote host closed the connection]
davepdotorg has joined #lisp
galex-713 has joined #lisp
davepdotorg has quit [Ping timeout: 256 seconds]
flazh has quit [Ping timeout: 260 seconds]
gravicappa has quit [Ping timeout: 258 seconds]
gravicappa has joined #lisp
cosimone has quit [Quit: Quit.]
cosimone has joined #lisp
flazh has joined #lisp
space_otter has joined #lisp
Kundry_Wag has joined #lisp
Kundry_Wag has quit [Ping timeout: 240 seconds]
Kundry_Wag has joined #lisp
simendsj` has quit [Ping timeout: 240 seconds]
rumbler31 has quit [Remote host closed the connection]
Kundry_Wag has quit [Ping timeout: 258 seconds]
scymtym has quit [Remote host closed the connection]
aartaka has joined #lisp
aartaka has quit [Read error: Connection reset by peer]
orivej has joined #lisp
wsinatra has quit [Ping timeout: 240 seconds]
space_otter has quit [Remote host closed the connection]
karlosz has quit [Quit: karlosz]
karlosz has joined #lisp
cosimone has quit [Quit: Quit.]
cosimone has joined #lisp
jdz has quit [Quit: ZNC - http://znc.in]
jdz has joined #lisp
galex-713 has quit [Ping timeout: 244 seconds]
orivej_ has joined #lisp
orivej has quit [Ping timeout: 256 seconds]
galex-713 has joined #lisp
<dlowe> Xach: looked at stencl for your templating needs?
rippa has joined #lisp
aeth_ has joined #lisp
ggole has quit [Ping timeout: 244 seconds]
aeth has quit [Ping timeout: 256 seconds]
earl-ducaine has quit [Quit: No Ping reply in 180 seconds.]
earl-ducaine has joined #lisp
liberliver has joined #lisp
aeth_ is now known as aeth
orivej_ has quit [Quit: No Ping reply in 180 seconds.]
terpri has quit [Remote host closed the connection]
terpri has joined #lisp
orivej has joined #lisp
liberliver1 has joined #lisp
liberliver has quit [Ping timeout: 272 seconds]
liberliver1 is now known as liberliver
orivej has quit [Ping timeout: 256 seconds]
orivej has joined #lisp
mindCrime_ has quit [Excess Flood]
mindCrime_ has joined #lisp
bilegeek has joined #lisp
aartaka has joined #lisp
mankaev_ has quit [Read error: Connection reset by peer]
mankaev has joined #lisp
mankaev_ has joined #lisp
mankaev has quit [Read error: Connection reset by peer]
aartaka has quit [Read error: Connection reset by peer]
jesse1010 has joined #lisp
Codaraxis has quit [Ping timeout: 240 seconds]
kaftejiman has joined #lisp
rogersm has joined #lisp
Codaraxis has joined #lisp
random-nick has quit [Ping timeout: 240 seconds]
notzmv` has joined #lisp
notzmv` is now known as zmv
zmv is now known as Guest50956
Guest50956 is now known as zmv`
zmv` has quit [Changing host]
zmv` has joined #lisp
notzmv has quit [Disconnected by services]
zmv` is now known as notzmv
random-nick has joined #lisp
duuqnd has quit [Remote host closed the connection]
rumbler31 has joined #lisp
karlosz has quit [Quit: karlosz]
scymtym has joined #lisp
karlosz has joined #lisp
karlosz has quit [Remote host closed the connection]
simendsjo has joined #lisp
narimiran has quit [Ping timeout: 265 seconds]
<Xach> dlowe: not yet
orivej has quit [Ping timeout: 240 seconds]
orivej has joined #lisp
Alloc has quit [Read error: Connection reset by peer]
aartaka has joined #lisp
Alloc has joined #lisp
aartaka has quit [Read error: Connection reset by peer]
aartaka has joined #lisp
simendsjo has quit [Ping timeout: 256 seconds]
rumbler31 has quit [Read error: Connection reset by peer]
rumbler31 has joined #lisp
jw4 has quit [Ping timeout: 260 seconds]
EvW has joined #lisp
jw4 has joined #lisp
Jeanne-Kamikaze has quit [Ping timeout: 260 seconds]
aartaka has quit [Read error: Connection reset by peer]
wsinatra has joined #lisp
jw4 has quit [Quit: tot siens]
jw4 has joined #lisp
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
rogersm has quit []
aartaka has joined #lisp
jealousmonk has quit [Quit: Leaving]
IPmonger has quit [Quit: ZNC 1.7.5+deb4 - https://znc.in]
IPmonger has joined #lisp
Posterdati has quit [Ping timeout: 246 seconds]
shka_ has quit [Ping timeout: 260 seconds]
Posterdati has joined #lisp
ayuce has quit [Remote host closed the connection]
<jmercouris> hello everyone, good evening
Aurora_v_kosmose has joined #lisp
<aeth> contradiction detected. greetings contain 'good morning'
Jeanne-Kamikaze has joined #lisp
<jmercouris> oh, whoops :-)
aartaka has quit [Read error: Connection reset by peer]
Conductor has quit [Ping timeout: 240 seconds]
akoana has joined #lisp
hiroaki has quit [Ping timeout: 265 seconds]
jw4 has quit [Ping timeout: 240 seconds]
jw4 has joined #lisp
gravicappa has quit [Ping timeout: 260 seconds]
random-nick has quit [Ping timeout: 265 seconds]
davepdotorg has joined #lisp
rumbler31 has quit [Remote host closed the connection]
rumbler31 has joined #lisp
davepdotorg has quit [Ping timeout: 246 seconds]
hiroaki has joined #lisp
rumbler31 has quit [Ping timeout: 240 seconds]
zooey_ has quit [Remote host closed the connection]
<edgar-rft> "Good Something Anyone" might be a politically correct greeting
zooey has joined #lisp
space_otter has joined #lisp
CrazyEddy has quit [Ping timeout: 265 seconds]
Oddity__ has quit [Remote host closed the connection]
Oddity__ has joined #lisp
Kundry_Wag has joined #lisp
kaftejiman has quit [Remote host closed the connection]
<TMA> generic greeting, anyone
<phoe> what happened to "hello"
reggie_ has quit [Remote host closed the connection]
<tychoish> too easy
madage has quit [Remote host closed the connection]
<phoe> #.(format t "~A~%" (alexandria:random-elt *irc-lisp-greetings*))
madage has joined #lisp
<TMA> + contains "hell" as a substring which might be construed insensitive
Kundry_Wag has quit [Ping timeout: 246 seconds]
Kundry_Wag has joined #lisp
<phoe> hi
<edgar-rft> head injury
Kundry_Wag has quit [Ping timeout: 265 seconds]
reggie_ has joined #lisp
<AeroNotix> How do I get back the sockaddr from a sb-bsd-socket:socket?
<AeroNotix> I want to pass it to something else, I can see in the sbcl source code that this seems to be available
<AeroNotix> but unsure if there's a proper API for it
yitzi has joined #lisp
pve has quit [Quit: leaving]
<AeroNotix> phoe: not using usocket
<phoe> AeroNotix: don't use usocket
<AeroNotix> though I get this is close enough
<AeroNotix> get => guess
<phoe> read which sb-socket functions are called by it
<AeroNotix> yeah I missed at first, my bad
<phoe> :D
<phoe> ;; but no, seriously, do use usocket later
bilegeek has quit [Quit: Leaving]
<AeroNotix> No, I don't want/need to. It's not really doing much for me, plus there are some internals I am kinda relying on
<AeroNotix> the sb-bsd-sockets source makes reference to the _actual_ sockaddr struct, so I am looking specifically for that. I can reconstruct it using the public APIs - but wondering if there's a way to get it from the socket directly
<AeroNotix> yeah I'll use `sb-bsd-sockets:with-socket-fd-and-addr`
<AeroNotix> *::
<AeroNotix> it's internal
quazimodo has quit [Remote host closed the connection]
SenasOzys has quit [Remote host closed the connection]
CrazyEddy has joined #lisp
quazimodo has joined #lisp
davepdotorg has joined #lisp
davepdotorg has quit [Ping timeout: 246 seconds]
chibatan has joined #lisp
yitzi has quit [Quit: yitzi]
ark has joined #lisp
Oladon has quit [Quit: Leaving.]
natj212_ has quit [Ping timeout: 256 seconds]
nicktick has quit [Ping timeout: 240 seconds]
cosimone has quit [Ping timeout: 244 seconds]
bilegeek has joined #lisp
iAmDecim has joined #lisp
natj212_ has joined #lisp
CEnnis91 has quit [Quit: Connection closed for inactivity]
progfun has joined #lisp
davepdotorg has joined #lisp
iAmDecim has quit [Ping timeout: 240 seconds]
cgay has joined #lisp
iissaacc has joined #lisp
natj212_ has quit [Remote host closed the connection]
natj212_ has joined #lisp
davepdotorg has quit [Ping timeout: 272 seconds]
iAmDecim has joined #lisp
iAmDecim has quit [Ping timeout: 260 seconds]