Xach 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/>
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
<asdf_asdf_asdf> What mean in Common Lisp [SBCL], (declaim (inline ..., and notinline. I (desassemble it, and I got exactly the same result without origin.
X-Scale has quit [Ping timeout: 268 seconds]
X-Scale` has joined #lisp
<aeth> Don't dissemble the function itself, disassemble a trivial caller of the function (defun foo () (the-possibly-inline-function))
X-Scale` is now known as X-Scale
<aeth> And you'll have to recompile FOO after you recompile THE-POSSIBLY-INLINE-FUNCTION as inline or notinline (depending on which was first)
efm has quit [Ping timeout: 265 seconds]
<aeth> (And also after every time you change what the inline function says)
ebrasca has quit [Remote host closed the connection]
Guest19180 has quit [Ping timeout: 268 seconds]
efm has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
femi has joined #lisp
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
jmercouris has quit [Remote host closed the connection]
smazga has quit [Quit: leaving]
Lord_of_Life_ has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
Lord_of_Life has quit [Ping timeout: 240 seconds]
Lord_of_Life_ is now known as Lord_of_Life
random-nick has quit [Ping timeout: 272 seconds]
terpri has quit [Quit: Leaving]
jprajzne has quit [Client Quit]
oxum has quit [Ping timeout: 265 seconds]
efm has quit [Read error: Connection reset by peer]
efm has joined #lisp
Dovahkiin has quit [Remote host closed the connection]
gabiruh_ has joined #lisp
gabiruh has quit [Ping timeout: 245 seconds]
<asdf_asdf_asdf> aeth, sorry for writes so late, but I can't check it. How check, that function is more efficient or not? In (disassemble I not saw a differents.
Fare has joined #lisp
karlosz has joined #lisp
v_m_v has quit [Ping timeout: 265 seconds]
frodef has quit [Ping timeout: 240 seconds]
pnp has quit [Remote host closed the connection]
terpri has joined #lisp
<aeth> asdf_asdf_asdf: (declaim (inline +/inline) (notinline +/notinline)) (defun +/inline (x y) (+ x y)) (defun +/notinline (x y) (+ x y)) (disassemble #'+/inline) (disassemble #'+/notinline) (defun a () (+/notinline 1f0 2f0)) (defun b () (+/inline 1f0 2f0)) (disassemble #'a) (disassemble #'b)
<aeth> asdf_asdf_asdf: +/inline and +/notinline look identical to each other, but a (using the notinline version) calls +/notinline with 1.0 and 2.0 while b (using the inline verison) probably is compiled to return 3.0 because an optimizing compiler can turn the constant (+ 1f0 2f0) into 3f0
EvW1 has joined #lisp
<aeth> As an aside, "3f0" is the same as "3.0f0" which is probably the same as "3.0", but I put the "f0" to ensure it's single-float because you can configure it to default to double-float and doubles might do weird things.
<aeth> If I used integers, you'd probably see something that doesn't match what you expect, e.g. in SBCL, "1" is going to disassemble to "2" and "3" is going to disassemble to "6"
EvW has quit [Ping timeout: 265 seconds]
EvW1 is now known as EvW
malfort has joined #lisp
<aeth> asdf_asdf_asdf: inline doesn't always make things more efficient. You probably don't want to inline unless it's trivial, like my example. If you have to redefine an inline function, you're not going to update the callers, which is a debugging nightmare.
<aeth> asdf_asdf_asdf: You probably shouldn't inline anything at all. Get your code to work first.
jprajzne has joined #lisp
<LdBeth> what should I do if I want a macro defined works like progn that the eval-when definitions are treated as if they're toplevel
<aeth> (As for the inevitable objections to responding to asdf's issue here that will probably pop up in 15 hours... if I don't answer, a bunch of misinformation about inlining is probably going to be spread.)
oxum has joined #lisp
<LdBeth> or should I avoid to do so and always lift these definitions out to toplevel?
<aeth> LdBeth: can you rephrase that? I don't quite understand
<LdBeth> I'm currently playing with a theorem prover written in CL, it has some custom module system, and it can define lisp functions/macros inside the module definition
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
<LdBeth> the original author seems doesn't know that defmacro in the same file isn't always evaluated especially using a CL that compiles all files, such as SBCL and CCL
Guest19180 has joined #lisp
<LdBeth> thus creating problems for use with these CLs
<LdBeth> moving the macro outside the module definition and add eval-when make the library loads without problem
<LdBeth> but I would not like since it breaks the style of writing module
<aeth> interesting problem
Guest19180 has quit [Ping timeout: 268 seconds]
<LdBeth> it's bourbaki on Quicklisp btw
asdf_asdf_asdf34 has joined #lisp
<asdf_asdf_asdf34> aeth, thank You very much. Inline is in CL by default. First code have 51 bytes and contains jumps conditions jmp, etc. instruction. While second code with inline not contains jumps and calls instructions is size smaller and usually faster.
asdf_asdf_asdf has quit [Ping timeout: 265 seconds]
brettgilio has joined #lisp
<asdf_asdf_asdf34> Size second is 33 bytes. 51 - 33 = 18 bytes differents.
jprajzne has quit [Quit: jprajzne]
asdf_asdf_asdf34 is now known as asdf_asdf_asdf
z147 has quit [Ping timeout: 240 seconds]
Frobozz has joined #lisp
jprajzne has joined #lisp
ebrasca has joined #lisp
Fare has quit [Ping timeout: 268 seconds]
oxum has quit [Ping timeout: 268 seconds]
orivej has joined #lisp
shifty has joined #lisp
sjl has quit [Quit: WeeChat 2.2-dev]
davepdotorg has joined #lisp
lavaflow has quit [Quit: WeeChat 2.6]
jprajzne has quit [Quit: jprajzne]
shrdlu68 has quit [Ping timeout: 272 seconds]
davepdotorg has quit [Ping timeout: 268 seconds]
igemnace has joined #lisp
asdf_asdf_asdf has quit [Ping timeout: 268 seconds]
oxum has joined #lisp
DGASAU has quit [Read error: Connection reset by peer]
DGASAU has joined #lisp
lavaflow has joined #lisp
FreeBirdLjj has joined #lisp
asdf_asdf_asdf has joined #lisp
FreeBirdLjj has quit [Ping timeout: 265 seconds]
asdf_asdf_asdf has quit [Ping timeout: 260 seconds]
stepnem_ has joined #lisp
stepnem has quit [Ping timeout: 268 seconds]
zooey_ has joined #lisp
<pjb> aeth: notinline declaration doesn't prevent inlining the function, notably if it's also declared inline and it's in the same compilation unit as the caller.
<pjb> notinline is not (not inline).
zooey has quit [Remote host closed the connection]
Ven_de_Thiel has quit [Quit: Textual IRC Client: www.textualapp.com]
Ven`` has joined #lisp
gko_ has joined #lisp
jprajzne has joined #lisp
milanj has quit [Quit: This computer has gone to sleep]
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
ebrasca has quit [Remote host closed the connection]
notzmv has quit [Ping timeout: 265 seconds]
ebrasca has joined #lisp
ebrasca has quit [Remote host closed the connection]
brettgilio has quit [Quit: ZNC 1.7.5 - https://znc.in]
brettgilio has joined #lisp
<asarch> In CLHS, is there any diagram showing the relation between standard classes?
<pjb> asarch: nope, there's no diagram in CLHS.
<asarch> Thank you
<pjb> asarch: for each class, it is given its class precedence list.
<pjb> For example, for integer, Class Precedence List: integer, rational, real, number, t
ebrasca has joined #lisp
<pjb> asarch: more interesting: for System Class NULL, Class Precedence List: null, symbol, list, sequence, t
<asarch> Do you know any tool to "build" the relationship in real time from the implementation (a la com.informatimago.common-lisp.picture.cons-to-ascii:draw-list)?
<pjb> Note that not all symbols are lists. Only NIL (of class NULL) is a LIST. This is multiple inheritance.
<pjb> But the real time relationship is not interesting, for CL classes, since some arcs and some classes are implementation dependent. You want a diagram showing the standard classes and types.
ebrasca has quit [Remote host closed the connection]
<asarch> Thank you very much once again :-)
ebrasca has joined #lisp
<asarch> I remember back old days of the first Borland C++ for Windows 3.1 IDE that it had an option to show the relationships between classes (including those in the STL)
<aeth> pjb: my bad
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
<aeth> asarch: the issue with looking into CL implementations is that if you step one too far you're going to see implementation-specific internals
<aeth> asarch: additionally, elaborate class hierarchies are generally not in style anymore in the OOP community
notzmv has joined #lisp
EvW has quit [Ping timeout: 265 seconds]
<aeth> Ironically, a Design Pattern, even though it's sort of a rejection of that kind of OOP thinking. https://en.wikipedia.org/wiki/Composition_over_inheritance
<aeth> probably much harder to build graphs out of this, though... especially in a dynamically typed language
jprajzne has quit [Client Quit]
asdf_asdf_asdf has joined #lisp
jprajzne has joined #lisp
<aeth> pjb: of course the messy part is gray streams :-p
<pjb> Don't ask yourself what you should not do, ask yourself what you can do!
<pjb> Styles are fads. They go and pass…
<aeth> pjb: yes, but it helps explain why the answer to a "Is there a <thing that went out of style>?" question is often no
<pjb> aeth: in Javascript, there are no class, so no class hierarchy, so no deep class hierarchy. That doesn't prevent you to make prototype chains long as the arm of the galaxy…
* Odin- notes that pjb is not an ethicist.
Ven`` has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Guest19180 has joined #lisp
<mfiano> I'm having a hard time understanding the docstring for uiop:define-package. Is there option that mirror's defpackage-plus's :inherit-from (Import SYMBOLS from PACKAGE, and also export them)? I don't want any merging by shadowing, or to import/export all external symbols. I want to grab a select number of symbols from some package, import them, and re-export them. I'm trying to define a reduced user
<mfiano> API package from an internal package, and do not wish to bring in defpackage-plus for this.
Guest19180 has quit [Ping timeout: 240 seconds]
ebzzry has joined #lisp
<mfiano> I literally want the equivalent of if I used some :IMPORT-FROMs followed by :EXPORTs with the same symbols. I'm finalizing the API for a project more than 10 years in progress, and there are hundreds of symbols across a few dozen packages, and I want to ensure there is symmetry between the imports and exports.
<asdf_asdf_asdf> What mean's "I want to grab a select number of symbols from some package,"?
<mfiano> ^
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
<asdf_asdf_asdf> You want get symbol about given number without probe others symbols?
<mfiano> I want to know uiop's equivalent of defpackage-plus's :INHERIT-FROM
<mfiano> (if there is one)
<mfiano> I don't know how to be any more clear than that.
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
<asdf_asdf_asdf> mfiano, You mean :use keyword in CL?
<mfiano> No, not at all.
<mfiano> :use causes all external symbols to be inherited as internal symbols. there is no selection of the symbols as with :import-from, and there is absolutely no exporting of them. I want to import a select subset as I mentioned, while also exporting that select subset.
<asdf_asdf_asdf> LInk put, please to :INHERIT-FROM.
<aeth> mfiano: so you basically want an import-from-reexport like use-reexport?
<mfiano> That sounds right. I want the equivalent of (:import-from set-1) (:export set-1) ... (:import-from set-N) (:export set-N)
<aeth> The only thing it could be is recycle, mix, or mix-reexport. It's not the last two based on the docstring
<mfiano> well with the package's before the set of symbols for :import-from :)
<mfiano> I'm trying to ensure symmetry so that the exports always match the imports for a bunch of import-froms
<aeth> and it doesn't look like it's recycle...
<mfiano> it's not mix or mix-rexport simply because that merges left ot right
<mfiano> in other words, it resolves conflicts by shadowing
<mfiano> i do not want such a thing
<mfiano> also from what i gather those are like use, and inherit all external symbols, and won't allow me to choose which symbols
<asdf_asdf_asdf> I don't know, what mean :IMPORT-FROM. Maybe http://www.lispworks.com/documentation/HyperSpec/Body/f_unuse_.htm .
davepdotorg has joined #lisp
<mfiano> I suggest you try to learn Common Lisp, since you've been here a while.
<mfiano> Before offering to help experienced Lispers, especially.
<aeth> clhs defpackage
<aeth> asdf_asdf_asdf: ^
davepdotorg has quit [Ping timeout: 260 seconds]
zaquest has quit [Quit: Leaving]
froggey has quit [Ping timeout: 265 seconds]
rwcom6 has joined #lisp
froggey has joined #lisp
rwcom has quit [Ping timeout: 265 seconds]
rwcom6 is now known as rwcom
<beach> Good morning everyone!
<mfiano> ignore the query please. This time wasted could have just been spent writing a macro (many times over) to do the IMPORT/EXPORT calls myself to be symmetric.
<mfiano> beach: Morning.
ebrasca has quit [Remote host closed the connection]
ebzzry has quit [Read error: Connection reset by peer]
georgiePorgie has joined #lisp
asdf_asdf_asdf has quit [Quit: asdf_asdf_asdf]
ebrasca has joined #lisp
gravicappa has joined #lisp
ebrasca has quit [Remote host closed the connection]
gabiruh_ has quit [Quit: ZNC - 1.6.0 - http://znc.in]
gabiruh has joined #lisp
ebrasca has joined #lisp
sjl has joined #lisp
drl has quit [Quit: Ex-Chat]
dddddd has quit [Quit: Hasta otra..]
<asarch> In JavaScript there is also the String class, so, when you do something like let name = "asarch"; 'name' automatically is an instance of that class (you can also do "asarch".toUpperCase()). Is it the same with Common Lisp with the INTEGER class? e.g. (let ((dogs 3)) ...) <- Is 'dogs' an instance of that class? If not, what is INTEGER for?
<no-defun-allowed> Uh, yes, an integer is an instance of the INTEGER class.
<aeth> asarch: (string-upcase "asarch") and (let ((name "asarch")) (string-upcase name))
<aeth> asarch: there is no dot notation in CL, those could be implemented as methods or anything else.
ggole has joined #lisp
<aeth> asarch: You can however write your own
<no-defun-allowed> And the value of DOGS is an integer there, but DOGS is not an integer. DOGS is a symbol.
jprajzne has quit [Quit: jprajzne]
oxum has quit [Ping timeout: 265 seconds]
<aeth> asarch: (defgeneric upcase (object)) (defmethod upcase ((o string)) (string-upcase o)) (defmethod upcase ((o character)) (char-upcase o))
impulse has joined #lisp
<aeth> Some things are already generic, particularly around numbers and sequences, but they are not generic in the same sense of DEFGENERIC/DEFMETHOD so you can't extend them. e.g. MAP or +
<aeth> What is the difference between "1 + 1" and "1.+(1)" and "(+ 1 1)"? Just syntax.
<aeth> + can even mix types and take arbitrary lengths, like (+ 1 1/2 1.0f0 1.0d0)
<aeth> Oh and +(1, 1) is another thing that's totally valid, but probably no programming language uses it
<no-defun-allowed> Prolog?
<aeth> asarch: The next thing you're probably wondering is "Why are some things generic and some not?" and it's probably a mix of "performance" and "the non-generic form was already in the standard library of predecessor Lisps since the 70s"
<mfiano> + is generic also in the fact that it is also a variable with completely different semantics :)
<aeth> asarch: Arithmetic and sequence operations have to be generic out of necessity because there are quite a few numeric types and quite a few sequence types
<mfiano> You mean thee are 2 sequence types.
<aeth> mfiano: Depends on how far you take it. A non-generic Lisp would probably split up vectors into quite a few different kinds of vectors. I know this because Scheme does.
<asarch> Well, I mean, if (let ((german-shepherd 10)) ...) and (let ((chihuahua (make-instance 'integer)) ...), 'german-shepherd' and 'chihuahua' are actually not the same type, right?
ealfonso has joined #lisp
<mfiano> That is not valid CL
<no-defun-allowed> Yeah, you cannot define a standard class named CL:INTEGER, and you cannot use make-instance on a built-in class.
<beach> And the nonsense continues....
<asarch> Bingo!
<asarch> What are the built-in class for?
<no-defun-allowed> clhs built-in-class
<asarch> Thank you!
<no-defun-allowed> The first sentence is the most important one here: some built-in classes, such as INTEGER, would be silly to represent with standard instances.
akoana has left #lisp ["Leaving"]
georgiePorgie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
space_otter has joined #lisp
<no-defun-allowed> (You can do some implementation-level tricks like fitting a fixnum into a pointer, and the class will never have to be updated, unless something very big happens in mathematics.)
<aeth> asarch: If it bothers you, sometimes there are MAKE-FOOs instead of MAKE-INSTANCE 'FOOs in APIs, so it wouldn't be that out of place to have a MAKE-INTEGER, just like MAKE-ARRAY and MAKE-LIST. There isn't a MAKE-INTEGER, but at least you can define one yourself. It would be hard to be useful, though, because you'd probably need to provide it an integer.
<no-defun-allowed> (defun make-zero () ...) (defun make-successor (n) ...)
<aeth> no-defun-allowed: well, (make-integer) would probably default to returning 0, and could have a use in certain macros
<asarch> I see
<aeth> I guess to be somewhat useful, MAKE-INTEGER could attempt to coerce to an integer, but even then you probably want to choose how to do it, e.g. FLOOR, CEILING, TRUNCATE, ROUND, etc.
zaquest has joined #lisp
<aeth> asarch: But it's not too unusual to say "if X exists, why doesn't Y exist?" and write some trivial functions/macros in a utility library to give your own code some more consistency
oxum has joined #lisp
<asarch> (string= (string "asarch") (string "Asarch"))
<no-defun-allowed> STRING= is case sensitive, and you don't need the STRING forms around those strings.
Guest19180 has joined #lisp
<asarch> Ok
<aeth> string-equal is the case insensitive version if that's what you want
Guest19180 has quit [Ping timeout: 265 seconds]
ealfonso has quit [Ping timeout: 265 seconds]
<aeth> At least on my implementation (let* ((x "hello") (y (string x))) (eq x y)) is T so it's smart enough to realize that it should do nothing in that case. In other implementations, that might create a copy. If for some reason you want to reliably create a copy, then COPY-SEQ should be used.
georgiePorgie has joined #lisp
brown121408 has quit [Ping timeout: 268 seconds]
<aeth> But needing to use constructors is a very Java thing
<aeth> You shouldn't come into CL with a Java mindset
brown121408 has joined #lisp
FreeBirdLjj has joined #lisp
Bike has quit [Quit: Lost terminal]
<asarch> Yeah, I know. I just was wondering about it :-)
Bike has joined #lisp
count3rmeasure has joined #lisp
count3rmeasure has quit [Client Quit]
g0d_shatter has joined #lisp
jprajzne has joined #lisp
frgo has quit [Remote host closed the connection]
frgo has joined #lisp
jprajzne has quit [Client Quit]
Bike has quit [Quit: Lost terminal]
frgo has quit [Ping timeout: 260 seconds]
FreeBirdLjj has quit [Remote host closed the connection]
FreeBirdLjj has joined #lisp
vlatkoB has joined #lisp
FreeBirdLjj has quit [Ping timeout: 260 seconds]
FreeBirdLjj has joined #lisp
rwcom8 has joined #lisp
FreeBirdLjj has quit [Remote host closed the connection]
FreeBirdLjj has joined #lisp
ebzzry has joined #lisp
rwcom has quit [Ping timeout: 260 seconds]
rwcom8 is now known as rwcom
asarch has quit [Quit: Leaving]
<pjb> mfiano: (defpackage "MINI-LISP" (:use) (:import-from . #1=("CL" "CONS" "CAR" "CDR" "ATOM" "T" "NIL" "NULL" "CONSP" "COND" "DEFUN" "EQL")) (:export . #1#))
<pjb> mfiano: but usually, it doesn't matter if you use (and not import a selection), for those kinds of packages, since they're designed to be used themselves, vs. in-package them.
<pjb> (defpackage "MINI-LISP" (:use "CL:) (:export "CL" "CONS" "CAR" "CDR" "ATOM" "T" "NIL" "NULL" "CONSP" "COND" "DEFUN" "EQL")) is as good.
<pjb> You would defined a user package to be in: (defpackage "MINI-LISP-USER" (:use "MINI-LISP")) (in-package "MINI-LISP-USER")
narimiran has joined #lisp
jeosol has joined #lisp
gko_ has quit [Ping timeout: 268 seconds]
_whitelogger has joined #lisp
Guest19180 has joined #lisp
shifty has quit [Ping timeout: 268 seconds]
txrist has joined #lisp
txrist has left #lisp [#lisp]
Guest19180 has quit [Ping timeout: 265 seconds]
georgiePorgie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
retropikzel has joined #lisp
vlatkoB has quit [Read error: Connection reset by peer]
whiteline_ has quit [Ping timeout: 248 seconds]
vlatkoB has joined #lisp
g0d_shatter has quit [Quit: Leaving]
shangul has joined #lisp
pvaneynd has joined #lisp
pvaneynd_ has joined #lisp
pvaneynd has quit [Ping timeout: 248 seconds]
milanj has joined #lisp
georgiePorgie has joined #lisp
retropikzel has quit [Quit: Leaving]
retropikzel has joined #lisp
davr0s has joined #lisp
shka_ has joined #lisp
Nilby has joined #lisp
shka_ has quit [Ping timeout: 268 seconds]
orivej has quit [Ping timeout: 260 seconds]
orivej has joined #lisp
jprajzne has joined #lisp
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
orivej has quit [Ping timeout: 265 seconds]
shangul has quit [Ping timeout: 268 seconds]
karlosz has quit [Quit: karlosz]
karlosz has joined #lisp
karlosz has quit [Remote host closed the connection]
_whitelogger has joined #lisp
xkapastel has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
vap1 has quit [Ping timeout: 265 seconds]
vap1 has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
whiteline has joined #lisp
Solenoid_Snake has joined #lisp
jfb4 has joined #lisp
gko_ has joined #lisp
shifty has joined #lisp
Guest19180 has joined #lisp
cl-arthur has joined #lisp
Guest19180 has quit [Ping timeout: 265 seconds]
orivej has joined #lisp
igemnace has quit [Quit: WeeChat 2.7]
v_m_v has joined #lisp
shifty has quit [Ping timeout: 260 seconds]
dale has quit [Quit: My computer has gone to sleep]
orivej has quit [Ping timeout: 240 seconds]
retropikzel has quit [Quit: Leaving]
jprajzne has quit [Quit: jprajzne]
heisig has joined #lisp
<flip214> luis: would you like to help at https://github.com/vlime/slime? That's for the JSON interface to swank.
varjag has joined #lisp
jprajzne has joined #lisp
frodef has joined #lisp
random-nick has joined #lisp
<frodef> does anyone happen to know if it's possible to make erc more resilient to losing server connection?
<pjb> frodef: it already reconnects. and rejoins. What more do you want?
<pjb> The problem is more in the irc server/protocol, that your nick is not freed quickly. So if you reconnect too soon, you cannot re-use it simply.
<beach> That is not my experience.
<pjb> You may have to discuss with nickserv to release and re-authenticate with your nick
<_death> you can also use a bouncer
<pjb> That's where all those quit/join messages come from sometimes. You computer goes to sleep, connection is lost, the computer awakes, because, you know, it's a unix system and it has stuff to do periodically, and erc reconnects. And again… Then when you come back in the morning, you have users complaining about your quit/join messages and asking you to check your network connection.
<pjb> frodef: so perhaps preventing the computer to sleep would be a step. On macOS, there's caffeinate(1), so I suppose there's some API for it.
<pjb> frodef: probably you want _death's suggestion, however…
illili has joined #lisp
georgiePorgie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
gko_ has quit [Ping timeout: 260 seconds]
<frodef> My problem is not so much losing connection when the laptop goes to sleep, which is quite understandable. But every once in a while inbetween too. I suspect it's todo with my home router's NAT or something like that.
frodef has quit [Remote host closed the connection]
frodef has joined #lisp
frodef has quit [Remote host closed the connection]
msk has joined #lisp
frodef has joined #lisp
frodef has quit [Remote host closed the connection]
frodef has joined #lisp
<_death> a bouncer would at least keep a message log and replay it when you reconnect
frodef has quit [Remote host closed the connection]
frodef has joined #lisp
frodef has quit [Remote host closed the connection]
frodef has joined #lisp
frodef has quit [Remote host closed the connection]
frodef has joined #lisp
milanj has quit [Quit: This computer has gone to sleep]
shifty has joined #lisp
<beach> frodef: What are the plans for a 64-bit version of Movitz, other than the 64-bit part?
georgiePorgie has joined #lisp
jprajzne has quit [Quit: jprajzne]
<frodef> I have some (still rather vague) ideas for run-time design I want to explore.
<beach> Are those ideas written down somewhere?
kmeow has joined #lisp
rippa has joined #lisp
drl has joined #lisp
<frodef> beach: no
<beach> Do you have any plans to write them down before you start implementing them?
<beach> It would be interesting to read.
jprajzne has joined #lisp
varjag has quit [Ping timeout: 265 seconds]
cosimone has joined #lisp
xkapastel has quit [Quit: Connection closed for inactivity]
ebzzry has quit [Ping timeout: 265 seconds]
Ven`` has joined #lisp
william1_ has joined #lisp
z147 has joined #lisp
Guest19180 has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
Guest19180 has quit [Ping timeout: 265 seconds]
georgiePorgie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
heisig has quit [Ping timeout: 260 seconds]
jprajzne has quit [Client Quit]
rwcom6 has joined #lisp
rwcom has quit [Ping timeout: 240 seconds]
rwcom6 is now known as rwcom
ebzzry has joined #lisp
cosimone has quit [Quit: Terminated!]
cosimone has joined #lisp
Solenoid_Snake has quit [Read error: Connection reset by peer]
gigetoo has quit [Read error: Connection reset by peer]
gigetoo has joined #lisp
Solenoid_Snake has joined #lisp
jprajzne has joined #lisp
shangul has joined #lisp
ebzzry has quit [Ping timeout: 240 seconds]
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
cosimone has quit [Remote host closed the connection]
cosimone has joined #lisp
kayront has joined #lisp
v88m has quit [Ping timeout: 240 seconds]
william1_ has quit [Ping timeout: 260 seconds]
fookara has joined #lisp
cosimone_ has joined #lisp
milanj has joined #lisp
msk has quit [Remote host closed the connection]
msk has joined #lisp
cosimone has quit [Ping timeout: 245 seconds]
jprajzne has quit [Quit: jprajzne]
cosimone_ has quit [Remote host closed the connection]
jprajzne has joined #lisp
cosimone_ has joined #lisp
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
Lord_of_Life_ has joined #lisp
Lord_of_Life has quit [Ping timeout: 265 seconds]
Lord_of_Life_ is now known as Lord_of_Life
msk_ has joined #lisp
msk has quit [Read error: Connection reset by peer]
scymtym has quit [Remote host closed the connection]
shangul has quit [Ping timeout: 265 seconds]
v_m_v has quit [Read error: Connection reset by peer]
v_m_v has joined #lisp
ebzzry has joined #lisp
shka_ has joined #lisp
jprajzne has quit [Quit: jprajzne]
v_m_v has quit [Remote host closed the connection]
v88m has joined #lisp
jprajzne has joined #lisp
sabrac has joined #lisp
georgiePorgie has joined #lisp
frodef has quit [Ping timeout: 265 seconds]
cosimone_ has quit [Ping timeout: 265 seconds]
<Xach> https://github.com/pcostanza/closer-mop/commit/5b06fa56660eed59145ec5d06ce6185202e8e62f broke closer-mop for non-lispworks which breaks a very lot of things.
frgo has joined #lisp
<Odin-> That seems like a pretty big oversight.
* Xach hopes it is fixed soon
<eeeeeta> 🤔
<Odin-> Huh. This Android-based terminal apparently doesn't like emoji. Interesting.
Bike has joined #lisp
msk_ has quit [Remote host closed the connection]
msk_ has joined #lisp
Guest19180 has joined #lisp
<Odin-> Hmm.
<Odin-> Xach: You might want to add something to that discussion.
<Xach> Odin-: thanks
Guest19180 has quit [Ping timeout: 260 seconds]
lnostdal has quit [Quit: "Fascism, Nazism, Communism and Socialism are only superficial variations of the same monstrous theme—collectivism." -- Ayn Rand]
lucasb has joined #lisp
Ven`` has quit [Read error: Connection reset by peer]
_jrjsmrtn has joined #lisp
jprajzne has quit [Quit: jprajzne]
__jrjsmrtn__ has quit [Ping timeout: 272 seconds]
jprajzne has joined #lisp
pfdietz has joined #lisp
<pfdietz> minion: registration, please?
<minion> The URL https://gitlab.common-lisp.net/users/sign_in?secret=b105caeb will be valid until 13:45 UTC.
scymtym has joined #lisp
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
grewal has joined #lisp
cosimone has joined #lisp
cosimone_ has joined #lisp
msk_ has quit [Ping timeout: 268 seconds]
frgo has quit [Read error: Connection reset by peer]
frgo has joined #lisp
msk has joined #lisp
cosimone has quit [Ping timeout: 265 seconds]
dddddd has joined #lisp
william1_ has joined #lisp
georgiePorgie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
georgiePorgie has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
cosimone has joined #lisp
cosimone_ has quit [Ping timeout: 265 seconds]
frodef has joined #lisp
cosimone has quit [Excess Flood]
cosimone has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
gko_ has joined #lisp
fookara has quit [Remote host closed the connection]
Solenoid_Snake has quit [Ping timeout: 265 seconds]
theruran has quit []
ebzzry has quit [Read error: Connection reset by peer]
theruran has joined #lisp
ym has quit [Remote host closed the connection]
msk has quit [Read error: Connection reset by peer]
ym has joined #lisp
msk has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
msk has quit [Remote host closed the connection]
msk_ has joined #lisp
cosimone has quit [Quit: Terminated!]
swills has quit [Read error: Connection reset by peer]
frgo has quit [Remote host closed the connection]
frgo has joined #lisp
william1_ has quit [Ping timeout: 268 seconds]
swills has joined #lisp
jjongMcCarthy has joined #lisp
frgo has quit [Ping timeout: 265 seconds]
swills has quit [Read error: Connection reset by peer]
davr0s has quit [Remote host closed the connection]
swills has joined #lisp
ebzzry has joined #lisp
rme has quit []
rme has joined #lisp
shangul has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
gendl has quit []
gendl has joined #lisp
Guest19180 has joined #lisp
asdf_asdf_asdf has joined #lisp
Guest19180 has quit [Ping timeout: 268 seconds]
rumbler31 has joined #lisp
<sabrac> Hmm. (code-char 11) under ccl is #\PageUp Under sbcl, cmucl, ecl, abcl and clisp it is #\Vt
william1_ has joined #lisp
Kevslinger has quit [Quit: Connection closed for inactivity]
cosimone has joined #lisp
<kmeow> it's #\Vt in clisp, sbcl, and ecl for me
rumbler31 has quit [Remote host closed the connection]
shangul has quit [Ping timeout: 240 seconds]
<kmeow> oh #\PageUp in ccl
<sabrac> Yes. #\VT is correct. Why is ccl an outlier?
ebzzry has quit [Ping timeout: 265 seconds]
<sabrac> (char-code #\Vt) in ccl will return 11 as it should. So just (code-char) is wrong in ccl
<grewal> It's essentially the same. Moving a page up is a vertical tab
<grewal> In ccl, (eq #\Vt #\PageUp) ; => T
<Nilby> The character name PageUp is historical from old Macintosh which had a not exactly ASCII encoding.
<sabrac> Unicode is messy enough without synonyms at the lisp implementation level
rwcom9 has joined #lisp
cl-arthur has quit [Read error: Connection reset by peer]
varjag has joined #lisp
shangul has joined #lisp
<pfdietz> The standard does not specify very many character names.
<Nilby> It's called "LINE TABULATION" in unicode.
rwcom has quit [Ping timeout: 265 seconds]
rwcom9 is now known as rwcom
<Nilby> Or no name really.
terpri has quit [Remote host closed the connection]
<Nilby> Just don't confuse #\bel with #\bell.
brown121408 has quit [Ping timeout: 265 seconds]
pnp has joined #lisp
pnp has left #lisp [#lisp]
<sabrac> writing a NFKC normalisation function. Currently 195 failures out of 75280 tests. Slowly getting there. Learning lots.
nckx has quit [Ping timeout: 268 seconds]
shangul has quit [Remote host closed the connection]
william1_ has quit [Ping timeout: 265 seconds]
shangul has joined #lisp
brown121407 has joined #lisp
<sabrac> at least ccl and sbcl are agreeing on my failures
jjongMcCarthy has quit [Ping timeout: 265 seconds]
JohnMS_WORK has quit [Ping timeout: 268 seconds]
slyrus has joined #lisp
<beach> sabrac: Sounds like a good project. We need more Unicode-related tools.
Kevslinger has joined #lisp
jprajzne has quit [Quit: jprajzne]
<sabrac> beach: I need it for scram-sha-256 authentication in postmodern. Messing up people's passwords would not be acceptable
<beach> I see.
<sabrac> I will break it out in a separate library for general use
jmercouris has joined #lisp
rumbler31 has joined #lisp
<sabrac> will also do nfd and nfc normalisation as well
<beach> Great!
jprajzne has joined #lisp
gko_ has quit [Ping timeout: 240 seconds]
rumbler31 has quit [Remote host closed the connection]
narimiran has quit [Ping timeout: 265 seconds]
ebrasca has quit [Remote host closed the connection]
<Odin-> Huh.
* Odin- was doing the same. :)
jprajzne has quit [Quit: jprajzne]
v_m_v has joined #lisp
jprajzne has joined #lisp
msk_ has quit [Remote host closed the connection]
msk has joined #lisp
shangul has quit [Ping timeout: 265 seconds]
v_m_v has quit [Remote host closed the connection]
msk has quit [Remote host closed the connection]
msk has joined #lisp
<sabrac> Odin-: I have more confidence in your version (sight unseen) - You know a lot more about this space than I do
msk has quit [Remote host closed the connection]
msk has joined #lisp
<Odin-> sabrac: I'm a hobby programmer who's had reason to look more closely at character encoding than is sane; never really worked on any of the algorithms before. :p
<Odin-> (I happen to have studied history at university, in a country where there's a fair bit of concern with medieval manuscripts and their preservation. Letter for letter, that is.)
msk has quit [Remote host closed the connection]
msk_ has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
v_m_v has joined #lisp
brown121407 has quit [Ping timeout: 265 seconds]
brown121408 has joined #lisp
Guest19180 has joined #lisp
v_m_v has quit [Remote host closed the connection]
madage has quit [Quit: leaving]
brown121407 has joined #lisp
brown121408 has quit [Read error: Connection reset by peer]
Guest19180 has quit [Ping timeout: 265 seconds]
frodef has quit [Remote host closed the connection]
<beach> sabrac, Odin-: Perhaps you would be interested in creating a pure Common Lisp version of HarfBuzz?
<Odin-> That's rather a bigger undertaking. :p
<beach> We could use such a thing for McCLIM text applications.
<beach> Yes, but there are two of you. :)
frodef has joined #lisp
rumbler31 has joined #lisp
<beach> I fully understand if you reject my suggestion, of course.
Jeanne-Kamikaze has joined #lisp
william1_ has joined #lisp
frodef has quit [Remote host closed the connection]
william1_ has quit [Ping timeout: 240 seconds]
georgiePorgie has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
rumbler31 has quit [Remote host closed the connection]
frodef has joined #lisp
pirmino has quit [Quit: pirmino]
v_m_v has joined #lisp
jprajzne has quit [Quit: jprajzne]
varjag has quit [Ping timeout: 265 seconds]
jprajzne has joined #lisp
pirmino has joined #lisp
v_m_v has quit [Ping timeout: 240 seconds]
slyrus_ has joined #lisp
<slyrus_> beach: I think we need something like that for the McCLIM PDF backend
rumbler31 has joined #lisp
slyrus has quit [Ping timeout: 268 seconds]
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
<Shinmera> beach: I've been working towards a text layouting engine.
asarch has joined #lisp
grumpyvegetable has quit []
grumpyvegetable has joined #lisp
FreeBird_ has quit [Remote host closed the connection]
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
ebrasca has joined #lisp
lucasb has quit []
lucasb has joined #lisp
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
slyrus__ has joined #lisp
slyrus_ has quit [Ping timeout: 260 seconds]
frgo has joined #lisp
ggole has quit [Quit: Leaving]
pvaneynd_ has quit [Remote host closed the connection]
shifty has quit [Ping timeout: 265 seconds]
v88m has quit [Ping timeout: 260 seconds]
v_m_v has joined #lisp
scymtym has quit [Ping timeout: 248 seconds]
impulse has quit [Ping timeout: 268 seconds]
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
akoana has joined #lisp
orivej has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
madage has joined #lisp
v88m has joined #lisp
orivej has quit [Ping timeout: 268 seconds]
william1_ has joined #lisp
jprajzne has quit [Quit: jprajzne]
Nilby has quit [Read error: Connection reset by peer]
selwyn has quit []
selwyn has joined #lisp
<beach> Shinmera: Oh, excellent! I had no idea.
slyrus_ has joined #lisp
jprajzne has joined #lisp
slyrus__ has quit [Ping timeout: 268 seconds]
<Odin-> beach: I'm hesitant to ask, but ... if FFIing to pango or harfbuzz not a feasible thing?
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
Frobozz has quit [Quit: quit]
oni-on-ion has joined #lisp
Guest19180 has joined #lisp
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
william1_ has quit [Ping timeout: 260 seconds]
william1_ has joined #lisp
Guest19180 has quit [Ping timeout: 265 seconds]
mercourisj has joined #lisp
jmercouris has quit [Disconnected by services]
mercourisj is now known as jmercouris
william1_ has quit [Ping timeout: 265 seconds]
jmercouris has quit [Remote host closed the connection]
v_m_v has quit [Remote host closed the connection]
cosimone has quit [Quit: Terminated!]
v_m_v has joined #lisp
asarch has quit [Quit: Leaving]
asarch has joined #lisp
EvW has joined #lisp
v_m_v has quit [Ping timeout: 260 seconds]
<jackdaniel> Odin-: we have alternative freetype renderer which delegates things to harfbuzz
<jackdaniel> native version otoh works i.e on mezzano
<jackdaniel> also, currently native ttf render (possibly because it doesn't do shaping, but still), is around 40-80x faster in benchmarks
<jackdaniel> we could make a bounty for a good shaping implementation in the cl truetype renderer
<Odin-> Oh. Interesting.
vlatkoB has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
sjl has quit [Quit: WeeChat 2.2-dev]
narimiran has joined #lisp
karlosz has joined #lisp
william1_ has joined #lisp
varjag has joined #lisp
cosimone has joined #lisp
<jackdaniel> n.b: if anyone is interested in implementing that and in a bounty, please contact me. there is none yet.
<jackdaniel> s/there is none yet/there is no bounty so far for this particular feature/
Khisanth has quit [Ping timeout: 265 seconds]
karlosz has quit [Quit: karlosz]
sjl has joined #lisp
lucasb has quit [Quit: Connection closed for inactivity]
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
escanda has joined #lisp
ullbeking has joined #lisp
Khisanth has joined #lisp
jprajzne has quit [Client Quit]
<pjb> sabrac: note that different implementations can use different names for the unicode "characters" too. clisp gives often "better" and more names, since it uses libiconv (IIRC). A lot of implementations just use \uABCD as name for a lot of "characters"…
frodef has quit [Ping timeout: 240 seconds]
msk_ has quit [Ping timeout: 265 seconds]
z147 has quit [Remote host closed the connection]
karlosz has joined #lisp
terpri has joined #lisp
jprajzne has joined #lisp
jprajzne has quit [Client Quit]
terpri has quit [Remote host closed the connection]
jprajzne has joined #lisp
dale has joined #lisp
terpri has joined #lisp
terpri has quit [Remote host closed the connection]
msk has joined #lisp
msk_ has joined #lisp
msk has quit [Remote host closed the connection]
sugarwren has joined #lisp
malfort has quit [Ping timeout: 268 seconds]
jprajzne has quit [Quit: jprajzne]
william1_ has quit [Ping timeout: 268 seconds]
msk_ has quit [Remote host closed the connection]
jprajzne has joined #lisp
msk_ has joined #lisp
orivej has joined #lisp
gravicappa has quit [Ping timeout: 265 seconds]
jprajzne has quit [Client Quit]
Guest19180 has joined #lisp
jprajzne has joined #lisp
fengshaun has quit [Remote host closed the connection]
fengshaun_ has joined #lisp
msk_ has quit [Remote host closed the connection]
msk has joined #lisp
hhdave has joined #lisp
gxt has joined #lisp
Guest19180 has quit [Ping timeout: 240 seconds]
jprajzne has quit [Quit: jprajzne]
escanda has quit [Remote host closed the connection]
jprajzne has joined #lisp
rippa has quit [Quit: {#`%${%&`+'${`%&NO CARRIER]
nckx has joined #lisp
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
hhdave has quit [Quit: hhdave]
shrdlu68 has quit [Ping timeout: 240 seconds]
frodef has joined #lisp
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
cosimone has quit [Remote host closed the connection]
cosimone has joined #lisp
Kundry_Wag has joined #lisp
jprajzne has quit [Client Quit]
karlosz has quit [Quit: karlosz]
jprajzne has joined #lisp
whiteline has quit [Quit: Leaving]
<Xach> /win
karlosz has joined #lisp
whiteline has joined #lisp
karlosz has quit [Remote host closed the connection]
karlosz has joined #lisp
cosimone has quit [Remote host closed the connection]
cosimone has joined #lisp
terpri has joined #lisp
orivej has quit [Ping timeout: 268 seconds]
varjag has quit [Ping timeout: 265 seconds]
jprajzne has quit [Quit: jprajzne]
tankrim has joined #lisp
jprajzne has joined #lisp
jprajzne has quit [Client Quit]
jprajzne has joined #lisp
whiteline has quit [Quit: Leaving]
whiteline has joined #lisp
Kundry_Wag has quit [Remote host closed the connection]
narimiran has quit [Ping timeout: 268 seconds]
Kundry_Wag has joined #lisp
Kundry_Wag has quit [Read error: Connection reset by peer]
Kundry_Wag has joined #lisp
Oladon has joined #lisp
Kundry_Wag has quit [Remote host closed the connection]
Kundry_Wag has joined #lisp
tankrim has quit [Remote host closed the connection]
jprajzne has quit [Quit: jprajzne]
jprajzne has joined #lisp
Kundry_Wag has quit [Ping timeout: 268 seconds]
cosimone has quit [Remote host closed the connection]
jprajzne has quit [Client Quit]
cosimone has joined #lisp
Kundry_Wag has joined #lisp
efm has quit [Ping timeout: 265 seconds]
efm has joined #lisp
jmercouris has joined #lisp
v_m_v has joined #lisp
_whitelogger has joined #lisp
sunwukong has joined #lisp
whiteline has quit [Quit: Leaving]
whiteline has joined #lisp
random-nick has quit [Ping timeout: 265 seconds]
Kundry_Wag has quit [Ping timeout: 265 seconds]
kajo has joined #lisp
Kundry_Wag has joined #lisp
cosimone has quit [Remote host closed the connection]
cosimone has joined #lisp
jmercouris has quit [Ping timeout: 265 seconds]
Guest19180 has joined #lisp
kmeow has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
<taichi> /fail
sunwukong has quit [Remote host closed the connection]
Guest19180 has quit [Ping timeout: 240 seconds]
torbo has joined #lisp
cosimone has quit [Quit: Quit.]
cosimone has joined #lisp
Odin- has quit [Remote host closed the connection]
Odin- has joined #lisp
karlosz has quit [Quit: karlosz]
asdf_asdf_asdf has quit [Remote host closed the connection]
<Xach> well closer-mop is repaired, thankfully
lavaflow has quit [Ping timeout: 240 seconds]
Kundry_Wag has quit [Remote host closed the connection]
cosimone has quit [Ping timeout: 265 seconds]
v_m_v has quit [Remote host closed the connection]
msk has quit [Remote host closed the connection]
lavaflow has joined #lisp
msk has joined #lisp
jmercouris has joined #lisp
jmercouris has quit [Remote host closed the connection]
<pfdietz> Yay!
torbo has quit [Remote host closed the connection]
taichi has quit [Quit: leaving]