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
thmprover has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
nullkl has quit [Ping timeout: 246 seconds]
amb007 has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
karlosz has quit [Quit: karlosz]
amb007 has joined #lisp
aeth has quit [Ping timeout: 240 seconds]
surabax has quit [Read error: Connection reset by peer]
flazh has quit [Read error: Connection reset by peer]
flazh has joined #lisp
aeth has joined #lisp
random-nick has quit [Ping timeout: 272 seconds]
rpg has joined #lisp
nullkl has joined #lisp
asarch has joined #lisp
* |3b| redirects stdout/stderr to a file, and ends up with an empty file :/
perrier-jouet has quit [Quit: WeeChat 3.0]
<asarch> If you are in the BASH prompt and press the ↑ key, it will show the last command entered, however, in the Slime REPL, the cursor (the blink block) will go up in the buffer, how could you "emulate" the ↑ key function in Slime?
perrier-jouet has joined #lisp
<|3b|> ah, apparently i can't type :/
<|3b|> asarch: M-p
nullkl has quit [Ping timeout: 256 seconds]
<|3b|> and M-n for down
<asarch> Thank you! Thank you very much |3b|! :-)
<jasom> |3b|: for arm64 take a struct like this, and you can pass it along unmodified: https://github.com/ARM-software/abi-aa/blob/f52e1ad3f81254497a83578dc102f6aac89e52d0/aapcs64/aapcs64.rst#122the-va_list-type
asarch has quit [Quit: Leaving]
jeosol has joined #lisp
<kevingal> @asarch you can also use the arrow keys: ctrl+up and ctrl+down.
<kevingal> (If it's not sacrilege to leave the sacred home row).
<jasom> |3b|: actually do to the way structs are passed by value on arm64, the void pointer should work
* |3b| thinks it is too much of a hack to add to somebody else's library :)
<|3b|> (and logging to a file works well enough for figuring out why it won't run)
kevingal has quit [Remote host closed the connection]
nullkl has joined #lisp
dbotton has quit [Quit: This computer has gone to sleep]
dbotton has joined #lisp
nullkl has quit [Ping timeout: 256 seconds]
landakram has quit [Remote host closed the connection]
X-Scale has quit [Ping timeout: 264 seconds]
X-Scale` has joined #lisp
X-Scale` is now known as X-Scale
landakram has joined #lisp
<White_Flame> if you want local utility functions for your macrolet compile-time bodies use, is that possible?
<Bike> macrolet expander functions aren't allowed to refer to the runtime lexical environment, so you can't refer to flet/labels definitions, if that's what you mean
aindilis has quit [Ping timeout: 264 seconds]
<Bike> you can use flet/labels within the expander itself, of course, or refer to local definitions in expansions
<White_Flame> right
landakram has quit [Remote host closed the connection]
karlosz has joined #lisp
karlosz has quit [Client Quit]
hiroaki has quit [Ping timeout: 246 seconds]
hiroaki has joined #lisp
wxie has joined #lisp
luni has quit [Quit: Connection closed]
contrapunctus has left #lisp ["Disconnected: closed"]
hiroaki has quit [Ping timeout: 265 seconds]
brandflake11 has joined #lisp
brandflake11 has left #lisp [#lisp]
aeth has quit [Ping timeout: 240 seconds]
aeth has joined #lisp
attila_lendvai has quit [Ping timeout: 264 seconds]
zacts has quit [Quit: leaving]
jxy_ has quit [Quit: leaving]
jxy has joined #lisp
akoana has left #lisp ["Leaving"]
villanella1 has quit [Quit: villanella1]
villanella has joined #lisp
villanella has quit [Ping timeout: 265 seconds]
nullkl has joined #lisp
charles` has quit [Ping timeout: 240 seconds]
perrier-jouet has quit [Quit: WeeChat 3.0]
contrapunctus has joined #lisp
semz has quit [Ping timeout: 260 seconds]
ex_nihilo has joined #lisp
Lord_of_Life has quit [Ping timeout: 256 seconds]
Stanley00 has joined #lisp
Lord_of_Life has joined #lisp
Stanley00 has quit [Client Quit]
semz has joined #lisp
semz has quit [Changing host]
semz has joined #lisp
nullkl has quit [Ping timeout: 264 seconds]
aindilis has joined #lisp
nullkl has joined #lisp
judson_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
judson_ has joined #lisp
nullkl has quit [Ping timeout: 264 seconds]
prxq_ has joined #lisp
prxq has quit [Ping timeout: 260 seconds]
perrier-jouet has joined #lisp
karlosz has joined #lisp
Josh_2 has quit [Remote host closed the connection]
aeth_ has joined #lisp
aeth has quit [Ping timeout: 240 seconds]
ym has joined #lisp
dbotton has quit [Quit: Leaving]
rpg has quit [Quit: Textual IRC Client: www.textualapp.com]
Stanley00 has joined #lisp
yonkunas has quit [Ping timeout: 265 seconds]
splittist has quit [Ping timeout: 268 seconds]
Alfr_ has joined #lisp
<beach> Good morning everyone!
splittist has joined #lisp
yonkunas has joined #lisp
Iolo has quit [Quit: ZNC 1.7.5+deb4 - https://znc.in]
Alfr has quit [Ping timeout: 260 seconds]
Iolo has joined #lisp
nullkl has joined #lisp
judson_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
judson_ has joined #lisp
long4mud has joined #lisp
judson_ has quit [Client Quit]
ym has quit [Ping timeout: 240 seconds]
<markasoftware> is there any way with MOP to change add-method so that you can add multiple methods with the same specializers and qualifiers?
<markasoftware> the method objects themselves contain extra information that I will use in the discriminating function to determine which ones should be part of the effective method
<beach> clhs add-method
<Bike> i'm not sure add-method allows that, but even if it does, you'd probably have to override large portions of the machinery
<beach> You would just have to subclass STANDARD-GENERIC-FUNCTION and provide a method on ADD-METHOD, specialized to your new class.
<Bike> compute-applicable-methods and compute-effective-method, maybe
<beach> Right, lots of stuff to adapt.
<Bike> it might be easier to just throw an arbitrary tag into the qualifiers
<markasoftware> yeah, my plan right now is to wrap the methods with extra parameters that my library's users won't know about
<markasoftware> to differentiate the methods
<markasoftware> it was worth asking tohugh
charles` has joined #lisp
casual_friday_ has joined #lisp
wxie has quit [Ping timeout: 272 seconds]
wxie has joined #lisp
Bike has quit [Quit: Lost terminal]
astronavt___ is now known as astronavt
prxq_ has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
prxq has joined #lisp
dale has quit [Ping timeout: 264 seconds]
dale has joined #lisp
narimiran has joined #lisp
nullkl has quit [Ping timeout: 264 seconds]
a138 has quit [Remote host closed the connection]
nullkl has joined #lisp
Stanley|00 has joined #lisp
a138 has joined #lisp
aartaka has joined #lisp
nullkl has quit [Ping timeout: 240 seconds]
mason is now known as dev1dev
dev1dev is now known as mason
Stanley00 has quit [Ping timeout: 272 seconds]
svetlyak40wt has quit [Ping timeout: 265 seconds]
nullkl has joined #lisp
svetlyak40wt has joined #lisp
toorevitimirp has joined #lisp
a138 has quit [Remote host closed the connection]
pankajsg has joined #lisp
sauvin has joined #lisp
skapata has quit [Ping timeout: 272 seconds]
nullkl has quit [Ping timeout: 240 seconds]
<iskander> hi all, i have a problem with SBCL startup, for some reasons it takes sometimes 2 minutes for the prompt to appear, if i interrupt it, then the debuggger says it is in quicklist/setup.lisp. Any idea what could be wrong ?
recalloc has joined #lisp
<iskander> if i remove quicklisp setup from .sbclrc then the prompt appear instantaneously
ikrabbe has joined #lisp
judson_ has joined #lisp
judson_ has quit [Client Quit]
judson_ has joined #lisp
charles` has quit [Ping timeout: 264 seconds]
_whitelogger has joined #lisp
<jackdaniel> asdf is quite heavy, quicklisp calls (require 'asdf) - but I don't think that this would account for 2 minutes on a sensible machine
varjag has joined #lisp
shka_ has joined #lisp
kpoeck has joined #lisp
<iskander> sometimes it is quicker, maybe a minute, but in the past i didn't notice any delay at all, maybe setup for quicklisp has changed in the meantime
bdixat has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
kam1 has quit [Ping timeout: 272 seconds]
<kpoeck> iskander Try (ql:update-client), I believe Xach said version 2021-02-11 has a performance problem scanning the local-projects directory. Version 2021-02-13  should fix that
<iskander> Already did :( The most up-to-date client, version 2021-02-13, is already installed.
<Colleen> iskander: kpoeck said 11 minutes, 38 seconds ago: Try (ql:update-client), I believe Xach said version 2021-02-11 has a performance problem scanning the local-projects directory
<kpoeck> And there dies a nice theory :-(
<kpoeck> Can you trace compile-file?
<iskander> hmm, my local repositories dir contains 49 git repos, not all of them LISP, maybe if i point my repo to a subdir for LISP
pve has joined #lisp
kpoeck has quit [Quit: Connection closed]
<iskander> but still is 49 git repos really a problem here ? i'll try to debug it
kilimanjaro has quit [Quit: Connection closed for inactivity]
rogersm has joined #lisp
varjag has quit [Ping timeout: 256 seconds]
<iskander> guys, does that mean that you have no such issues ?
hardstuck has joined #lisp
samebchase- has quit [Quit: The Lounge - https://thelounge.chat]
madage has quit [Remote host closed the connection]
madage has joined #lisp
Cymew has joined #lisp
<jackdaniel> I haven't updated the client yet
samebchase- has joined #lisp
gj has joined #lisp
luni has joined #lisp
jprajzne has quit [Quit: Leaving.]
anticrisis has quit [Read error: Connection reset by peer]
<pve> iskander: try reducing the number of files it has to scan when it starts up
heisig has joined #lisp
v3ga has joined #lisp
ljavorsk has joined #lisp
judson_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
luni has quit [Quit: Connection closed]
rogersm has quit [*.net *.split]
cloudy[m]1 has quit [*.net *.split]
equwal has quit [*.net *.split]
Gnuxie[m] has quit [*.net *.split]
dmiles[m] has quit [*.net *.split]
posthuman_egrego has quit [*.net *.split]
katco has quit [*.net *.split]
larme has quit [*.net *.split]
<iskander> yep, reducing number of repos helped, a lot :)
<iskander> now startup is quick again
<iskander> i moved all my lisp dirs to a separate lisp subdir and it helped
<iskander> but this is sub-optimal :/
<pve> maybe there's a particular folder with an obscene amount of files that's causing it..
<iskander> oh yeah, e.g. linux kernel :O
bilegeek has quit [Quit: Leaving]
<carkh> lol
skapata has joined #lisp
<carkh> this might be it =)
nullkl has joined #lisp
<iskander> quicklisp scans every subdir recursively ?
larme has joined #lisp
posthuman_egrego has joined #lisp
Gnuxie[m] has joined #lisp
cloudy[m]1 has joined #lisp
rogersm has joined #lisp
equwal has joined #lisp
dmiles[m] has joined #lisp
katco has joined #lisp
hjudt has joined #lisp
wxie has quit [Ping timeout: 264 seconds]
<pve> iskander: it's configurable through asdf
theothornhill[m] has quit [Ping timeout: 240 seconds]
quanta[m] has quit [Ping timeout: 240 seconds]
dieggsy has quit [Ping timeout: 240 seconds]
etimmons has quit [Ping timeout: 240 seconds]
kaisyu[m] has quit [Ping timeout: 240 seconds]
nullkl has quit [Ping timeout: 256 seconds]
cloudy[m]1 has quit [Ping timeout: 258 seconds]
equwal has quit [Ping timeout: 258 seconds]
ThaEwat has quit [Ping timeout: 246 seconds]
Gnuxie[m] has quit [Ping timeout: 258 seconds]
dmiles[m] has quit [Ping timeout: 258 seconds]
posthuman_egrego has quit [Ping timeout: 258 seconds]
katco has quit [Ping timeout: 258 seconds]
arichiardi[m] has quit [Ping timeout: 250 seconds]
M18WABNFN4 has quit [Ping timeout: 244 seconds]
MrtnDk[m] has quit [Ping timeout: 244 seconds]
jdormit has quit [Ping timeout: 244 seconds]
deselby has quit [Ping timeout: 244 seconds]
even4void[m] has quit [Ping timeout: 250 seconds]
kreyren1 has quit [Ping timeout: 250 seconds]
infra_red[m] has quit [Ping timeout: 268 seconds]
christopheroei[m has quit [Ping timeout: 265 seconds]
loke[m] has quit [Ping timeout: 265 seconds]
ms[m] has quit [Ping timeout: 265 seconds]
aartaka_d has joined #lisp
aartaka has quit [Ping timeout: 240 seconds]
random-nick has joined #lisp
aartaka_d has quit [Ping timeout: 240 seconds]
karlosz has quit [Remote host closed the connection]
froggey has quit [Ping timeout: 272 seconds]
froggey has joined #lisp
karlosz has joined #lisp
carkh has quit [Remote host closed the connection]
aartaka has joined #lisp
carkh has joined #lisp
hjudt has quit [Quit: leaving]
hendursa1 has joined #lisp
hendursaga has quit [Ping timeout: 268 seconds]
karlosz has quit [Quit: karlosz]
karlosz has joined #lisp
cloudy[m] has joined #lisp
hjudt has joined #lisp
jprajzne has joined #lisp
infra_red[m] has joined #lisp
posthuman_egrego has joined #lisp
etimmons has joined #lisp
equwal has joined #lisp
dieggsy has joined #lisp
kreyren has joined #lisp
christopheroei[m has joined #lisp
loke[m] has joined #lisp
ThaEwat has joined #lisp
katco has joined #lisp
jdormit has joined #lisp
MrtnDk[m] has joined #lisp
dmiles[m] has joined #lisp
quanta[m] has joined #lisp
ms[m] has joined #lisp
kaisyu[m] has joined #lisp
Gnuxie[m] has joined #lisp
even4void[m] has joined #lisp
deselby has joined #lisp
arichiardi[m] has joined #lisp
ey[m] has joined #lisp
theothornhill[m] has joined #lisp
carkh has quit [Remote host closed the connection]
gj has quit [Quit: Connection closed]
IPmonger has quit [Quit: ZNC 1.7.5+deb4 - https://znc.in]
IPmonger has joined #lisp
aartaka_d has joined #lisp
villanella has joined #lisp
Stanley|00 is now known as Stanley00
aartaka has quit [Ping timeout: 240 seconds]
terrorjack has quit [Quit: The Lounge - https://thelounge.chat]
villanella1 has joined #lisp
villanella has quit [Ping timeout: 240 seconds]
jprajzne has quit [Ping timeout: 246 seconds]
fubbiquantz has joined #lisp
carkh has joined #lisp
surabax has joined #lisp
orivej has joined #lisp
grumble has quit [Quit: shovels were a truly groundbreaking invention]
hardstuck has quit [Quit: Leaving]
jprajzne has joined #lisp
grumble has joined #lisp
zaquest has quit [Remote host closed the connection]
Oddity has quit [Ping timeout: 264 seconds]
nullkl has joined #lisp
Oddity has joined #lisp
zaquest has joined #lisp
_jrjsmrtn has quit [Ping timeout: 264 seconds]
nullkl has quit [Ping timeout: 240 seconds]
asarch has joined #lisp
<asarch> If I: (let (a (b '(1 2 3 4 5))) and then (setf a b) and then (setf b (delete 4 b)) then a is '(1 2 3 5) and b is '(1 2 3 5), how could I a is '(1 2 3 4 5) and b just '(1 2 3 5)?
louis771 has joined #lisp
<beach> clhs remove
<beach> asarch: Replace DELETE by REMOVE.
terrorjack has joined #lisp
<asarch> Yeah! Thank you! Thank you very much! :-)
terrorjack has quit [Remote host closed the connection]
villanella1 has quit [Ping timeout: 265 seconds]
v3ga has quit [Ping timeout: 260 seconds]
v3ga has joined #lisp
asarch has quit [Quit: Leaving]
<frodef> I'm thinking to start using github (with emacs, slime etc), any tips on tools or techniques I might find useful?
attila_lendvai has joined #lisp
vegansbane6963 has quit [Quit: The Lounge - https://thelounge.chat]
zooey has quit [Remote host closed the connection]
zooey has joined #lisp
<heisig> frodef: I'm not sure I understand your question. But my two pieces of advice would be to use Magit for managing Git from Emacs, and to prepare for leaving Github as soon as Microsoft starts acting weird.
<scymtym> frodef: if you are not already using it, the magit package for emacs is a great interface to git. it requires a time investment to reach "fluency", but that is well worth it in my experience. if you want to go further down that road, there is the forge package which adds github-specific information and actions to magit (it also supports gitlab and other "forges")
<frodef> ok thanks.
<frodef> so.. MS bought github, I gather :)
orivej has quit [Ping timeout: 240 seconds]
<TMA> that's really old news
phao has joined #lisp
phao has left #lisp [#lisp]
<scymtym> i think the main consideration is whether to rely heavily on features beyond git such as issues, wiki, package hosting, continuous integration and so on
terrorjack has joined #lisp
galex-713 has quit [Ping timeout: 265 seconds]
Stanley00 has quit []
fubbiquantz has quit [Ping timeout: 240 seconds]
galex-713 has joined #lisp
terrorjack has quit [Remote host closed the connection]
terrorjack has joined #lisp
svetlyak40wt has quit [Remote host closed the connection]
svetlyak40wt has joined #lisp
vegansbane6963 has joined #lisp
galex-713_ has joined #lisp
galex-713 has quit [Ping timeout: 272 seconds]
svetlyak40wt has quit [Ping timeout: 240 seconds]
galex-713_ has quit [Remote host closed the connection]
terrorjack has quit [Remote host closed the connection]
<ex_nihilo> Given a file in a Slime buffer containing only: (let ((msg "Foo.")) (format t "~A~%" msg))
<ex_nihilo> When slime-compile-and-load-file is invoked with C-c C-k, "Foo." is printed before the repl prompt.
<ex_nihilo> But, given: (let ((line (read-line))) (format t "~A~%" line))
<ex_nihilo> after C-c C-k the point is left following the repl prompt, waiting for input; and after input is given it is echoed, but then the point is left at the beginning of a blank line and ENTER must be pressed again to get back to the repl prompt even though evaluation of the file should now be completed.
frgo has quit [Remote host closed the connection]
<ex_nihilo> I get the same behavior if I evaluate the LET form with slime-eval-region using C-c C-r.
<ex_nihilo> Running the same file as a script, or entering the same LET form at the repl, the code behaves as expected without exhibiting this blocking behavior after echoing the input.
<ex_nihilo> This seems to be i/o related, but I don't understand why this would work when entered directly in the repl, but not when evaluated from a file; is it just a quirk of the Slime repl, or am I missing something about how code is sent to the repl?
frgo has joined #lisp
terrorjack has joined #lisp
aeth_ has quit [Ping timeout: 240 seconds]
aeth has joined #lisp
terrorjack has quit [Remote host closed the connection]
terrorjack has joined #lisp
louis771 has left #lisp ["Textual IRC Client: www.textualapp.com"]
galex-713 has joined #lisp
galex-713 has quit [Remote host closed the connection]
galex-713 has joined #lisp
mjl has quit [Remote host closed the connection]
ffwacom has quit [Remote host closed the connection]
mgsk has quit [Remote host closed the connection]
splittist has quit [Remote host closed the connection]
yonkunas has quit [Remote host closed the connection]
mjl has joined #lisp
Alfr_ has quit [Quit: Leaving]
splittist has joined #lisp
splittist has quit [Remote host closed the connection]
mjl has quit [Remote host closed the connection]
mjl has joined #lisp
splittist has joined #lisp
ffwacom has joined #lisp
Alfr has joined #lisp
galex-713_ has joined #lisp
galex-713 has quit [Ping timeout: 272 seconds]
mgsk has joined #lisp
nullkl has joined #lisp
orivej has joined #lisp
yonkunas has joined #lisp
nullkl has quit [Ping timeout: 265 seconds]
euandreh has quit [Ping timeout: 264 seconds]
galex-713_ has quit [Ping timeout: 246 seconds]
galex-713 has joined #lisp
pfdietz has quit [Quit: Connection closed]
villanella has joined #lisp
galex-713 has quit [Ping timeout: 272 seconds]
<frodef> Any perspectives on doom emacs? (sorry to bring up what I guess are old threads..)
ilshad has joined #lisp
galex-713 has joined #lisp
galex-713 has quit [Ping timeout: 272 seconds]
galex-713 has joined #lisp
mpontillo has quit [Remote host closed the connection]
mpontillo has joined #lisp
terrorjack has quit [Remote host closed the connection]
galex-713_ has joined #lisp
galex-713 has quit [Ping timeout: 272 seconds]
pfdietz has joined #lisp
terrorjack has joined #lisp
galex-713_ has quit [Ping timeout: 240 seconds]
luni has joined #lisp
euandreh has joined #lisp
euandreh has quit [Ping timeout: 264 seconds]
mpontillo has quit []
mpontillo has joined #lisp
euandreh has joined #lisp
nullkl has joined #lisp
galex-713 has joined #lisp
nullkl has quit [Ping timeout: 264 seconds]
euandreh has quit [Ping timeout: 272 seconds]
pfdietz has quit [Ping timeout: 240 seconds]
<Cthulhux> doom emacs is a good starter package (although i cant stand the evil-mode anymore)
<Cthulhux> but you'll end up writing your own configuration anyway
<Cthulhux> save some time and start from scratch!
euandreh has joined #lisp
nullkl has joined #lisp
_Posterdati_ is now known as Posterdati
galex-713 has quit [Ping timeout: 272 seconds]
Bike has joined #lisp
euandreh has quit [Ping timeout: 264 seconds]
pfdietz has joined #lisp
galex-713 has joined #lisp
euandreh has joined #lisp
iamFIREcracker has quit [Ping timeout: 246 seconds]
hjudt has quit [Ping timeout: 240 seconds]
cage_ has joined #lisp
euandreh has quit [Ping timeout: 260 seconds]
ukari has quit [Remote host closed the connection]
ukari has joined #lisp
euandreh has joined #lisp
jeosol has quit [Quit: Connection closed]
pfdietz has quit [Quit: Connection closed]
galex-713 has quit [Ping timeout: 240 seconds]
galex-713 has joined #lisp
iamFIREcracker has joined #lisp
fubbiquantz has joined #lisp
pfdietz has joined #lisp
perrier-jouet has quit [Quit: WeeChat 3.0]
galex-713_ has joined #lisp
galex-713 has quit [Ping timeout: 272 seconds]
fubbiquantz has quit [Ping timeout: 260 seconds]
galex-713_ has quit [Remote host closed the connection]
ym has joined #lisp
ex_nihilo has quit [Ping timeout: 264 seconds]
svetlyak40wt has joined #lisp
ukari has quit [Remote host closed the connection]
<shka_> Cthulhux: sick of the vi style or something in evil in particular?
ukari has joined #lisp
Nilby has quit [Ping timeout: 264 seconds]
davd33 has joined #lisp
lottaquestions has quit [Quit: Konversation terminated!]
lottaquestions has joined #lisp
heisig has quit [Quit: Leaving]
galex-713 has joined #lisp
pfdietz has quit [Ping timeout: 240 seconds]
lottaquestions has quit [Client Quit]
karstensrage has quit [Quit: ZNC - http://znc.in]
lottaquestions has joined #lisp
pfdietz has joined #lisp
skapata has quit [Remote host closed the connection]
galex-713 has quit [Read error: Connection reset by peer]
galex-713 has joined #lisp
louis771 has joined #lisp
villanella has quit [Ping timeout: 240 seconds]
quanta[m] has quit [Quit: Idle for 30+ days]
hendursa1 has quit [Quit: hendursa1]
hendursaga has joined #lisp
contrapunctus has left #lisp ["Disconnected: closed"]
davros_ has quit [Ping timeout: 246 seconds]
contrapunctus has joined #lisp
svetlyak_ has joined #lisp
davros has joined #lisp
ikrabbe has quit [Ping timeout: 240 seconds]
svetlyak40wt has quit [Ping timeout: 272 seconds]
galex-713_ has joined #lisp
galex-713 has quit [Ping timeout: 272 seconds]
nullkl has quit [Ping timeout: 260 seconds]
ikrabbe has joined #lisp
nullkl has joined #lisp
amerigo has joined #lisp
galex-713_ has quit [Ping timeout: 265 seconds]
galex-713 has joined #lisp
luni has quit [Quit: Connection closed]
ym has quit [Ping timeout: 265 seconds]
carkh has quit [Remote host closed the connection]
carkh has joined #lisp
galex-713 has quit [Ping timeout: 272 seconds]
galex-713_ has joined #lisp
<Cthulhux> sick of the vi style
<Cthulhux> ;-)
<Cthulhux> "modal" editing is a waste of time. when i open a text editor, i usually want to type something.
nullkl has quit [Ping timeout: 260 seconds]
<beach> Cthulhux: Let's not have this debate here, please.
galex-713_ has quit [Ping timeout: 240 seconds]
hendursa1 has joined #lisp
hendursaga has quit [Ping timeout: 268 seconds]
<Cthulhux> i was asked! :(
flip214 has quit [Ping timeout: 240 seconds]
hendursa1 has quit [Quit: hendursa1]
h4ck3r9696 has joined #lisp
hendursaga has joined #lisp
luna_is_here has quit [Read error: Connection reset by peer]
luna_is_here has joined #lisp
sjl has joined #lisp
flip214 has joined #lisp
<beach> flip214: Did you do your presentation yet?
perrier-jouet has joined #lisp
toorevitimirp has quit [Remote host closed the connection]
MrtnDk[m] has quit [Ping timeout: 240 seconds]
arichiardi[m] has quit [Ping timeout: 240 seconds]
nullkl has joined #lisp
even4void[m] has quit [Ping timeout: 258 seconds]
svetlyak_ has quit [Quit: Leaving...]
arichiardi[m] has joined #lisp
MrtnDk[m] has joined #lisp
jprajzne has quit [Quit: Leaving.]
brandflake11 has joined #lisp
even4void[m] has joined #lisp
ebrasca has joined #lisp
long4mud has quit [Quit: WeeChat 3.0.1]
Sheilong has joined #lisp
davros has quit [Ping timeout: 265 seconds]
nullkl has quit [Ping timeout: 240 seconds]
davros has joined #lisp
jeosol has joined #lisp
terrorjack has quit [Read error: Connection reset by peer]
terrorjack has joined #lisp
ljavorsk has quit [Ping timeout: 240 seconds]
ex_nihilo has joined #lisp
SN has joined #lisp
Gromboli2 has joined #lisp
nullkl has joined #lisp
penguwin9 has joined #lisp
edgar-xyz has joined #lisp
grobe0ba_ has joined #lisp
madnificent_ has joined #lisp
Lord_of_Life_ has joined #lisp
albusp_ has joined #lisp
vsync_ has joined #lisp
dvdmuckle_ has joined #lisp
Tordek_ has joined #lisp
Keyboard1orrier has joined #lisp
Patternm1ster has joined #lisp
aeth_ has joined #lisp
flip214_ has joined #lisp
alfred181 has joined #lisp
andreyorst_ has joined #lisp
louis771 has quit [Quit: My M1 has gone to sleep. ZZZzzz…]
theBlack1ragon has joined #lisp
kenran has joined #lisp
louis771 has joined #lisp
akkad_ has joined #lisp
jxy_ has joined #lisp
andreyorst_ has quit [Client Quit]
andreyorst_ has joined #lisp
h4ck3r9696 has quit [*.net *.split]
flip214 has quit [*.net *.split]
aeth has quit [*.net *.split]
aartaka_d has quit [*.net *.split]
Lord_of_Life has quit [*.net *.split]
jxy has quit [*.net *.split]
amb007 has quit [*.net *.split]
Gromboli has quit [*.net *.split]
vsync has quit [*.net *.split]
CrazyEddy has quit [*.net *.split]
Tordek has quit [*.net *.split]
madnificent has quit [*.net *.split]
akkad has quit [*.net *.split]
grobe0ba has quit [*.net *.split]
red-dot has quit [*.net *.split]
theBlackDragon has quit [*.net *.split]
andreyorst has quit [*.net *.split]
edgar-rft has quit [*.net *.split]
Krystof has quit [*.net *.split]
penguwin has quit [*.net *.split]
KeyboardWorrier has quit [*.net *.split]
dvdmuckle has quit [*.net *.split]
alfred188 has quit [*.net *.split]
albusp has quit [*.net *.split]
Patternmaster has quit [*.net *.split]
akkad_ is now known as akkad
grobe0ba_ is now known as grobe0ba
theBlack1ragon is now known as theBlackDragon
dvdmuckle_ is now known as dvdmuckle
Lord_of_Life_ is now known as Lord_of_Life
penguwin9 is now known as penguwin
SN is now known as red-dot
Gromboli2 is now known as Gromboli
cosimone has joined #lisp
andreyorst_ is now known as andreyorst
aartaka_d has joined #lisp
h4ck3r9696 has joined #lisp
Patternmaster has joined #lisp
flip214 has joined #lisp
jxy has joined #lisp
edgar-rft has joined #lisp
07IAAT3C1 has joined #lisp
07IAATWSS has joined #lisp
albusp has joined #lisp
amb007 has joined #lisp
07IAAT5JZ has joined #lisp
aeth has joined #lisp
07IAAT120 has joined #lisp
07IAAT6KJ has joined #lisp
KeyboardWorrier has joined #lisp
KeyboardWorrier has quit [Max SendQ exceeded]
07IAAT5JZ has quit [Max SendQ exceeded]
edgar-rft has quit [Max SendQ exceeded]
Bourne has quit [Ping timeout: 246 seconds]
aeth has quit [Ping timeout: 254 seconds]
flip214 has quit [Ping timeout: 254 seconds]
aartaka_d has quit [Ping timeout: 254 seconds]
jxy has quit [Ping timeout: 254 seconds]
07IAAT6KJ has quit [Ping timeout: 254 seconds]
07IAAT3C1 has quit [Ping timeout: 254 seconds]
07IAAT120 has quit [Ping timeout: 254 seconds]
07IAATWSS has quit [Ping timeout: 254 seconds]
albusp has quit [Ping timeout: 254 seconds]
Patternmaster has quit [Ping timeout: 254 seconds]
carkh has quit [Remote host closed the connection]
carkh has joined #lisp
sauvin has quit [Remote host closed the connection]
sauvin has joined #lisp
theothornhill[m] has quit [Ping timeout: 244 seconds]
kaisyu[m] has quit [Ping timeout: 244 seconds]
loke[m] has quit [Ping timeout: 244 seconds]
etimmons has quit [Ping timeout: 244 seconds]
katco has quit [Ping timeout: 244 seconds]
cloudy[m] has quit [Ping timeout: 244 seconds]
sauvin has quit [Max SendQ exceeded]
infra_red[m] has quit [Ping timeout: 244 seconds]
sauvin has joined #lisp
theothornhill[m] has joined #lisp
etimmons has joined #lisp
varjagg has joined #lisp
cloudy[m] has joined #lisp
brandfla` has joined #lisp
brandflake11 has quit [Ping timeout: 258 seconds]
CrazyEddy has joined #lisp
loke[m] has joined #lisp
Krystof has joined #lisp
kaisyu[m] has joined #lisp
katco has joined #lisp
infra_red[m] has joined #lisp
luni has joined #lisp
mason has left #lisp [#lisp]
kam1 has joined #lisp
<ebrasca> is this code ok "(defgeneric (setf find-host) (new-value host))" ?
<recalloc> Yep, that looks right
<ebrasca> I was not sure if it does works with defgeneric.
<recalloc> setf totally works with defgeneric. I even think CLOS secretly uses generic setf's when defining slot writers.
<recalloc> `(defparameter +whitespace-p+ (cl-unicode:property-test "whitespace"))` feels silly. Is there a way I could "defparameter" a function?
<ebrasca> (defparameter +whitespace-p+ (lambda ...)) ?
<recalloc> That would still bind it to a special variable instead of a function.
<recalloc> (property-test) returns a function, and I'd want to call tha function like (whitespace-p char) instead of (funcall +whitespace-p+ char).
<Bike> there are no special bindings in the function namespace, no.
<Bike> you can do (defun whitespace-p (char) (funcall *whitespace-p* char)) of course.
<recalloc> ...all right, probably the best I could hope for.
<Bike> and yes, when you define slot readers and writers through defclass they are generic functions.
<TMA> you can (setf symbol-function) it as well
frgo_ has joined #lisp
frgo_ has quit [Remote host closed the connection]
frgo_ has joined #lisp
frgo has quit [Ping timeout: 264 seconds]
<Bike> oh, yeah, if you only want to change the global binding you can just do (setf (fdefinition 'whitespace-p) (cl-unicode:property-test "whitespace"))
nullkl has quit [Ping timeout: 240 seconds]
galex-713 has joined #lisp
KUrare has joined #lisp
louis771 has left #lisp ["Textual IRC Client: www.textualapp.com"]
judson_ has joined #lisp
aeth_ has quit [Ping timeout: 240 seconds]
<Krystof> I don't really recommend this, but restarts are dynamically-bound functions
aeth has joined #lisp
judson_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
sauvin has quit [Remote host closed the connection]
sauvin has joined #lisp
galex-713 has quit [Ping timeout: 272 seconds]
galex-713_ has joined #lisp
kam1 has quit [Ping timeout: 264 seconds]
nullkl has joined #lisp
kam1 has joined #lisp
nullkl has quit [Ping timeout: 256 seconds]
aartaka has joined #lisp
<jasom> As are condition handlersw
<jasom> but neither of those are in the function namespace
judson_ has joined #lisp
<jasom> can anyone point me to the best way to develop lisp software on a remote linux system? I'm thinking tramp-mode for editing plus connecting to a swank server, but maybe there's a better way?
nullkl has joined #lisp
<Xach> jasom: lately i've been using remote emacs, with xterm-mode for mouse click/drag, two vertical panes on a wide terminal, and mosh.
galex-713_ has quit [Ping timeout: 272 seconds]
galex-713 has joined #lisp
<Xach> jasom: some terminals can also transparently sync the remote kill ring with the local clipboard (not my xterm, though)
<Xach> oh, and screen
<Xach> i really like GUI emacs, but this isn't too bad.
<jasom> you use screen and mosh? I thought they both did detachment, so is the screen just for multiplexing?
<Xach> jasom: Can you detach from mosh and re-attach? All my searches said no.
amb007 has quit [Read error: Connection reset by peer]
<jasom> Xach: I don't use it so you're probably right then
<Xach> Anyway, screen gives some flexibility to connect from ssh or something else in a pinch.
amb007 has joined #lisp
<Xach> mosh isn't a requirement, but it really helps keep things seamless day to day.
<Xach> and it helps with the latency a bit
amb007 has quit [Read error: Connection reset by peer]
<jasom> in this case the machine is plugged into the same ethernet switch, so latency not an issue
<flip214_> beach: I'll be having discussions for some time yet... I delivered my paper and had a few meetings already
amb007 has joined #lisp
ilshad has quit [Ping timeout: 240 seconds]
<Xach> jasom: ah. for me, tramp had too much latency, and i had trouble getting the translation to work. i've found it simpler to use a remote emacs with mouse support instead.
<Xach> it took me until late 2020 to find out that there was a way to get mouse clicks on a remote emacs :(
<jasom> I suppose over ethernet I could even do X tunneling
<Xach> i use and like mac GUI emacs, and hate how X emacs looks on a Mac display, and the keys didn't map right and I didn't want to figure it out.
Inline has quit [Quit: Leaving]
<Xach> i don't mind X emacs on a Linux desktop though.
amb007 has quit [Read error: Connection reset by peer]
<Cthulhux> is Xemacs still developed?
amb007 has joined #lisp
galex-713_ has joined #lisp
galex-713 has quit [Ping timeout: 272 seconds]
<Xach> I don't know. when I wrote "X emacs" I mean GNU Emacs displaying on an X server.
<Xach> Not through a terminal.
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
a138 has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
galex-713_ has quit [Ping timeout: 240 seconds]
<recalloc> Is there any chance of optimization by declaiming an ftype? I want to indicate the intended parameter type (and promised return type if filled), but I don't want it to error if the wrong type is passed in.
<recalloc> s/error/cause undefined behavior/
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
<Bike> optimizations that use the parameter type information would in general result in undefined behavior if an object of the wrong type is passed in
sauvin has quit [Remote host closed the connection]
<recalloc> aight, good to know!
<Bike> e.g., you have (lambda (a b) (+ a b)), you declare that A and B are fixnums - the optimization would be using a fixnum addition routine instead of a general addition routine - you call it with floats, it tries to interpret them as fixnums, problems happen.
luni has quit [Quit: Connection closed]
galex-713_ has joined #lisp
kam1 has quit [Ping timeout: 256 seconds]
loke` has joined #lisp
loke has quit [Read error: Connection reset by peer]
<jackdaniel> another option would be running an emacs with gui via -X option to ssh (however that would look bad on slow connection)
thijso has quit [Ping timeout: 265 seconds]
Inline has joined #lisp
thijso has joined #lisp
samebchase- has quit [*.net *.split]
Cymew has quit [*.net *.split]
Iolo has quit [*.net *.split]
iskander has quit [*.net *.split]
sabrac has quit [*.net *.split]
n3t has quit [*.net *.split]
remexre has quit [*.net *.split]
simplegauss has quit [*.net *.split]
casual_friday_ has quit [*.net *.split]
tmf has quit [*.net *.split]
jurov has quit [*.net *.split]
nitrix has quit [*.net *.split]
myall has quit [*.net *.split]
ski has quit [*.net *.split]
snits has quit [*.net *.split]
nydel has quit [*.net *.split]
Colleen has quit [*.net *.split]
shoshin has quit [*.net *.split]
mtd has quit [*.net *.split]
tessier has quit [*.net *.split]
jfb4 has quit [*.net *.split]
cgay_ has quit [*.net *.split]
mtd__ has quit [*.net *.split]
khisanth_ has quit [*.net *.split]
brandonz has quit [*.net *.split]
lonjil has quit [*.net *.split]
emma has quit [*.net *.split]
matthewcroughan has quit [*.net *.split]
gpiero has quit [*.net *.split]
daniel1302 has quit [*.net *.split]
AdmiralBumbleBee has quit [*.net *.split]
brass has quit [*.net *.split]
bkst has quit [*.net *.split]
zymurgy has quit [*.net *.split]
Kabriel has quit [*.net *.split]
interruptinuse has quit [*.net *.split]
aap has quit [*.net *.split]
gensym has quit [*.net *.split]
eMBee has quit [*.net *.split]
ferada has quit [*.net *.split]
Ankhers has quit [*.net *.split]
_death has quit [*.net *.split]
samebchase- has joined #lisp
Iolo has joined #lisp
Cymew has joined #lisp
matthewcroughan has joined #lisp
remexre has joined #lisp
n3t has joined #lisp
jurov has joined #lisp
nitrix has joined #lisp
tmf has joined #lisp
simplegauss has joined #lisp
iskander has joined #lisp
casual_friday_ has joined #lisp
sabrac has joined #lisp
myall has joined #lisp
nydel has joined #lisp
ski has joined #lisp
cgay_ has joined #lisp
snits has joined #lisp
shoshin has joined #lisp
mtd has joined #lisp
brandonz has joined #lisp
khisanth_ has joined #lisp
lonjil has joined #lisp
gpiero has joined #lisp
bkst has joined #lisp
brass has joined #lisp
Kabriel has joined #lisp
aap has joined #lisp
_death has joined #lisp
interruptinuse has joined #lisp
eMBee has joined #lisp
gensym has joined #lisp
ferada has joined #lisp
jfb4 has joined #lisp
tessier has joined #lisp
Ankhers has joined #lisp
Colleen has joined #lisp
daniel1302 has joined #lisp
mtd__ has joined #lisp
AdmiralBumbleBee has joined #lisp
zymurgy has joined #lisp
emma has joined #lisp
jurov has quit [Max SendQ exceeded]
lonjil has quit [Max SendQ exceeded]
lonjil has joined #lisp
jurov has joined #lisp
orivej has quit [Ping timeout: 261 seconds]
skapata has joined #lisp
cage_ has quit [Quit: Leaving]
amb007 has quit [Read error: Connection reset by peer]
KUrare has quit [Ping timeout: 264 seconds]
aartaka_d has joined #lisp
amb007 has joined #lisp
nullkl has quit [Ping timeout: 240 seconds]
galex-713_ has quit [Ping timeout: 256 seconds]
<flip214_> minion: memo for heisig: DANKE!!!
<minion> Remembered. I'll tell heisig when he/she/it next speaks.
amb007 has quit [Read error: Connection reset by peer]
kenran has quit [Quit: leaving]
judson_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
amb007 has joined #lisp
judson_ has joined #lisp
aartaka has quit [Ping timeout: 272 seconds]
nullkl has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
galex-713 has joined #lisp
orivej has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
nullkl has quit [Ping timeout: 264 seconds]
amb007 has joined #lisp
galex-713_ has joined #lisp
galex-713 has quit [Ping timeout: 264 seconds]
luni has joined #lisp
judson_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
kam1 has joined #lisp
aeth has quit [Ping timeout: 265 seconds]
galex-713 has joined #lisp
galex-713_ has quit [Ping timeout: 272 seconds]
ex_nihilo has quit [Ping timeout: 240 seconds]
villanella has joined #lisp
aeth has joined #lisp
ilshad has joined #lisp
hiroaki has joined #lisp
roelj has quit [Remote host closed the connection]
nullkl has joined #lisp
anticrisis has joined #lisp
nullkl has quit [Ping timeout: 265 seconds]
rogersm has quit [Quit: Leaving...]
hjudt has joined #lisp
pve has quit [Ping timeout: 265 seconds]
judson_ has joined #lisp
nullkl has joined #lisp
pve has joined #lisp
* |3b| uses (server-start) and emacsclient -t per ssh for remote lisp dev
nullkl has quit [Ping timeout: 240 seconds]
ilshad has quit [Ping timeout: 246 seconds]
cosimone has quit [Quit: cosimone]
a138 has quit [Read error: Connection reset by peer]
galex-713 has quit [Ping timeout: 264 seconds]
ex_nihilo has joined #lisp
galex-713 has joined #lisp
<Krystof> jasom: they're not in the function namespace, but neither are variables. (invoke-restart '<name>) is not that different from (funcall *<name>*)
akoana has joined #lisp
Josh_2 has joined #lisp
pankajsg has quit [Read error: No route to host]
pankajsg has joined #lisp
<Josh_2> ello
nullkl has joined #lisp
shka_ has quit [Ping timeout: 264 seconds]
nullkl has quit [Ping timeout: 264 seconds]
galex-713 has quit [Ping timeout: 272 seconds]
Keyboard1orrier has quit [Changing host]
Keyboard1orrier has joined #lisp
casual_friday has joined #lisp
casual_friday_ has quit [Ping timeout: 256 seconds]
ex_nihilo_ has joined #lisp
ex_nihilo has quit [Ping timeout: 265 seconds]
meursault has joined #lisp
KUrare has joined #lisp
Keyboard1orrier is now known as KeyboardWorrier
ex_nihilo_ has quit [Ping timeout: 240 seconds]
dbotton has joined #lisp
ilshad has joined #lisp
rpg has joined #lisp
<phoe> jasom: I have done sshfs rather than tramp
loskutak has joined #lisp
<phoe> I have a remote directory like /project/foo/ that contains my lisp code and I sshfs-mount the directory at the same location locally
<phoe> pros are that no tramp is required, everything works automagically and I can open all the files with all the local editors and such as well
<phoe> cons are that I'm constrained with regard to where I must place my files on the remote and where I can bind on the local
narimiran has quit [Ping timeout: 265 seconds]
frgo has joined #lisp
frgo has quit [Remote host closed the connection]
frgo has joined #lisp
<jasom> phoe: I suppose you could bind-mount /{usr,bin,home,etc} into /remote-hostname/ on the remote and then sshfs mount the remote root to /remote-hostname/ on the local machine
<phoe> I guess
galex-713 has joined #lisp
<jasom> would have to set SBCL_HOME appropraitely to get M-. to work on internal sources as well
frgo_ has quit [Ping timeout: 260 seconds]
judson_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
nullkl has joined #lisp
villanella1 has joined #lisp
jxy_ has quit [Quit: leaving]
jxy has joined #lisp
villanella has quit [Ping timeout: 240 seconds]
nullkl has quit [Ping timeout: 264 seconds]
aartaka_d has quit [Ping timeout: 240 seconds]
ikrabbe|2 has joined #lisp
dbotton has quit [Quit: Leaving]
ikrabbe has quit [Ping timeout: 264 seconds]
Inline has quit [Quit: Leaving]
theothornhill has joined #lisp
Inline has joined #lisp
galex-713_ has joined #lisp
judson_ has joined #lisp
galex-713__ has joined #lisp
galex-713 has quit [Read error: Connection reset by peer]
galex-713 has joined #lisp
nullkl has joined #lisp
galex-713__ has quit [Read error: Connection reset by peer]
galex-713___ has joined #lisp
galex-713_ has quit [Ping timeout: 256 seconds]
galex-713_ has joined #lisp
galex-713 has quit [Read error: Connection reset by peer]
galex-713 has joined #lisp
galex-713___ has quit [Read error: Connection reset by peer]
caesarsalad has joined #lisp
galex-713__ has joined #lisp
<Josh_2> Converted bout 2000 lines of Python to CL :O
<Josh_2> just gotta write all the tests to make sure It's not borked. This is a first for me
galex-713_ has quit [Ping timeout: 240 seconds]
theothornhill has quit [Ping timeout: 265 seconds]
galex-713__ has quit [Ping timeout: 246 seconds]
galex-713 has quit [Ping timeout: 246 seconds]
galex-713 has joined #lisp
<meursault> What kind of application?
ikrabbe has joined #lisp
ikrabbe|2 has quit [Ping timeout: 256 seconds]
galex-713_ has joined #lisp
zacts has joined #lisp
galex-713 has quit [Ping timeout: 272 seconds]
<Josh_2> It's the python wrapper of the Olm library
KUrare has quit [Ping timeout: 240 seconds]
davd33 has quit [Read error: Connection reset by peer]
kam1 has quit [Ping timeout: 246 seconds]
theothornhill has joined #lisp
theothor` has joined #lisp
theothornhill has quit [Remote host closed the connection]
<Josh_2> The original python library is apache license 2, obviously I haven't modified or used any of their original code as the code is basically just FFI calls, do I have to use the apache license 2?
h4ck3r9696 has quit [Quit: Leaving.]
theothor` has quit [Ping timeout: 240 seconds]
aeth_ has joined #lisp
aeth has quit [Disconnected by services]
aeth_ is now known as aeth
edgar-xyz has quit [Quit: Leaving]
edgar-rft has joined #lisp
<hjudt> phoe: sshfs is really slow when having to deal with lots of files, especially with git operations. that's were emacs/tramp shines.
scymtym_ has joined #lisp
scymtym has quit [Ping timeout: 246 seconds]
scymtym_ has quit [Remote host closed the connection]
contrapunctus has left #lisp ["Disconnected: Replaced by new connection"]
contrapunctus has joined #lisp
nullkl has quit [Ping timeout: 240 seconds]
galex-713_ has quit [Ping timeout: 256 seconds]
<phoe> hjudt: yes
Inline has quit [Remote host closed the connection]
KUrare has joined #lisp
aindilis has quit [Remote host closed the connection]
aindilis` has joined #lisp
ikrabbe|2 has joined #lisp
ikrabbe has quit [Ping timeout: 264 seconds]
Inline has joined #lisp
pve has quit [Quit: leaving]
galex-713 has joined #lisp
Inline has quit [Client Quit]
pankajsg has quit [Ping timeout: 240 seconds]
varjagg has quit [Quit: ERC (IRC client for Emacs 28.0.50)]
Inline has joined #lisp
ikki has joined #lisp
hdasch has quit [Quit: ZNC 1.7.2+deb3~bpo9+1 - https://znc.in]
hdasch has joined #lisp
galex-713 has quit [Ping timeout: 272 seconds]
frgo has quit [Remote host closed the connection]
iamFIREc1 has joined #lisp
frgo has joined #lisp
aeth_ has joined #lisp
aeth has quit [Disconnected by services]
aeth_ is now known as aeth
KUrare has quit [Remote host closed the connection]
iamFIREcracker has quit [Ping timeout: 240 seconds]
scymtym has joined #lisp
galex-713 has joined #lisp
galex-713 has quit [Ping timeout: 272 seconds]
galex-713 has joined #lisp
galex-713 has quit [Ping timeout: 256 seconds]
random-nick has quit [Ping timeout: 246 seconds]