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
random-nick has quit [Ping timeout: 260 seconds]
marusich has quit [Ping timeout: 264 seconds]
louis771 has quit [Quit: My M1 has gone to sleep. ZZZzzz…]
perrier-jouet has joined #lisp
marusich has joined #lisp
<MrtnDk[m]> Is there example code with "label"? I think I figured out flet, but the info documentation on sbcl seems very superficial.
Josh_2 has quit [Ping timeout: 265 seconds]
<Bike> clhs labels
<Bike> this?
<Bike> or did you mean something else?
<fiddlerwoaroof> Is something like racket's redex library available for CL?
<Xach> fiddlerwoaroof: what does that do?
<MrtnDk[m]> Bike Thanks! Turns out I messed up by misspelling "labels" "label".
<MrtnDk[m]> I wonder how I can get that nice documentation into my info tree.
DateMasamune2000 has joined #lisp
__jrjsmrtn__ has quit [Ping timeout: 264 seconds]
__jrjsmrtn__ has joined #lisp
elusive has joined #lisp
ebrasca has quit [Remote host closed the connection]
<fiddlerwoaroof> Xach: it's a way of specifying operational semantics for programming languages, basically
<fiddlerwoaroof> it also provides a kind of grammar-directed pattern matching too
<Bike> MrtnDk[m]: the sbcl documentation on standard operators is sparse because it's expected you'll be using the CLHS or something. there's a way to get the hyperspec into emacs info... i think it's explained on cliki or something
marusich has quit [Ping timeout: 264 seconds]
<fiddlerwoaroof> MrtnDk[m]: if you're using emacs, it's possible to add some advice to make hyperspec-lookup open documentation in eww instead of your system web browser
<fiddlerwoaroof> But, I don't think there's a texinfo version of clhs, and clhs itself is non-free
contrapunctus has left #lisp ["Disconnected: closed"]
<MrtnDk[m]> If I read that correctly, getting the right version of slime will include hyperspec lookups?
contrapunctus has joined #lisp
<fiddlerwoaroof> MrtnDk[m]: If you've installed slime, you should have a hyperspec-lookup command accessible via M-x
hjudt has quit [Ping timeout: 260 seconds]
rumbler31 has joined #lisp
<fiddlerwoaroof> I use something like this to make the hyperspec page showup in emacs: https://fwoar.co/pastebin/29bff587b9d6fbca152abbb8cf9ff0385000cd6b.nil.html
<MrtnDk[m]> fiddlerwoaroof I don't have the slime from quick Lisp yet, but I guess it works anyway. However, it fires off a browser, to look up a single word.
<MrtnDk[m]> Ah, that looks nice. I guess I just have to configure Emacs to use eww instead of the external browser.
<MrtnDk[m]> fiddlerwoaroof I suppose that goes in your .emacs-like file?
rumbler31 has quit [Remote host closed the connection]
rumbler31 has joined #lisp
Oladon has joined #lisp
wxie has joined #lisp
rumbler31 has quit [Remote host closed the connection]
specbot has quit [Remote host closed the connection]
minion has quit [Disconnected by services]
specbot has joined #lisp
minion has joined #lisp
<MrtnDk[m]> Ahhh, your code automatically switches to eww, I guess. Very nice.
indathrone has joined #lisp
mpontillo has quit [Changing host]
mpontillo has joined #lisp
mpontillo has joined #lisp
long4mud has joined #lisp
semz has quit [Ping timeout: 260 seconds]
toorevitimirp has joined #lisp
orivej has quit [Ping timeout: 256 seconds]
semz has joined #lisp
<MrtnDk[m]> fiddlerwoaroof (setq common-lisp-hyperspec-root "file:///usr/share/doc/hyperspec") ;;; this will allow eww to access your local copy.
<MrtnDk[m]> ups ... I forgot a / after hyperspec
kini has quit [Remote host closed the connection]
kini has joined #lisp
marusich has joined #lisp
imuo has joined #lisp
metehan has quit [Remote host closed the connection]
hineios9 has joined #lisp
hineios has quit [Ping timeout: 246 seconds]
hineios9 is now known as hineios
orivej has joined #lisp
Oladon has quit [Quit: Leaving.]
semz has quit [Ping timeout: 260 seconds]
mindCrime has quit [Ping timeout: 265 seconds]
Oladon has joined #lisp
semz has joined #lisp
orivej has quit [Ping timeout: 265 seconds]
stalwart has quit [Quit: Lost terminal]
notzmv has quit [Ping timeout: 260 seconds]
prxq_ has joined #lisp
prxq has quit [Ping timeout: 260 seconds]
rumbler31 has joined #lisp
rumbler31 has quit [Ping timeout: 265 seconds]
lowryder has quit [Ping timeout: 256 seconds]
Bike has quit [Quit: Lost terminal]
lowryder has joined #lisp
elusive has quit [Quit: Leaving]
mindCrime has joined #lisp
Alfr has quit [Killed (karatkievich.freenode.net (Nickname regained by services))]
Alfr has joined #lisp
<beach> Good morning everyone!
<MrtnDk[m]> beach beach good morning
mindCrime has quit [Ping timeout: 256 seconds]
Oladon has quit [Quit: Leaving.]
wxie has quit [Ping timeout: 260 seconds]
phossil has joined #lisp
Spawns_Carpeting has quit [Ping timeout: 256 seconds]
imuo has quit [Quit: Connection closed]
cchristiansen has joined #lisp
asarch has joined #lisp
Spawns_Carpeting has joined #lisp
kini has quit [Remote host closed the connection]
pankajsg has joined #lisp
kini has joined #lisp
<beach> MrtnDk[m]: From reading your questions, it looks to me like you are trying to iteration in Common Lisp using recursion and tail recursion, the way it is done in Scheme. That is not the best way to do it in Common Lisp.
DateMasamune2000 has quit [Ping timeout: 256 seconds]
<MrtnDk[m]> beach beach you're correct. I didn't realise that.
aartaka_d has joined #lisp
<beach> Tail recursion is a beautiful theoretical construct, but programs that use it are often hard to read, especially if they were artificially turned into tail recursive programs by the technique(s) shown in the text books.
<beach> Plus, the Common Lisp standard does not guarantee that tail calls will be optimized, so you are likely to overflow the stack even for lists of modest length.
xsperry has joined #lisp
notzmv has joined #lisp
aartaka has quit [Ping timeout: 268 seconds]
<MrtnDk[m]> Also, I guess common lisp had constructs that makes it easier to avoid recursion.
<beach> clhs loop
<beach> MrtnDk[m]: If you look in the Common Lisp HyperSpec table of contents, you will see a chapter entitled "Iteration". That's a good way to start.
<MrtnDk[m]> Nice.
<beach> There are several iteration constructs, but LOOP is pretty much the only one you need, and it is often the best choice in terms of creating readable programs.
<MrtnDk[m]> Thanks to fiddlerwoaroof , I managed to get hyperspec lookups to work within Emacs.
<MrtnDk[m]> Oh, loop is very flexible.
sloanr has joined #lisp
DateMasamune2000 has joined #lisp
bitmapper has quit [Quit: Connection closed for inactivity]
quazimodo has quit [Remote host closed the connection]
marusich has quit [Quit: Leaving]
narimiran has joined #lisp
<moon-child> eh, depends
DateMasamune2000 has quit [Ping timeout: 264 seconds]
<moon-child> imo mapcar is generally clearer than loop+collect
quazimodo has joined #lisp
scymtym has quit [Ping timeout: 245 seconds]
<beach> I find that to be true only if the function you apply is already defined with a name.
<beach> As soon as you need to use an anonymous function, things get more complicated.
<White_Flame> I made a dolist shaped macro for do-mapcar, for readability. (do-mapcar (item list) ..body)
<fiddlerwoaroof> beach: you can get pretty far if you like combinators :)
<White_Flame> often syntactically, the list parameter to mapcar is a single term, and is at the end of a long lambda, and is visually less discernable
<fiddlerwoaroof> (mapcar (key "foo") hash-tables)
<no-defun-allowed> I found REDUCE handy for some macros which generate nested outputs, like an implementation of COND from IF.
<fiddlerwoaroof> I always think of REDUCE as being for implementing more specialized iteration constructs
<fiddlerwoaroof> e.g. the implementation of MAPCAR might use REDUCE
gaqwas has joined #lisp
gaqwas has quit [Changing host]
gaqwas has joined #lisp
PynDragon has joined #lisp
<MrtnDk[m]> fiddlerwoaroof Thank you for the help with hyperspec. I found one thing to add, for mine to work: (setq common-lisp-hyperspec-root "file:///usr/share/doc/hyperspec/") ;;; this will allow eww to access the local copy. But huge help. It works now.
phossil has quit [Quit: Konversation terminated!]
<fiddlerwoaroof> MrtnDk[m]: no problem, I've always just used the online version, but that makes sense
varjag has joined #lisp
<MrtnDk[m]> I consider disabling pictures, but it works nicely already.
jacks2 has joined #lisp
<MrtnDk[m]> The links and everything.
<jacks2> lighter lambda and/or partial application syntax (made with regular or reader macro) would help with mapcar readability
kini has quit [Remote host closed the connection]
kini has joined #lisp
hjudt has joined #lisp
<fiddlerwoaroof> (mapcar (compose '1+ (key "foo") 'parse-json) api-results))
<fiddlerwoaroof> It takes a while to get used to this style, but it reads really nicely once you do
<jacks2> it is still very noisy
<fiddlerwoaroof> compared to Haskell, I guess
<jacks2> yes, but even to clojure
<fiddlerwoaroof> It looks more or less the same as the equivalent clojure
<no-defun-allowed> I wrote a MAP<- once which looks something like (map<- mapcar 1+ (key "foo") parse-json api-results)
<jacks2> (mapcar (lambda (x) (* 10 x)) '(1 2 3)) vs (map #(* 10 %) '(1 2 3)) vs map (*10) [1, 2, 3]
<jacks2> we could do at least as good as #2, or maybe even approach #3
ajithmk_ has joined #lisp
<no-defun-allowed> You could simplify to get to (mapcar<- (* 10) '(1 2 3)) but I always used MAP<- with lparallel.
<fiddlerwoaroof> jacks2: I've written quite a bit of Clojure professionally and I don't find there's a clear winner here in terms of readibility
<jacks2> no-defun-allowed, I think better approach is to make lambda syntax, that can be used anywhere, than to make a special mapcar
<fiddlerwoaroof> I really don't like the various limitations of #(...): I almost always ended up switching to (fn [..]...)
galex-713 has quit [Ping timeout: 272 seconds]
<no-defun-allowed> jacks2: Okay, disregard all that then.
<fiddlerwoaroof> I use SERAPEUM:OP occasionally, though: https://github.com/fiddlerwoaroof/data-lens/blob/master/t/transducers.lisp#L185
<fiddlerwoaroof> Auto-currying is more or less incompatible with variadic functions, unfortunately
DateMasamune2000 has joined #lisp
galex-713 has joined #lisp
varjag has quit [Ping timeout: 268 seconds]
<ajithmk_> Hey all, who have worked with socket programming,I am new to this. So I have a listen-func which connects a udp socket and listens on that. When I run it in repl it blocks on socket-listen. But when I send an udp packet on to the same ip/port from terminal, it does not seem to receive the data and hence listen-func does not return. What am I doing wrong here? Thanks
rumbler31 has joined #lisp
Alfr has quit [Quit: Leaving]
hjudt has quit [Remote host closed the connection]
rumbler31 has quit [Ping timeout: 265 seconds]
<fiddlerwoaroof> ajithmk_: this isn't the problem, but you might consider binding *socket* with LET rather than SETF
<fiddlerwoaroof> also, I don't think connect/receive is right, is it? I'm not an expert, but isn't it normally another pair of functions?
<fiddlerwoaroof> bind/accept or something?
Alfr has joined #lisp
<fiddlerwoaroof> (ignore that, I was wrong)
<ajithmk_> Good catch about setf/let.
<ajithmk_> Well, I am following the api documented here. https://common-lisp.net/project/usocket/api-docs.shtml
aartaka has joined #lisp
DateMasamune2000 has quit [Ping timeout: 268 seconds]
<fiddlerwoaroof> Yeah, I think you actually want (socket-connect nil nil :protocol :datagram :local-host "127.0.0.1" :local-port 2003)
<fiddlerwoaroof> And, I think SOCKET-SERVER will work better, geenrally
<fiddlerwoaroof> Anyways, I'm not an expert or anything just reporting what worked for me
aartaka_d has quit [Ping timeout: 256 seconds]
<ajithmk_> That is it. local-host local-port worked.
<ajithmk_> Yeah. I am experimenting with all those functions
<ajithmk_> Thanks @fiddlerwoaroof
Lord_of_Life has joined #lisp
scymtym has joined #lisp
asarch has quit [Quit: Leaving]
phossil has joined #lisp
contrapunctus has left #lisp ["Disconnected: closed"]
rgherdt has joined #lisp
varjag has joined #lisp
contrapunctus has joined #lisp
surabax has joined #lisp
rogersm has joined #lisp
PynDragon has quit [Quit: Connection closed]
villanella has joined #lisp
shka_ has joined #lisp
IPmonger has quit [Ping timeout: 264 seconds]
momozor has joined #lisp
random-nick has joined #lisp
IPmonger has joined #lisp
ljavorsk has joined #lisp
rogersm has quit []
midre has quit [Ping timeout: 265 seconds]
moon-child has quit [Quit: ZNC 1.8.2 - https://znc.in]
moon-child has joined #lisp
midre has joined #lisp
moon-child has quit [Quit: ZNC 1.8.2 - https://znc.in]
moon-child has joined #lisp
louis771 has joined #lisp
rogersm has joined #lisp
skapata has quit [Remote host closed the connection]
kini has quit [Ping timeout: 268 seconds]
hendursa1 has joined #lisp
cosimone has joined #lisp
hendursaga has quit [Ping timeout: 268 seconds]
<no-defun-allowed> Following the SIMD-accelerated concurrent hash table, here is an unnecessarily fast modification of a base64 encoder/decoder: <https://github.com/telekons/qbase64/tree/sse2>
frost-lab has joined #lisp
<no-defun-allowed> There is no point to this fork, other than I wanted to learn how they do base64 encoding in branch-free vector code, and I still don't really know, so it is completely pointless.
<flip214> no-defun-allowed: to be on par with other implementations, you'd need the uri-encoded versions etc. also ;)
<no-defun-allowed> Exactly, but as I don't understand the tables at all, I probably have no hope writing my own :)
<flip214> not accepting whitespace is a problem anyway, I guess
frost-lab31 has joined #lisp
<flip214> well, please *don't* make it available on QL, it's hard enough to find the "most active" (to not say "best") implementation of standard tasks there already
<no-defun-allowed> Well, the encode-table is pretty transparent about what you'd change to get a different output, but decoding is just magic.
<no-defun-allowed> flip214: Of course. And it also needs cl-simd, which is broken except for my fork, and that only works on a slightly old SBCL... Though the master branch does do better input validation, so I would like to get that upstream.
OlCe has quit [Ping timeout: 256 seconds]
frost-lab has quit [Ping timeout: 245 seconds]
Helmholtz has quit [Ping timeout: 256 seconds]
pve has joined #lisp
jasom has quit [Ping timeout: 240 seconds]
asarch has joined #lisp
Lycurgus has joined #lisp
OlCe has joined #lisp
zooey has quit [Remote host closed the connection]
asarch has quit [Quit: Leaving]
zooey has joined #lisp
hiroaki has quit [Ping timeout: 272 seconds]
anticrisis has quit [Read error: Connection reset by peer]
prxq_ has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
prxq has joined #lisp
momozor has left #lisp [#lisp]
aartaka has quit [Ping timeout: 256 seconds]
galex-713 has quit [Ping timeout: 272 seconds]
hiroaki has joined #lisp
Spawns_Carpeting has quit [Quit: ZNC 1.7.2+deb3 - https://znc.in]
Spawns_Carpeting has joined #lisp
orivej has joined #lisp
zooey has quit [Remote host closed the connection]
ajithmk_ has quit [Quit: Connection closed for inactivity]
zooey has joined #lisp
kevingal has joined #lisp
Nilby has joined #lisp
Lycurgus has quit [Quit: Exeunt]
kslt1 has quit [Ping timeout: 264 seconds]
vhost- has quit [Ping timeout: 264 seconds]
kslt1 has joined #lisp
cchristiansen has quit [Remote host closed the connection]
vegansbane6963 has quit [Quit: The Lounge - https://thelounge.chat]
vhost- has joined #lisp
aartaka has joined #lisp
aartaka_d has joined #lisp
aartaka has quit [Ping timeout: 245 seconds]
phossil has quit [Ping timeout: 256 seconds]
tiwEllien has joined #lisp
nij has joined #lisp
pve has quit [Read error: Connection reset by peer]
<nij> Is it possible to tell if CL-SELENIUM covers all functionalities of selenium? https://common-lisp.net/project/cl-selenium/tutorial.html
galex-713 has joined #lisp
tiwEllien has quit [Ping timeout: 264 seconds]
<nij> I want to try selenium out.. but find it hard to with-stand non-parensism.. hopefully cl-selenium can save me on that.
galex-713 has quit [Ping timeout: 264 seconds]
vegansbane6963 has joined #lisp
jasom has joined #lisp
igemnace has quit [Remote host closed the connection]
rumbler31 has joined #lisp
rumbler31 has quit [Ping timeout: 260 seconds]
OlCe has quit [Remote host closed the connection]
OlCe has joined #lisp
dhil has joined #lisp
<Xach> /win 2
<no-defun-allowed> Congratulations!
pankajsg has quit [Quit: Konversation terminated!]
pankajsg has joined #lisp
Noisytoot has quit [Quit: ZNC 1.8.2 - https://znc.in]
DateMasamune2000 has joined #lisp
entel has quit [Quit: Connection closed for inactivity]
<jmercouris> I'm looking for something like uiop:read-file-string but to write file string
<jmercouris> exists?
<jackdaniel> alexandria:write-string-into-file
<jmercouris> that does work, I was hoping to find something in UIOP, but that is fine, thank you
<jackdaniel> one uiop to rule them all, one uiop to bring them down, one uiop to bug us all, one uiop to tie them all (to asdf)
<jackdaniel> choir starts singing in the background
<jackdaniel> s/them all/your app/
<jackdaniel> n.b alexandria is capable of reading a file too!
<jmercouris> n.b?
<jackdaniel> nota bene
<jmercouris> I see
jacks2 has quit [Quit: http://www.okay.uz/ (Session timeout)]
<jackdaniel> apparently I should put a dot after the second letter too
<jmercouris> that is correct
<nij> uiop.. not good?
<jmercouris> didn't you just hear jackdaniel sing the praises of uiop?
<jackdaniel> nij: it has its good and bad sides; some may be seen as controversial
<nij> that's why i ask
<jmercouris> I like UIOP
<jmercouris> I do not like how convoluted the source appears to me, but I like using it
<jmercouris> too much indirection
pankajsg has quit [Quit: Konversation terminated!]
nij has left #lisp ["ERC (IRC client for Emacs 27.1)"]
* Odin- likes that it's basically certain to be present.
<jackdaniel> there is a certain gotcha to that, because it really is not
<jackdaniel> uiop is present because it is included as part of the build system
<jackdaniel> since it is a preloaded system, quicklisp doesn't attempt to download it
<jackdaniel> so if you are not including the buildsystem in the final executable, it is missing
OlCe has quit [Ping timeout: 256 seconds]
<jackdaniel> that is often oversought because sbcl simply dumps the image along with the build system
<jackdaniel> (of course you may download uiop serparately and put it with your software bundle; uiop itself does not depend on asdf)
<Odin-> ... welp, that's what one gets for not having dealt with distribution of binaries.
<Odin-> :p
<Odin-> 'cause what I was thinking was "when someone uses ASDF to load the system, UIOP is certainly there".
<jackdaniel> sure, I thought that is what you've meant, still I think that the clarification was due
<Odin-> It's always seemed to me that distribution in binary form has ... numerous gotchas.
galex-713 has joined #lisp
<jackdaniel> that is certainly true
frgo has quit [Remote host closed the connection]
frgo_ has joined #lisp
Noisytoot has joined #lisp
rwcom60280385034 has joined #lisp
bitmapper has joined #lisp
frost-lab31 has quit [Quit: Ping timeout (120 seconds)]
<jmercouris> someone wrote a REPL
<jmercouris> I can't seem to find it on GitHub
<jmercouris> it is for CL
<jmercouris> anyone know what I am talking about?
<flip214> jmercouris: are you looking for a jupyter notebook?
<jackdaniel> sure, (loop (print (eval (read)))) ;and it works!
<flip214> a simple text-based repl is available in any CL, AFAIK
<jmercouris> I am well aware
<jmercouris> I'm looking for one that has SLIME like features
<jmercouris> it is written by someone Japanese
<Nilby> There are a many REPLs. More specific ? for terminals? for GUI? for web? using swank? with editing/completion ? Even I wrote 2 repls so far.
<jmercouris> can't remember their name
<jmercouris> there is even that one on CLIKI which I am considering adapting
<jmercouris> there we go: https://github.com/koji-kojiro/cl-repl
<jmercouris> Tani Kojiro
<jmercouris> I hope you all find it interesting!
<jmercouris> I think it is a good concept
ebrasca has joined #lisp
Bike has joined #lisp
narimiran has quit [Ping timeout: 268 seconds]
long4mud has quit [Quit: WeeChat 3.0.1]
toorevitimirp has quit [Ping timeout: 245 seconds]
ukari has quit [Remote host closed the connection]
DateMasamune2000 has quit [Ping timeout: 245 seconds]
warweasle has joined #lisp
toorevitimirp has joined #lisp
hiroaki has quit [Ping timeout: 264 seconds]
theothornhill has joined #lisp
jonatack has joined #lisp
cmatei has joined #lisp
rumbler31 has joined #lisp
jonatack has quit [Ping timeout: 265 seconds]
cmatei has quit [Quit: Leaving]
rumbler31 has quit [Ping timeout: 256 seconds]
orivej has quit [Quit: orivej]
paulj has joined #lisp
orivej has joined #lisp
<jmercouris> what is a way to say "write to disk"?
<jmercouris> should I be saying "storage" instead?
<jmercouris> I don't want to write "memory" because that carries connotation of volatility
<jmercouris> I also don't want to write "non volatile memory" because that is very verbose
cosimone has quit [Read error: Connection reset by peer]
<ebrasca> Why not "write to disk" ?
jonatack has joined #lisp
<jmercouris> because it is inaccurate
<jmercouris> we are often not using disks
<jmercouris> there is no disk in my machine, for example, only solid state storage
<ebrasca> "write to storage" ?
<jmercouris> no?
<ebrasca> I think people understand "write to disk".
<ebrasca> whay about "write to drive"?
<Nilby> jmercouris: When I'm searching for good names I use the softare "dict" and "dict-moby-thesaurus" which gives hundreds of possibilities, like: deposit, squirrel, stow, chronicle, enscroll, engrave, scrive ...
<Nilby> But sometimes it's best to go with the most simple.
<Bike> i would just say "save" i guess
<Bike> or "write to storage" is fine too probably
<jmercouris> OK!
Lord_of_Life has quit [Quit: Laa shay'a waqi'un moutlaq bale kouloun moumkine]
Lord_of_Life has joined #lisp
ljavorsk has quit [Ping timeout: 245 seconds]
theothornhill has quit [Remote host closed the connection]
<jackdaniel> put thy in the stow
<MrtnDk[m]> jmercouris Isn't the proper term "secondary storage"? Surely someone here remembers.
<MrtnDk[m]> jackdaniel thy what?
<jackdaniel> n.b. ssd is a disk
<MrtnDk[m]> <jackdaniel "n.b. ssd is a disk"> Usually I think it's actually square.
<jackdaniel> as in: it is called a disk
<MrtnDk[m]> jackdaniel Not to my knowledge. Why would you call something a disk, that clearly is not a disc?
<jackdaniel> ssd expands to either solid-state device or a solid-state disk; i.e here https://www.zdnet.com/article/solid-state-disk-prices-falling-still-more-costly-than-hard-disks/
<MrtnDk[m]> disk*
<jackdaniel> why would you call an atom something what is clearly divideable?
<ChoHag> floppy disc -> hard disc -> hard square.
<MrtnDk[m]> jackdaniel For historical reasons. They thought the atom to be indivisible.
<ChoHag> jackdaniel: Because throughout history we have always made an effort to correct archaic terminology when new discoveries are made.
<jackdaniel> right, and for historical reasons you have a floppy as an icon for save, and you call a disk flash drives and ssd
<ChoHag> I also hang up the phone.
<jackdaniel> precisely
<MrtnDk[m]> But the notion that "errors have been made in the past, so it is ok to knowingly make new errors" is a logical fallacy.
<ChoHag> Possibly after dialling.
<Nilby> Software is a garbage heap of old device metaphors "floppy" "fax" "disk" "telephone".
<ChoHag> Also now my computers are made of silicon, not flesh and blood.
<jackdaniel> no; but the notion that the meaning of words is constant is also not true (so it is not an error that we call an atom, erm, an atom ;)
<MrtnDk[m]> ChoHag Do you have a rotary phone, or do you consider the expression idiomatic?
<jackdaniel> but this is offtopic
<jackdaniel> let's focus on lisp
<ChoHag> I haven't had a rotary phone since the previous millenium.
<Nilby> Lisp wisely has minimal old device metaphors.
aartaka_d has quit [Ping timeout: 245 seconds]
<ChoHag> In that case, "write to disc", because c looks more like () than k.
<MrtnDk[m]> Nilby: Is the term secondary storage familiar to you?
notzmv has quit [Ping timeout: 256 seconds]
<Nilby> Familiar, yes, but awkward.
<MrtnDk[m]> Nilby: Right, but would you consider it technically correct for this purpose?
<MrtnDk[m]> I guess we don't really care, if they store it on a fixed disc, a floppy disc, an USB-drive, an SD-card or an SSD.
sjl has joined #lisp
<MrtnDk[m]> Heck, they could store it on magnetic tape for all I care, or even paper tape. 😁
<ChoHag> Given enough time, one thing you can be sure it won't be stored on is a disc.
* jackdaniel putting on the moderator hat: "but this is offtopic, let's focus on lisp"
<loke[m]> USB-disk, ssd-disk, etc.
<Nilby> MrtnDk[m]: Maybe. But there's l1,l2,l3 cache, page table, main memory, disk buffer, "disk", "disk" journal, 1st level backup, 2nd level backup, ... offsite, git repo, github, arctic vaault ...
<loke[m]> Better rename the df command in Linux as well.
ldbeth has joined #lisp
<ldbeth> good evening
<fitzsim> someone was asking about a minimal Common Lisp script earlier this week
<fitzsim> I had been working on that for a while, and I just published it:
<MrtnDk[m]> cool
<fitzsim> it's a multi-line "one-liner"
<fitzsim> to get started
<MrtnDk[m]> loke Then we would have to rename tar as well, I guess.
indathrone has quit [Ping timeout: 260 seconds]
<loke[m]> Mrtn Dk indeed
<Xach> fitzsim: i don't quite get it. which part is the "write a script" part?
<MrtnDk[m]> fitzsim What is dnf? Another package manager?
<loke[m]> OSX had a program called disk utility last I have looked. I'm not sure they're planning to rename it.
<fitzsim> Xach: it's a script template
<loke[m]> Mrtn Dk it's the Redhat and Fedora package manager
<Xach> fitzsim: ah
<MrtnDk[m]> loke Oh, I thought that one was called something else, that I don't remember.
<fitzsim> I'll update the post to put "template" in the first line
<loke[m]> Mrtn Dk: Well, the package manager is still called rom.
<loke[m]> I mean rpm
<loke[m]> But on top of that there is the system that downloads packages and deals with dependencies. That used to be called yum, but was remade into dnf
<loke[m]> Similar to how Ubuntu has dpkg, but on top of that is apt-get
cosimone has joined #lisp
narimiran has joined #lisp
<MrtnDk[m]> loke My point earlier, was that there is a difference between naming and renaming. Would we have named "tar" "tape archiver" today? Maybe, maybe not. That doesn't mean we have to rename it though.
<Xach> fitzsim: i love a good polyglot hack. I've sometimes used: ":" ; exec sbcl ...
Josh_2 has joined #lisp
<loke[m]> Mrtn Dk: well I agree with you. I didn't realise that that was part of the same discussion :-)
<MrtnDk[m]> loke 😂
<MrtnDk[m]> oh ... do smileys work on the IRC side?
<loke[m]> Mrtn Dk: smileys are just characters.
<loke[m]> I mean, emojis
<ldbeth> works inside GUI ERC
<loke[m]> So yes, of course they word. But if a user is using a tty-based IRC client it might not render well if their font isn't good.
<MrtnDk[m]> Ah right. Looks weird on terminal, I guess.
<loke[m]> Mrtn Dk: Some terminals displays coloured emojis. Konsole perhaps?
toorevitimirp has quit [Remote host closed the connection]
conkker has joined #lisp
<loke[m]> Ah. Gnome-terminal
<fitzsim> Xach: clarified first line of the blog post, thanks
<Xach> fitzsim: thanks
<loke[m]> That's gnome-terminal to the left and Konsole to the right
<MrtnDk[m]> Right, some terminal emulators would, and depending on your Font, I guess they might show in a fb terminal as well. An actual vt100 (as in a physical one) would probably be a different beast altogether.
<fitzsim> Xach: thanks for that link, bookmarked
<fitzsim> I started out with ":" ; ..., but then saw #| somewhere, which allows a header comment, file local variables, etc.
<loke[m]> Mrtn Dk: True. A vt100 doesn't support UTF-8. It's only ASCII. 7-bit.
<MrtnDk[m]> loke Ah, I didn't realise you were on the matrix side, since you haven't decided on a profile pic yet.
<ldbeth> but both of u get [m] suffices in irc
<loke[m]> The matrix bridge work well enough that I rarely actually use the IRC connection these days.
<loke[m]> I do have to keep in mind which channels are IRC though so I don't use markup or start correcting typos.
dra has joined #lisp
<loke[m]> ldbeth: Yes. That's added by the bridge.
<loke``> It's because I'm already logged in here
<loke``> There
<MrtnDk[m]> ldbeth I think you can get around that. I think I even tried to at a point, but I'm not sure if it was on the freenode bridge.
loke`` is now known as loe
<loe> Fixed
cosimone has quit [Quit: ERC (IRC client for Emacs 28.0.50)]
loe is now known as loke
<loke> I mean fixed
cosimone has joined #lisp
<MrtnDk[m]> Now we have three?
<MrtnDk[m]> No wait, four?
<loke[m]> Four what?
<ldbeth> four loke?
<jackdaniel> MrtnDk[m]: loke: please cease the offtopic
<MrtnDk[m]> Of you. Yes. 😁
<loke[m]> Yeah, the bridge keeps old nicks in the channel for a bit. They'll time out.
tiwEllien has joined #lisp
<ldbeth> backto the topic, I think cl-editline gives something handy to start write CL inside terminal
<fitzsim> Xach: that EmacsWiki link adds Windows support (!) to the wrapper script
contrapunctus has left #lisp ["Disconnected: closed"]
<MrtnDk[m]> ¯_ಠ_ಠ_/¯
<ldbeth> 🤯
jonatack has quit [Ping timeout: 264 seconds]
DateMasamune2000 has joined #lisp
terpri_ has quit [Remote host closed the connection]
terpri_ has joined #lisp
contrapunctus has joined #lisp
jonatack has joined #lisp
Lycurgus has joined #lisp
imuo has joined #lisp
Spawns_Carpeting has quit [Quit: ZNC 1.7.2+deb3 - https://znc.in]
Spawns_Carpeting has joined #lisp
varjag has quit [Quit: ERC (IRC client for Emacs 26.3)]
aartaka has joined #lisp
aartaka_d has joined #lisp
imuo has quit [Quit: Connection closed]
ukari has joined #lisp
aartaka has quit [Ping timeout: 265 seconds]
aartaka has joined #lisp
aartaka_d has quit [Ping timeout: 256 seconds]
lowryder has quit [Ping timeout: 260 seconds]
contrapunctus has left #lisp ["Disconnected: closed"]
lowryder has joined #lisp
imuo has joined #lisp
contrapunctus has joined #lisp
Lycurgus has quit [Quit: Exeunt]
dra has quit [Quit: Leaving]
ey[m] has quit [Quit: Idle for 30+ days]
contrapunctus has left #lisp ["Disconnected: closed"]
contrapunctus has joined #lisp
tiwEllien has quit [Ping timeout: 260 seconds]
tiwEllien has joined #lisp
jonatack has quit [Ping timeout: 264 seconds]
mindCrime has joined #lisp
notzmv has joined #lisp
ljavorsk has joined #lisp
paulj has quit [Remote host closed the connection]
imuo has quit [Quit: Connection closed]
imuo has joined #lisp
madage has quit [Remote host closed the connection]
Oladon has joined #lisp
ldbeth has quit [Quit: ERC (IRC client for Emacs 27.1)]
aartaka_d has joined #lisp
zaquest has quit [Quit: Leaving]
zaquest has joined #lisp
madage has joined #lisp
aartaka has quit [Ping timeout: 256 seconds]
mindCrime has quit [Ping timeout: 264 seconds]
jonatack has joined #lisp
jonatack has quit [Ping timeout: 245 seconds]
luckless_ has joined #lisp
<ebrasca> Why we need a bridge?
ljavorsk has quit [Ping timeout: 268 seconds]
<MrtnDk[m]> ebrasca Let's stick to the Lisp topic, as Jack Daniels requested.
luckless has quit [Ping timeout: 268 seconds]
jonatack has joined #lisp
<imuo> i pop in and out, so i've missed it if anyone replied
<imuo> is there any forum backend written in c. lisp?
<imuo> i enjoy phpbb as a user, but alas not as a programmer
varjag has joined #lisp
<Shinmera> I wrote an imageboard, but not a traditional bb.
<imuo> ah thanks for sharing and doing :)
<Shinmera> Sure. Been using it for years so I at least know that project is pretty stable
<imuo> but alas, i am personally interested in creating a space for sharing knowledge and having deep discussions in a particular topic i have great interest in
<imuo> i feel something like wikipedia combined with a traditional bb like phpBB hosted over IPFS is probably the ideal for me
<imuo> i will however play around with purplish and see how close this comes to my interest
<imuo> Shinmera: would you mind linking to a site that currently uses purplish so i can see how it tastes?
arcontethegreat[ has quit [*.net *.split]
ThaEwat has quit [*.net *.split]
ecraven has quit [*.net *.split]
jackhill has quit [*.net *.split]
samebchase has quit [*.net *.split]
jurov_ has quit [*.net *.split]
ramus has quit [*.net *.split]
nullman has quit [*.net *.split]
davisr has quit [*.net *.split]
edgar-rft has quit [*.net *.split]
fitzsim has quit [*.net *.split]
zigpaw1076 has quit [*.net *.split]
hhdave has quit [*.net *.split]
docl has quit [*.net *.split]
v3ga has quit [*.net *.split]
tessier has quit [*.net *.split]
Demosthenex has quit [*.net *.split]
nitrix has quit [*.net *.split]
jibanes has quit [*.net *.split]
ravndal has quit [*.net *.split]
stux|RC has quit [*.net *.split]
cognemo has quit [*.net *.split]
freshmaker666 has quit [*.net *.split]
Ekho has quit [*.net *.split]
mtd___ has quit [*.net *.split]
z0d has quit [*.net *.split]
mtd_ has quit [*.net *.split]
bkst_ has quit [*.net *.split]
pacon has quit [*.net *.split]
Xach has quit [*.net *.split]
NULLean has quit [*.net *.split]
_death has quit [*.net *.split]
xlei has quit [*.net *.split]
andreyorst has quit [*.net *.split]
grobe0ba has quit [*.net *.split]
ineiros has quit [*.net *.split]
nydel has quit [*.net *.split]
d4ryus has quit [*.net *.split]
fouric has quit [*.net *.split]
SlashLife has quit [*.net *.split]
xantoz has quit [*.net *.split]
grumble has quit [*.net *.split]
loke has quit [*.net *.split]
ober has quit [*.net *.split]
aeth has quit [*.net *.split]
alandipert has quit [*.net *.split]
zxq2 has quit [*.net *.split]
phadthai has quit [*.net *.split]
ms[m] has quit [*.net *.split]
harlchen[m] has quit [*.net *.split]
susam has quit [*.net *.split]
matryoshka has quit [*.net *.split]
luna_is_here has quit [*.net *.split]
Grue` has quit [*.net *.split]
stylewarning has quit [*.net *.split]
b20n has quit [*.net *.split]
theruran_ has quit [*.net *.split]
sxmx has quit [*.net *.split]
ccl-logbot has quit [*.net *.split]
solrize has quit [*.net *.split]
jealousmonk has quit [*.net *.split]
tgbugs has quit [*.net *.split]
Patternmaster has quit [*.net *.split]
eagleflo has quit [*.net *.split]
cross has quit [*.net *.split]
pyc has quit [*.net *.split]
borodust has quit [*.net *.split]
dtman34 has quit [*.net *.split]
hdasch has quit [*.net *.split]
femi has quit [*.net *.split]
ck_ has quit [*.net *.split]
p9fn has quit [*.net *.split]
theBlackDragon has quit [*.net *.split]
Colleen has quit [*.net *.split]
KeyboardWorrier has quit [*.net *.split]
sbryant has quit [*.net *.split]
devrtz_ has quit [*.net *.split]
mood has quit [*.net *.split]
nckx has quit [*.net *.split]
epony has quit [*.net *.split]
eMBee has quit [*.net *.split]
7IZAAI31O has joined #lisp
nightfly has quit [*.net *.split]
gabot has quit [*.net *.split]
DateMasamune2000 has quit [Ping timeout: 261 seconds]
ineiros_ has joined #lisp
tessier has joined #lisp
Grue`` has joined #lisp
phadthai has joined #lisp
tessier has quit [Changing host]
tessier has joined #lisp
ecraven has joined #lisp
fouric has joined #lisp
jibanes has joined #lisp
pacon has joined #lisp
b20n has joined #lisp
grobe0ba has joined #lisp
Demosthenex has joined #lisp
Colleen has joined #lisp
zigpaw1076 has joined #lisp
SlashLife has joined #lisp
jackhill has joined #lisp
z0d has joined #lisp
tgbugs has joined #lisp
NULLean has joined #lisp
akkad has joined #lisp
cognemo has joined #lisp
docl has joined #lisp
mood has joined #lisp
p9fn has joined #lisp
samebchase has joined #lisp
hhdave has joined #lisp
nitrix has joined #lisp
eagleflo has joined #lisp
sxmx has joined #lisp
andreyorst has joined #lisp
nightfly has joined #lisp
mtd has joined #lisp
theruran_ has joined #lisp
nydel has joined #lisp
stylewarning has joined #lisp
loke has joined #lisp
KeyboardWorrier has joined #lisp
sbryant has joined #lisp
v3ga has joined #lisp
borodust has joined #lisp
jurov has joined #lisp
gabot has joined #lisp
eMBee has joined #lisp
davisr has joined #lisp
cross has joined #lisp
Patternmaster has joined #lisp
ravndal has joined #lisp
adeht has joined #lisp
luna_is_here has joined #lisp
pyc has joined #lisp
devrtz has joined #lisp
solrize has joined #lisp
d4ryus has joined #lisp
<Shinmera> Sure, though beware of crude humour. https://chan.tymoon.eu
freshmaker666 has joined #lisp
hdasch has joined #lisp
xantoz has joined #lisp
alandipert has joined #lisp
ccl-logbot has joined #lisp
matryoshka has joined #lisp
grumble has joined #lisp
freshmaker666 has joined #lisp
freshmaker666 has quit [Changing host]
borodust is now known as Guest60210
jealousmonk has joined #lisp
nckx has joined #lisp
stux|RC has joined #lisp
epony has joined #lisp
tweet[m] has quit [*.net *.split]
CrazyEddy has quit [*.net *.split]
tomaw has quit [*.net *.split]
lonjil has quit [*.net *.split]
ark has quit [*.net *.split]
cyberlard has quit [*.net *.split]
patrixl has quit [*.net *.split]
drewc has quit [*.net *.split]
jrm has quit [*.net *.split]
glamas_ has quit [*.net *.split]
jxy has quit [*.net *.split]
saturn2 has quit [*.net *.split]
samebchase- has quit [*.net *.split]
lonjil2 has joined #lisp
ark has joined #lisp
jrm has joined #lisp
cyberlard has joined #lisp
jxy has joined #lisp
samebchase- has joined #lisp
<imuo> Shinmera: thanks for the heads up. lemme put on my helmet.
ramus has joined #lisp
tomaw has joined #lisp
aeth has joined #lisp
drewc has joined #lisp
dtman34 has joined #lisp
dmiles[m] has quit [Ping timeout: 240 seconds]
saturn2 has joined #lisp
loke[m] has quit [Ping timeout: 240 seconds]
dieggsy has quit [Ping timeout: 240 seconds]
femi has joined #lisp
glamas has joined #lisp
etimmons has quit [Ping timeout: 258 seconds]
no-defun-allowed has quit [Ping timeout: 258 seconds]
imuo has quit [*.net *.split]
Gnuxie[m] has quit [Ping timeout: 240 seconds]
kreyren has quit [Ping timeout: 244 seconds]
teej has quit [Ping timeout: 264 seconds]
patrixl has joined #lisp
infra_red[m] has quit [Ping timeout: 244 seconds]
katco has quit [Ping timeout: 240 seconds]
xlei has joined #lisp
rodentrabies has quit [Ping timeout: 268 seconds]
ck_ has joined #lisp
cage_ has joined #lisp
Xach has joined #lisp
nullman has joined #lisp
teej has joined #lisp
jonatack has quit [Read error: Connection reset by peer]
ck__ has joined #lisp
xlei has quit [Excess Flood]
theBlackDragon has joined #lisp
jonatack_ has joined #lisp
bkst has joined #lisp
CrazyEddy has joined #lisp
Theora[m] has quit [Ping timeout: 244 seconds]
MrtnDk[m] has quit [Ping timeout: 240 seconds]
shka_ has quit [Quit: Konversation terminated!]
shka_ has joined #lisp
fitzsim has joined #lisp
imuo has joined #lisp
teej has joined #lisp
teej has quit [Changing host]
ukari has quit [Remote host closed the connection]
Ekho has joined #lisp
ukari has joined #lisp
jmiven has quit [Quit: reboot]
jmiven has joined #lisp
dhil has quit [Quit: Leaving]
indathrone has joined #lisp
xlei has joined #lisp
edgar-rft has joined #lisp
nitrix has quit [Read error: Connection reset by peer]
nitrix has joined #lisp
ck__ has quit [Quit: leaving]
grumble has quit [Quit: K-Lined]
grumble has joined #lisp
indathrone has quit [*.net *.split]
jmiven has quit [*.net *.split]
patrixl has quit [*.net *.split]
lonjil2 has quit [*.net *.split]
grobe0ba has quit [*.net *.split]
stylewarning has quit [*.net *.split]
b20n has quit [*.net *.split]
theruran_ has quit [*.net *.split]
kslt1 has quit [*.net *.split]
Noisytoot has quit [*.net *.split]
frgo_ has quit [*.net *.split]
louis771 has quit [*.net *.split]
IPmonger has quit [*.net *.split]
Alfr has quit [*.net *.split]
xsperry has quit [*.net *.split]
semz has quit [*.net *.split]
specbot has quit [*.net *.split]
__jrjsmrtn__ has quit [*.net *.split]
PuercoPop has quit [*.net *.split]
jprajzne has quit [*.net *.split]
HDurer has quit [*.net *.split]
Lord_Nightmare has quit [*.net *.split]
jdz has quit [*.net *.split]
gko has quit [*.net *.split]
creat has quit [*.net *.split]
travv0 has quit [*.net *.split]
XachX has quit [*.net *.split]
shinohai has quit [*.net *.split]
yonkunas has quit [*.net *.split]
ffwacom has quit [*.net *.split]
Juonu has quit [*.net *.split]
seisatsu has quit [*.net *.split]
physpi has quit [*.net *.split]
gendl has quit [*.net *.split]
drdo has quit [*.net *.split]
chewbranca has quit [*.net *.split]
sgithens has quit [*.net *.split]
Kingsy has quit [*.net *.split]
madnificent has quit [*.net *.split]
Fade has quit [*.net *.split]
shka_ has quit [*.net *.split]
xlei has quit [*.net *.split]
cage_ has quit [*.net *.split]
CrazyEddy has quit [*.net *.split]
jrm has quit [*.net *.split]
alandipert has quit [*.net *.split]
freshmaker666 has quit [*.net *.split]
hdasch has quit [*.net *.split]
Patternmaster has quit [*.net *.split]
eMBee has quit [*.net *.split]
nydel has quit [*.net *.split]
sbryant has quit [*.net *.split]
Oladon has quit [*.net *.split]
mtd has quit [*.net *.split]
narimiran has quit [*.net *.split]
Bike has quit [*.net *.split]
vegansbane6963 has quit [*.net *.split]
prxq has quit [*.net *.split]
surabax has quit [*.net *.split]
sloanr has quit [*.net *.split]
minion has quit [*.net *.split]
amb007 has quit [*.net *.split]
amk has quit [*.net *.split]
mgr_ has quit [*.net *.split]
Inoperable has quit [*.net *.split]
matthewcroughan has quit [*.net *.split]
aap has quit [*.net *.split]
Cthulhux has quit [*.net *.split]
spacebat2 has quit [*.net *.split]
remexre has quit [*.net *.split]
[df]_ has quit [*.net *.split]
yang has quit [*.net *.split]
leo_song has quit [*.net *.split]
gigetoo has quit [*.net *.split]
APic has quit [*.net *.split]
kingcons has quit [*.net *.split]
mrSpec has quit [*.net *.split]
wigust has quit [*.net *.split]
bmansurov has quit [*.net *.split]
ferada_ has quit [*.net *.split]
jfb4 has quit [*.net *.split]
Firedancer_ has quit [*.net *.split]
moon-child has quit [*.net *.split]
asdflkj has quit [*.net *.split]
hiroaki1 has quit [*.net *.split]
summerisle has quit [*.net *.split]
ilmu has quit [*.net *.split]
ioa has quit [*.net *.split]
xristos has quit [*.net *.split]
felideon has quit [*.net *.split]
plisp1 has quit [*.net *.split]
shrysr_ has quit [*.net *.split]
dnm has quit [*.net *.split]
Balooga has quit [*.net *.split]
buoy49 has quit [*.net *.split]
mgxm has quit [*.net *.split]
rme has quit [*.net *.split]
jmercouris has quit [*.net *.split]
em has quit [*.net *.split]
AdmiralBumbleBee has quit [*.net *.split]
nopf has quit [*.net *.split]
palter has quit [*.net *.split]
davros has quit [*.net *.split]
Spawns_Carpeting has quit [*.net *.split]
lowryder has quit [*.net *.split]
Josh_2 has quit [*.net *.split]
sjl has quit [*.net *.split]
midre has quit [*.net *.split]
Krystof has quit [*.net *.split]
johnjay has quit [*.net *.split]
Sauvin has quit [*.net *.split]
ChoHag has quit [*.net *.split]
isoraqathedh has quit [*.net *.split]
deltab has quit [*.net *.split]
cods has quit [*.net *.split]
herlocks- has quit [*.net *.split]
shoshin has quit [*.net *.split]
rotty has quit [*.net *.split]
jgkamat has quit [*.net *.split]
alfred188 has quit [*.net *.split]
mgsk- has quit [*.net *.split]
casual_friday has quit [*.net *.split]
pok has quit [*.net *.split]
add^__ has quit [*.net *.split]
azrazalea_ has quit [*.net *.split]
cpape has quit [*.net *.split]
engblom has quit [*.net *.split]
thijso has quit [*.net *.split]
dim has quit [*.net *.split]
sukaeto has quit [*.net *.split]
tychoish has quit [*.net *.split]
frodef has quit [*.net *.split]
thecoffemaker has quit [*.net *.split]
zymurgy has quit [*.net *.split]
snits has quit [*.net *.split]
gensym has quit [*.net *.split]
daniel1302 has quit [*.net *.split]
bkst has quit [*.net *.split]
ck_ has quit [*.net *.split]
saturn2 has quit [*.net *.split]
samebchase- has quit [*.net *.split]
stux|RC has quit [*.net *.split]
davisr has quit [*.net *.split]
jurov has quit [*.net *.split]
gabot has quit [*.net *.split]
KeyboardWorrier has quit [*.net *.split]
sxmx has quit [*.net *.split]
eagleflo has quit [*.net *.split]
mood has quit [*.net *.split]
p9fn has quit [*.net *.split]
cognemo has quit [*.net *.split]
cross has quit [*.net *.split]
zigpaw1076 has quit [*.net *.split]
pacon has quit [*.net *.split]
fouric has quit [*.net *.split]
aartaka_d has quit [*.net *.split]
varjag has quit [*.net *.split]
zaquest has quit [*.net *.split]
Lord_of_Life has quit [*.net *.split]
ebrasca has quit [*.net *.split]
vhost- has quit [*.net *.split]
emacsomancer has quit [*.net *.split]
phantomics has quit [*.net *.split]
mrchampion has quit [*.net *.split]
conkker has quit [*.net *.split]
save-lisp-or-die has quit [*.net *.split]
Mandus has quit [*.net *.split]
zupss_ has quit [*.net *.split]
Gromboli has quit [*.net *.split]
mseddon has quit [*.net *.split]
vsync_ has quit [*.net *.split]
Necktwi has quit [*.net *.split]
troydm has quit [*.net *.split]
terrorjack has quit [*.net *.split]
gabiruh has quit [*.net *.split]
lavaflow has quit [*.net *.split]
Nikotiini has quit [*.net *.split]
justinmcp has quit [*.net *.split]
nullheroes has quit [*.net *.split]
markasoftware has quit [*.net *.split]
mfiano has quit [*.net *.split]
Ziemas has quit [*.net *.split]
rvirding has quit [*.net *.split]
prxq_ has joined #lisp
mr_yogurt has quit [*.net *.split]
mtd_ has joined #lisp
add^_ has joined #lisp
Kingsy_ has joined #lisp
aap_ has joined #lisp
mood_ has joined #lisp
nopf_ has joined #lisp
Faed has joined #lisp
Mandus_ has joined #lisp
jfb4 has joined #lisp
pok_ has joined #lisp
eMBee has joined #lisp
shinohai_ has joined #lisp
Patternmaster has joined #lisp
ChoHag has joined #lisp
Cthulhux` has joined #lisp
deltab has joined #lisp
p9fn has joined #lisp
pok_ is now known as pok
jrm2 has joined #lisp
ferada has joined #lisp
Necktwi has joined #lisp
mrSpec has joined #lisp
sloanr has joined #lisp
EPic has joined #lisp
thijso has joined #lisp
gigetoo_ has joined #lisp
sbryant_ has joined #lisp
Bike has joined #lisp
mfiano has joined #lisp
Firedancer has joined #lisp
gabiruh has joined #lisp
KeyboardWorrier has joined #lisp
yang_ has joined #lisp
kingcons has joined #lisp
sxmx has joined #lisp
seisatsu has joined #lisp
zigpaw1076 has joined #lisp
HDurer has joined #lisp
mgsk_ has joined #lisp
bmansurov has joined #lisp
cods has joined #lisp
HDurer has quit [Changing host]
HDurer has joined #lisp
Ziemas has joined #lisp
engblom has joined #lisp
cpape` has joined #lisp
buoy49 has joined #lisp
nydel has joined #lisp
plisp2 has joined #lisp
spacebat2 has joined #lisp
frgo has joined #lisp
em has joined #lisp
madnificent has joined #lisp
zupss has joined #lisp
hdasch has joined #lisp
felideon_ has joined #lisp
zaquest has joined #lisp
sgithens has joined #lisp
freshmaker666 has joined #lisp
jurov has joined #lisp
fouric has joined #lisp
phantomics has joined #lisp
gko has joined #lisp
daniel1302 has joined #lisp
isoraqathedh has joined #lisp
IPmonger has joined #lisp
samebchase- has joined #lisp
Josh_2 has joined #lisp
cage_ has joined #lisp
xristos has joined #lisp
felideon_ is now known as felideon
semz has joined #lisp
sbryant_ is now known as sbryant
ebrasca` has joined #lisp
kslt1 has joined #lisp
[df] has joined #lisp
ioa has joined #lisp
Juonu has joined #lisp
galex-713 has quit [Ping timeout: 249 seconds]
ck_ has joined #lisp
Oladon has joined #lisp
midre has joined #lisp
rotty has joined #lisp
lavaflow has joined #lisp
remexre has joined #lisp
sjl has joined #lisp
vsync has joined #lisp
eagleflo has joined #lisp
leo_song has joined #lisp
minion has joined #lisp
yonkunas has joined #lisp
jdz has joined #lisp
em has joined #lisp
em has quit [Changing host]
amb007 has joined #lisp
XachX has joined #lisp
mseddon has joined #lisp
mrSpec is now known as Guest75428
CrazyEddy has joined #lisp
gensym has joined #lisp
wigust has joined #lisp
rme has joined #lisp
travv0 has joined #lisp
jmercouris has joined #lisp
cognemo has joined #lisp
vhost- has joined #lisp
jrm2 is now known as jrm
Spawns_Carpeting has joined #lisp
davros has joined #lisp
Sauvin has joined #lisp
b20n has joined #lisp
seisatsu is now known as Guest83962
Balooga has joined #lisp
cross has joined #lisp
lonjil has joined #lisp
troydm has joined #lisp
jmiven has joined #lisp
davisr has joined #lisp
rvirding has joined #lisp
semz has quit [Changing host]
semz has joined #lisp
stux|RC has joined #lisp
xristos is now known as Guest5381
zymurgy has joined #lisp
freshmaker666 has joined #lisp
freshmaker666 has quit [Changing host]
vhost- has quit [Changing host]
vhost- has joined #lisp
gigetoo_ is now known as gigetoo
jprajzne has joined #lisp
theruran_ has joined #lisp
asdflkj has joined #lisp
XachX has joined #lisp
XachX has quit [Changing host]
nullheroes has joined #lisp
lowryder has joined #lisp
varjag has joined #lisp
gendl has joined #lisp
CrazyEddy has joined #lisp
CrazyEddy has quit [Changing host]
palter has joined #lisp
ilmu has joined #lisp
saturn2 has joined #lisp
sukaeto has joined #lisp
dnm has joined #lisp
alfred188 has joined #lisp
stylewarning has joined #lisp
gabot has joined #lisp
chewbranca has joined #lisp
mr_yogurt has joined #lisp
physpi has joined #lisp
shrysr_ has joined #lisp
specbot has joined #lisp
ffwacom has joined #lisp
Guest5381 has joined #lisp
Guest5381 has quit [Changing host]
chewbranca has joined #lisp
chewbranca has quit [Changing host]
AdmiralBumbleBee has joined #lisp
mgr_ has joined #lisp
thecoffemaker has joined #lisp
grobe0ba has joined #lisp
thecoffemaker has quit [Changing host]
thecoffemaker has joined #lisp
summerisle has joined #lisp
casual_friday has joined #lisp
markasoftware has joined #lisp
narimiran has joined #lisp
mrchampion has joined #lisp
Inoperable has joined #lisp
emacsomancer has joined #lisp
mgxm has joined #lisp
Lord_of_Life has joined #lisp
azrazalea has joined #lisp
tychoish has joined #lisp
surabax has joined #lisp
indathrone has joined #lisp
matthewcroughan has joined #lisp
herlocksholmes has joined #lisp
Alfr has joined #lisp
Noisytoot_ has joined #lisp
amk has joined #lisp
jgkamat has joined #lisp
Nikotiini has joined #lisp
johnjay has joined #lisp
Lord_Nightmare has joined #lisp
drdo has joined #lisp
PuercoPop has joined #lisp
creat has joined #lisp
Oladon has quit [Client Quit]
dim has joined #lisp
frodef has joined #lisp
justinmcp has joined #lisp
patrixl has joined #lisp
shka_ has joined #lisp
aartaka has joined #lisp
Guest75428 has quit [Changing host]
Guest75428 has joined #lisp
__jrjsmrtn__ has joined #lisp
jsatk has quit [Ping timeout: 268 seconds]
pacon has joined #lisp
Noisytoot_ is now known as Noisytoot
snits has joined #lisp
bkst has joined #lisp
jsatk has joined #lisp
Josh_2 has quit [Remote host closed the connection]
Noisytoot is now known as Noisytoot__
Noisytoot__ is now known as Noisytoot
teej has quit [Ping timeout: 272 seconds]
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
Guest5381 is now known as xristos`
xristos` is now known as xristos
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
shinohai_ is now known as shinohai
moon-child has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
aap_ is now known as aap
amb007 has joined #lisp
teej has joined #lisp
louis771 has joined #lisp
ms[m] has joined #lisp
xlei has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
aeth has quit [Ping timeout: 256 seconds]
Josh_2 has joined #lisp
amb007 has joined #lisp
jonatack_ has quit [Read error: Connection reset by peer]
_whitelogger has joined #lisp
mseddon has quit [Quit: The Lounge - https://thelounge.chat]
jonathan- has joined #lisp
nullman has quit [*.net *.split]
ramus has quit [*.net *.split]
nckx has quit [*.net *.split]
docl has quit [*.net *.split]
NULLean has quit [*.net *.split]
SlashLife has quit [*.net *.split]
loke has quit [*.net *.split]
cosimone has quit [*.net *.split]
villanella has quit [*.net *.split]
gaqwas has quit [*.net *.split]
quazimodo has quit [*.net *.split]
dvdmuckle has quit [*.net *.split]
tmf has quit [*.net *.split]
oxum has quit [*.net *.split]
vaporatorius has quit [*.net *.split]
mister_m has quit [*.net *.split]
contrapunctus has quit [*.net *.split]
sm2n has quit [*.net *.split]
Iolo has quit [*.net *.split]
keja_ has quit [*.net *.split]
copec has quit [*.net *.split]
fiddlerwoaroof has quit [*.net *.split]
Tordek has quit [*.net *.split]
paul0 has quit [*.net *.split]
ft has quit [*.net *.split]
zagura has quit [*.net *.split]
datajerk has quit [*.net *.split]
matijja has quit [*.net *.split]
elflng has quit [*.net *.split]
hvxgr has quit [*.net *.split]
SAL9000 has quit [*.net *.split]
gpiero has quit [*.net *.split]
kbtr_ has quit [*.net *.split]
Ankhers has quit [*.net *.split]
mathrick has quit [*.net *.split]
cyraxjoe has quit [*.net *.split]
hiredman has quit [*.net *.split]
stux|RC-only has quit [*.net *.split]
walex has quit [*.net *.split]
SumoSud0 has quit [*.net *.split]
gabc has quit [*.net *.split]
guaqua has quit [*.net *.split]
Khisanth has quit [*.net *.split]
brass has quit [*.net *.split]
Kabriel_ has quit [*.net *.split]
malm has quit [*.net *.split]
amb007 has quit [Read error: Connection reset by peer]
winny has joined #lisp
jonatack_ has joined #lisp
walex has joined #lisp
hiredman has joined #lisp
docl_ has joined #lisp
gabc has joined #lisp
tmf has joined #lisp
villanella has joined #lisp
guaqua has joined #lisp
keja_ has joined #lisp
matijja has joined #lisp
ft has joined #lisp
ramus has joined #lisp
gpiero has joined #lisp
malm has joined #lisp
Tordek_ has joined #lisp
hvxgr has joined #lisp
gaqwas has joined #lisp
nullman has joined #lisp
zagura has joined #lisp
cosimone has joined #lisp
kbtr has joined #lisp
vaporatorius has joined #lisp
nckx[2] has joined #lisp
NULLean has joined #lisp
quazimodo has joined #lisp
mister_m has joined #lisp
elflng has joined #lisp
mathrick has joined #lisp
SlashLife has joined #lisp
paul0 has joined #lisp
loke has joined #lisp
gaqwas has quit [Changing host]
gaqwas has joined #lisp
vaporatorius has quit [Changing host]
vaporatorius has joined #lisp
sm2n has joined #lisp
amb007 has joined #lisp
oxum has joined #lisp
alandipert has joined #lisp
mseddon has joined #lisp
Khisanth has joined #lisp
fiddlerwoaroof has joined #lisp
Ankhers has joined #lisp
cyraxjoe has joined #lisp
brass has joined #lisp
dvdmuckle has joined #lisp
SAL9000 has joined #lisp
Kabriel has joined #lisp
kingcons has quit [Ping timeout: 240 seconds]
amb007 has quit [Read error: Connection reset by peer]
nckx[2] is now known as nckx
SumoSud0 has joined #lisp
copec has joined #lisp
kingcons has joined #lisp
amb007 has joined #lisp
Cthulhux` has quit [Changing host]
Cthulhux` has joined #lisp
stux|RC-only has joined #lisp
datajerk has joined #lisp
CrazyEddy has quit [Remote host closed the connection]
Iolo has joined #lisp
paul0 has quit [*.net *.split]
villanella has quit [*.net *.split]
v3ga has quit [*.net *.split]
borodust- has quit [*.net *.split]
lieven has quit [*.net *.split]
Guest19918 has quit [*.net *.split]
teej has quit [*.net *.split]
jsatk has quit [*.net *.split]
patrixl has quit [*.net *.split]
PuercoPop has quit [*.net *.split]
HiRE has quit [*.net *.split]
waleee-cl has quit [*.net *.split]
kim_ has quit [*.net *.split]
acolarh has quit [*.net *.split]
krjt has quit [*.net *.split]
beaky has quit [*.net *.split]
griffinbyatt has quit [*.net *.split]
billstclair has quit [*.net *.split]
mgsk has quit [*.net *.split]
l1x has quit [*.net *.split]
yottabyte has quit [*.net *.split]
tiwEllien has quit [*.net *.split]
eschatologist has quit [*.net *.split]
shenghi has quit [*.net *.split]
alanz has quit [*.net *.split]
bitmapper has quit [*.net *.split]
cpt_nemo has quit [*.net *.split]
housel_ has quit [*.net *.split]
ms[m] has quit [*.net *.split]
snits has quit [*.net *.split]
Lord_Nightmare has quit [*.net *.split]
matthewcroughan has quit [*.net *.split]
surabax has quit [*.net *.split]
Oddity has quit [*.net *.split]
pranavats has quit [*.net *.split]
gingerale- has quit [*.net *.split]
idxu has quit [*.net *.split]
bjorkintosh has quit [*.net *.split]
dbotton has quit [*.net *.split]
russell-- has quit [*.net *.split]
Guest99088 has quit [*.net *.split]
amb007 has quit [Read error: Connection reset by peer]
kim\ has joined #lisp
villanella has joined #lisp
paul0 has joined #lisp
borodust has joined #lisp
Guest19918 has joined #lisp
HiRE has joined #lisp
v3ga has joined #lisp
imuo has quit [Quit: Connection closed]
PuercoPop has joined #lisp
acolarh has joined #lisp
lieven has joined #lisp
lieven has quit [Changing host]
lieven has joined #lisp
amb007 has joined #lisp
waleee-cl has joined #lisp
jsatk has joined #lisp
griffinbyatt has joined #lisp
billstclair has joined #lisp
shenghi has joined #lisp
l1x has joined #lisp
cpt_nemo has joined #lisp
yottabyte has joined #lisp
eschatologist has joined #lisp
alanz has joined #lisp
bitmapper has joined #lisp
snits has joined #lisp
housel_ has joined #lisp
matthewcroughan has joined #lisp
ms[m] has joined #lisp
mgsk has joined #lisp
Lord_Nightmare has joined #lisp
tiwEllien has joined #lisp
Oddity has joined #lisp
bjorkintosh has joined #lisp
pranavats has joined #lisp
surabax has joined #lisp
russell-- has joined #lisp
Guest99088 has joined #lisp
gingerale- has joined #lisp
idxu has joined #lisp
dbotton has joined #lisp
borodust is now known as Guest9052
imuo has joined #lisp
matthewcroughan has quit [Max SendQ exceeded]
beaky has joined #lisp
matthewcroughan has joined #lisp
conkker has joined #lisp
l1x has quit [*.net *.split]
mgsk has quit [*.net *.split]
yottabyte has quit [*.net *.split]
shenghi has quit [*.net *.split]
tiwEllien has quit [*.net *.split]
eschatologist has quit [*.net *.split]
alanz has quit [*.net *.split]
bitmapper has quit [*.net *.split]
housel_ has quit [*.net *.split]
cpt_nemo has quit [*.net *.split]
ms[m] has quit [*.net *.split]
snits has quit [*.net *.split]
Lord_Nightmare has quit [*.net *.split]
surabax has quit [*.net *.split]
Oddity has quit [*.net *.split]
pranavats has quit [*.net *.split]
idxu has quit [*.net *.split]
gingerale- has quit [*.net *.split]
bjorkintosh has quit [*.net *.split]
dbotton has quit [*.net *.split]
russell-- has quit [*.net *.split]
Guest99088 has quit [*.net *.split]
krjt has joined #lisp
cpt_nemo has joined #lisp
russell-- has joined #lisp
warweasle has quit [Quit: rcirc on GNU Emacs 26.1]
snits has joined #lisp
gingerale- has joined #lisp
idxu has joined #lisp
teej has joined #lisp
surabax has joined #lisp
eschatologist has joined #lisp
housel has joined #lisp
bjorkintosh has joined #lisp
Oddity has joined #lisp
yottabyte has joined #lisp
shenghi has joined #lisp
russell-- is now known as Guest3489
Guest85002 has joined #lisp
dbotton has joined #lisp
warweasle has joined #lisp
Lord_Nightmare has joined #lisp
oxum has quit [*.net *.split]
__jrjsmrtn__ has quit [*.net *.split]
aartaka has quit [*.net *.split]
shka_ has quit [*.net *.split]
frodef has quit [*.net *.split]
creat has quit [*.net *.split]
indathrone has quit [*.net *.split]
Alfr has quit [*.net *.split]
narimiran has quit [*.net *.split]
grobe0ba has quit [*.net *.split]
summerisle has quit [*.net *.split]
asdflkj has quit [*.net *.split]
ffwacom has quit [*.net *.split]
palter has quit [*.net *.split]
lonjil has quit [*.net *.split]
dnm has quit [*.net *.split]
b20n has quit [*.net *.split]
Balooga has quit [*.net *.split]
XachX has quit [*.net *.split]
semz has quit [*.net *.split]
gko has quit [*.net *.split]
frgo has quit [*.net *.split]
felideon has quit [*.net *.split]
rogersm has quit [*.net *.split]
nmg_ has quit [*.net *.split]
Blkt has quit [*.net *.split]
bonz060 has quit [*.net *.split]
antoszka has quit [*.net *.split]
thonkpod has quit [*.net *.split]
swflint has quit [*.net *.split]
larme has quit [*.net *.split]
bonz060 has joined #lisp
lonjil2 has joined #lisp
felideon_ has joined #lisp
swflint_away has joined #lisp
frodef has joined #lisp
grobe0ba_ has joined #lisp
summerisle_ has joined #lisp
Blkt has joined #lisp
gko has joined #lisp
dnm has joined #lisp
nmg has joined #lisp
XachX has joined #lisp
creat_ has joined #lisp
frgo has joined #lisp
thonkpod has joined #lisp
Alfr has joined #lisp
semz has joined #lisp
semz has quit [Changing host]
semz has joined #lisp
indathrone has joined #lisp
narimiran has joined #lisp
palter has joined #lisp
felideon_ is now known as felideon
ffwacom has joined #lisp
b20n has joined #lisp
Balooga has joined #lisp
swflint_away is now known as swflint
grobe0ba_ is now known as grobe0ba
larme has joined #lisp
oxum has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
asdflkj has joined #lisp
alanz has joined #lisp
antoszka has joined #lisp
amb007 has joined #lisp
__jrjsmrtn__ has joined #lisp
aartaka has joined #lisp
rogersm has joined #lisp
l1x has joined #lisp
mgsk has joined #lisp
jmiven has quit [Quit: bye]
ms[m] has joined #lisp
jmiven has joined #lisp
xsperry has joined #lisp
bitmapper has joined #lisp
shka_ has joined #lisp
Alfr has quit [Client Quit]
luckless_ has quit [*.net *.split]
madage has quit [*.net *.split]
zooey has quit [*.net *.split]
hendursa1 has quit [*.net *.split]
cantstanya has quit [*.net *.split]
corpix_ has quit [*.net *.split]
Aurora_v_kosmose has quit [*.net *.split]
patrixl has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
CrazyEddy has joined #lisp
tiwEllien has joined #lisp
amb007 has joined #lisp
CrazyEddy has quit [Client Quit]
feelings has joined #lisp
feelings is now known as CrazyEddy
corpix has joined #lisp
hendursa1 has joined #lisp
Aurora_v_kosmose has joined #lisp
zooey has joined #lisp
CrazyEddy has joined #lisp
CrazyEddy has quit [Changing host]
cantstanya has joined #lisp
edgar-rft has quit [*.net *.split]
fitzsim has quit [*.net *.split]
theBlackDragon has quit [*.net *.split]
femi has quit [*.net *.split]
drewc has quit [*.net *.split]
solrize has quit [*.net *.split]
cyberlard has quit [*.net *.split]
tomaw has quit [*.net *.split]
Ekho has quit [*.net *.split]
ccl-logbot has quit [*.net *.split]
d4ryus has quit [*.net *.split]
pyc has quit [*.net *.split]
adeht has quit [*.net *.split]
ravndal has quit [*.net *.split]
andreyorst has quit [*.net *.split]
nightfly has quit [*.net *.split]
hhdave has quit [*.net *.split]
z0d has quit [*.net *.split]
Demosthenex has quit [*.net *.split]
jibanes has quit [*.net *.split]
notzmv has quit [*.net *.split]
orivej has quit [*.net *.split]
ggoes has quit [*.net *.split]
Shinmera has quit [*.net *.split]
lansiir has quit [*.net *.split]
luis has quit [*.net *.split]
gitgood has quit [*.net *.split]
rigidus has quit [*.net *.split]
rixard has quit [*.net *.split]
wooden has quit [*.net *.split]
flip214 has quit [*.net *.split]
MetaYan has quit [*.net *.split]
Posterdati has quit [*.net *.split]
dddddd has quit [*.net *.split]
TMA has quit [*.net *.split]
gum has quit [*.net *.split]
penguwin has quit [*.net *.split]
himmAllRight has quit [*.net *.split]
p9fn has quit [*.net *.split]
ukari has quit [*.net *.split]
Xach has quit [*.net *.split]
glamas has quit [*.net *.split]
dtman34 has quit [*.net *.split]
jxy has quit [*.net *.split]
jealousmonk has quit [*.net *.split]
xantoz has quit [*.net *.split]
samebchase has quit [*.net *.split]
tgbugs has quit [*.net *.split]
Colleen has quit [*.net *.split]
jackhill has quit [*.net *.split]
tessier has quit [*.net *.split]
ecraven has quit [*.net *.split]
Grue`` has quit [*.net *.split]
phadthai has quit [*.net *.split]
akkad has quit [*.net *.split]
ineiros_ has quit [*.net *.split]
7IZAAI31O has quit [*.net *.split]
rwcom60280385034 has quit [*.net *.split]
Nilby has quit [*.net *.split]
kevingal has quit [*.net *.split]
random-nick has quit [*.net *.split]
scymtym has quit [*.net *.split]
hineios has quit [*.net *.split]
perrier-jouet has quit [*.net *.split]
raeda has quit [*.net *.split]
jello_pudding has quit [*.net *.split]
dunk has quit [*.net *.split]
conjunctive has quit [*.net *.split]
gaze__ has quit [*.net *.split]
Papa has quit [*.net *.split]
ozzloy has quit [*.net *.split]
xi has quit [*.net *.split]
rigidus` has joined #lisp
wooden has joined #lisp
jibanes has joined #lisp
theBlackDragon has joined #lisp
drewc has joined #lisp
flip214 has joined #lisp
xi- has joined #lisp
p9fn has joined #lisp
gum has joined #lisp
wooden has joined #lisp
wooden has quit [Changing host]
nefercheprure has joined #lisp
Colleen has joined #lisp
gitgood has joined #lisp
tgbugs has joined #lisp
phadthai has joined #lisp
andreyorst has joined #lisp
Demosthenex has joined #lisp
Grue` has joined #lisp
samebchase has joined #lisp
MetaYan has joined #lisp
ineiros has joined #lisp
ozzloy_ has joined #lisp
mtd has joined #lisp
akkad has joined #lisp
nightfly has joined #lisp
Shinmera has joined #lisp
gaze__ has joined #lisp
scymtym has joined #lisp
rixard has joined #lisp
orivej has joined #lisp
tomaw has joined #lisp
femi has joined #lisp
edgar-rft has joined #lisp
dunk has joined #lisp
pyc has joined #lisp
d4ryus has joined #lisp
jello_pudding has joined #lisp
hhdave has joined #lisp
conjunctive has joined #lisp
pyc has quit [Changing host]
pyc has joined #lisp
solrize has joined #lisp
adeht has joined #lisp
xantoz has joined #lisp
glamas has joined #lisp
himmAllRight has joined #lisp
perrier-jouet has joined #lisp
notzmv has joined #lisp
Aurora_v_kosmose has quit [Client Quit]
ecraven has joined #lisp
random-nick has joined #lisp
oldtopman has joined #lisp
notzmv is now known as Guest16651
kevingal has joined #lisp
raeda has joined #lisp
Posterdati has joined #lisp
ggoes has joined #lisp
cyberlard has joined #lisp
ccl-logbot has joined #lisp
ravndal has joined #lisp
dtman34 has joined #lisp
Aurora_v_kosmose has joined #lisp
jealousmonk has joined #lisp
save-lisp-or-die has joined #lisp
madage has joined #lisp
fitzsim has joined #lisp
dddddd has joined #lisp
skapata has joined #lisp
ukari has joined #lisp
louis771 has quit [Quit: Textual IRC Client: www.textualapp.com]
Alfr has joined #lisp
louis771 has joined #lisp
Sauvin has quit [Read error: Connection reset by peer]
edgar-rft has quit [Client Quit]
sp41 has joined #lisp
z0d has joined #lisp
jxy has joined #lisp
Xach_ has joined #lisp
jackhill has joined #lisp
tessier has joined #lisp
tessier has joined #lisp
Papa has joined #lisp
rpg has joined #lisp
luckless_ has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
edgar-rft has joined #lisp
amb007 has joined #lisp
lowryder has quit [Ping timeout: 245 seconds]
amb007 has quit [Read error: Connection reset by peer]
lowryder has joined #lisp
amb007 has joined #lisp
surabax has quit [Quit: Leaving]
Ekho has joined #lisp
louis771 has quit [Quit: My M1 has gone to sleep. ZZZzzz…]
ms[m] has quit [Ping timeout: 248 seconds]
Aurora_v_kosmose has quit [Ping timeout: 240 seconds]
penguwin has joined #lisp
Aurora_v_kosmose has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
sp41 has quit [Quit: Lost terminal]
oxum_ has joined #lisp
amb007 has joined #lisp
yang_ is now known as yang
joast has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
oxum has quit [Ping timeout: 250 seconds]
rpg has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
galex-713 has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
oxum has joined #lisp
amb007 has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
<alanz> I notice that some things have a name starting with "%". Is there a convention about this? I notice it for e.g. slot names
<jmercouris> Yes there is
<jmercouris> Use it for dangerous implementation serials
<jmercouris> Details *
<alanz> "dangerous" in what sense?
<alanz> aka private?
amb007 has quit [Read error: Connection reset by peer]
shoshin has joined #lisp
amb007 has joined #lisp
oxum_ has quit [Ping timeout: 252 seconds]
louis771 has joined #lisp
<mfiano> Yes, private. It is bad practice to name slot names the same as their accessors for example
<mfiano> Therefor slot names are typically prefixed with %, to prevent exporting implementation details
<alanz> yes, that is the usage I have seen. And impossible to search for :)
<alanz> thanks
<mfiano> This isn't used by everyone, but since you are not exporting functions, but symbols, you should be careful about what you give users access to. You don't want them to bypass the intended protocols put in place
aeth has quit [Ping timeout: 240 seconds]
<alanz> that makes sense
motersen has joined #lisp
sp41 has joined #lisp
<Josh_2> Sly doesnt like it when you put parens into doc strings
aeth has joined #lisp
<mfiano> It is fine with it.
dieggsy has joined #lisp
arcontethegreat[ has joined #lisp
Theora[m] has joined #lisp
MrtnDk[m] has joined #lisp
harlchen[m] has joined #lisp
ThaEwat has joined #lisp
<Josh_2> Apparently it isn't for me
<mfiano> A open parenthesis at column 0 means something special in some editors
<mfiano> If that's what you mean
<Josh_2> Well I'm using emacs with sly
sp41 is now known as spalynx
aartaka_d has joined #lisp
kreyren has joined #lisp
<mfiano> It's not anything to do with Sly if it is col 0
katco has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
<Josh_2> ha yeh it was because the ( was at column 0
<Josh_2> Interesting. Thanks for that info
amb007 has joined #lisp
<Josh_2> I'll have to remember that
tweet[m] has joined #lisp
aartaka has quit [Ping timeout: 265 seconds]
infra_red[m] has joined #lisp
spalynx has quit [Quit: leaving]
anticrisis has joined #lisp
sp41 has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
ms[m]1 has joined #lisp
susam has joined #lisp
dmiles[m] has joined #lisp
rpg has joined #lisp
etimmons has joined #lisp
rodentrabies has joined #lisp
loke[m]1 has joined #lisp
no-defun-allowed has joined #lisp
ukari has quit [Remote host closed the connection]
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
ukari has joined #lisp
CrazyEddy has quit [Remote host closed the connection]
amb007 has quit [Read error: Connection reset by peer]
davisr_ has joined #lisp
amb007 has joined #lisp
Gnuxie[m] has joined #lisp
davisr has quit [Ping timeout: 246 seconds]
jonatack_ has quit [Ping timeout: 260 seconds]
CrazyEddy has joined #lisp
entel has joined #lisp
adeht is now known as _death
CrazyEddy has joined #lisp
CrazyEddy has quit [Changing host]
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
jonatack_ has joined #lisp
|3b|` is now known as |3b|
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
Guest75428 is now known as mrSpec
EPic is now known as APic
Firedancer has quit [Remote host closed the connection]
Inline has joined #lisp
Inline has quit [Remote host closed the connection]
amb007 has quit [Read error: Connection reset by peer]
Krystof has joined #lisp
amb007 has joined #lisp
Lord_of_Life_ has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
prxq_ has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
Lord_of_Life_ has quit [Remote host closed the connection]
prxq has joined #lisp
Lord_of_Life has quit [Ping timeout: 260 seconds]
Firedancer_ has joined #lisp
Lord_of_Life has joined #lisp
motersen has quit [Quit: rcirc on GNU Emacs 27.1]
<phoe> I have a NIH-related question - has a "slicing" stream been done before? as in, a stream that only reveals a "slice" of some file
Firedancer_ has quit [Ping timeout: 260 seconds]
<phoe> I wonder if there is prior work that is in better shape than this five minute sketch
cosimone has quit [Remote host closed the connection]
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
jonatack__ has joined #lisp
akoana has joined #lisp
jonatack_ has quit [Ping timeout: 252 seconds]
mindCrime has joined #lisp
orivej has quit [Ping timeout: 265 seconds]
<edgar-rft> phoe: I usually use (with-open-file .... (file-position <stream> <position>) (read ...)) when I e.g. want to read sample data from a WAV file but skipping the file header.
ukari has quit [Remote host closed the connection]
ukari has joined #lisp
<scymtym> phoe: i suggest checking the return value of FILE-POSITION and signaling an error if the position could not be adjusted
warweasle has quit [Quit: rcirc on GNU Emacs 26.1]
<scymtym> phoe: you could also implement STREAM-FILE-POSITION and maybe even (setf stream-file-position)
<etimmons> phoe: I believe flexi-streams can do this.
orivej has joined #lisp
Lord_of_Life has quit [Ping timeout: 240 seconds]
tiwEllien has quit [Ping timeout: 276 seconds]
cchristiansen has joined #lisp
jonatack__ has quit [Ping timeout: 265 seconds]
<phoe> scymtym: yes, thanks for the ideas
zooey has quit [Remote host closed the connection]
ljavorsk has joined #lisp
<phoe> edgar-rft: yes, but this does not work if a library wants to read until EOF, but I only want to give it bytes from M to N
cchristiansen has quit [Remote host closed the connection]
<phoe> etimmons: can it? lemme check
shoshin has quit [Quit: The Lounge - https://thelounge.chat]
save-lisp-or-die has quit [Quit: The Lounge - https://thelounge.chat]
CrazyEddy has quit [Remote host closed the connection]
save-lisp-or-die has joined #lisp
shoshin has joined #lisp
zooey has joined #lisp
<phoe> ha! amazing, thanks
save-lisp-or-die has quit [Client Quit]
shoshin has quit [Client Quit]
phossil has joined #lisp
<phoe> etimmons: ...I get really funky behavior for flex
<phoe> am I screwing up somewhere, or is this a flexi-streams bugticket?
<etimmons> Huh. I swear I'm using that feature somewhere with success. Let me take a look
Lord_of_Life has joined #lisp
<mfiano> It seems bound is interpreted as (- bound position) and position is always 0...
corpix has quit [Ping timeout: 240 seconds]
<mfiano> That doesn't align with the docstring
CrazyEddy has joined #lisp
corpix has joined #lisp
emacsomancer has quit [Quit: WeeChat 3.1]
save-lisp-or-die has joined #lisp
shoshin has joined #lisp
rogersm has quit [Quit: Leaving...]
emacsomancer has joined #lisp
v3ga has quit [Ping timeout: 258 seconds]
v3ga has joined #lisp
rogersm has joined #lisp
cosimone has joined #lisp
kpoeck has joined #lisp
<mfiano> etimmons: Curious what you find. phoe actually whipped up that example for me after I couldn't find a solution that worked.
imuo has quit [Quit: Connection closed]
<kpoeck> drmeister can you elaborate on "Lang gave me a solution that doesn't require a new garbage collector or switching to the large (slower) code model."
<Colleen> kpoeck: Bike said at 2021.03.08 18:47:51: https://github.com/clasp-developers/clasp/commit/59b8b484b7b679c47f4916da754d4b5bdf02490c do you remember what was going on with this commit? the expression looks like it computes the same thing except for dropping dst. working around broken math functions?
<etimmons> Ah right. My code only uses bound and lets position progress naturally from zero.
<kpoeck> and that should have gone to #clasp :-)
<etimmons> Wouldn't surprise me if there's a bug with position. I had to submit a patch to make bound respected by read-sequence
<mfiano> etimmons: Ah yeah, it seems flexi-streams is bugged in that position is always 0.
<mfiano> and bound is the relative offset from the supplied position
<mfiano> That makes no sense to me :)
<etimmons> Me either
narimiran has quit [Ping timeout: 252 seconds]
rogersm has quit [Quit: Leaving...]
theothornhill has joined #lisp
aeth_ has joined #lisp
aeth has quit [Disconnected by services]
Lord_of_Life has quit [Ping timeout: 252 seconds]
aeth_ is now known as aeth
CrazyEddy has quit [Remote host closed the connection]
save-lisp-or-die has quit [Quit: The Lounge - https://thelounge.chat]
shoshin has quit [Quit: The Lounge - https://thelounge.chat]
CrazyEddy has joined #lisp
kpoeck52 has joined #lisp
save-lisp-or-die has joined #lisp
shoshin has joined #lisp
kpoeck has quit [Ping timeout: 240 seconds]
epony has quit [Remote host closed the connection]
winny has quit [Quit: restarting weechat relay for openssl upgrade]
winny has joined #lisp
epony has joined #lisp
sxmx has quit [Quit: WeeChat 3.1]
cage_ has quit [Quit: Leaving]
Guest9052 is now known as borodust
borodust has quit [Changing host]
borodust has joined #lisp
summerisle_ has quit [Quit: In my vision, I was on the veranda of a vast estate, a palazzo of some fantastic proportion.]
PuercoPop has quit [Quit: WeeChat 2.8]
summerisle has joined #lisp
aartaka_d has quit [Ping timeout: 240 seconds]
Guest16651 is now known as notmzv
notmzv is now known as notzmv
imuo has joined #lisp
<Shinmera> Sure. Been using it for years so I at least know that project is pretty stable
<Shinmera> whoops, sorry about that.
VincentVega has joined #lisp
save-lisp-or-die has quit [Quit: The Lounge - https://thelounge.chat]
shoshin has quit [Quit: The Lounge - https://thelounge.chat]
solrize has left #lisp ["Leaving"]
galex-713 has quit [Ping timeout: 245 seconds]
Guest3489 is now known as russell--
CrazyEddy has quit [Remote host closed the connection]
kpoeck52 has quit [Ping timeout: 240 seconds]
<MetaYan> If I get an error like https://termbin.com/w2ab , is there some magic trick in SLIME to jump to the actual error? I mean, the error is not in the compiler, which is all that I find in the backtrace...
CrazyEddy has joined #lisp
davisr_ is now known as davisr
<fiddlerwoaroof> MetaYan: if you open the file in question, you can set your emacs point to the position specified
imuo has quit [Quit: Connection closed]
docl_ is now known as docl
<fiddlerwoaroof> Also, if you open that file and compile it (C-c C-k), you should be able to use M-n to jump to the form with a problem
<MetaYan> fiddlerwoaroof: Not sure what you mean by that. I mean that I wouldnät need to manually open the file – that there might be some key combination in SLIME that does it for me...
<MetaYan> *wouldn't* - wrong key layout...
<fiddlerwoaroof> I'm not aware of one
<fiddlerwoaroof> I agree it'd be desireabl
<fiddlerwoaroof> *desirable
<MetaYan> This was just a recent example - it's happened many times, so hoping that some true SLIME magician reveals the trick. ;)
galex-713 has joined #lisp
<phoe> MetaYan: that's an ASDF issue, sadly ASDF does not refer to that compile-file error anywhere
<phoe> even though in theory it could
<phoe> e.g. via a slot in the COMPILE-FILE-ERROR condition
<phoe> actually
<phoe> hmmmm
<phoe> I think of a way how it could be implemented in ASDF, via handler-bind around the actuall compile-file call
<phoe> that collects the errors/warnings/conditions actually signaled by the compiler and then can e.g. present them to the user
<fiddlerwoaroof> Or ASDF could have a restart that takes a function to execute on the failing component
<phoe> seems to work from what I roughly explore
<phoe> sure, that works too
sjl has quit [Ping timeout: 260 seconds]
villanella has quit [Ping timeout: 250 seconds]
theothornhill has quit [Remote host closed the connection]
shka_ has quit [Ping timeout: 240 seconds]
louis771 has quit [Quit: My M1 has gone to sleep. ZZZzzz…]
<jmercouris> phoe: if you can improve asdf error reporting I will be eternally grateful
<jmercouris> The messages are always so cryptic and hard to trace
<fiddlerwoaroof> I wish there were some better documentation of how it works
perrier-jouet has quit [Quit: WeeChat 3.1]
<fiddlerwoaroof> Defining operations and new component types sounds really useful, but there aren't many examples and the documentation of the object model is hard to follow
notzmv has quit [Ping timeout: 245 seconds]
<aeth> oh, yeah, ASDF has a really hard to follow design... something that a few good macros probably could have hid
<fiddlerwoaroof> The design isn't actually that bad: conceptually, it's just operations, components and some dependency tracking
<fiddlerwoaroof> But the right way to add a new component type or operation isn't obvious
<fiddlerwoaroof> And so I end up cargo-culting CFFI or whatever
jxy has quit [Quit: leaving]
varjag has quit [Ping timeout: 245 seconds]
indathrone has quit [Quit: Leaving]
notzmv has joined #lisp
mrchampion has quit [Ping timeout: 246 seconds]
notzmv has quit [Ping timeout: 240 seconds]
ebrasca` has quit [Ping timeout: 248 seconds]
ebrasca` has joined #lisp
X-Scale` has joined #lisp
X-Scale has quit [Ping timeout: 258 seconds]
X-Scale` is now known as X-Scale
mrchampion has joined #lisp
<MetaYan> CCL/SLIME reports "Read error between positions 3313 and 3670 in /Users/Shared/cl/scm/incandescent/cubemap/cubemap.lisp.; Evaluation aborted on #<CCL::NO-SUCH-PACKAGE #x302005C008FD>." Would be really nice to be able to easily "visit" there.
VincentVega has quit [Quit: Connection closed]
rgherdt has quit [Ping timeout: 250 seconds]
torbo has joined #lisp
yonkunas has quit [Quit: Connection closed for inactivity]
luis has joined #lisp
igemnace has joined #lisp
<Bike> if the error has a position like that, slime could probably link to it in the compiler notes
frgo has quit [Remote host closed the connection]
frgo has joined #lisp
Josh_2 has quit [Remote host closed the connection]
Oladon has joined #lisp
phossil has quit [Quit: Konversation terminated!]
<semz> ASDF 1 is pretty readable
<semz> but unfortunately i'm not sure how much of the fundamental model changed between v1 and v3
hineios has joined #lisp
aeth has quit [Ping timeout: 240 seconds]