< 1702167377 449266 :Thelie1!~Thelie@2a03:2260:300c:400:61bd:fe2e:1f3c:b90a QUIT :Remote host closed the connection < 1702167958 25200 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User < 1702168019 579762 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Client Quit < 1702168434 607053 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :I have a key for rot13ing the contents of the clipboard. It works OK for writing but is a little awkward for reading. > 1702169109 815438 PRIVMSG #esolangs :14[[07MSM14]]4 M10 02https://esolangs.org/w/index.php?diff=120380&oldid=65204 5* 03PythonshellDebugwindow 5* (+0) 10Year < 1702170233 582477 :fizzie!irc@selene.zem.fi PRIVMSG #esolangs :Looks like the way the terminal emulator extension works, after selecting some text, doing a control + right-click brings up a little menu (rendered in the terminal with characters), one of which is "rot13", and when selected it (a) briefly flashes the rot13'd version in one corner of the terminal, and (b) rot13's the primary selection. < 1702170341 248252 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :Sounds reasonable except for the "briefly" bit. < 1702170390 949395 :int-e!~noone@int-e.eu PRIVMSG #esolangs :I imagine it's more like 5 seconds than 0.1 seconds < 1702170422 30087 :int-e!~noone@int-e.eu PRIVMSG #esolangs :though "flashing" makes it sound short < 1702170790 555232 :fizzie!irc@selene.zem.fi PRIVMSG #esolangs :It's approximately 1 second, which definitely isn't sufficient to read a longer piece of text. < 1702171013 284833 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :Yes, looks like it has a 1s timeout: https://github.com/exg/rxvt-unicode/blob/main/src/perl/selection-popup#L42 < 1702171095 838200 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :Do all y'all know about transaction isolation levels/anomalies? < 1702171479 883952 :int-e!~noone@int-e.eu PRIVMSG #esolangs :no < 1702171512 759387 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :I'm looking at these papers and they're all complicated-o-matic. < 1702171535 296738 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :Unlike atomic commit which is just the simplest thing in the world. > 1702172359 208325 PRIVMSG #esolangs :14[[07Special:Log/newusers14]]4 create10 02 5* 03TheArx 5* 10New user account < 1702174156 768754 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :shachaf: I sort-of know about them but have trouble remembering the details < 1702174174 270032 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :it is very esoteric, at least < 1702174198 603760 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :I can sort-of imagine a language in which all functions have to be no-ops, but they aren't thread-safe so you can do useful calculations by running two of them in parallel < 1702175769 679398 :int-e!~noone@int-e.eu PRIVMSG #esolangs :Hmm. I guess it gets scary the more precise you get about what violations of isolation you permit, exactly? < 1702175812 838044 :int-e!~noone@int-e.eu PRIVMSG #esolangs :(https://www.geeksforgeeks.org/transaction-isolation-levels-dbms/ is rather high level and vague. Fine for an introduction.) < 1702175874 315585 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :ais523: Hmm, that'd have to be some sort of "read uncommitted" situation, right? < 1702175893 912899 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :So very low isolation. < 1702175993 729007 :int-e!~noone@int-e.eu PRIVMSG #esolangs :if getRow r != getRow r { } else { 42 } -- depending on the primitive, a phantom read might be enough? < 1702175995 649784 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :shachaf: probably? it's hard to remember what the medium isolation levels do < 1702176027 789105 :int-e!~noone@int-e.eu PRIVMSG #esolangs :Anyway, no, not familiar. But now I have an idea what the topic is :P < 1702176037 773000 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :is NaN a valid row? :-D < 1702176048 328943 :int-e!~noone@int-e.eu PRIVMSG #esolangs :ais523: heh :) < 1702176062 499471 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :int-e: But if all write transactions have to be nops, that means it sees a value in the middle of a transaction, right? < 1702176096 948279 :int-e!~noone@int-e.eu PRIVMSG #esolangs :shachaf: you could read, modify, revert? not sure *why* you'd do that in a DBMS context < 1702176110 645298 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :I'm assuming ais523 meant you have have something like transaction { x = read k; write(k, v); write(k, x); } < 1702176133 582050 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :Right, but that's a dirty read, by the classification of that web page, isn't it? < 1702176142 208444 :int-e!~noone@int-e.eu PRIVMSG #esolangs :ah, true < 1702176184 531002 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :If you were allowed some non-nop writes then you could observe different ones in the same transaction at a higher isolation level. < 1702176199 958623 :int-e!~noone@int-e.eu PRIVMSG #esolangs :it's not that a phantom read is insufficient, it's just that when transactions don't modify anything, they can't happen < 1702176201 283578 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :Anyway, I want a classification of these things that doesn't feel very ad-hoc. < 1702176291 328374 :int-e!~noone@int-e.eu PRIVMSG #esolangs :. o O ( give me one mutation and I'll break the world ) < 1702176310 588350 :int-e!~noone@int-e.eu PRIVMSG #esolangs :( ...maybe ) < 1702176533 222323 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :Serializability is so good. < 1702176559 298328 :int-e!~noone@int-e.eu PRIVMSG #esolangs :. o O ( eventual isolation ) < 1702176603 828958 :int-e!~noone@int-e.eu PRIVMSG #esolangs :(I don't think that makes any sense. It wasn't supposed to anyway.) < 1702176628 326764 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :So a whole bunch of these isolation and consistency things are of the form "some graph has no cycles". < 1702176647 262044 :int-e!~noone@int-e.eu PRIVMSG #esolangs :tracking data dependencies? < 1702176657 290363 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :Including linearizability, sequential consistency, serializability. < 1702176670 62797 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :And several of the other ones. < 1702176690 917035 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :(Note that linearizability and sequential consistency aren't really isolation things.) < 1702176714 887320 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :postgres implemented sequentially-consistent isolation fairly recently (and it's still non-default, I think, the previous situation / default was snapshot isolation) < 1702176719 842842 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :The question is just what kinds of edges are in the graph. < 1702176732 238746 :int-e!~noone@int-e.eu PRIVMSG #esolangs :Anyway, I can imagine that it gets very gritty if you try to make this formal. Heck, just modelling a changing set of tables should be fun. < 1702176757 904459 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :and it does it with a complicated algorithm that's sort-of reminiscent of static analysis that tries to detect whether snapshot isolation is equivalent to sequentially-consistent in any given situation, and serializes only when it isn't < 1702176761 121085 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :I don't think "sequentially-consistent" and "snapshot" are really contrasted with each other? I don't think I'd clal sequentially-consistent isolation at all. < 1702176781 895070 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :Oh, do you mean serializable? < 1702176787 762960 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :shachaf: right < 1702176804 368149 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :same output as if everything was serialized < 1702176845 391271 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :Too bad "serializable" and "linearizable" mean completely different things, and a system can be either one or neither or both. < 1702176857 397882 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :What a great naming scheme. < 1702176935 131613 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :Anyway, sequentially-consistent is about individual operations, and serializable is about transactions. < 1702176956 189713 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :Of course, for multithreaded things, even sequential consistency of individual operations is much too strong most of the time. > 1702179793 681787 PRIVMSG #esolangs :14[[07UCanCode14]]4 10 02https://esolangs.org/w/index.php?diff=120381&oldid=119502 5* 03Viba1 5* (-342) 10maybe writing this article in a self-deprecating tone was not a good idea. though, I still feel like keeping one of the borderline sentences > 1702181299 153891 PRIVMSG #esolangs :14[[07FunctionaI14]]4 N10 02https://esolangs.org/w/index.php?oldid=120382 5* 03Kiken 5* (+3450) 10Created page with "{{lowercase}} {{Distinguish/Confusion|Functional}} {{infobox proglang |name=FunctionaI |paradigms=[[:Category:Functional paradigm|Functional]] |author=[[User:kiken]] |year=[[:Category:2014|2014]] |class=[[:Turing complete|Turing complete]] |refimpl=[[:Category:Unimple > 1702182742 986772 PRIVMSG #esolangs :14[[07FunctionaI14]]4 M10 02https://esolangs.org/w/index.php?diff=120383&oldid=120382 5* 03Kiken 5* (+0) 10wrong year < 1702184120 11496 :user3456!user3456@user/user3456 QUIT :Quit: I use ZNC - https://znc.in < 1702184146 811009 :ais523!~ais523@user/ais523 QUIT :Quit: quit < 1702184265 136623 :user3456!user3456@user/user3456 JOIN #esolangs user3456 :user3456 > 1702187022 965909 PRIVMSG #esolangs :14[[072.+-14]]4 10 02https://esolangs.org/w/index.php?diff=120384&oldid=104993 5* 03Squidmanescape 5* (-35) 10It isn't a finite-state automaton because it can't be used for computation. > 1702187051 13087 PRIVMSG #esolangs :14[[072Deadfish14]]4 10 02https://esolangs.org/w/index.php?diff=120385&oldid=119504 5* 03Squidmanescape 5* (-35) 10 < 1702188614 899671 :int-e!~noone@int-e.eu PRIVMSG #esolangs :today's twist is good > 1702190915 776819 PRIVMSG #esolangs :14[[07Language list14]]4 M10 02https://esolangs.org/w/index.php?diff=120386&oldid=120367 5* 03Kiken 5* (+17) 10/* F */ functionaI < 1702192956 125557 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User > 1702193282 452911 PRIVMSG #esolangs :14[[07Foreach14]]4 10 02https://esolangs.org/w/index.php?diff=120387&oldid=113555 5* 03Ashli Katt 5* (+4293) 10turing complete > 1702193394 450021 PRIVMSG #esolangs :14[[07Foreach14]]4 10 02https://esolangs.org/w/index.php?diff=120388&oldid=120387 5* 03Ashli Katt 5* (+4) 10 > 1702193461 795924 PRIVMSG #esolangs :14[[07Functional14]]4 M10 02https://esolangs.org/w/index.php?diff=120389&oldid=74853 5* 03PythonshellDebugwindow 5* (+37) 10Distinguish confusion < 1702193571 761806 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… > 1702193577 212520 PRIVMSG #esolangs :14[[07FunctionaI14]]4 M10 02https://esolangs.org/w/index.php?diff=120390&oldid=120383 5* 03PythonshellDebugwindow 5* (+42) 10Categories > 1702193690 136214 PRIVMSG #esolangs :14[[07Blockfunge14]]4 M10 02https://esolangs.org/w/index.php?diff=120391&oldid=96954 5* 03PythonshellDebugwindow 5* (+25) 10/* Python */ Category > 1702193834 807102 PRIVMSG #esolangs :14[[07UCanCode14]]4 M10 02https://esolangs.org/w/index.php?diff=120392&oldid=120381 5* 03PythonshellDebugwindow 5* (+25) 10/* External links */ Category < 1702193896 52938 :wpa!uid568065@id-568065.helmsley.irccloud.com JOIN #esolangs WeepingAngel :wpa > 1702194173 681354 PRIVMSG #esolangs :14[[07Aceto14]]4 M10 02https://esolangs.org/w/index.php?diff=120393&oldid=53374 5* 03PythonshellDebugwindow 5* (+94) 10Categories < 1702195528 534542 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User > 1702195794 554015 PRIVMSG #esolangs :14[[07User:Ashli Katt14]]4 10 02https://esolangs.org/w/index.php?diff=120394&oldid=109783 5* 03Ashli Katt 5* (+49) 10 > 1702195825 682828 PRIVMSG #esolangs :14[[07User:Ashli Katt14]]4 10 02https://esolangs.org/w/index.php?diff=120395&oldid=120394 5* 03Ashli Katt 5* (+31) 10 < 1702199196 699322 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :makes sense, the multithread locks that we use are trying to be noops except in rare cases when two threads are trying to hold the lock at the same time < 1702200902 535411 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Read error: Connection reset by peer > 1702201779 719415 PRIVMSG #esolangs :14[[07Hello world program in esoteric languages (nonalphabetic and A-M)14]]4 10 02https://esolangs.org/w/index.php?diff=120396&oldid=120246 5* 03MihaiEso 5* (+13) 10/* Buffalo! */ As a code block. > 1702201962 262505 PRIVMSG #esolangs :14[[07Hello world program in esoteric languages (nonalphabetic and A-M)14]]4 10 02https://esolangs.org/w/index.php?diff=120397&oldid=120396 5* 03MihaiEso 5* (+26) 10/* Deadsnail */ > 1702202036 98819 PRIVMSG #esolangs :14[[07Hello world program in esoteric languages (nonalphabetic and A-M)14]]4 10 02https://esolangs.org/w/index.php?diff=120398&oldid=120397 5* 03MihaiEso 5* (-1) 10/* Deadsnail */ < 1702202872 953924 :wpa!uid568065@id-568065.helmsley.irccloud.com QUIT :Quit: Connection closed for inactivity < 1702203508 129320 :Lord_of_Life_!~Lord@user/lord-of-life/x-2819915 JOIN #esolangs Lord_of_Life :Lord < 1702203550 252667 :Lord_of_Life!~Lord@user/lord-of-life/x-2819915 QUIT :Ping timeout: 260 seconds < 1702203684 830011 :Lord_of_Life_!~Lord@user/lord-of-life/x-2819915 NICK :Lord_of_Life < 1702205355 393511 :Sgeo!~Sgeo@user/sgeo QUIT :Read error: Connection reset by peer > 1702205453 831190 PRIVMSG #esolangs :14[[07DJN OISC14]]4 10 02https://esolangs.org/w/index.php?diff=120399&oldid=73827 5* 03ChuckEsoteric08 5* (+12) 10/* See also */ > 1702205561 754154 PRIVMSG #esolangs :14[[07Decleq14]]4 10 02https://esolangs.org/w/index.php?diff=120400&oldid=120363 5* 03ChuckEsoteric08 5* (+41) 10 > 1702206639 263729 PRIVMSG #esolangs :14[[07Decleq14]]4 10 02https://esolangs.org/w/index.php?diff=120401&oldid=120400 5* 03ChuckEsoteric08 5* (+4) 10/* a=b=b-a with temporary address tmp<=0 */ < 1702210178 785511 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User > 1702212666 556461 PRIVMSG #esolangs :14[[07Asdf14]]4 10 02https://esolangs.org/w/index.php?diff=120402&oldid=94824 5* 03ChuckEsoteric08 5* (+38) 10/* Examples */ Added Cat < 1702214278 695999 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Read error: Connection reset by peer < 1702214460 658643 :Deepfriedice!~Deepfried@117-20-68-141.751444.bne.nbn.aussiebb.net JOIN #esolangs Deepfriedice :realname > 1702215836 600329 PRIVMSG #esolangs :14[[078-Bit14]]4 10 02https://esolangs.org/w/index.php?diff=120403&oldid=120346 5* 03ChuckEsoteric08 5* (+332) 10 > 1702215869 259183 PRIVMSG #esolangs :14[[078-Bit14]]4 10 02https://esolangs.org/w/index.php?diff=120404&oldid=120403 5* 03ChuckEsoteric08 5* (-11) 10 < 1702216065 631488 :Thelie!~Thelie@2a03:2260:300c:400:61bd:fe2e:1f3c:b90a JOIN #esolangs Thelie :Thelie > 1702216115 732240 PRIVMSG #esolangs :14[[078-Bit14]]4 10 02https://esolangs.org/w/index.php?diff=120405&oldid=120404 5* 03ChuckEsoteric08 5* (-55) 10 < 1702219664 235743 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User > 1702221113 345907 PRIVMSG #esolangs :14[[072.+-14]]4 10 02https://esolangs.org/w/index.php?diff=120406&oldid=120384 5* 03ChuckEsoteric08 5* (+35) 10Undo revision 120384 by [[Special:Contributions/Squidmanescape|Squidmanescape]] ([[User talk:Squidmanescape|talk]]) It's still a finite-state automaton > 1702221293 35619 PRIVMSG #esolangs :14[[07Deadfish14]]4 10 02https://esolangs.org/w/index.php?diff=120407&oldid=120339 5* 03ChuckEsoteric08 5* (+35) 10Undo revision 120339 by [[Special:Contributions/Squidmanescape|Squidmanescape]] ([[User talk:Squidmanescape|talk]]) It's still FSM even though it can't simulate any FSM > 1702221747 560174 PRIVMSG #esolangs :14[[072Deadfish14]]4 10 02https://esolangs.org/w/index.php?diff=120408&oldid=120385 5* 03ChuckEsoteric08 5* (+35) 10Undo revision 120385 by [[Special:Contributions/Squidmanescape|Squidmanescape]] ([[User talk:Squidmanescape|talk]]) < 1702221994 839021 :Thelie!~Thelie@2a03:2260:300c:400:61bd:fe2e:1f3c:b90a QUIT :Ping timeout: 255 seconds < 1702222775 788868 :Koen_!~Koen@2a01:e34:ec7c:30:801f:abd:6a74:c543 JOIN #esolangs * :Koen < 1702224192 980397 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… < 1702225593 706711 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User < 1702226494 43898 :we11en!~we11en@user/utoneq JOIN #esolangs zut :we11en < 1702226900 470691 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… < 1702227695 818372 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User > 1702228157 703744 PRIVMSG #esolangs :14[[07IncCa14]]4 N10 02https://esolangs.org/w/index.php?oldid=120409 5* 03ChuckEsoteric08 5* (+532) 10Created page with "{{Stub}} '''IncCa''' ('''Inc'''rement and jump if '''Ca'''rry)- is an [[OISC]] by [[User:ChuckEsoteric08]] that is easy to implement ==Specification== '''IncCa''' runs on Self-Modifying Virtual Machine with width of an address and a IP (which are equal) being 8, 16 < 1702229192 248630 :ais523!~ais523@user/ais523 JOIN #esolangs ais523 :(this is obviously not my real name) < 1702229465 645071 :Deepfriedice!~Deepfried@117-20-68-141.751444.bne.nbn.aussiebb.net QUIT :Ping timeout: 256 seconds < 1702230966 153333 :ais523!~ais523@user/ais523 QUIT :Quit: sorry about my connection < 1702230981 601074 :ais523!~ais523@user/ais523 JOIN #esolangs ais523 :(this is obviously not my real name) < 1702231027 429285 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… < 1702232174 109206 :wpa!uid568065@id-568065.helmsley.irccloud.com JOIN #esolangs WeepingAngel :wpa < 1702233070 675183 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User < 1702236252 983394 :Koen_!~Koen@2a01:e34:ec7c:30:801f:abd:6a74:c543 QUIT :Quit: Leaving... > 1702240502 365625 PRIVMSG #esolangs :14[[07User:BoundedBeans/CLC-INTERCAL code injection14]]4 N10 02https://esolangs.org/w/index.php?oldid=120410 5* 03BoundedBeans 5* (+2524) 10Created page with "While looking at CLC-INTERCAL's updated code in 2023, I noticed that the undocumented opcodes use eval to import the namespace of the statement. It doesn't perform any checks (a simple regex check for /[A-Za-z_][A-Za-z_0- > 1702240588 693589 PRIVMSG #esolangs :14[[07User:BoundedBeans14]]4 10 02https://esolangs.org/w/index.php?diff=120411&oldid=120150 5* 03BoundedBeans 5* (+156) 10 < 1702240637 649507 :__monty__!~toonn@user/toonn JOIN #esolangs toonn :Unknown < 1702241292 254186 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… < 1702243239 263637 :Thelie!~Thelie@185.66.195.74 JOIN #esolangs Thelie :Thelie < 1702243583 135479 :we11en!~we11en@user/utoneq QUIT :Ping timeout: 260 seconds < 1702244058 595573 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User > 1702244226 474542 PRIVMSG #esolangs :14[[07Language list14]]4 M10 02https://esolangs.org/w/index.php?diff=120412&oldid=120386 5* 03PythonshellDebugwindow 5* (+12) 10/* I */ add > 1702244326 983502 PRIVMSG #esolangs :14[[07Inca14]]4 M10 02https://esolangs.org/w/index.php?diff=120413&oldid=75882 5* 03PythonshellDebugwindow 5* (+49) 10Link, wikify, categories > 1702244576 422838 PRIVMSG #esolangs :14[[07Language list14]]4 M10 02https://esolangs.org/w/index.php?diff=120414&oldid=120412 5* 03PythonshellDebugwindow 5* (+64) 10/* I */ add > 1702244773 472785 PRIVMSG #esolangs :14[[07ABC14]]4 M10 02https://esolangs.org/w/index.php?diff=120415&oldid=78814 5* 03PythonshellDebugwindow 5* (+11) 10Abc > 1702244852 735170 PRIVMSG #esolangs :14[[07ABC (compiler)14]]4 M10 02https://esolangs.org/w/index.php?diff=120416&oldid=56753 5* 03PythonshellDebugwindow 5* (+29) 10Category > 1702244897 408023 PRIVMSG #esolangs :14[[07Abc14]]4 M10 02https://esolangs.org/w/index.php?diff=120417&oldid=115813 5* 03PythonshellDebugwindow 5* (+24) 10Distinguish confusion > 1702244953 921705 PRIVMSG #esolangs :14[[07Mazerunner14]]4 M10 02https://esolangs.org/w/index.php?diff=120418&oldid=113483 5* 03PythonshellDebugwindow 5* (+40) 10/* External resources */ Category < 1702246860 891411 :Sgeo!~Sgeo@user/sgeo JOIN #esolangs Sgeo :realname < 1702247390 1608 :__monty__!~toonn@user/toonn QUIT :Quit: leaving > 1702248241 678710 PRIVMSG #esolangs :14[[07Mini-Flak14]]4 M10 02https://esolangs.org/w/index.php?diff=120419&oldid=95425 5* 03PythonshellDebugwindow 5* (+5) 10| < 1702248676 237378 :Thelie!~Thelie@185.66.195.74 QUIT :Ping timeout: 246 seconds < 1702250368 23691 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… < 1702251339 120743 :Thelie!~Thelie@185.66.195.74 JOIN #esolangs Thelie :Thelie