p_l changed the topic of #lisp to: Common Lisp, the #1=(programmable . #1#) programming language | <https://irclog.tymoon.eu/freenode/%23lisp> <https://irclog.whitequark.org/lisp> <http://ccl.clozure.com/irc-logs/lisp/> | ASDF 3.3.4
samarthk has quit [Remote host closed the connection]
Inline has quit [Ping timeout: 272 seconds]
stepnem has quit [Ping timeout: 256 seconds]
ebzzry has joined #lisp
stepnem has joined #lisp
jonatack has quit [Ping timeout: 272 seconds]
cartwright has joined #lisp
jonatack has joined #lisp
frgo has joined #lisp
KDr21 has joined #lisp
z147_ has joined #lisp
KDr2 has quit [Ping timeout: 256 seconds]
slyrus_ has joined #lisp
z147 has quit [Ping timeout: 240 seconds]
z147_ has quit [Remote host closed the connection]
slyrus__ has quit [Ping timeout: 265 seconds]
Bourne has quit [Ping timeout: 240 seconds]
frgo has quit [Ping timeout: 256 seconds]
montxero` has joined #lisp
ebzzry has quit [Read error: Connection reset by peer]
montxero has quit [Ping timeout: 256 seconds]
lucasb has quit [Quit: Connection closed for inactivity]
<HiRE> hello everyone
<Oladon> 'lo HiRE
<HiRE> I am havin some trouble with CLOS that is probably simple but I cant see what I've done wrong
jonatack has quit [Read error: Connection reset by peer]
<HiRE> error:
<HiRE> The generic function
<HiRE> takes 1 required argument; was asked to find a method with
<HiRE> [Condition of type SB-PCL::FIND-METHOD-LENGTH-MISMATCH]
<HiRE> #<STANDARD-GENERIC-FUNCTION |stacks-and-queues|:PUSH-STACK (1)>
<HiRE> specializers (STACK T)
<HiRE> See also:
<HiRE> Common Lisp Hyperspec, FIND-METHOD [:function]
<HiRE> I guess im missing how im screwing up matching by having `val`
<HiRE> do I need defgeneric to define the parameter list formally?
<Oladon> It would seem that you already ran a defgeneric, and defined the generic as taking just one argument.
<no-defun-allowed> How are you calling PUSH-STACK?
<no-defun-allowed> Or yeah, maybe that.
<no-defun-allowed> You also defined an accessor DATA, so why do you use (SLOT-VALUE STACK 'DATA) instead of (DATA STACK)?
<Josh_2> ^
jonatack has joined #lisp
<HiRE> because im a dummy
<HiRE> lol
<HiRE> I am not even calling it
<HiRE> just loading it into slime
<HiRE> let me restart my instance and try that
<HiRE> perhaps I just have an old one lying around
<Oladon> Any of you done anything with Server-Sent Events, by any chance? I'm trying to figure out what the "right" implementation is supposed to look like from the browser's perspective.
margeas has quit [Ping timeout: 255 seconds]
lottaquestions_ has quit [Ping timeout: 258 seconds]
lottaquestions_ has joined #lisp
bitmapper has quit [Ping timeout: 260 seconds]
v_m_v has joined #lisp
v_m_v has quit [Ping timeout: 255 seconds]
ebzzry has joined #lisp
sjl has quit [Ping timeout: 256 seconds]
<HiRE> nope, however you may want to ping Xach
KDr21 has quit [Remote host closed the connection]
KDr21 has joined #lisp
_whitelogger has joined #lisp
montxero` has quit [Ping timeout: 265 seconds]
amerigo has quit [Quit: Connection closed for inactivity]
sjl has joined #lisp
space_otter has joined #lisp
lxbarbosa has joined #lisp
sjl has quit [Ping timeout: 256 seconds]
shka_ has joined #lisp
torbo has quit [Remote host closed the connection]
ahungry has joined #lisp
EvW has quit [Ping timeout: 256 seconds]
semz has quit [Ping timeout: 240 seconds]
Necktwi has joined #lisp
Jeanne-Kamikaze has joined #lisp
semz has joined #lisp
semz has quit [Changing host]
semz has joined #lisp
caltelt has joined #lisp
oxum has joined #lisp
frgo has joined #lisp
frgo has quit [Ping timeout: 260 seconds]
slyrus has joined #lisp
v_m_v has joined #lisp
ahungry has quit [Remote host closed the connection]
slyrus_ has quit [Ping timeout: 258 seconds]
v_m_v has quit [Ping timeout: 256 seconds]
KDr21 has quit [Remote host closed the connection]
KDr21 has joined #lisp
akoana has joined #lisp
prince1 has quit [Ping timeout: 256 seconds]
prince1 has joined #lisp
kirkwood has joined #lisp
amerlyq has joined #lisp
elderK has quit [Quit: WeeChat 1.9]
caltelt has quit [Ping timeout: 265 seconds]
Bike has quit [Quit: Lost terminal]
choegusung has joined #lisp
choegusung has quit [Quit: leaving]
choegusung has joined #lisp
shka_ has quit [Ping timeout: 255 seconds]
gravicappa has joined #lisp
choegusung has quit [Quit: leaving]
<beach> Good morning everyone!
sjl has joined #lisp
choegusung has joined #lisp
choegusung has quit [Client Quit]
ebrasca has joined #lisp
choegusung has joined #lisp
choegusung has quit [Client Quit]
quazimodo has joined #lisp
<HiRE> morning beach
<HiRE> im discovering the wonders of clos
<semz> good morning, for once a good morning that fits my timezone!
<beach> HiRE: Great!
<HiRE> I took a nap for way too long so on a technicality it also fits my life
<HiRE> im motivated to bring computational geometry stuff to common lisp just to see how far I can push this thing
<HiRE> the opengl bindings looked pretty performant so getting visuals up should be fun
<aeth> opengl is performant, if you use a library like static-vectors instead of copying over to CFFI foreign C arrays
<aeth> It's the difference between instant and minutes if you have enough geometry
<HiRE> yes - for example I am doing research work in Python at the request of my advisor. The opengl bindings for python are absurdly slow.
choegusung has joined #lisp
<aeth> well, Python itself is absurdly slow
<HiRE> That being said CL will be a hard pitch to him so I can't change that despite the faculty having a few symbolics nerds on staff.
<HiRE> doesnt mean I can't use it myself though :)
<aeth> you could write a Python-style syntactic reader macro and see how long it takes people to notice ;-)
<HiRE> LOL reminds me of totally messing with the TA as an undergrad by abusing the crud out of C's preprocessor
Bourne has joined #lisp
choegusung has quit [Client Quit]
froggey has quit [Ping timeout: 260 seconds]
froggey has joined #lisp
<HiRE> Is there any reason for someone to ever use set or setq?
<HiRE> it seems like setf works fine for everything
<beach> Most people these days use only SETF.
<HiRE> oh so set and setq are sort of antiquated then?
<beach> Pretty much.
<HiRE> I'd imagine setf is just another macro that uses those
<no-defun-allowed> (set symbol expression) may as well be shorthand for (setf (symbol-value symbol) expression), if I'm not mistaken.
<beach> Did you mean SETQ?
<beach> And yes, if SYMBOL is a symbol macro, then it is as if SETF had been used instead.
<beach> Hmm.
<beach> clhs setq
<beach> Apparently, that is true only if the symbol macro was made by SYMBOL-MACROLET.
vhost- has quit [Ping timeout: 255 seconds]
<beach> So not by DEFINE-SYMBOL-MACRO.
<HiRE> interesting
<ebrasca> Good morning!
<beach> Hello ebrasca.
<HiRE> howdy
slyrus_ has joined #lisp
slyrus has quit [Ping timeout: 255 seconds]
sauvin has joined #lisp
<equwal> Can I use usocket for a file TCP socket rather than host:port?
<no-defun-allowed> I haven't seen any functions in usocket you can use to create a file socket (and I don't think those obey TCP), but the rest of the operations should work on such a socket if you create one using implementation-specific functions.
<equwal> I'm trying to use it for gpg-agent pinentry at ~/.gnupg/S.gpg-agent rather than this line of code https://github.com/stumpwm/stumpwm-contrib/blob/master/util/pinentry/pinentry.lisp#L14
gioyik has joined #lisp
<equwal> The gpg-agent already makes the socket by default, I just need to connect to it and use it properly.
Involuntary has joined #lisp
<equwal> To be fair I'm a bit confused about that. Essentially I think I can use a file socket to remove the need for netcat and usocket as dependencies in that project.
Jeanne-Kamikaze has quit [Ping timeout: 240 seconds]
ggole has joined #lisp
vlatkoB has joined #lisp
Involuntary has quit [Quit: Leaving]
frgo has joined #lisp
v_m_v has joined #lisp
lxbarbosa has quit [Ping timeout: 272 seconds]
fanta1 has joined #lisp
v_m_v has quit [Ping timeout: 258 seconds]
frgo has quit [Ping timeout: 256 seconds]
shka_ has joined #lisp
earl-ducaine has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
narimiran has joined #lisp
Josh_2 has quit [Ping timeout: 258 seconds]
orivej has joined #lisp
akoana has left #lisp [#lisp]
shangul has joined #lisp
narimiran_ has joined #lisp
narimiran has quit [Ping timeout: 260 seconds]
dale has quit [Quit: My computer has gone to sleep]
Cymew has joined #lisp
ljavorsk has joined #lisp
Cymew has quit [Read error: No route to host]
Cymew has joined #lisp
sjl has quit [Ping timeout: 255 seconds]
ljavorsk has quit [Ping timeout: 240 seconds]
varjag has joined #lisp
flamebeard has joined #lisp
scymtym has quit [Ping timeout: 255 seconds]
jprajzne has joined #lisp
Lord_of_Life_ has joined #lisp
Lord_of_Life has quit [Ping timeout: 255 seconds]
Lord_of_Life_ is now known as Lord_of_Life
<phoe> equwal: you mean a Unix socket, right?
<phoe> I don't think usocket can do that. AFAIK it's limited to UDP and TCP sockets.
ljavorsk has joined #lisp
oni-on-ion has joined #lisp
ljavorsk has quit [Remote host closed the connection]
ljavorsk has joined #lisp
ljavorsk has quit [Remote host closed the connection]
ljavorsk has joined #lisp
mingus has joined #lisp
scymtym has joined #lisp
rj0d has joined #lisp
dddddd has quit [Ping timeout: 258 seconds]
v_m_v has joined #lisp
ljavorsk has quit [Ping timeout: 268 seconds]
gioyik has quit [Quit: WeeChat 2.7]
v_m_v has quit [Ping timeout: 265 seconds]
Bourne has quit [Ping timeout: 265 seconds]
sammich has quit [Ping timeout: 256 seconds]
schweers has joined #lisp
narimiran_ is now known as narimiran
<pjb> equwal: the underlying implementation specific socket API usually allow unix sockets, so you could patch usocket to allow it too, or use your implementation specific API to create the usocket, and then use usocket to use it.
sammich has joined #lisp
Bourne has joined #lisp
davepdotorg has joined #lisp
fanta1 has quit [Quit: fanta1]
edgar-rft has quit [Quit: Leaving]
ebrasca has quit [Remote host closed the connection]
fanta1 has joined #lisp
hhdave has joined #lisp
ljavorsk has joined #lisp
quazimodo has quit [Ping timeout: 260 seconds]
devon has quit [Ping timeout: 260 seconds]
orivej has quit [Ping timeout: 258 seconds]
ljavorsk has quit [Ping timeout: 256 seconds]
v_m_v has joined #lisp
cosimone has joined #lisp
ljavorsk has joined #lisp
shifty has quit [Ping timeout: 260 seconds]
ebrasca has joined #lisp
v_m_v has quit [Remote host closed the connection]
v_m_v has joined #lisp
mingus has quit [Quit: ERC (IRC client for Emacs 26.3)]
hjudt has quit [Quit: leaving]
ljavorsk has quit [Ping timeout: 240 seconds]
gmeister has joined #lisp
ljavorsk has joined #lisp
ljavorsk has quit [Ping timeout: 256 seconds]
hjudt has joined #lisp
v_m_v has quit [Remote host closed the connection]
v_m_v has joined #lisp
ljavorsk has joined #lisp
ljavorsk has quit [Ping timeout: 240 seconds]
bitmapper has joined #lisp
frgo has joined #lisp
frgo has quit [Remote host closed the connection]
v_m_v has quit [Remote host closed the connection]
frgo has joined #lisp
margeas has joined #lisp
v_m_v has joined #lisp
oni-on-ion has quit [Remote host closed the connection]
oni-on-ion has joined #lisp
space_otter has quit [Remote host closed the connection]
prince1 has quit [Ping timeout: 258 seconds]
ebrasca has quit [Remote host closed the connection]
v_m_v has quit [Remote host closed the connection]
refpga has quit [Read error: Connection reset by peer]
refpga has joined #lisp
refpga has quit [Read error: Connection reset by peer]
refpga has joined #lisp
ebrasca has joined #lisp
_whitelogger has joined #lisp
ebzzry has joined #lisp
bradfonseca has joined #lisp
markoong has joined #lisp
margeas has quit [Ping timeout: 256 seconds]
iAmDecim has joined #lisp
v88m has joined #lisp
montaropdf has joined #lisp
ravenx has quit [Ping timeout: 240 seconds]
oxum_ has joined #lisp
oxum has quit [Ping timeout: 255 seconds]
ravenx has joined #lisp
mingus has joined #lisp
ljavorsk has joined #lisp
krisfris has quit [Quit: WeeChat 1.4]
refpga has quit [Read error: Connection reset by peer]
refpga has joined #lisp
jeosol has quit [Remote host closed the connection]
luni has joined #lisp
cosimone has quit [Quit: Terminated!]
cosimone has joined #lisp
ljavorsk has quit [Ping timeout: 240 seconds]
mingus has quit [Quit: ERC (IRC client for Emacs 26.3)]
v_m_v has quit [Remote host closed the connection]
troydm has joined #lisp
cosimone has quit [Client Quit]
refpga has quit [Read error: Connection reset by peer]
refpga has joined #lisp
igemnace has joined #lisp
igemnace has quit [Remote host closed the connection]
luni has left #lisp [#lisp]
edgar-rft has joined #lisp
ljavorsk has joined #lisp
jmercouris has joined #lisp
prince1 has joined #lisp
lucasb has joined #lisp
gko_ has joined #lisp
ljavorsk has quit [Ping timeout: 265 seconds]
prince1 has quit [Ping timeout: 258 seconds]
cosimone has joined #lisp
aoh has joined #lisp
Bike has joined #lisp
v_m_v has joined #lisp
Bike has quit [Remote host closed the connection]
Bike has joined #lisp
rj0d has quit [Read error: Connection reset by peer]
jeosol has joined #lisp
Bike has quit [Remote host closed the connection]
Bike has joined #lisp
EvW1 has joined #lisp
wxie1 has joined #lisp
v_m_v has quit [Remote host closed the connection]
ebzzry has quit [Read error: Connection reset by peer]
v_m_v has joined #lisp
v_m_v has quit [Remote host closed the connection]
v_m_v has joined #lisp
|Pirx| has joined #lisp
davsebam1e has joined #lisp
v_m_v has quit [Remote host closed the connection]
davsebamse has quit [Ping timeout: 240 seconds]
housel has quit [Ping timeout: 272 seconds]
pfdietz has joined #lisp
<pfdietz> Regret for missing ELS this year is the regret for the reason for missing it.
amerlyq has quit [Quit: amerlyq]
wxie1 has quit [Ping timeout: 240 seconds]
dddddd has joined #lisp
<pjb> pfdietz: what about a teleconference?
shka_ has quit [Quit: WeeChat 1.9.1]
v_m_v has joined #lisp
<Bike> they're already talking about that.
flamebeard has quit []
ebzzry has joined #lisp
v_m_v has quit [Remote host closed the connection]
Kevslinger has quit [Quit: Connection closed for inactivity]
<Shinmera> I was already thinking of a streaming setup in case the conference does happen
<Shinmera> But I'd have to talk that over with Didier, and I have to talk to the venue secretary first anyhow to see what they intend on doing about this mess.
Bike has quit [Remote host closed the connection]
<ebrasca> Shinmera: Do you recomend to do this year to ELS?
<Shinmera> I'm sorry, I don't understand your question
Bike has joined #lisp
<ebrasca> Shinmera: Do you recomend going this year to ELS?
<Shinmera> I'm not frantic about the virus, so I do recommend going anyway.
<Shinmera> However, powers outside my control may decide to force our hands and cancel the conference (travel bans etc.)
<Shinmera> If that happens you will get a refund for the conference at least. Not sure what hotels or travel agencies would do.
<pfdietz> Teleconference I would actually do.
<pfdietz> Shinmera: CDC is now recommending anyone my age avoid long distance air travel.
v_m_v has joined #lisp
<_death> here, everyone getting back from abroad has to quarantine self at home for 14 days
igemnace has joined #lisp
v_m_v_ has joined #lisp
igemnace has quit [Remote host closed the connection]
<Shinmera> One thing that's troubling is that the situation could change quite drastically between now and the conference date.
<Shinmera> Both for better or worse.
<Shinmera> It's really hard to say what the right call is.
igemnace has joined #lisp
<pjb> Shinmera: there are estimations of the evolution, you could guess what the situation will be.
<_death> yes.. in each country it may be different.. for example, the containment approach leads to prolonged state of non-normality
<Shinmera> That doesn't tell me anything really.
<_death> air travel companies also suffer as a result and some may go out of business or radically change their business for the next few years
v_m_v has quit [Ping timeout: 258 seconds]
<pjb> Already, Italian people couldn't come to the conference anyways, so it would be good to make it a teleconference.
igemnace has quit [Client Quit]
prince1 has joined #lisp
Bike has quit [Remote host closed the connection]
Bike has joined #lisp
<pfdietz> Shinmera: it's almost certainly going to become much worse.
<jmercouris> I didn't realize this channel was #coronavirus
<pfdietz> Well, it is as related to ELS.
v_m_v_ has quit [Remote host closed the connection]
<splittist> It depends where you are. In Italy it may well get better. Even by the second half of April.
prince1 has quit [Ping timeout: 240 seconds]
<Shinmera> Sure, but it won't help to discuss it here now. Be patient for updates, we are working on figuring it out. For now people have to make up their own minds whether they want to come or not.
<jmercouris> pfdietz: I'm just joking :-P
* jackdaniel missed the punchline
sendai_ has joined #lisp
ukari has quit [Remote host closed the connection]
Bike has quit [Remote host closed the connection]
ukari has joined #lisp
luckless has quit [Ping timeout: 258 seconds]
mingus has joined #lisp
X-Scale` has joined #lisp
X-Scale has quit [Ping timeout: 258 seconds]
X-Scale` is now known as X-Scale
lisplearner has joined #lisp
random-nick has joined #lisp
vsync has quit [Ping timeout: 268 seconds]
vsync has joined #lisp
mangul has joined #lisp
jprajzne has quit [Quit: Leaving.]
shangul has quit [Ping timeout: 258 seconds]
zdm has joined #lisp
X-Scale` has joined #lisp
Inline has joined #lisp
X-Scale has quit [Ping timeout: 260 seconds]
X-Scale` is now known as X-Scale
lisplearner has quit [Remote host closed the connection]
Ankhers has quit [Quit: ZNC 1.7.5 - https://znc.in]
smazga has joined #lisp
Khisanth has quit [Ping timeout: 256 seconds]
orivej has joined #lisp
smazga has quit [Client Quit]
Ankhers has joined #lisp
Bike has joined #lisp
montaropdf has quit [Quit: ERC (IRC client for Emacs 26.3)]
EvW1 has quit [Ping timeout: 240 seconds]
Khisanth has joined #lisp
cosimone has quit [Quit: Quit.]
cosimone has joined #lisp
schweers has quit [Quit: ERC (IRC client for Emacs 26.3)]
v88m has quit [Remote host closed the connection]
<ebrasca> Shinmera: Do you say no ELS this year?
<beach> That is not what he is saying.
orivej has quit [Ping timeout: 255 seconds]
zaquest has quit [Quit: Leaving]
<ebrasca> But it is not sure like 100%.
sjl has joined #lisp
<beach> Right, because we don't know what will happen between now and then. They may forbid the meeting, or the travel.
<ebrasca> beach: I am going to try to go this year.
<beach> I saw that. Sound good.
zaquest has joined #lisp
orivej has joined #lisp
mangul is now known as shangul
shka_ has joined #lisp
lispdata has joined #lisp
<jcowan> I know at least one technical conference that is allowing tele-attendance this year after years of resisting it, though nothing has been announced about conference fees so far. The conference is organized by a consulting company, so although it is done for the benefit of the community, it has to at least break even.
edgar-rft has quit [Quit: Leaving]
Ankhers has quit [Quit: ZNC 1.7.5 - https://znc.in]
gioyik has joined #lisp
Ankhers has joined #lisp
jmercouris has quit [Remote host closed the connection]
prince1 has joined #lisp
Khisanth has quit [Ping timeout: 256 seconds]
gko_ has quit [Ping timeout: 256 seconds]
Khisanth has joined #lisp
prince1 has quit [Ping timeout: 256 seconds]
orivej has quit [Ping timeout: 258 seconds]
gmeister has quit [Quit: WeeChat 2.4]
davepdotorg has quit [Ping timeout: 255 seconds]
LiamH has joined #lisp
refpga has quit [Ping timeout: 265 seconds]
refpga has joined #lisp
bradfonseca has quit [Quit: Konversation terminated!]
<pfdietz> Is Paul Rodriguez ever on this channel?
hhdave has quit [Quit: hhdave]
v88m has joined #lisp
refpga has quit [Read error: Connection reset by peer]
refpga has joined #lisp
Necktwi has quit [Ping timeout: 256 seconds]
scymtym has quit [Ping timeout: 240 seconds]
Necktwi has joined #lisp
dale_ has joined #lisp
asarch has joined #lisp
dale_ is now known as dale
Ven`` has joined #lisp
EvW has joined #lisp
davsebamse has joined #lisp
davsebam1e has quit [Ping timeout: 256 seconds]
varjag has quit [Quit: ERC (IRC client for Emacs 25.2.2)]
ggole has quit [Quit: Leaving]
kbtr has quit [Ping timeout: 268 seconds]
kbtr has joined #lisp
Jesin has quit [Quit: Leaving]
ebrasca has quit [Remote host closed the connection]
Jesin has joined #lisp
sauvin has quit [Read error: Connection reset by peer]
<p_l> jcowan: I'm starting to ponder about software to do massive online conference kind of stuff
<p_l> Maybe even a form of hallway track
<jcowan> I think the issues are that the Internet-as-we-know-it simply isn't any good at handling multi-participant video streams by reason of its structure.
amerigo has joined #lisp
gioyik has quit [Ping timeout: 258 seconds]
iAmDecim has quit [Ping timeout: 258 seconds]
scymtym has joined #lisp
<dlowe> it would help if the world weren't divided into client internet and server internet.
<dlowe> That's not what the internet was designed for, but that's how it turned out.
<dlowe> Around 2000, people made the mind-blowing discovery that computers could connect... to each other!
<dlowe> and then we mostly forgot about it
gioyik has joined #lisp
<phoe> while watching youtube
devrtz has quit [Ping timeout: 272 seconds]
prince1 has joined #lisp
fanta1 has quit [Quit: fanta1]
iAmDecim has joined #lisp
<pfdietz> Cat videos are srs bsns
zdm has quit [Quit: WeeChat 2.7.1]
prince1 has quit [Ping timeout: 240 seconds]
devrtz has joined #lisp
EvW has quit [Ping timeout: 256 seconds]
zdm has joined #lisp
frgo has quit [Remote host closed the connection]
hiroaki has joined #lisp
refpga` has joined #lisp
refpga has quit [Remote host closed the connection]
rippa has joined #lisp
refpga` has quit [Remote host closed the connection]
refpga has joined #lisp
frgo has joined #lisp
<jackdaniel> they've been made forgotten. marketing p2p as pirate-to-pirate did its job. //sorry for offtopic
frgo has quit [Read error: Connection reset by peer]
EvW has joined #lisp
frgo has joined #lisp
micro has quit [Remote host closed the connection]
micro has joined #lisp
<pjb> dlowe: That's the fault of IPv4 and NAT. With IPv6, peer-to-peer can make a come-back.
<pjb> dlowe: but note that GSM operators have IPv4 networks and NAT for the smart phones…
frgo has quit [Ping timeout: 240 seconds]
v_m_v has joined #lisp
<White_Flame> Tor is nice for true hash-based addressing across the internet, too
ukari has quit [Ping timeout: 256 seconds]
matijja is now known as irk
irk is now known as matijja
<jackdaniel> again, marketed as a criminal network ,)
jeosol has quit [Ping timeout: 240 seconds]
edgar-rft has joined #lisp
cosimone has quit [Remote host closed the connection]
cosimone has joined #lisp
varjag has joined #lisp
<Posterdati> hi
<Posterdati> is there anyone playing with google kickstart??
<p_l> dlowe: throughout 1990s it was known as well
<dlowe> 1990s very few people had always-on connections.
<p_l> dlowe: significant portion of the internet till pretty late had, due to exclusivity of internet
<p_l> So lots of R&D on mbone
pilne has joined #lisp
cosimone has quit [Quit: Quit.]
ebzzry has quit [Ping timeout: 256 seconds]
Lord_of_Life_ has joined #lisp
Lord_of_Life has quit [Ping timeout: 256 seconds]
Lord_of_Life_ is now known as Lord_of_Life
lispdata has quit [Remote host closed the connection]
karlosz has joined #lisp
shka_ has quit [Ping timeout: 258 seconds]
bhyde has joined #lisp
akoana has joined #lisp
Ven`` has quit [Read error: Connection reset by peer]
vlatkoB has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
cosimone has joined #lisp
gareppa has joined #lisp
troydm has quit [Quit: What is Hope? That all of your wishes and all of your dreams come true? To turn back time because things were not supposed to happen like that (C) Rau Le Creuset]
akoana has quit [Ping timeout: 258 seconds]
gareppa has quit [Quit: Leaving]
prince1 has joined #lisp
troydm has joined #lisp
akoana has joined #lisp
narimiran has quit [Ping timeout: 240 seconds]
prince1 has quit [Ping timeout: 260 seconds]
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
gravicappa has quit [Ping timeout: 260 seconds]
gigetoo has quit [Ping timeout: 260 seconds]
gigetoo has joined #lisp
Cymew has quit [Ping timeout: 256 seconds]
slyrus__ has joined #lisp
slyrus_ has quit [Ping timeout: 255 seconds]
Bourne has quit [Ping timeout: 265 seconds]
buffergn0me has joined #lisp
whiteline has quit [Remote host closed the connection]
whiteline has joined #lisp
Inline has quit [Quit: Leaving]
igemnace has joined #lisp
PuercoPope has joined #lisp
varjag has quit [Ping timeout: 258 seconds]
varjag has joined #lisp
housel has joined #lisp
Bike has quit [Quit: Bike]
orivej has joined #lisp
<random-nick> is a standard conforming compiler allowed to inline functions from the same file during file compilation?
<no-defun-allowed> I wouldn't think so, without a declaration.
karlosz has quit [Quit: karlosz]
<random-nick> hmm, found it in CLHS
<random-nick> I'm guessing this is in the standard and not a CLHS addition
<random-nick> it's the fifth bullet point
aamukastemato has joined #lisp
pjb has quit [Read error: Connection reset by peer]
pjb has joined #lisp
shifty has joined #lisp
karlosz has joined #lisp
thecoffemaker has joined #lisp
quazimodo has joined #lisp
pjb has quit [Read error: Connection reset by peer]
<asarch> (expt 64 1/2)
<jackdaniel> 3
karlosz has quit [Quit: karlosz]
pjb has joined #lisp
<asarch> Shouldn't be 8?
<jackdaniel> I'm sure 8 is a closer answer than 3, but three has a nice tune to it
<asarch> Good point!
<no-defun-allowed> To take (sqrt n), make your first guess 1, then compute 1/2*(guess + n/guess) and repeat
<no-defun-allowed> My first guess thus is 32.5
<no-defun-allowed> *is thus?
<jackdaniel> 3 was my final guess
karlosz has joined #lisp
<Odin-> jackdaniel: I guess that means this is a video for you: https://www.youtube.com/watch?v=eFCcH4PBxbs
Bike has joined #lisp
<jackdaniel> :)
<jackdaniel> good night \o
gioyik has quit [Ping timeout: 240 seconds]
random-nick has quit [Ping timeout: 265 seconds]
cosimone is now known as cosimone_
cosimone_ is now known as cosimone
prince1 has joined #lisp
v_m_v has quit [Remote host closed the connection]
mingus has quit [Remote host closed the connection]
prince1 has quit [Ping timeout: 260 seconds]
aamukastemato has quit [Quit: Leaving]
slyrus has joined #lisp
slyrus__ has quit [Ping timeout: 265 seconds]
rixard has quit [Ping timeout: 258 seconds]
nydel has quit [Ping timeout: 272 seconds]
refpga has quit [Remote host closed the connection]
asarch has quit [Quit: Leaving]
rixard has joined #lisp
beaky has quit [Read error: Connection reset by peer]
antoszka has quit [Ping timeout: 252 seconds]
varjag has quit [Ping timeout: 268 seconds]
nydel has joined #lisp
beaky has joined #lisp
gioyik has joined #lisp
antoszka has joined #lisp
cosimone has quit [Quit: Quit.]
LiamH has quit [Quit: Leaving.]
pjb has quit [Read error: Connection reset by peer]
pjb has joined #lisp
gioyik has quit [Ping timeout: 258 seconds]
v_m_v has joined #lisp
Bourne has joined #lisp
karlosz has quit [Quit: karlosz]
v_m_v has quit [Ping timeout: 255 seconds]
karlosz has joined #lisp
buffergn0me has quit [Ping timeout: 240 seconds]
loli has quit [Ping timeout: 256 seconds]
efm has quit [Ping timeout: 255 seconds]
karlosz has quit [Quit: karlosz]
loli has joined #lisp
prince1 has joined #lisp
efm has joined #lisp