< 1710979274 832482 :hppavilion[1]!~hppavilio@193.142.201.235 PRIVMSG #esolangs :I don't have specific ideas for such a language off the top of my head, but imagine one where !$ means to stop execution if the tree is nontrivial, ~ means to delete the root node, and [subprogram] means to map `subprogram` over all children of the root node. [!$~] would delete all leaf children of the root node. [[!$~]] would delete all leaf grandchildren of the root node. < 1710979336 767857 :hppavilion[1]!~hppavilio@193.142.201.235 PRIVMSG #esolangs :Imagine that ^ creates a new leaf child of the current tree. If I wanted to produce the tree given by (()(())(()())) I could do ^{^^}^{$^}^ < 1710979352 29102 :hppavilion[1]!~hppavilio@193.142.201.235 PRIVMSG #esolangs :Er, ^{^^}^{!$^}^ < 1710980072 139971 :Sgeo!~Sgeo@user/sgeo PRIVMSG #esolangs :Is Lagrange a decent enough Gopher browser, even though it's intended for Gemini? < 1710980107 698217 :Sgeo!~Sgeo@user/sgeo PRIVMSG #esolangs :Gemini's kind of cool, and client certificates as authentication is very cool, although there are limitations, and I assume the web is heading in that direction (but more thought out) < 1710982449 114125 :hppavilion[1]!~hppavilio@193.142.201.235 PRIVMSG #esolangs :ok i got sucked into the tree rewriting language actually. What I really need is a good way to deeply recurse through the tree. < 1710982953 706084 :hppavilion[1]!~hppavilio@193.142.201.235 PRIVMSG #esolangs :I can delete child-leaves with {$#~} (slight change to the syntax, $# does what !$ did), grandchild-leaves with {{$#~}}, great-grandchild leaves with {{{$#~}}}, and so on. I can delete all leaves down to great-grandchildren with {$#~}{{$#~}}{{{$#~}}}, but I don't think there's any way to reliably reach the canopy at runtime. < 1710983005 596022 :hppavilion[1]!~hppavilio@193.142.201.235 PRIVMSG #esolangs :Actually, for that matter, I don't even think there's a way to make an arbitrarily deep tree at runtime. > 1710983178 928138 PRIVMSG #esolangs :14[[07Talk:-Output14]]4 10 02https://esolangs.org/w/index.php?diff=125025&oldid=124426 5* 03EvyLah 5* (+309) 10please implement +output instead if you're gonna do an implementation < 1710983323 114225 :Hooloovoo!~Hooloovoo@hax0rbana.org QUIT :Quit: ZNC 1.8.2+deb2+b1 - https://znc.in < 1710983559 5906 :Hooloovoo!~Hooloovoo@hax0rbana.org JOIN #esolangs hooloovoo :ZNC - https://znc.in < 1710983753 573110 :fizzie!~irc@selene.zem.fi PRIVMSG #esolangs :I remember reading someone's very angry article about the total uselessness of TLS client certificates, but not any of the specifics. > 1710986748 879823 PRIVMSG #esolangs :14[[07Mapfuck14]]4 10 02https://esolangs.org/w/index.php?diff=125026&oldid=78638 5* 03Purah126 5* (+20) 10 > 1710987160 677543 PRIVMSG #esolangs :14[[07RC4 Mapfuck14]]4 N10 02https://esolangs.org/w/index.php?oldid=125027 5* 03Purah126 5* (+553) 10Created page with "'''This is a WIP.''' RC4 Mapfuck is an esoteric programming language created by [[User:Purah126]]. It is kind of like normal Mapfuck, but instead uses RC4 to change the map. Each instruction has an ID: * + = 0 * - = 1 * > = 2 * < = 3 * [ = 4 * ] = 5 * . = 6 * , = > 1710987273 422299 PRIVMSG #esolangs :14[[07RC4 Mapfuck14]]4 10 02https://esolangs.org/w/index.php?diff=125028&oldid=125027 5* 03Purah126 5* (+182) 10 < 1710989391 829019 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :fizzie: If I knew what was the details then I might know if it is applicable to Gemini (or to Scorpion) < 1710989450 481926 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :Sgeo: I don't know; I have not used Lagrange. I had started writing my own, although I will have to check that I have not forgotten anything important in the design of the data structures and general about the program, to do it. (Currently, I just use astroget (which is similar than curl) for accessing files from Gemini.) < 1710989603 949099 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :Myself and some other people do have criticisms of Gemini, such as that the TLS is mandatory, and that the response header does not tell you the size of the file, lack of range requests, etc. There are also some less common criticisms, such as Han unification. (So, I made my own, which handles some of these, but others I have deliberately rejected) < 1710989789 875907 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :I have also seen a criticism of using TLS at all. The specification of Scorpion document and file format has a link to it in the section titled "Security issues". In order to avoid needing to read that document just to find one link, I will also mention it here: gemini://gemini.ctrl-c.club/~stack/gemlog/2022-02-13.notls.gmi < 1710989876 804248 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :(I am opposed to mandatory TLS, which is why Scorpion specification allows both TLS and non-TLS and strongly suggests to implement non-TLS, even if TLS is also implemented.) < 1710990116 814545 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :(Note that, this document against TLS, itself requires TLS.) < 1710990393 907100 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :hppavilion[1]: OK, although you might should want to have some other commands, e.g. create a child node and then immediately use it with a subprogram, and possibly others (e.g. to reach the canopy like you said, and make deep trees). I understand what you have so far but I think it is not enough to do much with it, it seem to me. < 1710990433 958802 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :(Possibly, the command to find a leaf and find the parent node, and to ignore a specific branch, or to delete and store in a register to put it back later?) > 1710992623 834374 PRIVMSG #esolangs :14[[07Ferntape14]]4 M10 02https://esolangs.org/w/index.php?diff=125029&oldid=125024 5* 03RainbowDash 5* (+79) 10/* Interpreter in JavaScript */ < 1710993155 929788 :amby!~ambylastn@31.205.89.228 QUIT :Quit: so long suckers! i rev up my motorcylce and create a huge cloud of smoke. when the cloud dissipates im lying completely dead on the pavement < 1710996660 52526 :Hooloovoo!~Hooloovoo@hax0rbana.org QUIT :Ping timeout: 252 seconds < 1710996671 325070 :Hoolootwo!~Hooloovoo@hax0rbana.org JOIN #esolangs * :ZNC - https://znc.in < 1711006453 27514 :chiselfuse!~chiselfus@user/chiselfuse QUIT :Remote host closed the connection < 1711006490 897325 :chiselfuse!~chiselfus@user/chiselfuse JOIN #esolangs chiselfuse :chiselfuse < 1711007221 302559 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User < 1711007319 662038 :Sgeo!~Sgeo@user/sgeo QUIT :Read error: Connection reset by peer < 1711008248 54622 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… < 1711008582 67610 :Koen_!~Koen@2a01:e34:ec7c:30:f861:d41:4a6d:bd82 JOIN #esolangs * :Koen < 1711010121 248871 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User < 1711013077 536480 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… < 1711014855 234249 :hppavilion[1]!~hppavilio@193.142.201.235 PRIVMSG #esolangs :I did consider "create leaf, immediately run subprogram", but set it aside. I'm pretty sure it's technically unnecessary, though as a matter of convenience it's certainly a good idea. < 1711015567 863293 :Koen_!~Koen@2a01:e34:ec7c:30:f861:d41:4a6d:bd82 QUIT :Remote host closed the connection < 1711015583 552284 :hppavilion[1]!~hppavilio@193.142.201.235 PRIVMSG #esolangs :The format evolved so there's a single boolean register called FLAG and a boolean stack for restoring the content of FLAG after subprograms (and for passing flags up from subprograms) < 1711015715 649938 :hppavilion[1]!~hppavilio@193.142.201.235 PRIVMSG #esolangs :# jumps to the end of the subprogram if FLAG is set to true, ! inverts the value of flag, and $ sets flag to TRUE if the root node has no children, else sets it to FALSE. {subprogram} pushes the flag onto the stack, maps the subprogram over all children of the root node, then pops flag back off the stack. < 1711015755 115122 :hppavilion[1]!~hppavilio@193.142.201.235 PRIVMSG #esolangs :(subprogram) just runs subprogram as-is. So if you want to set FLAG to False, you can do (!#!), if you want to set it to True you can do (#!). < 1711015858 552269 :hppavilion[1]!~hppavilio@193.142.201.235 PRIVMSG #esolangs :The really weird one is +. + takes the current value of FLAG and ORs it in-place with the top value on the stack (that is, stack top = stack top | FLAG) < 1711016002 184058 :hppavilion[1]!~hppavilio@193.142.201.235 PRIVMSG #esolangs :That way, if you run (!#!){subprogram*}, then FLAG will be TRUE iff any of the iterations set the flag, (!#!){subprogram!+}! sets FLAG to TRUE iff all of the iterations set the flag < 1711016408 275826 :hppavilion[1]!~hppavilio@193.142.201.235 PRIVMSG #esolangs :oh hey, $ is redundant. (!#!){!+}. < 1711016423 245818 :Lord_of_Life!~Lord@user/lord-of-life/x-2819915 QUIT :Ping timeout: 264 seconds < 1711016471 290379 :Lord_of_Life!~Lord@user/lord-of-life/x-2819915 JOIN #esolangs Lord_of_Life :Lord < 1711016823 552848 :hppavilion[1]!~hppavilio@193.142.201.235 QUIT :Quit: Leaving < 1711017356 741218 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User > 1711020190 94700 PRIVMSG #esolangs :14[[0714]]4 10 02https://esolangs.org/w/index.php?diff=125030&oldid=123838 5* 03Kaveh Yousefi 5* (+617) 10Added a hyperlink to my implementation of the programming language on GitHub and supplemented several page categories. > 1711020474 989620 PRIVMSG #esolangs :14[[0714]]4 10 02https://esolangs.org/w/index.php?diff=125031&oldid=125030 5* 03Kaveh Yousefi 5* (+484) 10Supplemented two further examples, one being a repeating cat program, the other a countdown printer. < 1711020769 92128 :__monty__!~toonn@user/toonn JOIN #esolangs toonn :Unknown > 1711021015 112797 PRIVMSG #esolangs :14[[07Esolang:Introduce yourself14]]4 10 02https://esolangs.org/w/index.php?diff=125032&oldid=124903 5* 03PrySigneToFry 5* (+43) 10/* Introductions */ > 1711021108 390142 PRIVMSG #esolangs :14[[07User talk:PrySigneToFry14]]4 10 02https://esolangs.org/w/index.php?diff=125033&oldid=124797 5* 03PrySigneToFry 5* (+39) 10/* Programming */ > 1711021185 903559 PRIVMSG #esolangs :14[[07FRAK14]]4 M10 02https://esolangs.org/w/index.php?diff=125034&oldid=35237 5* 03None1 5* (+23) 10 > 1711021249 527131 PRIVMSG #esolangs :14[[07Brainfuck code generation14]]4 M10 02https://esolangs.org/w/index.php?diff=125035&oldid=124914 5* 03None1 5* (+11) 10/* Languages that compile to brainfuck */ > 1711021307 521405 PRIVMSG #esolangs :14[[07MarioLANG14]]4 10 02https://esolangs.org/w/index.php?diff=125036&oldid=121433 5* 03PrySigneToFry 5* (+2) 10/* Cat program */ > 1711021794 333030 PRIVMSG #esolangs :14[[07Esolang talk:Categorization14]]4 M10 02https://esolangs.org/w/index.php?diff=125037&oldid=120646 5* 03None1 5* (+194) 10/* Languages that ignore chars or strings */ > 1711022054 271180 PRIVMSG #esolangs :14[[07AZZTURBLICHINORTYEUSIACNOSIPTYRUTIEOSUNEMEEETIRMSPLAORRRRRRRRRRRRRRHSIFUGISSFGIUUUUUUUUUUUUGUIGSEIUFGYUSGNYGNXWGNYX123456789012345678901145141919810TROSHPPAOCONALMELANGUAGE14]]4 10 02https://esolangs.org/w/index.php?diff=125038&oldid=124638 5* 03PrySigneToFry 5* (+239) 10 < 1711023002 69104 :Koen_!~Koen@2a01:e34:ec7c:30:6006:e4ae:25a5:a0a2 JOIN #esolangs * :Koen < 1711023200 57439 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Read error: Connection reset by peer < 1711023291 37301 :Koen_!~Koen@2a01:e34:ec7c:30:6006:e4ae:25a5:a0a2 QUIT :Ping timeout: 260 seconds > 1711023548 677860 PRIVMSG #esolangs :14[[07Language list14]]4 10 02https://esolangs.org/w/index.php?diff=125039&oldid=124996 5* 03Qawtykit 5* (+11) 10 > 1711025241 11372 PRIVMSG #esolangs :14[[07Special:Log/upload14]]4 upload10 02 5* 03None1 5* 10uploaded "[[02File:BrainPi.png10]]": [[BrainPi]] logo < 1711025376 36692 :Koen_!~Koen@84.196.158.77.rev.sfr.net JOIN #esolangs * :Koen > 1711025575 575787 PRIVMSG #esolangs :14[[07BrainPi14]]4 10 02https://esolangs.org/w/index.php?diff=125041&oldid=124714 5* 03None1 5* (+40) 10 > 1711025958 95584 PRIVMSG #esolangs :14[[07User talk:PrySigneToFry14]]4 10 02https://esolangs.org/w/index.php?diff=125042&oldid=125033 5* 03None1 5* (+369) 10/* About Binary */ Everything that can run on a computer uses binary > 1711026016 326413 PRIVMSG #esolangs :14[[07User talk:PrySigneToFry14]]4 M10 02https://esolangs.org/w/index.php?diff=125043&oldid=125042 5* 03None1 5* (+3) 10 < 1711027358 110837 :__monty__!~toonn@user/toonn QUIT :Ping timeout: 264 seconds > 1711027422 729688 PRIVMSG #esolangs :14[[0714]]4 10 02https://esolangs.org/w/index.php?diff=125044&oldid=124505 5* 03PrySigneToFry 5* (-1) 10/* Syntax */ < 1711027464 324073 :Koen_!~Koen@84.196.158.77.rev.sfr.net QUIT :Quit: Leaving... > 1711027765 277244 PRIVMSG #esolangs :14[[07Domino Crisis14]]4 10 02https://esolangs.org/w/index.php?diff=125045&oldid=124995 5* 03PrySigneToFry 5* (+173) 10 > 1711027900 40919 PRIVMSG #esolangs :14[[07Special:Log/upload14]]4 upload10 02 5* 03PrySigneToFry 5* 10uploaded "[[02File:Domino.webp.jpg10]]" > 1711027935 398084 PRIVMSG #esolangs :14[[07Domino Crisis14]]4 10 02https://esolangs.org/w/index.php?diff=125047&oldid=125045 5* 03PrySigneToFry 5* (-76) 10 > 1711028170 565274 PRIVMSG #esolangs :14[[07Say14]]4 N10 02https://esolangs.org/w/index.php?oldid=125048 5* 03None1 5* (+1258) 10Created page with "{{lang|a=User:None1}} ==Syntax== Things in square brackets are optional, but if one is given, the others most be given too. ''Variable'': "[Yes/No, ]''Variable2'', it is ''Value''[, not ''String'']" Value can be: * A string (surrounded by single quotes), then the string is s > 1711028338 772791 PRIVMSG #esolangs :14[[07Say14]]4 M10 02https://esolangs.org/w/index.php?diff=125049&oldid=125048 5* 03None1 5* (+0) 10/* Truth Machine */ > 1711029692 131839 PRIVMSG #esolangs :14[[071014]]4 N10 02https://esolangs.org/w/index.php?oldid=125050 5* 03Yourusername 5* (+689) 10Created page with "10 has two valid chars, 1 and 0, whitespace like newline, space, and tab are also valid, all other chars are comments == Syntax of program == [x]+ in syntax is x happens 1 or more times [anything] in syntax means any of the other syntax things [x]? in syntax is x happ > 1711029898 279515 PRIVMSG #esolangs :14[[071014]]4 10 02https://esolangs.org/w/index.php?diff=125051&oldid=125050 5* 03Yourusername 5* (+137) 10 > 1711029951 739828 PRIVMSG #esolangs :14[[071014]]4 10 02https://esolangs.org/w/index.php?diff=125052&oldid=125051 5* 03Yourusername 5* (+49) 10/* 3 program */ > 1711030780 100045 PRIVMSG #esolangs :14[[07Stackack14]]4 N10 02https://esolangs.org/w/index.php?oldid=125053 5* 03Yourusername 5* (+586) 10Created page with "Stackack (STACK stACK) is a programming language that uses stacks and stacks and stacks and stacks == Stack == ~a stack is defined as new stack stack1 = new stack ~to add an item, do stack.place stack1.place("stacks are awsome") ~to remove an item, do stack.ta > 1711031009 583073 PRIVMSG #esolangs :14[[07A+B Problem14]]4 10 02https://esolangs.org/w/index.php?diff=125054&oldid=124925 5* 03Cleverxia 5* (+143) 10 > 1711031117 247362 PRIVMSG #esolangs :14[[07SplitLang14]]4 N10 02https://esolangs.org/w/index.php?oldid=125055 5* 03Yourusername 5* (+653) 10Created page with "SplitLang is a programming language that uses splitting, or forking == Split command == #going to line 2 split: #wait what, there is another me on line 4 #ok I guess ill go here, line 3 split2: #hi other code pointer on line 2 #i will also go to line 5 == Joi > 1711031324 496332 PRIVMSG #esolangs :14[[07SplitLang14]]4 10 02https://esolangs.org/w/index.php?diff=125056&oldid=125055 5* 03Yourusername 5* (+1155) 10 > 1711031442 155716 PRIVMSG #esolangs :14[[07A+B Problem14]]4 10 02https://esolangs.org/w/index.php?diff=125057&oldid=125054 5* 03Cleverxia 5* (-2580) 10/* JSFuck */ > 1711031618 738400 PRIVMSG #esolangs :14[[07A+B Problem14]]4 10 02https://esolangs.org/w/index.php?diff=125058&oldid=125057 5* 03Cleverxia 5* (-6037) 10/* JSFuck */ > 1711031635 974632 PRIVMSG #esolangs :14[[07A+B Problem14]]4 10 02https://esolangs.org/w/index.php?diff=125059&oldid=125058 5* 03Cleverxia 5* (-17) 10/* JavaScript */ < 1711031888 201758 :Sgeo!~Sgeo@user/sgeo JOIN #esolangs Sgeo :realname < 1711032485 434760 :amby!~ambylastn@31.205.89.228 JOIN #esolangs amby :realname < 1711032591 948787 :Noisytoot!~noisytoot@sourcehut/user/noisytoot QUIT :Excess Flood < 1711032758 50673 :Noisytoot!~noisytoot@sourcehut/user/noisytoot JOIN #esolangs Noisytoot :Ron > 1711033031 792709 PRIVMSG #esolangs :14[[07DCI14]]4 N10 02https://esolangs.org/w/index.php?oldid=125060 5* 03Cleverxia 5* (+855) 10Created page with "[[DCI]] (Decrement then Copy [if successful]) is an [[OISC]]. ==Specifications== *address 0 is always 1. *IP is mapped to 1. *the commands are memory mapped from addresses 2 to infinity. the values beyond the commands are initially 1. **IP=0 means address 2, etc. *decremen > 1711033211 238603 PRIVMSG #esolangs :14[[07Flow Uncontrolled14]]4 N10 02https://esolangs.org/w/index.php?oldid=125061 5* 03Qawtykit 5* (+1264) 10Created page with "'''Flow Uncontrolled''' is a language that requires self modification to do pretty much anything. ==Arguments== The language has three instructions, written like Python function calls. The instructions all have at least 1 argument. Arguments can be strings, > 1711033211 678073 PRIVMSG #esolangs :14[[07OISC14]]4 10 02https://esolangs.org/w/index.php?diff=125062&oldid=124842 5* 03Cleverxia 5* (+129) 10/* List of OISCs */ > 1711036325 30321 PRIVMSG #esolangs :14[[07Ferntape14]]4 M10 02https://esolangs.org/w/index.php?diff=125063&oldid=125029 5* 03RainbowDash 5* (+1) 10oops that is not a stack thats a queue < 1711038055 321791 :__monty__!~toonn@user/toonn JOIN #esolangs toonn :Unknown > 1711040284 503649 PRIVMSG #esolangs :14[[07Language list14]]4 10 02https://esolangs.org/w/index.php?diff=125064&oldid=125039 5* 03Qawtykit 5* (+24) 10 < 1711040406 195201 :chiselfuse!~chiselfus@user/chiselfuse QUIT :Ping timeout: 260 seconds < 1711040484 578863 :chiselfuse!~chiselfus@user/chiselfuse JOIN #esolangs chiselfuse :chiselfuse > 1711040494 453802 PRIVMSG #esolangs :14[[07Flow Uncontrolled14]]4 10 02https://esolangs.org/w/index.php?diff=125065&oldid=125061 5* 03Qawtykit 5* (+79) 10 < 1711040678 583456 :chiselfuse!~chiselfus@user/chiselfuse QUIT :Remote host closed the connection < 1711040785 895452 :chiselfuse!~chiselfus@user/chiselfuse JOIN #esolangs chiselfuse :chiselfuse > 1711041371 26339 PRIVMSG #esolangs :14[[07Bracket14]]4 10 02https://esolangs.org/w/index.php?diff=125066&oldid=124350 5* 03PaxtonPenguin 5* (+19) 10 < 1711041473 15737 :Everything!~Everythin@static.208.206.21.65.clients.your-server.de JOIN #esolangs * :Everything < 1711043187 894294 :Koen_!~Koen@2a01:e34:ec7c:30:9ce7:fa1e:8c6b:140e JOIN #esolangs * :Koen < 1711043287 127957 :Joao[3]!~Joao003@190.108.99.67 JOIN #esolangs Joao003 :realname > 1711043400 809788 PRIVMSG #esolangs :14[[07Ferntape14]]4 M10 02https://esolangs.org/w/index.php?diff=125067&oldid=125063 5* 03RainbowDash 5* (+0) 10 > 1711044096 973193 PRIVMSG #esolangs :14[[07AZZTURBLICHINORTYEUSIACNOSIPTYRUTIEOSUNEMEEETIRMSPLAORRRRRRRRRRRRRRHSIFUGISSFGIUUUUUUUUUUUUGUIGSEIUFGYUSGNYGNXWGNYX123456789012345678901145141919810TROSHPPAOCONALMELANGUAGE14]]4 10 02https://esolangs.org/w/index.php?diff=125068&oldid=125038 5* 03PaxtonPenguin 5* (+17) 10 < 1711044716 504651 :drummyfish!~drummyfis@188.120.201.42 JOIN #esolangs * :[https://web.libera.chat] drummyfish < 1711044795 255549 :drummyfish!~drummyfis@188.120.201.42 PRIVMSG #esolangs :Hello, is there an esolang that lets you write the program in any other language? What I mean is a language in which the first line of source code specifies the programming language and the rest is just code in that language. < 1711044932 430208 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :Maybe you can use the shebang line < 1711044983 13715 :Joao[3]!~Joao003@190.108.99.67 PRIVMSG #esolangs :Shebangs can even use any program < 1711045007 411253 :Joao[3]!~Joao003@190.108.99.67 PRIVMSG #esolangs :You can't run other CPU architectures though < 1711045076 294476 :drummyfish!~drummyfis@188.120.201.42 PRIVMSG #esolangs :Hmm, didn't think of that :D < 1711045091 651411 :Hoolootwo!~Hooloovoo@hax0rbana.org QUIT :Quit: ZNC 1.8.2+deb2+b1 - https://znc.in < 1711045174 93820 :Hooloovoo!~Hooloovoo@hax0rbana.org JOIN #esolangs hooloovoo :ZNC - https://znc.in > 1711045394 950319 PRIVMSG #esolangs :14[[07Flow Uncontrolled14]]4 10 02https://esolangs.org/w/index.php?diff=125069&oldid=125065 5* 03Qawtykit 5* (+1332) 10more examples yay > 1711045539 642637 PRIVMSG #esolangs :14[[07Flow Uncontrolled14]]4 M10 02https://esolangs.org/w/index.php?diff=125070&oldid=125069 5* 03Qawtykit 5* (+45) 10lol < 1711046964 388335 :drummyfish!~drummyfis@188.120.201.42 QUIT :Quit: Client closed < 1711047142 170436 :Joao[3]!~Joao003@190.108.99.67 QUIT :Quit: Bye! < 1711048881 667859 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User < 1711049574 219991 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :`olist 1300 < 1711049576 834980 :HackEso!~h@techne.zem.fi PRIVMSG #esolangs :olist : shachaf oerjan Sgeo FireFly boily nortti b_jonas < 1711049910 454836 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Read error: Connection reset by peer < 1711049922 523546 :rodgort!~rodgort@static.38.6.217.95.clients.your-server.de QUIT :Quit: Leaving < 1711050806 400087 :Koen_!~Koen@2a01:e34:ec7c:30:9ce7:fa1e:8c6b:140e QUIT :Remote host closed the connection < 1711051235 85727 :rodgort!~rodgort@static.38.6.217.95.clients.your-server.de JOIN #esolangs * :rodgort < 1711051819 961329 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :ok, now I wonder what would happen if three beholders stared at each other in a 3-cycle, each trying to magically cancel the next one's magic. would the game end in a draw from an infinite loop immediately? or does D&D have layering rules for this? < 1711051997 652833 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :also two beholders staring at each other with their magic-cancelling eye-beam is a bistable flip-flop that you can toggle using a third beholder staring at one of them, right? and you can use one beholder staring at two others to copy the negation of a signal, or two beholders staring at one for a nor gate, so you could build whole computers from beholders. < 1711052057 213405 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :admittedly it's not a *practical* way to build a computer < 1711055632 488853 :SGautam!uid286066@id-286066.ilkley.irccloud.com JOIN #esolangs SGautam :Siddharth Gautam < 1711061664 459345 :__monty__!~toonn@user/toonn QUIT :Quit: leaving < 1711063033 193413 :Noisytoot!~noisytoot@sourcehut/user/noisytoot PRIVMSG #esolangs :is the anti-magic eye-beam itself magical (and therefore affected by others) or not? > 1711063240 563283 PRIVMSG #esolangs :14[[07Joke language list14]]4 10 02https://esolangs.org/w/index.php?diff=125071&oldid=124902 5* 03None1 5* (+54) 10/* General languages */ < 1711063402 675985 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :Noisytoot: I think it's magical but I'm not sure. < 1711063426 321816 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :there's a spell Antimagic Field that has the same temporary magic-suppression effect though on a different shape > 1711063430 772605 PRIVMSG #esolangs :14[[07User:None114]]4 10 02https://esolangs.org/w/index.php?diff=125072&oldid=124923 5* 03None1 5* (+55) 10 < 1711063548 448454 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :specifically Antimagic Field suppresses spell-like abilities or supernatural abilities of monsters, and it's unlikely that the antimagic eye-beam is not one of those > 1711063623 568538 PRIVMSG #esolangs :14[[07Say14]]4 M10 02https://esolangs.org/w/index.php?diff=125073&oldid=125049 5* 03None1 5* (+37) 10/* Syntax */ < 1711063696 472990 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :hmm wait < 1711063768 817348 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :maybe the antimagic eye beam suppresses the other antimagic eye beam, but only in its volume, so it's not like you can just antimagic a beholder and his whole eye-beam is suppressed, only the part of the eye-beam that is in the antimagic field that's suppressed < 1711063824 282528 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :in that case suppressing an anti-magic eye-beam with another anti-magic eye-beam would be effectively useless unless you somehow find creatures whose anti-magic eyebeams are somehow observably different < 1711063924 385865 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :that would be sad, because then you couldn't build logic circuits from it < 1711064097 330035 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :if the computer worked it would probalby be a PSPACE-oracle, such that you can set it up for any PSPACE problem, it draws the game if there's no solution to that problem, but you can read a solution if there is one < 1711064137 694939 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :so with enough beholders you could break our encryption schemes < 1711064193 204036 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :it'd still be an unreasonably high number of beholders, just not exponential, only a number that's a polynomial in the execution time of decoding the encryption