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
gaqwas has quit [Ping timeout: 246 seconds]
charles` has joined #lisp
mindCrime_ has joined #lisp
aun has quit [Quit: Connection closed]
cchristiansen has joined #lisp
lonjil2 is now known as lonjil
random-nick has quit [Ping timeout: 246 seconds]
zaquest has quit [Quit: Leaving]
zaquest has joined #lisp
sp41 has quit [Remote host closed the connection]
curtosis has joined #lisp
curtosis is now known as curtosis[away]
akoana has left #lisp ["Leaving"]
adam4567 has joined #lisp
curtosis[away] has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
aeth_ has joined #lisp
aeth has quit [Ping timeout: 268 seconds]
Bike has quit [Quit: Lost terminal]
semz has quit [Ping timeout: 250 seconds]
semz has joined #lisp
aeth_ is now known as aeth
Aurora_v_kosmose has quit [Remote host closed the connection]
Aurora_v_kosmose has joined #lisp
long4mud has joined #lisp
logand` has joined #lisp
aeth_ has joined #lisp
waleee-cl has quit [Quit: Connection closed for inactivity]
aeth has quit [Disconnected by services]
aeth_ is now known as aeth
moshes has joined #lisp
logand has quit [Ping timeout: 265 seconds]
ram18 has joined #lisp
moshes` has joined #lisp
ram18 has quit [Client Quit]
ebrasca has quit [Remote host closed the connection]
ikrabbe has joined #lisp
rumbler31 has quit [Remote host closed the connection]
rumbler31 has joined #lisp
curtosis has joined #lisp
ikrabbe|2 has quit [Ping timeout: 240 seconds]
cpc26 has joined #lisp
judson_ has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
cpc26 has left #lisp [#lisp]
cpc26 has joined #lisp
cpc26 has quit [Client Quit]
wsinatra has quit [Quit: WeeChat 3.1]
Achylles has quit [Read error: Connection reset by peer]
Helmholtz has quit [Quit: Helmholtz]
kevingal_ has quit [Remote host closed the connection]
curtosis has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
curtosis[away] has joined #lisp
judson_ has joined #lisp
judson_ has quit [Ping timeout: 258 seconds]
__jrjsmrtn__ has quit [Ping timeout: 265 seconds]
__jrjsmrtn__ has joined #lisp
curtosis[away] has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
thermo has joined #lisp
raeda has quit [Read error: Connection reset by peer]
<beach> Good morning everyone!
abhixec has joined #lisp
vtomole has joined #lisp
Oladon has joined #lisp
<charles`> Hi beach.
<charles`> Is there any reason why quicklisp would not prioritize local-projects?
<no-defun-allowed> It always has for me.
<charles`> It has for me too, but in this one situation, it continues to pull form latest quicklisp release
<loke[m]1> charles` you can try to delete system-index.txt
karlosz has joined #lisp
<charles`> wow, amazing! much thanks
<thermo> i'm using sbcl, and i'm struggling to diagnose a slow OOM. i was hoping to get some related info by setting sb-kernel:gc-logfile and inspecting the output --- but nothing seems to be being written. are there further flags i'm meant to set?
<beach> What is "OOM"?
<thermo> out of memory
<beach> Ah, OK.
<thermo> i'd also be happy to just hear generic tips about diagnosing memory problems. if there's a way to see statistics what's still alive and where it was allocated, that'd be amazing
<no-defun-allowed> If you break and evaluate (room t), SBCL provides a list of object types which have instances which occupy the most memory.
aeth has quit [Ping timeout: 265 seconds]
aeth has joined #lisp
vtomole has quit [Ping timeout: 240 seconds]
<charles`> Does anyone know of special variables not behaving properly on ABCL?
<beach> Are you sure the behavior is ABCL specific?
<no-defun-allowed> How are they misbehaving?
marusich has joined #lisp
karlosz has quit [Quit: karlosz]
nicktick has quit [Ping timeout: 265 seconds]
<charles`> beach, no-defun-allowed: I'm not sure 😁. I would really appreciate a you taking a look. It works perfectly on sbcl. Let me write a test that displays what is wrong. Then I will share a link.
<charles`> Well, I managed to figure it out on my own. I'm sorry for possibly blaming ABCL.
<beach> Congratulations!
bitmapper has quit [Quit: Connection closed for inactivity]
spongiforma has joined #lisp
<charles`> Are you working on anything cool today?
<beach> minion: Please tell charles` about SICL.
<minion> charles`: SICL: SICL is a (perhaps futile) attempt to re-implement Common Lisp from scratch, hopefully using improved programming and bootstrapping techniques. See https://github.com/robert-strandh/SICL
<charles`> I know about it, I just mean specifically
<beach> Register allocation.
<beach> I invented what I think is a new technique.
<charles`> that would be when you need to do some operations, how to decide which registers to put the data in?
<beach> It is based on the OPT (imaginary) paging algorithm in that it estimates the distance to the next use of lexical variables, and when it needs to spill, it spills the one with the greatest estimated distance.
<beach> More like deciding which register to spill to the stack when there are not enough of them.
Oladon has quit [Quit: Leaving.]
<beach> Registers are typically grouped into (overlapping) categories like general-purpose, caller saves, callee saves, floating point. Usually, any register in the right category will do for an operation.
<beach> But when there are not enough registers, but you need for a lexical variable to be in a register even though right now it is not, you need to "steal" a register from some other lexical variable. Performance depends crucially on that choice.
<beach> If you steal a register from a lexical variable that is going to be needed in a register fairly soon, you waste load/store operations.
<beach> charles`: Does that make sense?
<charles`> Sure does
spongiforma has quit [Quit: Leaving]
spongiforma has joined #lisp
spongiforma has left #lisp [#lisp]
<charles`> When you are doing this stuff with registers are you still writing it in Lisp?
<no-defun-allowed> Yes, all of the compiler is written in Lisp. (This is also the case for SBCL and Clozure at least.)
DeLargement has joined #lisp
contrapunctus has left #lisp ["Disconnected: closed"]
contrapunctus has joined #lisp
<charles`> I know that is the idea, but I just can't wrap my head around how you would manipulate registers like that.
<charles`> without actually programming assembly
<aeth> Effectively, via custom "inline assembly" except it's syntactically just s-expressions so it's not really "inline assembly".
seok has joined #lisp
<beach> Oh, you write a "code generator" in Common Lisp. You turn the Common Lisp code into machine code, and the program doing the turning is just another Common Lisp program. It is that program that inspects the instructions that are needed and makes decisions about what registers to use.
<no-defun-allowed> You generate assembly in the end with any compiler. But the code manipulating the assembly is written in Common Lisp, yes.
<beach> charles`: The decisions are made at compile time, not at run time.
<seok> anyone else experiencing high latency with winhttp
<charles`> hmm, so even though you aren't writing a compiler in assembly, there is some assembly written as output (maybe in a string). I got that it is at compile time.
shka_ has joined #lisp
<no-defun-allowed> Close, but the output is usually machine code, as a vector of bytes.
* no-defun-allowed remembers "assembly" is the text form of machine code with labels and instruction names. Oops.
<beach> charles`: As no-defun-allowed says, there is no particular reason for a compiler to generate assembly code. Assembly code was invented so that humans would have less trouble writing machine code. But a compiler does not need that human-friendly aspects that assembly provides.
<charles`> sure, of course.
<White_Flame> compilers have IRs
<White_Flame> and "labels" as pointers etc
<White_Flame> so one could consider such a representation to be very comparable to assembly
<White_Flame> (s/pointers/references/ when written in lisp, of course)
<moon-child> White_Flame: for the assembly representation, 'label' is more useful because it enforces an ordering, which you need to compute offsets (and decide when to generate short jumps, for supported platforms)
<no-defun-allowed> I had generated acceptable assembly output from Cleavir's LIR once (which was used to make verifying it by eyeball somewhat easier).
<White_Flame> moon-child: I mean a direct reference from 1 instruction's IR object to another
nicktick has joined #lisp
<White_Flame> certainly that form can be used to calculate relative offsets just the same
abhixec has quit [Quit: leaving]
nicktick has quit [Read error: Connection timed out]
nicktick has joined #lisp
<charles`> Could someone help me understand how complex asdf are supposed to work. Ones with multiple systems defined in a single file, and stuff like cl-unicode/base
<charles`> Why aren't they each in their own .asd file in their own directory?
narimiran has joined #lisp
<fiddlerwoaroof> charles`: I tend to find it's nice to group related systems into a single .asd
<fiddlerwoaroof> ASDF now has some logic to complain if the system names don't follow a specified format, though
<White_Flame> probably because they're intimately related. Broken out components of the same library for organization purposes, as well as tests & examples
<fiddlerwoaroof> :base-system -> :base-system/subsystem
<fiddlerwoaroof> One common pattern is :base-system and :base-system/tests in the same asd
<fiddlerwoaroof> So your users don't have to load your testing dependencies
indathrone has joined #lisp
indathrone has quit [Remote host closed the connection]
DeLargement has quit [Quit: Leaving]
DeLargement has joined #lisp
indathrone has joined #lisp
indathrone has quit [Remote host closed the connection]
rjcks has joined #lisp
marusich has quit [Quit: Leaving]
slyrus has joined #lisp
d4ryus has quit [Quit: WeeChat 3.1]
Lord_of_Life has joined #lisp
aartaka has joined #lisp
motersen has quit [Remote host closed the connection]
slyrus has quit [Remote host closed the connection]
Guest95177 has quit [Quit: leaving]
micro has joined #lisp
micro has quit [Client Quit]
micro has joined #lisp
motersen has joined #lisp
d4ryus has joined #lisp
slyrus has joined #lisp
eden has joined #lisp
slyrus has quit [Read error: Connection reset by peer]
eden has quit [Client Quit]
motersen has quit [Remote host closed the connection]
motersen has joined #lisp
gaqwas has joined #lisp
gaqwas has joined #lisp
slyrus has joined #lisp
slyrus has quit [Read error: Connection reset by peer]
anticrisis has quit [Read error: Connection reset by peer]
pve has joined #lisp
aartaka_d has joined #lisp
skapata has quit [Remote host closed the connection]
aartaka has quit [Ping timeout: 268 seconds]
hendursa1 has joined #lisp
slyrus has joined #lisp
rgherdt has joined #lisp
hendursaga has quit [Ping timeout: 240 seconds]
slyrus has quit [Ping timeout: 252 seconds]
slyrus has joined #lisp
slyrus has quit [Ping timeout: 240 seconds]
mindCrime_ has quit [Ping timeout: 240 seconds]
notzmv has quit [Read error: Connection reset by peer]
cage_ has joined #lisp
mindCrime_ has joined #lisp
orivej has quit [Ping timeout: 240 seconds]
shka_ has quit [Quit: Konversation terminated!]
slyrus has joined #lisp
moshes has quit [Ping timeout: 240 seconds]
moshes` has quit [Remote host closed the connection]
moshes` has joined #lisp
Feldman has joined #lisp
slyrus has quit [Ping timeout: 260 seconds]
waleee-cl has joined #lisp
surabax has joined #lisp
klltkr has joined #lisp
mindCrime_ has quit [Ping timeout: 265 seconds]
Feldman has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
slyrus has joined #lisp
slyrus has quit [Read error: Connection reset by peer]
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
slyrus has joined #lisp
amb007 has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
slyrus has quit [Ping timeout: 240 seconds]
leedleLoo has joined #lisp
Feldman has joined #lisp
moshes` has quit [Ping timeout: 260 seconds]
orivej has joined #lisp
vaporatorius has joined #lisp
vaporatorius has joined #lisp
Nilby has joined #lisp
frost-lab has joined #lisp
vegansbane6963 has quit [Quit: The Lounge - https://thelounge.chat]
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
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
klltkr has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
orivej has quit [Ping timeout: 265 seconds]
leedleLoo has left #lisp [#lisp]
amk has quit [Remote host closed the connection]
amk has joined #lisp
moshes` has joined #lisp
cosimone has joined #lisp
galex-713 has quit [Ping timeout: 246 seconds]
moshes has joined #lisp
slyrus has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
random-nick has joined #lisp
notzmv has joined #lisp
slyrus has quit [Ping timeout: 240 seconds]
galex-713 has joined #lisp
vegansbane6963 has joined #lisp
Feldman has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
h4ck3r9696 has joined #lisp
Feldman has joined #lisp
jurov_ has joined #lisp
jurov has quit [Ping timeout: 260 seconds]
slyrus has joined #lisp
Inline has joined #lisp
slyrus has quit [Ping timeout: 240 seconds]
klltkr has joined #lisp
Inline has quit [Client Quit]
Inline has joined #lisp
jurov_ has quit [Ping timeout: 240 seconds]
jurov has joined #lisp
Feldman has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
jurov_ has joined #lisp
cosimone has quit [Remote host closed the connection]
jurov_ has quit [Excess Flood]
jurov has quit [Ping timeout: 252 seconds]
jurov_ has joined #lisp
luckless has quit [Remote host closed the connection]
luckless has joined #lisp
Feldman has joined #lisp
CrazyEddy has quit [Quit: Reconnecting]
indathrone has joined #lisp
slyrus has joined #lisp
slyrus has quit [Ping timeout: 268 seconds]
hiroaki has quit [Ping timeout: 246 seconds]
orivej has joined #lisp
hiroaki has joined #lisp
cosimone 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
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
maxwilliamson has joined #lisp
varjag has joined #lisp
karayan 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
cchristiansen has quit [Remote host closed the connection]
yitzi has joined #lisp
karayan has quit [Remote host closed the connection]
karayan 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]
<Xach> leo_song_: I'm having a weird problem with osicat, and it looks like it *might* be related to the most recent cffi commit
<Xach> leo_song_: can i share a log and maybe you have some insight?
<Xach> it's not just osicat - it's other stuff too
amb007 has joined #lisp
<Xach> leo_song_: https://www.xach.com/tmp/fail.txt is for cl-freetype2 for example
<Xach> or any other cffi friends
<Xach> (luis?)
<Xach> It looks like the latest release was put up on common-lisp.net last night
Lycurgus has joined #lisp
<Xach> cl-freetype2, osicat, cl-gss at least - and osicat breaks a *lot* of other things
perdent1 has joined #lisp
<perdent1> Hi I have a crypto challenge for you all, let me know what you think of it and if you can solve it ! Good luck The more the merrier, right? We decided to mash two of the best cryptosytems together for the best product. Our new encryption scheme is up and running and this time it is unbreakable! To prove that, we have also released its source code and a test center where you can test it out! host: 139.59.178.146:31817 (flag is located on the server) https
perdent1 was banned on #lisp by Xach [*!*perdent@192.145.118.*]
perdent1 was kicked from #lisp by Xach [no]
<Lycurgus> ty
frost-lab has quit [Quit: Connection closed]
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
Josh_2 has joined #lisp
amb007 has joined #lisp
<Josh_2> Good afternoon
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
Feldman has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
beach` has joined #lisp
beach` has quit [Remote host closed the connection]
h4ck3r9696 has quit [Quit: Leaving.]
beach has quit [Disconnected by services]
beach has joined #lisp
klltkr has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Lycurgus has quit [Quit: Exeunt]
orivej has quit [Ping timeout: 265 seconds]
slyrus has joined #lisp
DeLargement has quit [Quit: Leaving]
bgardner has quit [Remote host closed the connection]
bgardner has joined #lisp
<luis> Xach: thanks, I'll have a look and probably revert that bit. sadly osicat's travis cronjob was not active :(
slyrus has quit [Ping timeout: 260 seconds]
dddddd has quit [Quit: dddddd]
Feldman has joined #lisp
rumbler31 has quit [Remote host closed the connection]
slyrus has joined #lisp
klltkr has joined #lisp
Inline has quit [Ping timeout: 246 seconds]
rumbler31 has joined #lisp
slyrus has quit [Ping timeout: 240 seconds]
aartaka has joined #lisp
aartaka_d has quit [Ping timeout: 246 seconds]
<luis> Xach: pushed 0.24.1, which fixes osicat. Activated osicat's travis cronjob so that hopefully this sort of things gets caught before it reaches Quicklisp next time. thanks.
moshes has quit [Ping timeout: 240 seconds]
kevingal has joined #lisp
moshes` has quit [Ping timeout: 260 seconds]
Feldman has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
surabax has quit [Quit: Leaving]
micro has quit [Remote host closed the connection]
h4ck3r9696 has joined #lisp
slyrus has joined #lisp
Feldman has joined #lisp
slyrus has quit [Ping timeout: 240 seconds]
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
nicktick has quit [Ping timeout: 246 seconds]
amb007 has quit [Read error: Connection reset by peer]
seok has quit [Quit: Connection closed]
amb007 has joined #lisp
leedleLoo has joined #lisp
long4mud has quit [Quit: WeeChat 3.0.1]
leedleLoo has left #lisp [#lisp]
slyrus has joined #lisp
slyrus has quit [Ping timeout: 265 seconds]
luckless has quit [Ping timeout: 240 seconds]
luckless has joined #lisp
micro has joined #lisp
lowryder has quit [Ping timeout: 250 seconds]
slyrus has joined #lisp
nicktick has joined #lisp
lowryder has joined #lisp
slyrus has quit [Ping timeout: 260 seconds]
aartaka has quit [Read error: Connection reset by peer]
aartaka_d has joined #lisp
Feldman has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Feldman has joined #lisp
Inline has joined #lisp
curtosis has joined #lisp
amb007 has quit [Ping timeout: 252 seconds]
amb007 has joined #lisp
<Xach> luis: thank you!
karayan has quit [Ping timeout: 258 seconds]
karayan has joined #lisp
klltkr has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
<Xach> Josh_2: https://github.com/xach/vecto/commit/312dea5860c04739d872e21ee9fdb2c759ac5f45 shows how you can do anything you want when blending two colors together with vecto
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
aartaka has joined #lisp
amb007 has quit [Ping timeout: 260 seconds]
aartaka_d has quit [Ping timeout: 240 seconds]
amb007 has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
Helmholtz has joined #lisp
amb007 has joined #lisp
slyrus has joined #lisp
rumbler31 has quit [Remote host closed the connection]
rumbler31 has joined #lisp
unimog has quit [Remote host closed the connection]
slyrus has quit [Ping timeout: 240 seconds]
aeth has quit [Ping timeout: 240 seconds]
aeth has joined #lisp
curtosis has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
rumbler31 has quit [Remote host closed the connection]
rumbler31 has joined #lisp
random-nick has quit [Quit: quit]
judson_ has joined #lisp
judson_ has quit [Client Quit]
random-nick has joined #lisp
judson_ has joined #lisp
judson_ has quit [Client Quit]
Helmholtz has quit [Quit: Helmholtz]
zaquest has quit [Read error: Connection reset by peer]
zaquest has joined #lisp
judson_ has joined #lisp
curtosis has joined #lisp
ramus has quit [Ping timeout: 250 seconds]
DeLargement has joined #lisp
DeLarger has joined #lisp
ramus has joined #lisp
DeLargement has quit [Client Quit]
vtomole has joined #lisp
karayan has quit [Quit: Quit]
slyrus has joined #lisp
slyrus has quit [Ping timeout: 268 seconds]
DeLarger has quit [Read error: Connection reset by peer]
curtosis is now known as curtosis[away]
Sheilong has joined #lisp
curtosis[away] has quit [Quit: My Mac Mini has gone to sleep. ZZZzzz…]
Feldman has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Helmholtz has joined #lisp
drbluefall has joined #lisp
bjorkint0sh has quit [Ping timeout: 258 seconds]
orivej has joined #lisp
mindCrime_ has joined #lisp
judson_ has quit [Ping timeout: 258 seconds]
Feldman has joined #lisp
lowryder has quit [Ping timeout: 260 seconds]
lowryder has joined #lisp
<jcowan> beach: I don't understand why you need to compromise on allocation. OPT paging is impossible because the kernel has only peephole into what the user program is going to do. But you have the whole lexical scope already available, so no need to *estimate* what the remote distance.
<jcowan> Of course there are conditionals, so that requires a model of probable branching. But I suppose you have that already in order to optimize compiling them.
mister_m has quit [Ping timeout: 258 seconds]
klltkr has joined #lisp
vtomole has quit [Quit: Connection closed]
Helmholtz has quit [Quit: Helmholtz]
frgo has joined #lisp
aeth has quit [Ping timeout: 265 seconds]
aeth has joined #lisp
slyrus has joined #lisp
mindCrime_ has quit [Excess Flood]
mindCrime_ has joined #lisp
slyrus has quit [Read error: Connection reset by peer]
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
slyrus 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
slyrus has quit [Ping timeout: 265 seconds]
slyrus has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
skapata has joined #lisp
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
cage_ has quit [Quit: Leaving]
slyrus has quit [Ping timeout: 246 seconds]
aartaka_d has joined #lisp
aartaka has quit [Ping timeout: 240 seconds]
aartaka has joined #lisp
aartaka_d has quit [Ping timeout: 240 seconds]
aartaka has quit [Ping timeout: 240 seconds]
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
slyrus has joined #lisp
slyrus has quit [Read error: Connection reset by peer]
amb007 has quit [Read error: Connection reset by peer]
amb007 has joined #lisp
sm2n has quit [Ping timeout: 240 seconds]
sm2n has joined #lisp
slyrus has joined #lisp
slyrus has quit [Ping timeout: 240 seconds]
Jachy has quit [Remote host closed the connection]
sm2n has quit [Remote host closed the connection]
sm2n has joined #lisp
slyrus has joined #lisp
slyrus has quit [Ping timeout: 246 seconds]
Inline has quit [Ping timeout: 246 seconds]
hypercube has joined #lisp
eschatologist_ is now known as eschatologist
Lord_of_Life_ has joined #lisp
Lord_of_Life has quit [Ping timeout: 240 seconds]
slyrus has joined #lisp
Lord_of_Life_ is now known as Lord_of_Life
slyrus has quit [Read error: Connection reset by peer]
abhixec has joined #lisp
slyrus has joined #lisp
aartaka has joined #lisp
slyrus has quit [Ping timeout: 240 seconds]
slyrus has joined #lisp
<Josh_2> Xach: thanks I'll give it a look
aartaka_d has joined #lisp
slyrus has quit [Ping timeout: 252 seconds]
aartaka has quit [Ping timeout: 240 seconds]
aartaka has joined #lisp
slyrus has joined #lisp
aartaka_d has quit [Ping timeout: 252 seconds]
tux1c has joined #lisp
slyrus has quit [Ping timeout: 240 seconds]
kenran has joined #lisp
slyrus has joined #lisp
Kundry_Wag has joined #lisp
Feldman has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
slyrus has quit [Ping timeout: 265 seconds]
tux1c has quit [Quit: Leaving]
gumman has joined #lisp
cchristiansen has joined #lisp
orivej has quit [Ping timeout: 240 seconds]
narimiran has quit [Quit: leaving]
aartaka_d has joined #lisp
indathrone has quit [Ping timeout: 258 seconds]
aartaka has quit [Ping timeout: 240 seconds]
aartaka has joined #lisp
aartaka_d has quit [Ping timeout: 265 seconds]
slyrus has joined #lisp
rumbler31 has quit [Remote host closed the connection]
Feldman has joined #lisp
rumbler31 has joined #lisp
slyrus has quit [Ping timeout: 240 seconds]
aartaka_d has joined #lisp
slyrus has joined #lisp
aartaka has quit [Ping timeout: 240 seconds]
<phoe> Xach: thanks for the garbage collection
aartaka_d has quit [Ping timeout: 268 seconds]
slyrus has quit [Ping timeout: 240 seconds]
rumbler31 has quit [Remote host closed the connection]
aartaka has joined #lisp
rumbler31 has joined #lisp
specbot has quit [Remote host closed the connection]
minion has quit [Remote host closed the connection]
anticrisis has joined #lisp
ech has joined #lisp
slyrus has joined #lisp
Feldman has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
kenran has quit [Remote host closed the connection]
slyrus has quit [Read error: Connection reset by peer]
<jmercouris> But we’ll never known what this unbreakable crypto scheme is!
<jmercouris> Aren’t you dying to know?
<jmercouris> /s
minion has joined #lisp
specbot has joined #lisp
Aurora_v_kosmose has quit [Remote host closed the connection]
Aurora_v_kosmose has joined #lisp
indathrone has joined #lisp
Feldman has joined #lisp
<aeth> Isn't unbreakable crypto scheme on-topic in #scheme not here?
* jcowan snickers
akoana has joined #lisp
<aeth> jcowan: and people still wouldn't use it for crypto, because of the parentheses
<jcowan> I always have to search for [scheme language] or [scheme programming] on Google because of this issue. SCHMER would have been a much better name
<jcowan> given the six-letter Maclisp restriction
<aap> not maclisp, its
<jcowan> As for the unbreakable crypto scheme, it is one-time tape/pad (xor each bit with a truly random bit, which must be available at both ends). Of course the key distribution problem is vicious.
<Odin-> For the latter, see Project Venona.
landakram has quit [Ping timeout: 258 seconds]
<aeth> aap: you have defeated me in alphabetic sorting!
Nilby has quit [Ping timeout: 258 seconds]
<aap> aeth: sorry :)
cosimone has quit [Remote host closed the connection]
<jcowan> aap: What do you mean by "not maclisp, its"?
<aap> i mean the 6 char restriction is one of ITS, not maclisp
<Odin-> jcowan: The restriction didn't come from maclisp, but ITS.
<jcowan> Ah, true.
<jcowan> I cut my teeth on OS/8, which was 8+2 with no hierarchy
<pjb> Well, it wasn't really a restriction, it was an optimization. Implemented in LISP 1. You can see it in the sources of LISP 1.5.
<pjb> Basically, 36-bit hardware, 6-bit characters. Strings were represented using lists of words containing packed 6-character.
<aap> ITS filenames are literally 6 + 6
<pjb> So if you used more than 6-character symbols, they used more than one word.
<aap> usually filename + extension
<aap> so it would have been extremely unusual to call something by a name longer than 6 chars
<pjb> unix too was developped on such a system (18-bit words), hence creat and similar function names.
CrazyEddy has joined #lisp
<aap> pdp-7 unix used 2 chars per word
<pjb> 9-bit chars?
varjag has quit [Quit: ERC (IRC client for Emacs 28.0.50)]
<aap> no, ascii
<aap> so, yes, i guess
<aap> but still just ascii
<aap> ITS used sixbit
slyrus has joined #lisp
motersen has quit [Ping timeout: 240 seconds]
<pjb> That said, indeed, one could wish more people used more unique names. I liked IBM naming scheme. Like IEBFR14; there's no ambiguity.
<pjb> On the other hand, try to search for "true"…
<pjb> You need to add eg. true man page for some semblance of uniqueness and specificity.
<aap> does an empty file need a manpage? :)
minion has quit [Remote host closed the connection]
specbot has quit [Remote host closed the connection]
<aap> i guess it's no longer an empty file these days...
<pjb> aap: the story of true matches the story of iebfr14. You'd be surprised by the commit list.
<aap> ah
pve has quit [Quit: leaving]
motersen has joined #lisp
slyrus has quit [Ping timeout: 240 seconds]
minion has joined #lisp
specbot has joined #lisp
aartaka_d has joined #lisp
<aap> pjb: disgusting
<aap> true used to be an empty file
aartaka has quit [Ping timeout: 252 seconds]
aartaka has joined #lisp
aartaka_d has quit [Ping timeout: 252 seconds]
h4ck3r9696 has quit [Quit: Leaving.]
hypercube has quit [Quit: WeeChat 3.1]
nckx is now known as jorts
kevingal has quit [Remote host closed the connection]
slyrus has joined #lisp
hypercube has joined #lisp
ramHero has joined #lisp
slyrus has quit [Ping timeout: 268 seconds]
mindCrime_ has quit [Ping timeout: 265 seconds]
Feldman has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
Feldman has joined #lisp
<pjb> aap: an empty file was clearly a bug for true(1)…
<aap> is that so?
<phoe> why are we discussing true(1) again
<White_Flame> </tautology>
<aap> something about file names
<pjb> phoe: naming schemes iebfr14 vs true
slyrus has joined #lisp
slyrus has quit [Ping timeout: 246 seconds]
Feldman has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
galex-713 has quit [Ping timeout: 246 seconds]
frgo has quit [Remote host closed the connection]
frgo has joined #lisp
slyrus has joined #lisp
slyrus has quit [Read error: Connection reset by peer]
hypercube has quit [Ping timeout: 258 seconds]
slyrus has joined #lisp
slyrus has quit [Read error: Connection reset by peer]
galex-713 has joined #lisp
bitmapper has joined #lisp
vv8 has quit [Read error: Connection reset by peer]
rjcks has quit [Quit: leaving]
Sheilong has quit [Quit: Connection closed for inactivity]
karlosz has joined #lisp
rgherdt has quit [Ping timeout: 246 seconds]
<jcowan> aap: they should have used UTF-9
<aap> well, ken did eventually invent utf-8 at least :)
<aap> these were more of a joke, right?
<jcowan> CHeck out the publication date. BUt Crispin really was a PDP-10 programmer
<aap> oh i didn't even realize it was from him
<jcowan> UTF-18 should be replaced by UTF-18+, which would represent planes 0,1,2,3 instead of 0,1,F,10
<jcowan> Gotta love this: "We are now in the process of implementing support for nonet-based text files and automated transformation between septet, octet, and nonet textual data."
<aap> i'm not even sure whether this is a joke
jorts is now known as nckx
<aap> they're still using pdp-10s at XKL
<aeth> UTF-18+ sounds like a media rating scheme in some random country.
<aap> although i hear they're using a custom OS these days
<jcowan> Compuserve ran a modified TOPS-10 for a very long time, which is why Compuserve emails were 7xxxx,xxxx@compuserve.co,m
<jcowan> I also devised UTF-6, an almost upward compatible extension of Sixbit, but I didnt write an RFC, so I've forgotten the details
<aeth> What Common Lisp do people here use for PDP-10s?
<aap> no common lisps unfortunately. but maclisp!
<aap> you can all come to #pdp-10 if you want :)
<aeth> But why would I run a PDP VM when I could just run a Windows 98 VM?
<aap> style points
<aeth> I wonder if SBCL 0.6.8 runs on Windows 98
<aap> actually implementing a common lisp for PDP-10 would be interesting
<aeth> (hmm, 0.6.8 is the oldest tagged version... SBCL news on the website goes back to 0.6.0, though)
<jcowan> The general idea is to preempt 077, Del in ECMA-1, to show that a non-Sixbit character has been encoded in the general style of UTF-8
<aap> so utf-radix50 when?
<jcowan> NEVER
<jcowan> I did use to assign 16-bit magic numbers for binary data using RADIX50, though
<moon-child> jcowan: sounds like it loses the big advantage of utf8, which is that you can always identify continuation bytes (sextets?)
<moon-child> (though there may not be very much you can do about that ...)
<jcowan> Yes. Perhaps it's more like SRFI-7
<jcowan> Ah, no, what it preempts is SI and SO, so because there are always both you can identify sequences.
<moon-child> ah, cool
<jcowan> buut it is less bounded than UTF-8
slyrus has joined #lisp
jeosol has quit [Ping timeout: 240 seconds]