phoe changed the topic of #lisp to: Common Lisp, the #1=(programmable . #1#) programming language | <http://cliki.net/> <https://irclog.tymoon.eu/freenode/%23lisp> <https://irclog.whitequark.org/lisp> <http://ccl.clozure.com/irc-logs/lisp/> | SBCL 1.4.16, CMUCL 21b, ECL 16.1.3, CCL 1.11.5, ABCL 1.5.0
kajo has joined #lisp
lumm has quit [Quit: lumm]
lumm has joined #lisp
<vsync> anyone have experience with lisp graph DBs?
<vsync> just found VivaceGraph, wondering if there are more and how they compare to e.g. Allegro
jack_rabbit has joined #lisp
Quasus has quit [Ping timeout: 250 seconds]
lumm has quit [Client Quit]
lumm has joined #lisp
jack_rabbit has quit [Ping timeout: 245 seconds]
<phoe> it's 01:25 and I am bug-hunt-digging into the foreign Postmodern codebase figuring out how postgres wire protocol works instead of e.g. sleeping
<phoe> what am I doing with my life
<phoe> and why do I enjoy it so much
<MichaelRaskin> Well, if you enjoy it, maybe you are doing things right?
<MichaelRaskin> Or maybe it is cold getting to you.
akoana has joined #lisp
orivej has quit [Ping timeout: 245 seconds]
Lord_of_Life_ has joined #lisp
Lord_of_Life has quit [Ping timeout: 245 seconds]
Lord_of_Life_ is now known as Lord_of_Life
Fare has quit [Ping timeout: 255 seconds]
lumm has quit [Ping timeout: 268 seconds]
Achylles has quit [Ping timeout: 258 seconds]
Fare has joined #lisp
lumm has joined #lisp
amerlyq has quit [Quit: amerlyq]
lumm has quit [Ping timeout: 258 seconds]
Nilby has quit [Read error: Connection reset by peer]
Josh_2 has joined #lisp
Fare has quit [Ping timeout: 246 seconds]
ym555 has quit [Ping timeout: 245 seconds]
libertyprime has quit [Ping timeout: 255 seconds]
Achylles has joined #lisp
slyrus__ has joined #lisp
wxie has joined #lisp
slyrus_ has quit [Ping timeout: 246 seconds]
Fare has joined #lisp
aindilis has quit [Remote host closed the connection]
torbo has joined #lisp
<leo_song> Are there any existed common lisp libraries to do retrieve variable type information when expanding macros?
aindilis has joined #lisp
aindilis has quit [Remote host closed the connection]
aindilis has joined #lisp
<aeth> leo_song: this has variable type information, but it's limited to declared types, not compiler-inferred types, iirc. https://github.com/Bike/introspect-environment
<Bike> indeed
<Bike> because compiler inferred types are not available in the environment and thus not to macroexpanders
<gilberth> It also would be a bit paradox. Since the macro cannot every possibly depend on infered type information as that inferred type information would depend on its expansion.
<gilberth> ever, rather. It's late.
fschuindt has quit [Ping timeout: 250 seconds]
Achylles has quit [Ping timeout: 258 seconds]
<aeth> there's probably a way around that
<Bike> oh, well, probably
<Bike> that's fine then
<gilberth> aeth: Solving that as a fixed point problem?
<White_Flame> or call the expansion twice
<aeth> You could probably introduce some special in-defmacro-only form... macro-typecase or something.
<gilberth> Interesting thought. But how would you guarantee that it even is fixed point and will convergate?
<gilberth> converge, even?! [sic]
<gilberth> White_Flame: It will need to have a fixed point.
<White_Flame> not necessarily. It can support just a single feedback loop and work
<White_Flame> compile once blindly, compile again now that there's some inference
<gilberth> I don't think so.
<aeth> You can kind of have something like my macro-typecase already in optimizing implementations. Have an actual typecase and have it be optimized away after expansion... with the risk that it won't be and you'll get massive generated code size.
<aeth> It might also say "deleting unreachable code" confusingly. Not sure.
<gilberth> aeth: This is what I do at times. IIRC this works quite well.
<aeth> It works well for one and okay for two.
<aeth> beyond that you probably do want something like specialization-store but since it uses introspect-environment it will only work for declared types
Achylles has joined #lisp
Achylles has quit [Ping timeout: 258 seconds]
rumbler31 has joined #lisp
Essadon has quit [Quit: Qutting]
andrei-n has joined #lisp
sauvin has quit [Ping timeout: 255 seconds]
ak5 has joined #lisp
sauvin has joined #lisp
Oladon has quit [Quit: Leaving.]
rumbler31 has quit [Remote host closed the connection]
<pjb> leo_song: in lisp, types are not associated to variables, but to values. Values are known only at run-time!
luhuaei has joined #lisp
<leo_song> pjb: Even so, some type of symbols still can be deduced at compile time.
<leo_song> But common lisp dosen't require implementations to provide such infomations to the programmer.
<gilberth> That is not entirely true. You could assert that variable only holds an object a of a certain type by means of DECLARE.
<gilberth> And as I said earlier deduced information will never be available to a macro.
<leo_song> Yes, and I wish it could be more automatically. Like SBCL can give some type warning, if those informations can be retrieved, it would be great.
<pjb> leo_song: there can be exceptional cases, but in general, 1- this would require global analysis, 2- and even so, it's not always possible (remember, "run-time").
<leo_song> Yes, not necessarily always, only some will be helpful.
<leo_song> s/only/even
Oddity has quit [Read error: Connection reset by peer]
<aeth> gilberth: Yeah, I bring that up a lot too
<aeth> gilberth: Clearly pjb disagrees, but I agree with you
<aeth> CL can be dynamically typed or it can be both dynamically and statically typed. (It can't be only statically typed, though.)
<aeth> This is safer than just static typing, anyway. You have two things and they must match.
<aeth> gilberth: to be fair, though, DECLARE is implementation-specific
<gilberth> aeth: Sure.
<gilberth> aeth: Still --- IIRC CLtL2 had that --- to get at the declared types in macro would be nice in some cases.
<aeth> gilberth: we've gone full circle back to introspect-environment, which is a portability library over that part of CLtL2
Oddity has joined #lisp
<gilberth> What I wanted to point out that the idea that a macro could get at inferred types is a wet dream, since that inferred type would depend on the macro expansion too. Unless you formulated that as a fixed point problem with proven convergence that'll never work.
<aeth> gilberth: well, extending defmacro (or having another macro type) is the other alternative I see...
<aeth> of course, it won't happen
<gilberth> OK, then we agree, I suppose.
Aruseus has quit [Remote host closed the connection]
physpi has quit [Ping timeout: 252 seconds]
physpi has joined #lisp
Josh_2 has quit [Quit: ERC (IRC client for Emacs 26.1)]
smasta has joined #lisp
dddddd has quit [Remote host closed the connection]
sauvin has quit [Quit: Leaving]
catchme has quit [Quit: Connection closed for inactivity]
APic has quit [Ping timeout: 244 seconds]
sauvin has joined #lisp
sauvin has quit [Max SendQ exceeded]
MichaelRaskin has quit [Quit: MichaelRaskin]
sauvin has joined #lisp
sauvin has quit [Client Quit]
luhuaei has quit [Remote host closed the connection]
nsrahmad has joined #lisp
sauvin has joined #lisp
APic has joined #lisp
luhuaei has joined #lisp
rumbler31 has joined #lisp
wigust has joined #lisp
wigust- has quit [Ping timeout: 250 seconds]
rumbler31 has quit [Ping timeout: 245 seconds]
Nilby has joined #lisp
marusich has joined #lisp
luhuaei has left #lisp ["ERC (IRC client for Emacs 27.0.50)"]
varjag has joined #lisp
nsrahmad has quit [Remote host closed the connection]
Bike has quit [Quit: Lost terminal]
varjag has quit [Ping timeout: 250 seconds]
sauvin has quit [Remote host closed the connection]
<beach> Good morning everyone!
sauvin has joined #lisp
Autolycus has joined #lisp
beach has quit [Ping timeout: 250 seconds]
rippa has joined #lisp
beach has joined #lisp
Autolycus has quit []
_whitelogger has joined #lisp
lemoinem is now known as Guest67046
Guest67046 has quit [Killed (tolkien.freenode.net (Nickname regained by services))]
lemoinem has joined #lisp
ggole has joined #lisp
Fare has quit [Ping timeout: 246 seconds]
dale has joined #lisp
akoana has left #lisp ["Leaving"]
Arcaelyx has quit [Quit: Textual IRC Client: www.textualapp.com]
marusich has quit [Remote host closed the connection]
smasta has quit [Ping timeout: 245 seconds]
smasta has joined #lisp
<LdBeth> Morning
dale has quit [Quit: dale]
smasta has quit [Ping timeout: 245 seconds]
FreeBirdLjj has joined #lisp
wxie has quit [Ping timeout: 250 seconds]
FreeBirdLjj has quit [Ping timeout: 255 seconds]
Nilby has quit [Ping timeout: 245 seconds]
sauvin has quit [Quit: Leaving]
talx has joined #lisp
vlatkoB has joined #lisp
capisce has joined #lisp
_whitelogger has joined #lisp
<fiddlerwoaroof> gilberth: you can, however, write a macro that interprets type declarations, checks them and then erases type information
<fiddlerwoaroof> (perhaps not with the full power of the CL type system, but with a useful subset)
angavrilov has joined #lisp
beach has left #lisp ["ERC (IRC client for Emacs 25.2.2)"]
sauvin has joined #lisp
flip214 has joined #lisp
<flip214> phoe: I'm in Bristol Palace... where exactly is the meetup?
orivej has joined #lisp
lavaflow has quit [Read error: Connection reset by peer]
emar has quit [Ping timeout: 255 seconds]
lavaflow has joined #lisp
Nilby has joined #lisp
SaganMan has joined #lisp
_whitelogger has joined #lisp
torbo has quit [Remote host closed the connection]
igemnace_ has joined #lisp
igemnace has quit [Read error: Connection reset by peer]
<phoe> flip214: join #clasp and ask Shinmera and kpoeck
dddddd has joined #lisp
random-nick has joined #lisp
igemnace_ is now known as igemnace
_whitelogger has joined #lisp
varjag has joined #lisp
iovec has joined #lisp
varjag has quit [Ping timeout: 245 seconds]
zigpaw has joined #lisp
Nilby has quit [Read error: Connection reset by peer]
karlosz has quit [Quit: karlosz]
patrixl has joined #lisp
rozenglass has joined #lisp
ravenousmoose has joined #lisp
patrixl has quit [Ping timeout: 255 seconds]
varjag has joined #lisp
ym555 has joined #lisp
shka_ has joined #lisp
ravenousmoose has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
vms14 has joined #lisp
lumm has joined #lisp
nowhere_man has quit [Ping timeout: 252 seconds]
ak5 has quit [Quit: WeeChat 2.4]
scymtym has quit [Ping timeout: 245 seconds]
Nicolas23 has joined #lisp
MetaYan has quit [Ping timeout: 246 seconds]
Nicolas23 has quit [Quit: http://www.kiwiirc.com/ - A hand crafted IRC client]
nicolas23[m] has joined #lisp
vms14 has quit [Quit: WeeChat 2.3]
scymtym has joined #lisp
hiroaki has joined #lisp
Zaab1t has joined #lisp
rozenglass has quit [Ping timeout: 245 seconds]
q9929t has joined #lisp
elderK has quit [Quit: Connection closed for inactivity]
MetaYan has joined #lisp
ym555 has quit [Ping timeout: 250 seconds]
McParen has joined #lisp
<McParen> hello
<McParen> getf requires a place to access, what would be the equivalent function to access lexically defined plists?
q9929t has quit [Quit: q9929t]
<McParen> or would a lexically defined variable also be considered a place within the scope of let?
<flip214> phoe: thanks, already found heisig
<flip214> McParen: a variable name is a place, too.
<flip214> if you want (SETF (GETF ...) ...), the PLACE is important. For reading, not so.
Fare has joined #lisp
patrixl has joined #lisp
nanoz has joined #lisp
SaganMan has quit [Quit: WeeChat 1.6]
patrixl has quit [Remote host closed the connection]
<flip214> Is there some pre-existing way of making ITERATE work together with CL-WHO? There's a MACROLET incompatibility problem.
ravenousmoose has joined #lisp
<McParen> thanks.
Bike has joined #lisp
makomo_ has joined #lisp
orivej has quit [Ping timeout: 245 seconds]
Lord_of_Life_ has joined #lisp
Lord_of_Life has quit [Ping timeout: 245 seconds]
Lord_of_Life_ is now known as Lord_of_Life
Essadon has joined #lisp
Achylles has joined #lisp
varjag has quit [Ping timeout: 246 seconds]
<makomo_> welp, we just arrived in genova
<makomo_> "just"
<makomo_> anyone around?
<flip214> makomo_: yes.
<makomo_> flip214: shinmera said he'll be in genova later in the afternoon. i guess we could have a little meetup then or something?
knicklux has joined #lisp
hiroaki has quit [Ping timeout: 258 seconds]
<flip214> makomo_: yeah.
<jackdaniel> genua?
<flip214> I had lunch with heisig plus his girlfriend already; I think they're in contact with shinmera, too.
<flip214> jackdaniel: ELS
<jackdaniel> yes, I think makomo_ made a typo
<jackdaniel> that's why I've asked
<jackdaniel> have a good time
<flip214> jackdaniel: geneva is in switzerland -- so no typo ;)
<flip214> jackdaniel: thanks! you're not coming?
<jackdaniel> flip214: I know, but I've never geard about city genova
<jackdaniel> nvm. no, I'm not comming. we have a 3 month-old little lisper up here, we'll come next year ;)
<jackdaniel> s/geard/heard/
<jackdaniel> I certainly hope someone will record prelections unofficially (even with low quality), official channels are not very prompt with publication
ravenousmoose has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<makomo_> jackdaniel: Genoa or Genova :-) https://en.wikipedia.org/wiki/Genoa
<flip214> jackdaniel: gratulation!
<jackdaniel> thank you
Jesin has quit [Ping timeout: 245 seconds]
<jackdaniel> makomo_: former is English name, latter is Italian. The one I've used is Polish.
beach has joined #lisp
<beach> Good afternoon everyone!
varjag has joined #lisp
<beach> We just arrived in our room at Bristol Palace.
<beach> Is there a place where people hang out in the hotel?
<beach> Anyway, first we'll unpack and shower.
<flip214> beach: Good afternoon! Welcome to Genova!
<flip214> It looks like a few people will meet for dinner. I don't think that'll be in Bristol, though.
<makomo_> beach: hello :-)
<beach> flip214: I was thinking before dinner.
<beach> We have a reservation just for the two of us in the hotel restaurant at 19:00. If anyone wants to join us, we can try to change the reservation.
<makomo_> that'll probably be tricky since there's a few of us i think
<makomo_> flip214: are kpoeck and shinmera arriving together or?
<_death> I've a place I'd like to try this evening
<beach> makomo_: Fair enough.
rumbler31 has joined #lisp
rumbler31 has quit [Ping timeout: 250 seconds]
caltelt_ has quit [Ping timeout: 246 seconds]
<flip214> beach: not sure whether I want dinner there, but I can visit you before that if you like. Tell me when I may arrive, I'm about 20 minutes away.
<flip214> _death: which one?
<flip214> I found a small pizzeria that looks very nice, and a chinese food parlour (sushi etc.) that claimed to have a buffet yesterday for lunch. No idea whether that's for dinner too, though.
<flip214> makomo_: I don't know.
<beach> flip214: I need to see whether there is a bar in the hotel or something.
orivej has joined #lisp
<beach> flip214: if it's too much trouble, don't bother. We'll meet tomorrow.
<makomo_> flip214: kevslinger just told me kpoeck is already in town
<flip214> beach: In the lobby there a few seats, at least.
<flip214> makomo_: okay...
<makomo_> we're right across the street from the bristol palace hotel :-)
<flip214> perhaps we should just define some space/time coordinates to meet; a discussion about dinner could take some time, though, and doing that on the street ain't that nice
<makomo_> the pizzeria sounds fine to me (i've never had sushi). how far away from the hotel is it?
<flip214> makomo_: 90 meters or so?
<beach> There is a bar on the mezzanine. In about 30 minutes, I'll go there.
cuso4 has joined #lisp
<flip214> _death: bad choice, the first popup I don't even understand (but can guess) ;) "Devi avere 18 anni per accedere" ;)
<makomo_> flip214: oh, very close then. i'm down for that i guess
<flip214> beach: uh, thanks. Will hurry, but that means I loose IRC unless I bring my laptop...
<beach> I see.
<beach> I will leave my laptop in the room anyway.
<makomo_> same, unless i install an irc client on my phone
<_death> flip214: well, you can check the food pics @ google maps
<flip214> _death: "Food fotography" is a full chapter in every book about photography... if you know what I mean ;)
MichaelRaskin has joined #lisp
<_death> ok
<MichaelRaskin> Evening
<makomo_> lol
<makomo_> MichaelRaskin: hello
<MichaelRaskin> Any gatherings not moving around faster than catchable?
<makomo_> we were just discussing a potential meetup
<makomo_> here's an idea: we meet soon (in a half an hour-ish?) in bristol's bar for drinks and later on go grab dinner somewhere?
<MichaelRaskin> Ah. Seems a natural meeting point
<MichaelRaskin> Is there _one_ bar?
verisimilitude has quit [Remote host closed the connection]
<makomo_> not sure, but probably? beach just said there's a bar on the mezzanine in the hotel
<MichaelRaskin> OK
<MichaelRaskin> Thanks
talx has quit [Ping timeout: 255 seconds]
ravenousmoose has joined #lisp
nanoz has quit [Read error: Connection reset by peer]
Fare has quit [Ping timeout: 250 seconds]
MichaelRaskin has quit [Ping timeout: 240 seconds]
t58 has joined #lisp
theBlackDragon has joined #lisp
<beach> Almost on our way. Kathleen is drying her hair.
<makomo_> ok, we'll be there soon
makomo_ is now known as makomobile
makomobile has quit [Quit: WeeChat 2.2]
makomo_ has joined #lisp
ravenousmoose has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
makomo_ has quit [Ping timeout: 245 seconds]
lucasb has joined #lisp
ravenousmoose has joined #lisp
wooden_ has joined #lisp
cuso4 has quit [Ping timeout: 250 seconds]
_whitelogger has joined #lisp
<wooden_> what would be the common lisp equivalent of doing this in python?: subprocess.call(["emacsclient", "-t"])
<wooden_> i tried -- (uiop:run-program '("emacsclient" "-t")) -- but this just returns exit code 1 from an sbcl repl.
<wooden_> (note: i'm not in slime, this is just from a bare sbcl repl running in a bash shell in xterm)
<MetaYan> wooden_: (uiop:run-program "emacsclient -t")
<wooden_> MetaYan: no, sorry, same error.
<MetaYan> wooden_: That's the way to run programs, but it might not have the intended effect in this case, because emacsclient would probably like to have some sort of direct tty access. Not sure how that works. Sorry.
nicdev has quit [Ping timeout: 268 seconds]
<MetaYan> wooden_: This is probably what you're after: (uiop:run-program "emacsclient -t" :output :interactive :input :interactive)
<wooden_> MetaYan: that's it! thank you!
jeosol has quit [Quit: Page closed]
<MetaYan> You're welcome. And thanks for asking, because I learned something too!
ebrasca has quit [Remote host closed the connection]
hiroaki has joined #lisp
gareppa has joined #lisp
Zaab1t has quit [Ping timeout: 250 seconds]
gareppa has quit [Remote host closed the connection]
Arcaelyx has joined #lisp
scymtym has quit [Ping timeout: 240 seconds]
Jesin has joined #lisp
<antoszka> Do we have an ELS IRC channel? I just joined/created #els2019, but it's empty.
Zaab1t has joined #lisp
<jackdaniel> here is empty anyway during this time of year
nowhere_man has joined #lisp
<p_l> Most els talk is on WhatsApp
<p_l> jackdaniel: are you at ELS?
catchme has joined #lisp
<jackdaniel> p_l: not this year
<antoszka> Yeah, but M. Raskin was asking about a place to chat/meet since he's using neither WhatsApp (which I guess is a wise choice in the long run) nor mobile data (which seems silly, but well... :))
refpga has joined #lisp
random-nick has quit [Ping timeout: 255 seconds]
<refpga> Hi, what does prefixing a constant with "#. do? (It returns the same value as simply the constant from the top level)
<refpga> Sorry, #. not "#.
nowhere_man has quit [Ping timeout: 258 seconds]
ravenousmoose has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Fare has joined #lisp
<Bike> #. does read-time-evaluation
<Bike> so "#.(+ 2 2)" will be read as a literal as if you had written "4"
<Bike> if the form is already a constant, like #.4, it won't make a difference
<refpga> Thanks
zotan has quit [Ping timeout: 246 seconds]
<refpga> What exactly is a # in common lisp? Like, it also appears in #'.
zotan has joined #lisp
<Bike> it's nothing by itself, it's just the start of the many two-character reader macros
<Bike> clhs #
<refpga> Thanks
<Bike> this irc command will work for other characters you're curious about, ofc
<Bike> clhs #a
<refpga> Slime clhs lookup returns nothing on #
random-nick has joined #lisp
lumm has quit [Quit: lumm]
karlosz has joined #lisp
nanoz has joined #lisp
okeg has joined #lisp
vms14 has joined #lisp
smasta has joined #lisp
aindilis has quit [Remote host closed the connection]
smasta has quit [Ping timeout: 255 seconds]
torbo has joined #lisp
makomo_ has joined #lisp
Zaab1t has quit [Quit: bye bye friends]
makomo_ has quit [Client Quit]
makomo_ has joined #lisp
angavrilov has quit [Remote host closed the connection]
hiroaki has quit [Ping timeout: 268 seconds]
McParen has left #lisp [#lisp]
<pjb> refpga: #\# is a dispatching reader macro.
<pjb> The only standard one, but you can create your own too.
lumm has joined #lisp
<jackdaniel> some dwim utility I saw defined #feature-case by 1) defining dispatch-macro on f and 2) checking the rest if it matches
ebrasca has joined #lisp
spoeplau has joined #lisp
frodef has joined #lisp
meepdeew has joined #lisp
vlatkoB has quit [Remote host closed the connection]
nanoz has quit [Ping timeout: 245 seconds]
MichaelRaskin has joined #lisp
vms14 has quit [Quit: WeeChat 2.3]
<random-nick> how do I add a directory to those that ASDF searches for system definitions?
MichaelRaskin has quit [Ping timeout: 250 seconds]
<Krystof> random-nick: (push "directory/path/trailing/slash/" asdf:*central-registry*)
<Krystof> there are probably fancier ways
<random-nick> thank you
knicklux has quit [Remote host closed the connection]
lumm has quit [Quit: lumm]
lumm has joined #lisp
MichaelRaskin has joined #lisp
andrei-n has quit [Remote host closed the connection]
<pjb> and better use an absolute pathname in asdf:*central-registry*
gigetoo has quit [Ping timeout: 246 seconds]
meepdeew has quit [Remote host closed the connection]
meepdeew has joined #lisp
meepdeew has quit [Remote host closed the connection]
trafaret1 has joined #lisp
<trafaret1> o/
Oladon has joined #lisp
elderK has joined #lisp
Fare has quit [Ping timeout: 255 seconds]
<shka_> good evening
<makomo_> evening
<shka_> i was working on the cl-ds manual, anybody wanna take a look?
igemnace has quit [Quit: WeeChat 2.4]
Fare has joined #lisp
actuallybatman has quit [Read error: Connection reset by peer]
meepdeew has joined #lisp
Aruseus has joined #lisp
MichaelRaskin has quit [Read error: Connection reset by peer]
ggole has quit [Quit: Leaving]
Fare has quit [Ping timeout: 255 seconds]
gigetoo has joined #lisp
Jesin has quit [Quit: Leaving]
Fare has joined #lisp
meepdeew has quit [Ping timeout: 255 seconds]
Jesin has joined #lisp
<adlai> refpga: much standard read-syntax is spilt over getting compliant readers to understand the full scope of the standard read-syntax.
MichaelRaskin has joined #lisp
dale has joined #lisp
MichaelRaskin has quit [Read error: Connection reset by peer]
gigetoo has quit [Ping timeout: 246 seconds]
shka_ has quit [Ping timeout: 246 seconds]
hiroaki has joined #lisp
orivej has quit [Ping timeout: 245 seconds]
hiroaki has quit [Ping timeout: 252 seconds]
buffergn0me has quit [Ping timeout: 240 seconds]
random-nick has quit [Read error: Connection reset by peer]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
meepdeew has joined #lisp
skidd0 has joined #lisp
buffergn0me has joined #lisp
meepdeew has quit [Ping timeout: 245 seconds]
trafaret1 has left #lisp ["ERC (IRC client for Emacs 25.2.2)"]
_whitelogger has joined #lisp
torbo has quit [Ping timeout: 255 seconds]
nowhere_man has joined #lisp
gigetoo has quit [Ping timeout: 245 seconds]
Achylles has quit [Remote host closed the connection]
gigetoo has joined #lisp
cuso4 has joined #lisp
Oladon has joined #lisp
lumm has quit [Quit: lumm]
smasta has joined #lisp
ltriant has joined #lisp
cuso4 has quit [Ping timeout: 245 seconds]
scymtym has joined #lisp
frodef has quit [Ping timeout: 246 seconds]
varjag has quit [Ping timeout: 255 seconds]
Oladon has quit [Quit: Leaving.]
spoeplau has quit [Ping timeout: 255 seconds]
lucasb has quit [Quit: Connection closed for inactivity]
skidd0 has quit [Quit: WeeChat 2.4]
nicdev has joined #lisp
Josh_2 has joined #lisp
Josh_2 has quit [Read error: Connection reset by peer]
Josh_2 has joined #lisp
Josh_2 has quit [Read error: Connection reset by peer]