< 1707264238 477023 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :zzo38: I assume you'd start with two things: handling ordinary damaging moves that don't have special attributes but you have to do the to-hit randomness and the damage calculation and subtract the HP; and some way to get lots of example pokémon with stas and move lists, probably by importing the parties of every enemy trainer in one of the early games < 1707264259 206857 :Sgeo!~Sgeo@user/sgeo JOIN #esolangs Sgeo :realname < 1707264268 611057 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :no wait, before that, you start by checking what other people have done. let me find the link. < 1707264703 916757 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :I would think that the data structures and data files would have to be set up first. < 1707264715 922150 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :But I am not even sure how that should be done, either. < 1707265294 257045 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :I did partially write the "pokemon.h" file, although that might be changed in future. < 1707268081 299389 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :found it. https://www.youtube.com/@pimanrules/videos is the person who simulated lots of pokemon battles. he didn't reimplement everything, but ran the relevant game in an emulator, but still had to understand a lot of parts of the game to be able to write the necessary interfaces for that, largely because they wanted both trainers to be controlled by the enemy AI, and the games don't normally support < 1707268087 329203 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :that. I think that's not quite what you want, you want a reimplementation, but there's probably still a lot of relevant information there. < 1707268135 174307 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :also they extracted the parties of all trainers in red/blue and I think like two more games < 1707268167 684724 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :nope, only one more game < 1707268429 741744 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :which pokemon game do you mostly want to base this on? < 1707268482 718030 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :(hopefully you didn't mean the TCG because then everything I said would be irrelevant) < 1707269153 519984 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :I don't mean the TCG. I would intend that it would eventually be able to implement all generations, although not necessarily all implemented in the first version < 1707269619 961824 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :This is what I wrote so far: http://zzo38computer.org/fossil/pokemontext.ui/raw/4955470380beede4d27d7d9e72876ebcf1b58f4d It is only a part of the C API definition, and it may be changed in future. It is not an implementation, so far. (Some of them might be made only a minimal implementation at first. However, loading the data and implementing it in a way that can be easily extensible later, is something important) < 1707269850 474396 :fizzie!~irc@selene.zem.fi PRIVMSG #esolangs :Kind of a random thing, but I guess I might as well ask for ideas. < 1707269853 126843 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :(Using some existing code/data may be acceptable, especially if it is public domain and is written in C) < 1707269859 45464 :fizzie!~irc@selene.zem.fi PRIVMSG #esolangs :I have this situation where there's a daemon, and it has a multiplexed connection thing to a remote system; it's actually an SSH connection, with regular OpenSSH daemon on the other end, while the client side is Go's standard SSH library. < 1707269868 458985 :fizzie!~irc@selene.zem.fi PRIVMSG #esolangs :I'd like to have the daemon run an rsync operation tunneled over this connection, by starting an instance of rsync locally, starting another as --daemon on the remote side, and then passing data between the two over the existing multiplexed SSH connection. < 1707269876 728741 :fizzie!~irc@selene.zem.fi PRIVMSG #esolangs :Unfortunately, as far as I can tell, rsync just has two ways it can connect to a remote system: either over a TCP connection (where it expects the daemon as the remote end), or using a remote-shell program (traditionally rsh, usually ssh, sometimes a wrapper of some kind). In the latter case, it'll make its own pipes and then spawn a shell to run the remote-shell command line. In my case, I'd < 1707269878 878860 :fizzie!~irc@selene.zem.fi PRIVMSG #esolangs :rather just hand it a pair of file descriptors that are pipes my daemon will read/write. < 1707269892 987800 :fizzie!~irc@selene.zem.fi PRIVMSG #esolangs :I can think of a couple of workarounds how to give it a command line that would connect to the daemon (cat with some named pipes, nc/socat to a Unix domain socket), but nothing that would avoid requiring an extra copy, with all data passing from local rsync to its spawned program via a pipe rsync makes, then from that command to the daemon using some mechanism. I'd like that just be a single < 1707269894 877904 :fizzie!~irc@selene.zem.fi PRIVMSG #esolangs :thing rsync would use to talk to the daemon. < 1707269901 290093 :fizzie!~irc@selene.zem.fi PRIVMSG #esolangs :(I vaguely recall last time I tried this, I verified that even if I pass some extra file descriptors to rsync when starting it, it does not cause those to be inherited by the shell that runs the remote-shell command.) < 1707269911 602390 :fizzie!~irc@selene.zem.fi PRIVMSG #esolangs :(There's one potential solution where I have the remote-shell command be a program that connects to the daemon over a Unix domain socket and passes references to its own stdin and stdout over the socket so that the daemon can start reading/writing them instead, but that feels a little too overengineered.) < 1707269918 20200 :fizzie!~irc@selene.zem.fi PRIVMSG #esolangs :Am I missing some simple method by which I could hand my own pipes to rsync and tell it "here, these are connected to a rsync daemon"? < 1707269925 903947 :fizzie!~irc@selene.zem.fi PRIVMSG #esolangs :(Having rsync use TCP would also avoid the extra copy, but then my daemon would have to listen on a TCP port and worry about unexpected connections and whatnot.) < 1707270117 309280 :Lord_of_Life!~Lord@user/lord-of-life/x-2819915 QUIT :Ping timeout: 272 seconds < 1707270182 646104 :Lord_of_Life!~Lord@user/lord-of-life/x-2819915 JOIN #esolangs Lord_of_Life :Lord < 1707271145 873077 :Koen_!~Koen@2a01:e34:ec7c:30:dcd2:fee5:180f:3dea QUIT :Quit: Leaving... > 1707275592 37190 PRIVMSG #esolangs :14[[07Special:Log/newusers14]]4 create10 02 5* 03Presi1234 5* 10New user account > 1707275902 626331 PRIVMSG #esolangs :14[[07Esolang:Introduce yourself14]]4 10 02https://esolangs.org/w/index.php?diff=123015&oldid=122990 5* 03Presi1234 5* (+141) 10 > 1707276010 267050 PRIVMSG #esolangs :14[[07User:Presi123414]]4 N10 02https://esolangs.org/w/index.php?oldid=123016 5* 03Presi1234 5* (+31) 10Created page with "Hi, Im in Vietnam :1 [[JSF*ck]]" < 1707281441 254520 :FreeFull!~freefull@46.205.204.185.nat.ftth.dynamic.t-mobile.pl QUIT :Ping timeout: 272 seconds < 1707281517 126299 :FreeFull!~freefull@46.205.205.212.nat.ftth.dynamic.t-mobile.pl JOIN #esolangs FreeFull :FreeFull > 1707282596 21302 PRIVMSG #esolangs :14[[07Talk:Ascenic14]]4 10 02https://esolangs.org/w/index.php?diff=123017&oldid=122967 5* 03Ais523 5* (+1540) 10I think this is TC but it isn't completely obvious, the usual methods of proving this sort of language TC don't work because its stack manipulation primitives are limited > 1707283079 294481 PRIVMSG #esolangs :14[[07Talk:Ascenic14]]4 M10 02https://esolangs.org/w/index.php?diff=123018&oldid=123017 5* 03Ais523 5* (+3) 10fix typo > 1707287031 807414 PRIVMSG #esolangs :14[[07Spiral Rise14]]4 M10 02https://esolangs.org/w/index.php?diff=123019&oldid=120577 5* 03Ais523 5* (+0) 10/* 5-symbol tag system */ fix typo < 1707292426 37231 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User < 1707292819 878625 :Koen_!~Koen@2a01:e34:ec7c:30:8c9e:5380:ad77:4227 JOIN #esolangs * :Koen < 1707293818 190015 :Sgeo!~Sgeo@user/sgeo QUIT :Read error: Connection reset by peer < 1707294677 170809 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :fizzie: I just tested, and in fact rsync does pass an extra file descriptor to the program that it uses to connect < 1707294684 257668 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :``` type rsync < 1707294686 571691 :HackEso!~h@techne.zem.fi PRIVMSG #esolangs :bash: line 0: type: rsync: not found < 1707294700 649326 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :fizzie: the command to reproduce is: (set -e; rm fakeaux; echo $'#!/bin/sh\necho hello >&8' > fakesh; chmod a+x fakesh; rsync --rsh ~+/fakesh imaginary::imaginary 8>fakeaux ||:; cat fakeaux) < 1707294729 77814 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :fizzie: the rsync will fail here, but it does execute fakesh with the extra file descriptor found, and fakesh writes "hello" into that file descriptor < 1707295045 215981 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :of course a drastic option would be to compile a modified custom rsync > 1707295768 922257 PRIVMSG #esolangs :14[[07User talk:Presi123414]]4 N10 02https://esolangs.org/w/index.php?oldid=123020 5* 03Presi1234 5* (+31) 10Created page with "Hi, I im Vietnam :1
[[Len]]" < 1707297296 228729 :fizzie!~irc@selene.zem.fi PRIVMSG #esolangs :Huh, I must've not tested that after all. Though I guess it only helps for passing in the pipes without giving them names; the `fakesh` equivalent would still need to copy between the rsync pipes and the extra ones. < 1707297411 109266 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… < 1707297859 202045 :joes!~joes@hardfought/member/joes JOIN #esolangs joes :realname < 1707298133 238107 :joes!~joes@hardfought/member/joes QUIT :Ping timeout: 268 seconds < 1707298245 357870 :joes!~joes@hardfought/member/joes JOIN #esolangs joes :realname > 1707298354 946768 PRIVMSG #esolangs :14[[07Wagon14]]4 M10 02https://esolangs.org/w/index.php?diff=123021&oldid=66661 5* 03Chris Pressey 5* (+67) 10Update links; GitHub is no longer a recommended host for Cat's Eye Technologies things > 1707298380 982081 PRIVMSG #esolangs :14[[07Wagon14]]4 M10 02https://esolangs.org/w/index.php?diff=123022&oldid=123021 5* 03Chris Pressey 5* (+0) 10/* External links */ cApitalization < 1707298504 380049 :joes!~joes@hardfought/member/joes QUIT :Ping timeout: 246 seconds < 1707298623 438314 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :fizzie: I believe you can pass arguments to your connectin program in the --rsh option of rsync, you can pass in the file decriptor numbers or other small configuration info there < 1707298765 74750 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :plus you can use the "hostname" and "username" that rsync will pass to your connecting program for passing other data as well < 1707299075 105141 :__monty__!~toonn@user/toonn JOIN #esolangs toonn :Unknown < 1707301203 28381 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User > 1707302464 221684 PRIVMSG #esolangs :14[[07ExtendedFuck14]]4 N10 02https://esolangs.org/w/index.php?oldid=123023 5* 03TeslaX93 5* (+1385) 10Created page with "{{lowercase}} '''ExtendedFuck''' (shorthand '''bf4h''') is a [[brainfuck]] derivative by [[User:TeslaX93]] designed in February 2024. It adds some useful commands to Brainfuck. == Instructions == Current instruction set {| class="wikitable" |- ! Instruction !! D > 1707302492 996866 PRIVMSG #esolangs :14[[07User:TeslaX9314]]4 10 02https://esolangs.org/w/index.php?diff=123024&oldid=58276 5* 03TeslaX93 5* (+18) 10 < 1707303415 369523 :Koen_!~Koen@2a01:e34:ec7c:30:8c9e:5380:ad77:4227 QUIT :Remote host closed the connection > 1707303687 838998 PRIVMSG #esolangs :14[[07Sloopy14]]4 N10 02https://esolangs.org/w/index.php?oldid=123025 5* 03Chris Pressey 5* (+2434) 10Created page with "'''Sloopy''' is a pedestrian C-like Turing-complete language intended to be used in proofs of Turing-completeness. There are four global variables in every Sloopy program: * done, a boolean, initially false * state, an unbounded integer, > 1707303752 519658 PRIVMSG #esolangs :14[[07Sloopy14]]4 M10 02https://esolangs.org/w/index.php?diff=123026&oldid=123025 5* 03Chris Pressey 5* (+66) 10/* Computational class */ formatting < 1707305244 824943 :Koen_!~Koen@2a01:e34:ec7c:30:4d3:34d6:352b:187a JOIN #esolangs * :Koen > 1707305341 929250 PRIVMSG #esolangs :14[[07Sloopy14]]4 M10 02https://esolangs.org/w/index.php?diff=123027&oldid=123026 5* 03Chris Pressey 5* (+205) 10Link to reference for the 2nd claim in this paragraph > 1707306108 203841 PRIVMSG #esolangs :14[[07Sloopy14]]4 10 02https://esolangs.org/w/index.php?diff=123028&oldid=123027 5* 03Chris Pressey 5* (+815) 10Rough description of "Tape-only Sloopy". > 1707306172 281079 PRIVMSG #esolangs :14[[07Sloopy14]]4 10 02https://esolangs.org/w/index.php?diff=123029&oldid=123028 5* 03Chris Pressey 5* (-12) 10Fix that > 1707307279 952518 PRIVMSG #esolangs :14[[07InternationalFuck14]]4 N10 02https://esolangs.org/w/index.php?oldid=123030 5* 03TeslaX93 5* (+1247) 10Created page with "PitbullFuck is yet another [[TrivialBrainfuckSubstitution]] language. Instructions are based on the song ''International Love'' by '''Pitbull'''. === Lyrics (chorus) === You put it down like New York City, I never sleep Wild like Los Angeles, my fantasy Hott > 1707307286 21667 PRIVMSG #esolangs :14[[07Sloopy14]]4 10 02https://esolangs.org/w/index.php?diff=123031&oldid=123029 5* 03Chris Pressey 5* (+651) 10More discussing the transformation from Tape-only Sloopy to Sloopy proper > 1707307294 182867 PRIVMSG #esolangs :14[[07InternationalFuck14]]4 10 02https://esolangs.org/w/index.php?diff=123032&oldid=123030 5* 03TeslaX93 5* (+5) 10 > 1707307567 262791 PRIVMSG #esolangs :14[[07Sloopy14]]4 M10 02https://esolangs.org/w/index.php?diff=123033&oldid=123031 5* 03Chris Pressey 5* (+290) 10A clarifying note > 1707307630 917973 PRIVMSG #esolangs :14[[07InternationalFuck14]]4 10 02https://esolangs.org/w/index.php?diff=123034&oldid=123032 5* 03TeslaX93 5* (+2373) 10 > 1707307642 342959 PRIVMSG #esolangs :14[[07InternationalFuck14]]4 10 02https://esolangs.org/w/index.php?diff=123035&oldid=123034 5* 03TeslaX93 5* (+6) 10 > 1707307662 272495 PRIVMSG #esolangs :14[[07User:TeslaX9314]]4 10 02https://esolangs.org/w/index.php?diff=123036&oldid=123024 5* 03TeslaX93 5* (+23) 10 > 1707307999 579724 PRIVMSG #esolangs :14[[07Sloopy14]]4 10 02https://esolangs.org/w/index.php?diff=123037&oldid=123033 5* 03Chris Pressey 5* (+548) 10 > 1707308803 579137 PRIVMSG #esolangs :14[[07Sloopy14]]4 10 02https://esolangs.org/w/index.php?diff=123038&oldid=123037 5* 03Chris Pressey 5* (+320) 10Describe what is messed up here. Note to self: fix this later. < 1707309947 365903 :wib_jonas!~wib_jonas@business-37-191-60-209.business.broadband.hu JOIN #esolangs b_jonas :[https://web.libera.chat] wib_jonas > 1707309969 140318 PRIVMSG #esolangs :14[[07User:Shamrocky14]]4 10 02https://esolangs.org/w/index.php?diff=123039&oldid=123007 5* 03Shamrocky 5* (+3) 10/* About Me */ > 1707310007 925665 PRIVMSG #esolangs :14[[07User:Shamrocky14]]4 10 02https://esolangs.org/w/index.php?diff=123040&oldid=123039 5* 03Shamrocky 5* (+33) 10/* Baiken */ > 1707310476 959192 PRIVMSG #esolangs :14[[07User:Shamrocky14]]4 10 02https://esolangs.org/w/index.php?diff=123041&oldid=123040 5* 03Shamrocky 5* (+522) 10 > 1707310531 915363 PRIVMSG #esolangs :14[[07User:Shamrocky14]]4 10 02https://esolangs.org/w/index.php?diff=123042&oldid=123041 5* 03Shamrocky 5* (+6) 10 > 1707310567 940272 PRIVMSG #esolangs :14[[07User:Shamrocky14]]4 10 02https://esolangs.org/w/index.php?diff=123043&oldid=123042 5* 03Shamrocky 5* (+6) 10 > 1707310641 114645 PRIVMSG #esolangs :14[[07User:Shamrocky14]]4 10 02https://esolangs.org/w/index.php?diff=123044&oldid=123043 5* 03Shamrocky 5* (-29) 10/* Favorite Entries */ > 1707310774 521404 PRIVMSG #esolangs :14[[07Data14]]4 N10 02https://esolangs.org/w/index.php?oldid=123045 5* 03Yourusername 5* (+552) 10Created page with "Data is a programming language i made that uses only json-like data and dot notation to make logic == The Two Things == === Data === a = {val: "hi", op: "hello", other: "idk", these: "names don't matter until you use dot notation"} true = { val: "true" op: false a > 1707310925 449998 PRIVMSG #esolangs :14[[07User:Shamrocky14]]4 10 02https://esolangs.org/w/index.php?diff=123046&oldid=123044 5* 03Shamrocky 5* (+85) 10 > 1707314194 34786 PRIVMSG #esolangs :14[[07User talk:Shamrocky14]]4 10 02https://esolangs.org/w/index.php?diff=123047&oldid=123011 5* 03Shamrocky 5* (+24) 10 > 1707314221 955854 PRIVMSG #esolangs :14[[07User talk:Shamrocky14]]4 10 02https://esolangs.org/w/index.php?diff=123048&oldid=123047 5* 03Shamrocky 5* (-5696) 10Replaced content with "=Inbox=" > 1707314235 623720 PRIVMSG #esolangs :14[[07User:Shamrocky14]]4 10 02https://esolangs.org/w/index.php?diff=123049&oldid=123046 5* 03Shamrocky 5* (+5597) 10/* Ramblings of a Madwoman */ > 1707317111 280980 PRIVMSG #esolangs :14[[07Sloopy14]]4 10 02https://esolangs.org/w/index.php?diff=123050&oldid=123038 5* 03Chris Pressey 5* (-818) 10Fix the translation (mainly delete the uneeded translation in the wrong direction) > 1707317168 362812 PRIVMSG #esolangs :14[[07Sloopy14]]4 M10 02https://esolangs.org/w/index.php?diff=123051&oldid=123050 5* 03Chris Pressey 5* (+0) 10catipalizatioN < 1707318677 885549 :chiselfuse!~chiselfus@user/chiselfuse QUIT :Ping timeout: 255 seconds > 1707318708 438926 PRIVMSG #esolangs :14[[07Tuvars14]]4 10 02https://esolangs.org/w/index.php?diff=123052&oldid=100268 5* 03Kaveh Yousefi 5* (+170) 10Added a hyperlink to my implementation of the Tuvars programming language on GitHub and designated the reference implementation as a dead link. < 1707318728 235618 :chiselfuse!~chiselfus@user/chiselfuse JOIN #esolangs chiselfuse :chiselfuse > 1707319377 906686 PRIVMSG #esolangs :14[[07Sloopy14]]4 10 02https://esolangs.org/w/index.php?diff=123053&oldid=123051 5* 03Chris Pressey 5* (+701) 10Add EBNF grammar. > 1707319536 209384 PRIVMSG #esolangs :14[[07Sloopy14]]4 10 02https://esolangs.org/w/index.php?diff=123054&oldid=123053 5* 03Chris Pressey 5* (+351) 10Add grammar changes for Tape-only Sloopy. < 1707320297 622835 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… > 1707321399 546883 PRIVMSG #esolangs :14[[07Sloopy14]]4 10 02https://esolangs.org/w/index.php?diff=123055&oldid=123054 5* 03Chris Pressey 5* (+477) 10A few words on the semantics > 1707321419 561724 PRIVMSG #esolangs :14[[07Sloopy14]]4 M10 02https://esolangs.org/w/index.php?diff=123056&oldid=123055 5* 03Chris Pressey 5* (-2) 10/* Semantics */ formatting > 1707321471 21102 PRIVMSG #esolangs :14[[07Sloopy14]]4 M10 02https://esolangs.org/w/index.php?diff=123057&oldid=123056 5* 03Chris Pressey 5* (+14) 10Add section to make the ToC show up in a nicer place < 1707321574 790098 :tromp!~textual@92.110.219.57 JOIN #esolangs * :Textual User < 1707322250 726010 :wib_jonas!~wib_jonas@business-37-191-60-209.business.broadband.hu QUIT :Quit: Client closed > 1707322894 481799 PRIVMSG #esolangs :14[[07MIX (Knuth)14]]4 10 02https://esolangs.org/w/index.php?diff=123058&oldid=110299 5* 03B jonas 5* (+100) 10/* Extensions */ references for the extensions > 1707323853 534384 PRIVMSG #esolangs :14[[07Config+14]]4 N10 02https://esolangs.org/w/index.php?oldid=123059 5* 03Jaio 5* (+6552) 10Create page for Config+ > 1707324025 581398 PRIVMSG #esolangs :14[[07Language list14]]4 M10 02https://esolangs.org/w/index.php?diff=123060&oldid=123013 5* 03Jaio 5* (+14) 10add Config+ to Language list > 1707324203 321752 PRIVMSG #esolangs :14[[07Config+14]]4 M10 02https://esolangs.org/w/index.php?diff=123061&oldid=123059 5* 03Jaio 5* (+1) 10typo :) < 1707326638 294342 :Hooloovoo!~Hooloovoo@hax0rbana.org QUIT :Ping timeout: 256 seconds < 1707326788 139078 :Hooloovoo!~Hooloovoo@hax0rbana.org JOIN #esolangs hooloovoo :ZNC - https://znc.in < 1707328275 399666 :Koen_!~Koen@2a01:e34:ec7c:30:4d3:34d6:352b:187a QUIT :Remote host closed the connection > 1707328289 90975 PRIVMSG #esolangs :14[[07Data14]]4 10 02https://esolangs.org/w/index.php?diff=123062&oldid=123045 5* 03Yourusername 5* (+72) 10/* Data */ < 1707328341 263456 :tromp!~textual@92.110.219.57 QUIT :Quit: My iMac has gone to sleep. ZZZzzz… > 1707328702 372354 PRIVMSG #esolangs :14[[07Unpseudorandom14]]4 10 02https://esolangs.org/w/index.php?diff=123063&oldid=122961 5* 03LEOMOK 5* (+40) 10the computational class is added > 1707329420 835846 PRIVMSG #esolangs :14[[072dLang14]]4 N10 02https://esolangs.org/w/index.php?oldid=123064 5* 03Yourusername 5* (+573) 10~~~~ > 1707329621 28813 PRIVMSG #esolangs :14[[07User:Shamrocky14]]4 10 02https://esolangs.org/w/index.php?diff=123065&oldid=123049 5* 03Shamrocky 5* (+476) 10 < 1707330174 611854 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User > 1707330977 668082 PRIVMSG #esolangs :14[[07User:Shamrocky14]]4 10 02https://esolangs.org/w/index.php?diff=123066&oldid=123065 5* 03Shamrocky 5* (+466) 10/* Resident Evil */ > 1707331005 465310 PRIVMSG #esolangs :14[[07User:Shamrocky14]]4 10 02https://esolangs.org/w/index.php?diff=123067&oldid=123066 5* 03Shamrocky 5* (+1) 10 > 1707331269 849609 PRIVMSG #esolangs :14[[07FUNC14]]4 N10 02https://esolangs.org/w/index.php?oldid=123068 5* 03Yourusername 5* (+314) 10~~~~ > 1707332137 876607 PRIVMSG #esolangs :14[[07User:Shamrocky14]]4 10 02https://esolangs.org/w/index.php?diff=123069&oldid=123067 5* 03Shamrocky 5* (+6) 10 > 1707332343 922105 PRIVMSG #esolangs :14[[07User:Shamrocky14]]4 10 02https://esolangs.org/w/index.php?diff=123070&oldid=123069 5* 03Shamrocky 5* (+178) 10 < 1707332949 252795 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Read error: Connection reset by peer < 1707335668 139316 :__monty__!~toonn@user/toonn QUIT :Quit: leaving > 1707341134 34730 PRIVMSG #esolangs :14[[07OlleH14]]4 M10 02https://esolangs.org/w/index.php?diff=123071&oldid=115591 5* 03PythonshellDebugwindow 5* (+52) 10Categories > 1707345595 943738 PRIVMSG #esolangs :14[[07User talk:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=123072&oldid=117878 5* 03BoundedBeans 5* (+503) 10Detailed how I got the C-INTERCAL source to compile > 1707347704 802812 PRIVMSG #esolangs :14[[07User talk:Ais52314]]4 10 02https://esolangs.org/w/index.php?diff=123073&oldid=123072 5* 03BoundedBeans 5* (+436) 10Confirmed compile method working on WSL > 1707348779 547303 PRIVMSG #esolangs :14[[07Keywords14]]4 N10 02https://esolangs.org/w/index.php?oldid=123074 5* 03BestCoder 5* (+477) 10~~~~ > 1707348832 196350 PRIVMSG #esolangs :14[[07Keywords14]]4 10 02https://esolangs.org/w/index.php?diff=123075&oldid=123074 5* 03BestCoder 5* (+32) 10/* Wait... */ < 1707348861 209255 :Sgeo!~Sgeo@user/sgeo JOIN #esolangs Sgeo :realname > 1707348879 956824 PRIVMSG #esolangs :14[[07Keywords14]]4 10 02https://esolangs.org/w/index.php?diff=123076&oldid=123075 5* 03BestCoder 5* (+45) 10/* Wait... */ > 1707348991 958563 PRIVMSG #esolangs :14[[07Keywords14]]4 10 02https://esolangs.org/w/index.php?diff=123077&oldid=123076 5* 03BestCoder 5* (+62) 10/* Funcs */