< 1731974516 60835 :Everything!~Everythin@31.144.80.156 QUIT :Quit: leaving < 1731975258 966307 :Sgeo!~Sgeo@user/sgeo JOIN #esolangs Sgeo :realname < 1731975566 674719 :Lord_of_Life!~Lord@user/lord-of-life/x-2819915 QUIT :Ping timeout: 244 seconds < 1731975572 913805 :Lord_of_Life_!~Lord@user/lord-of-life/x-2819915 JOIN #esolangs Lord_of_Life :Lord < 1731975656 601863 :Lord_of_Life_!~Lord@user/lord-of-life/x-2819915 NICK :Lord_of_Life > 1731977248 612662 PRIVMSG #esolangs :14[[07Estrita14]]4 N10 02https://esolangs.org/w/index.php?oldid=145798 5* 03Aadenboy 5* (+5596) 10win > 1731978461 339945 PRIVMSG #esolangs :14[[07User:Aadenboy14]]4 M10 02https://esolangs.org/w/index.php?diff=145799&oldid=145335 5* 03Aadenboy 5* (+90) 10update list > 1731978508 695986 PRIVMSG #esolangs :14[[07User:Aadenboy14]]4 M10 02https://esolangs.org/w/index.php?diff=145800&oldid=145799 5* 03Aadenboy 5* (-63) 10 < 1731980415 738353 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :https://man7.org/linux/man-pages/man2/madvise.2.html says that madvise rounds the length up to full pages, even for MADV_DONTNEED, and that this may mean rounding up to huge pagesize if the area is backed by hugepages. does that apply to transparent hugepages, and how the heck are you supposed to handle that? < 1731980596 666432 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :found a relevant page: https://bugzilla.kernel.org/show_bug.cgi?id=202089 < 1731980610 738045 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :hmm no < 1731980613 721064 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :that isn't relevant < 1731980645 368881 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :or... I'm not sure < 1731980729 121018 :amby!~ambylastn@ward-15-b2-v4wan-167229-cust809.vm18.cable.virginm.net 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 < 1731980774 487148 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :I'm confused about what the semantics is supposed to be < 1731982047 830915 :int-e!~noone@int-e.eu PRIVMSG #esolangs :I think the kernel demotes huge pages to normal pages in that case. Note also: "MADV_DONTNEED cannot be applied to locked pages, Huge TLB pages, or VM_PFNMAP pages." -- but that shouldn't apply to the *transparent* huge pages support. < 1731982131 590727 :int-e!~noone@int-e.eu PRIVMSG #esolangs :I'm quite confident that rounding up to a full huge table would've broken a lot of software when THP was introduced, and we'd have heard about that. < 1731982144 602454 :int-e!~noone@int-e.eu PRIVMSG #esolangs :s/table/page/ < 1731982242 868634 :int-e!~noone@int-e.eu PRIVMSG #esolangs :(Is that quote up-to-date? Hmm.) < 1731982584 239225 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :how are you supposed to remove whole huge pages if MADV_DONTNEED can't apply to them? < 1731982912 574926 :int-e!~noone@int-e.eu PRIVMSG #esolangs :you always have munmap < 1731982972 415328 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :I'd also like to know how to query for debugging where the kernel has mapped hugepages in areas with transparent hugepages enabled. mincore can tell which pages are in memory, which could help tell me how MADV_DONTNEED worked. < 1731983794 620338 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :there's a procfile that lists how many hugepages a process is using < 1731984964 345405 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :I think that the man page does a disservice by saying that the semantics are changed by MADV_DONTNEED and that the other advices are only for performance. The user shouldn't have to change how they access the advice'd page. < 1731985093 199104 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :If one really *does* want the semantics to change, it looks like the Linux-specific MADV_FREE has that behavior. I'm not gonna guess at why somebody would want that without an munmap(). > 1731985101 390443 PRIVMSG #esolangs :14[[07Talk:ight14]]4 10 02https://esolangs.org/w/index.php?diff=145801&oldid=144441 5* 03Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 5* (+107) 10 < 1731985134 53297 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :korvo: MADV_FREE is useful if you have an application that maps the entire address space in advance, and does mallocs simply by returning an unused address without telling the kernle < 1731985149 664740 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :this is useful to save on system calls < 1731985174 140746 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :ais523: Makes sense for sure. < 1731985174 824656 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :but it's not a very popular style of programming < 1731985277 992411 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :Is MADV_DONTNEED useful for maybe databases or game servers where data access patterns aren't sequential or random, but need to be explicitly scheduled? I'd guess that MADV_WILLNEED would be used in tandem. < 1731985316 936322 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :Maybe worth contrasting Linux man with POSIX man: https://www.man7.org/linux/man-pages/man3/posix_madvise.3.html "shall not affect the semantics of access to memory" < 1731985700 778925 :int-e!~noone@int-e.eu PRIVMSG #esolangs :korvo: "since glibc 2.6, POSIX_MADV_DONTNEED is treated as a no-op, because the corresponding madvise(2) value, MADV_DONTNEED, has destructive semantics." < 1731985742 339658 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :int-e: Ugh. Well, at least they documented it. Thanks. < 1731985791 935365 :int-e!~noone@int-e.eu PRIVMSG #esolangs :There's a question how useful the POSIX version is. I guess it'll still be allowed to do something if you mmap a file read-only < 1731986013 213540 :int-e!~noone@int-e.eu PRIVMSG #esolangs :or you can encourage the kernel to swap the page out if there's memory pressure > 1731986016 99276 PRIVMSG #esolangs :14[[07RuleLoader14]]4 N10 02https://esolangs.org/w/index.php?oldid=145802 5* 03ColorfulGalaxy's CA discoveries 5* (+1437) 10Created page with "{{stub}} '''RuleLoader''' is the algorithm used to simulate .rule files describing different types of [[CA]], also known as '''rule tables''' and '''rule trees'''. A description of the file format is provided in Golly's built-in h < 1731986157 782047 :int-e!~noone@int-e.eu PRIVMSG #esolangs :Hmm apparently Go switched from MADV_DONTNEED to MADV_FREE and back again. https://github.com/golang/go/commit/05e6d28849293266028c0bc9e9b0f8d0da38a2e2 < 1731986229 307886 :int-e!~noone@int-e.eu PRIVMSG #esolangs :"jemalloc plays a game where they call MADV_FREE and then 10s later they call MADV_DONTNEED" < 1731986235 999330 :int-e!~noone@int-e.eu PRIVMSG #esolangs :https://github.com/JuliaLang/julia/issues/51086 > 1731986265 943026 PRIVMSG #esolangs :14[[07User:Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff14]]4 10 02https://esolangs.org/w/index.php?diff=145803&oldid=145604 5* 03Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 5* (+4) 10 < 1731986266 853902 :int-e!~noone@int-e.eu PRIVMSG #esolangs :I have no clue why the situation sounds messy. > 1731986314 883378 PRIVMSG #esolangs :14[[07RuleLoader14]]4 10 02https://esolangs.org/w/index.php?diff=145804&oldid=145802 5* 03ColorfulGalaxy's CA discoveries 5* (+82) 10 < 1731986358 901082 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :Found LWN: https://lwn.net/Articles/591214/ > 1731986365 216273 PRIVMSG #esolangs :14[[07RuleLoader14]]4 10 02https://esolangs.org/w/index.php?diff=145805&oldid=145804 5* 03ColorfulGalaxy's CA discoveries 5* (+74) 10 > 1731986437 460251 PRIVMSG #esolangs :14[[07ALPACA14]]4 10 02https://esolangs.org/w/index.php?diff=145806&oldid=68574 5* 03ColorfulGalaxy's CA discoveries 5* (+43) 10 > 1731986456 226450 PRIVMSG #esolangs :14[[07RuleLoader14]]4 10 02https://esolangs.org/w/index.php?diff=145807&oldid=145805 5* 03ColorfulGalaxy's CA discoveries 5* (+25) 10 > 1731986599 525343 PRIVMSG #esolangs :14[[07RuleLoader14]]4 10 02https://esolangs.org/w/index.php?diff=145808&oldid=145807 5* 03ColorfulGalaxy's CA discoveries 5* (+118) 10 < 1731986610 27119 :int-e!~noone@int-e.eu PRIVMSG #esolangs :korvo: thanks < 1731986645 711867 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :I wanted to see if RPython has an explanation. They have a comment here: https://github.com/pypy/pypy/blob/main/rpython/rlib/rmmap.py#L860 There are four different madvise_free() implementations; this one for Linux does MADV_FREE followed by MADV_DONTNEED. < 1731986703 748926 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :Er, if MADV_FREE fails then they try again with MADV_DONTNEED. This is how they free low-level arenas for the JIT and GC. > 1731986751 842045 PRIVMSG #esolangs :14[[07Talk:Matrioshka language14]]4 N10 02https://esolangs.org/w/index.php?oldid=145809 5* 03ColorfulGalaxy's CA discoveries 5* (+221) 10Created page with "Can LifeViewer be considered a "Matrioshka language"? ~~~~" < 1731986842 354973 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :Heh, "so users could the page without any corruption". They accidentally a verb. < 1731986862 879885 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :But I get it. If I accidentally the page, then no corruption please. > 1731986970 464592 PRIVMSG #esolangs :14[[07RuleLoader14]]4 10 02https://esolangs.org/w/index.php?diff=145810&oldid=145808 5* 03ColorfulGalaxy's CA discoveries 5* (+578) 10/* Computational class */ new section) (---- > 1731987439 791090 PRIVMSG #esolangs :14[[07Language list14]]4 10 02https://esolangs.org/w/index.php?diff=145811&oldid=145765 5* 03ColorfulGalaxy's CA discoveries 5* (+28) 10Rule table < 1731987459 510716 :citrons!~citrons@alt.mondecitronne.com QUIT :Ping timeout: 260 seconds < 1731987546 428713 :citrons!~citrons@alt.mondecitronne.com JOIN #esolangs citrons :citrons > 1731987973 945872 PRIVMSG #esolangs :14[[07Language list14]]4 10 02https://esolangs.org/w/index.php?diff=145812&oldid=145811 5* 03Aadenboy 5* (+14) 10/* E */ < 1731988541 466726 :chiselfuse!~chiselfus@user/chiselfuse QUIT :Ping timeout: 260 seconds < 1731988685 694029 :chiselfuse!~chiselfus@user/chiselfuse JOIN #esolangs chiselfuse :chiselfuse > 1731990171 565080 PRIVMSG #esolangs :14[[07User:Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff14]]4 10 02https://esolangs.org/w/index.php?diff=145813&oldid=145803 5* 03Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 5* (+943) 10 < 1731991300 348841 :Guest60!~Guest60@94.147.203.75 JOIN #esolangs * :[https://web.libera.chat] Guest60 < 1731991558 947195 :Guest60!~Guest60@94.147.203.75 QUIT :Client Quit < 1731992499 369221 :wWwwW!~wWwwW@94.147.203.75 JOIN #esolangs * :[https://web.libera.chat] wWwwW < 1731992792 989264 :wWwwW!~wWwwW@94.147.203.75 QUIT :Client Quit > 1731996060 352200 PRIVMSG #esolangs :14[[07RuleLoader14]]4 10 02https://esolangs.org/w/index.php?diff=145814&oldid=145810 5* 03ZCX islptng 5* (+1697) 10 > 1731996403 796615 PRIVMSG #esolangs :14[[07RuleLoader14]]4 10 02https://esolangs.org/w/index.php?diff=145815&oldid=145814 5* 03ZCX islptng 5* (+153) 10 < 1731997010 7899 :craigo!~craigo@user/craigo JOIN #esolangs craigo :realname > 1731997568 429713 PRIVMSG #esolangs :14[[07Deadfish14]]4 10 02https://esolangs.org/w/index.php?diff=145816&oldid=145754 5* 03Win7HE 5* (-24) 10/* Variants of deadfish */ > 1731997689 959826 PRIVMSG #esolangs :14[[07Deadshark14]]4 10 02https://esolangs.org/w/index.php?diff=145817&oldid=145760 5* 03Win7HE 5* (+1) 10/* Commands */ < 1731997805 550332 :Sgeo!~Sgeo@user/sgeo QUIT :Read error: Connection reset by peer > 1731997996 488348 PRIVMSG #esolangs :14[[07Deadshark14]]4 10 02https://esolangs.org/w/index.php?diff=145818&oldid=145817 5* 03Win7HE 5* (+75) 10/* External Links */ > 1731999532 410360 PRIVMSG #esolangs :14[[07Deadshark14]]4 M10 02https://esolangs.org/w/index.php?diff=145819&oldid=145818 5* 03Win7HE 5* (+0) 10/* Commands */ > 1732002437 928397 PRIVMSG #esolangs :14[[07Stuley14]]4 10 02https://esolangs.org/w/index.php?diff=145820&oldid=145797 5* 03Ractangle 5* (-5) 10/* Syntax */ > 1732002573 492008 PRIVMSG #esolangs :14[[07MarkupL14]]4 10 02https://esolangs.org/w/index.php?diff=145821&oldid=145783 5* 03Ractangle 5* (-13) 10/* Cat program */ > 1732002723 294929 PRIVMSG #esolangs :14[[07Stuley14]]4 10 02https://esolangs.org/w/index.php?diff=145822&oldid=145820 5* 03Ractangle 5* (+291) 10 > 1732002742 452614 PRIVMSG #esolangs :14[[07Stuley14]]4 10 02https://esolangs.org/w/index.php?diff=145823&oldid=145822 5* 03Ractangle 5* (+3) 10 > 1732002751 526152 PRIVMSG #esolangs :14[[07Stuley14]]4 10 02https://esolangs.org/w/index.php?diff=145824&oldid=145823 5* 03Ractangle 5* (-13) 10 > 1732002859 45032 PRIVMSG #esolangs :14[[07Comment14]]4 10 02https://esolangs.org/w/index.php?diff=145825&oldid=144004 5* 03Ractangle 5* (+3) 10/* Snakel */ < 1732003169 737132 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User > 1732003227 660797 PRIVMSG #esolangs :14[[07Talk:Matrioshka language14]]4 10 02https://esolangs.org/w/index.php?diff=145826&oldid=145809 5* 03Yayimhere2(school) 5* (+138) 10 > 1732003505 532926 PRIVMSG #esolangs :14[[07Comment14]]4 10 02https://esolangs.org/w/index.php?diff=145827&oldid=145825 5* 03Ractangle 5* (-1) 10/* Snakel */ > 1732003520 330869 PRIVMSG #esolangs :14[[07Comment14]]4 10 02https://esolangs.org/w/index.php?diff=145828&oldid=145827 5* 03Ractangle 5* (-1) 10/* Snakel */ > 1732003540 139413 PRIVMSG #esolangs :14[[07Comment14]]4 10 02https://esolangs.org/w/index.php?diff=145829&oldid=145828 5* 03Ractangle 5* (+4) 10/* Snakel */ > 1732003562 326842 PRIVMSG #esolangs :14[[07Snakel14]]4 10 02https://esolangs.org/w/index.php?diff=145830&oldid=145792 5* 03Ractangle 5* (+8) 10/* Syntax */ > 1732003690 107532 PRIVMSG #esolangs :14[[07Snakel14]]4 10 02https://esolangs.org/w/index.php?diff=145831&oldid=145830 5* 03Ractangle 5* (+127) 10 > 1732003761 23384 PRIVMSG #esolangs :14[[07Talk:Matrioshka language14]]4 10 02https://esolangs.org/w/index.php?diff=145832&oldid=145826 5* 03Ractangle 5* (+1) 10 > 1732003793 744446 PRIVMSG #esolangs :14[[07Talk:ight14]]4 10 02https://esolangs.org/w/index.php?diff=145833&oldid=145801 5* 03Ractangle 5* (+6) 10 > 1732003954 256135 PRIVMSG #esolangs :14[[07Talk:ight14]]4 10 02https://esolangs.org/w/index.php?diff=145834&oldid=145833 5* 03Ractangle 5* (+396) 10 > 1732003964 820270 PRIVMSG #esolangs :14[[07Talk:ight14]]4 10 02https://esolangs.org/w/index.php?diff=145835&oldid=145834 5* 03Ractangle 5* (+168) 10 > 1732003981 550580 PRIVMSG #esolangs :14[[07Talk:ight14]]4 10 02https://esolangs.org/w/index.php?diff=145836&oldid=145835 5* 03Ractangle 5* (+1) 10 < 1732004154 769640 :schoolWWWWW!~schoolWWW@2.109.102.66 JOIN #esolangs * :[https://web.libera.chat] schoolWWWWW < 1732004812 573958 :schoolWWWWW!~schoolWWW@2.109.102.66 QUIT :Quit: Client closed < 1732006336 269752 :ski!~ski@remote11.chalmers.se QUIT :Read error: Connection reset by peer > 1732010632 667867 PRIVMSG #esolangs :14[[0714]]4 N10 02https://esolangs.org/w/index.php?oldid=145837 5* 03Iddi01 5* (+11933) 10I'm getting crazy with [[uniode]] > 1732011032 185063 PRIVMSG #esolangs :14[[07Uniode14]]4 M10 02https://esolangs.org/w/index.php?diff=145838&oldid=145479 5* 03Iddi01 5* (+679) 10/* */  < 1732011845 522207 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :I wonder if there's a system call interface that lets a process that's mostly single-threaded conspire with the operating system to lie to programs like top to pretend that it's busy on all processor cores, for when the customer or PR department or whatever heard that you can make any program run 24 times as fast by using multithreading and demands that you use it, but the task isn't actually reasonably < 1732011851 535633 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :paralellizable. This would be especially for hyperthreading where starting dummy threads could slow down the main thread even if they don't do any memory access. < 1732013594 349744 :iddi01!~iddi01@2604:9cc0:14:8d60:d5b0:dacd:a37a:e880 JOIN #esolangs * :[https://web.libera.chat] iddi01 < 1732013596 107115 :__monty__!~toonn@user/toonn JOIN #esolangs toonn :Unknown < 1732014582 870932 :iddi01!~iddi01@2604:9cc0:14:8d60:d5b0:dacd:a37a:e880 PRIVMSG #esolangs :!ztest clock >>>+<-<-(>(-)*128<+[<(-)*111(>)*9(+)*111(+.)*33(<)*9(-)*111(>)*10(+)*111(+.)*33(<)*10(---+)*-1]-)*8>+[-((-)*256<+[<(---+)*-1]->)*8(-)*96431<(+)*65(>)*9(>[(+)*111(+.)*32>])*19](+)*21<(-)*33(>)*11([(-)*106[-.][--+[--+]]>]>)*21 < 1732014583 771553 :zemhill!bfjoust@selene.zem.fi PRIVMSG #esolangs :iddi01.clock: points 9.43, score 40.93, rank 1/47 (+3) < 1732014598 178546 :iddi01!~iddi01@2604:9cc0:14:8d60:d5b0:dacd:a37a:e880 PRIVMSG #esolangs :!zjoust clock >>>+<-<-(>(-)*128<+[<(-)*111(>)*9(+)*111(+.)*33(<)*9(-)*111(>)*10(+)*111(+.)*33(<)*10(---+)*-1]-)*8>+[-((-)*256<+[<(---+)*-1]->)*8(-)*96431<(+)*65(>)*9(>[(+)*111(+.)*32>])*19](+)*21<(-)*33(>)*11([(-)*106[-.][--+[--+]]>]>)*21 < 1732014599 56668 :zemhill!bfjoust@selene.zem.fi PRIVMSG #esolangs :iddi01.clock: points 9.43, score 40.93, rank 1/47 (+3) > 1732014888 577768 PRIVMSG #esolangs :14[[07BF Joust champions14]]4 M10 02https://esolangs.org/w/index.php?diff=145839&oldid=144978 5* 03Iddi01 5* (+1018) 10/* 2024 */ wanted to wait until 2025, but i couldn't resist < 1732017811 459612 :chiselfuse!~chiselfus@user/chiselfuse QUIT :Remote host closed the connection < 1732018066 919054 :chiselfuse!~chiselfus@user/chiselfuse JOIN #esolangs chiselfuse :chiselfuse < 1732018887 796250 :iddi01!~iddi01@2604:9cc0:14:8d60:d5b0:dacd:a37a:e880 PRIVMSG #esolangs :fizzie: After looking at Core War which have multiple hills with different settings, i have an idea of a similar thing for BF joust: < 1732018888 297032 :iddi01!~iddi01@2604:9cc0:14:8d60:d5b0:dacd:a37a:e880 PRIVMSG #esolangs :Tiny hill: programs must have size lower than 100 excluding comments < 1732018888 821589 :iddi01!~iddi01@2604:9cc0:14:8d60:d5b0:dacd:a37a:e880 PRIVMSG #esolangs :Nano hill: programs must have size lower than 250, b u t abbreviations are treated as comments, so (+)*5 will mean + and so on. < 1732018889 297761 :iddi01!~iddi01@2604:9cc0:14:8d60:d5b0:dacd:a37a:e880 PRIVMSG #esolangs :Experimental hill: To allow for more complex strategies, tape size is 15-50 instead of 10-30, cells wrap at 512 instead of 256, and timeout is 250000 cycles. < 1732018889 796439 :iddi01!~iddi01@2604:9cc0:14:8d60:d5b0:dacd:a37a:e880 PRIVMSG #esolangs :2D hill: The tape becomes a grid with the two flags at opposite corners. < and ^ move towards your flag and > and v move towards the opponent's. Grid size is 5x5 to 15x15, including non-square ones < 1732018890 312919 :iddi01!~iddi01@2604:9cc0:14:8d60:d5b0:dacd:a37a:e880 PRIVMSG #esolangs :Fork hill: Add a Y instruction that works the same as in Brainfork except both threads share the same tape, Y takes one cycle and the threads execute sequentially with the parent thread going first, each taking one cycle. < 1732018890 820690 :iddi01!~iddi01@2604:9cc0:14:8d60:d5b0:dacd:a37a:e880 PRIVMSG #esolangs :These hills would ideally also have 47 slots, but the 2D hill could have fewer slots since each two programs plays 242 matches! < 1732018891 297183 :iddi01!~iddi01@2604:9cc0:14:8d60:d5b0:dacd:a37a:e880 PRIVMSG #esolangs :See the Core War sites https://sal.discontinuity.info/index.php and http://www.koth.org/koth.html for reference. < 1732019185 73513 :iddi01!~iddi01@2604:9cc0:14:8d60:d5b0:dacd:a37a:e880 PRIVMSG #esolangs :perlbot echo test < 1732019185 371408 :perlbot!~perlbot@perlbot/bot/simcop2387/perlbot PRIVMSG #esolangs :iddi01: test < 1732019223 500844 :Noisytoot!~noisytoot@user/meow/Noisytoot QUIT :Excess Flood < 1732019232 907291 :iddi01!~iddi01@2604:9cc0:14:8d60:d5b0:dacd:a37a:e880 PRIVMSG #esolangs :^echo perlbot echo ^echo < 1732019232 947565 :fungot!~fungot@2a01:4b00:82bb:1341::a PRIVMSG #esolangs :perlbot echo ^echo perlbot echo ^echo < 1732019233 201552 :perlbot!~perlbot@perlbot/bot/simcop2387/perlbot PRIVMSG #esolangs :fungot: ^echo perlbot echo ^echo < 1732019264 522473 :iddi01!~iddi01@2604:9cc0:14:8d60:d5b0:dacd:a37a:e880 PRIVMSG #esolangs :^echo: test < 1732019272 349960 :wib_jonas!~wib_jonas@business-37-191-60-209.business.broadband.hu JOIN #esolangs b_jonas :[https://web.libera.chat] wib_jonas < 1732019381 187971 :Noisytoot!~noisytoot@user/meow/Noisytoot JOIN #esolangs Noisytoot :Ron < 1732020526 472940 :iddi01!~iddi01@2604:9cc0:14:8d60:d5b0:dacd:a37a:e880 PRIVMSG #esolangs :perlbot call test < 1732020527 182487 :perlbot!~perlbot@perlbot/bot/simcop2387/perlbot PRIVMSG #esolangs :iddi01: [] < 1732020569 430027 :iddi01!~iddi01@2604:9cc0:14:8d60:d5b0:dacd:a37a:e880 PRIVMSG #esolangs :perlbot call tеst < 1732020569 689121 :perlbot!~perlbot@perlbot/bot/simcop2387/perlbot PRIVMSG #esolangs :iddi01: No factoid found. Did you mean one of these: [_test] [test] [tickit] [.tc] [.tg] [.tj] [.tk] [tk] [tx] [.tz] < 1732020970 547343 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… < 1732021151 644688 :iddi01!~iddi01@2604:9cc0:14:8d60:d5b0:dacd:a37a:e880 PRIVMSG #esolangs :^def echo_once bf ,[.,] < 1732021151 685457 :fungot!~fungot@2a01:4b00:82bb:1341::a PRIVMSG #esolangs :Defined. < 1732021184 892088 :iddi01!~iddi01@2604:9cc0:14:8d60:d5b0:dacd:a37a:e880 PRIVMSG #esolangs :^echo_once ^echo test < 1732021184 932328 :fungot!~fungot@2a01:4b00:82bb:1341::a PRIVMSG #esolangs :^echo test < 1732021194 244861 :iddi01!~iddi01@2604:9cc0:14:8d60:d5b0:dacd:a37a:e880 PRIVMSG #esolangs :^echo_once `echo test < 1732021194 286275 :fungot!~fungot@2a01:4b00:82bb:1341::a PRIVMSG #esolangs :`echo test < 1732021196 908809 :HackEso!~h@techne.zem.fi PRIVMSG #esolangs :test < 1732021219 542205 :iddi01!~iddi01@2604:9cc0:14:8d60:d5b0:dacd:a37a:e880 PRIVMSG #esolangs :^echo_once `echo perlbot echo test < 1732021219 583570 :fungot!~fungot@2a01:4b00:82bb:1341::a PRIVMSG #esolangs :`echo perlbot echo test < 1732021220 851454 :HackEso!~h@techne.zem.fi PRIVMSG #esolangs :perlbot echo test < 1732021221 99757 :perlbot!~perlbot@perlbot/bot/simcop2387/perlbot PRIVMSG #esolangs :HackEso: test < 1732021242 812736 :iddi01!~iddi01@2604:9cc0:14:8d60:d5b0:dacd:a37a:e880 PRIVMSG #esolangs :`echo ^echo test < 1732021244 131406 :HackEso!~h@techne.zem.fi PRIVMSG #esolangs :​^echo test < 1732021410 447954 :iddi01!~iddi01@2604:9cc0:14:8d60:d5b0:dacd:a37a:e880 PRIVMSG #esolangs :`echo perlbot echo fungot < 1732021410 708218 :fungot!~fungot@2a01:4b00:82bb:1341::a PRIVMSG #esolangs :iddi01: i've used guile ( for snd) and gambit ( with the new " agile" < 1732021411 587623 :HackEso!~h@techne.zem.fi PRIVMSG #esolangs :perlbot echo fungot < 1732021411 789126 :perlbot!~perlbot@perlbot/bot/simcop2387/perlbot PRIVMSG #esolangs :HackEso: fungot < 1732021531 250316 :iddi01!~iddi01@2604:9cc0:14:8d60:d5b0:dacd:a37a:e880 QUIT :Quit: Client closed > 1732022909 548886 PRIVMSG #esolangs :14[[07~~14]]4 10 02https://esolangs.org/w/index.php?diff=145840&oldid=145486 5* 03Yayimhere 5* (+65) 10/* syntax */ < 1732024753 350632 :wWwwW!~wWwwW@94.147.203.75 JOIN #esolangs * :[https://web.libera.chat] wWwwW < 1732025123 763139 :ais523!~ais523@user/ais523 QUIT :Quit: quit < 1732025946 170952 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User > 1732026424 659170 PRIVMSG #esolangs :14[[07OTS14]]4 10 02https://esolangs.org/w/index.php?diff=145841&oldid=145657 5* 03Yayimhere 5* (+2) 10/* memory */ > 1732027001 508290 PRIVMSG #esolangs :14[[07OTS14]]4 10 02https://esolangs.org/w/index.php?diff=145842&oldid=145841 5* 03Yayimhere 5* (+213) 10/* commands */ > 1732028000 962662 PRIVMSG #esolangs :14[[07User:Win7HE14]]4 10 02https://esolangs.org/w/index.php?diff=145843&oldid=145751 5* 03Win7HE 5* (+8) 10 < 1732028247 711747 :craigo!~craigo@user/craigo QUIT :Quit: Leaving < 1732028321 348275 :win7he!~win7he@m193-216-25-115.cust.tele2.lt JOIN #esolangs * :[https://web.libera.chat] win7he < 1732028349 585338 :win7he!~win7he@m193-216-25-115.cust.tele2.lt PRIVMSG #esolangs :hmmmmm < 1732028377 136295 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :hello? why are you "hmm"ing < 1732028394 762632 :win7he!~win7he@m193-216-25-115.cust.tele2.lt PRIVMSG #esolangs :testing < 1732028411 95286 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :testing what < 1732028428 201711 :win7he!~win7he@m193-216-25-115.cust.tele2.lt PRIVMSG #esolangs :yea nothing < 1732028436 56603 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :lol < 1732028443 835168 :win7he!~win7he@m193-216-25-115.cust.tele2.lt PRIVMSG #esolangs :https://logs.esolangs.org/libera-esolangs/2024-11-19.html < 1732028463 656396 :win7he!~win7he@m193-216-25-115.cust.tele2.lt PRIVMSG #esolangs :heres the logs for today < 1732028756 668510 :win7he!~win7he@m193-216-25-115.cust.tele2.lt PRIVMSG #esolangs :testing > 1732029015 968389 PRIVMSG #esolangs :14[[07Eso14]]4 N10 02https://esolangs.org/w/index.php?oldid=145844 5* 03Win7HE 5* (+28) 10Created page with "i think you mean [[Esolang]]" < 1732029040 747566 :win7he!~win7he@m193-216-25-115.cust.tele2.lt PRIVMSG #esolangs :oh < 1732029047 243340 :win7he!~win7he@m193-216-25-115.cust.tele2.lt PRIVMSG #esolangs :that happpens < 1732029600 350264 :win7he31!~win7he@m193-216-25-115.cust.tele2.lt JOIN #esolangs * :[https://web.libera.chat] win7he < 1732029603 540886 :win7he31!~win7he@m193-216-25-115.cust.tele2.lt PRIVMSG #esolangs :umm < 1732029615 503465 :win7he31!~win7he@m193-216-25-115.cust.tele2.lt QUIT :Client Quit < 1732029626 374159 :win7he25!~win7he@m193-216-25-115.cust.tele2.lt JOIN #esolangs * :[https://web.libera.chat] win7he < 1732029638 734567 :win7he25!~win7he@m193-216-25-115.cust.tele2.lt PRIVMSG #esolangs :this is a nice number < 1732029645 71132 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :lol < 1732029651 766202 :m5zs7k!aquares@web10.mydevil.net QUIT :Read error: Connection reset by peer < 1732029667 999195 :win7he25!~win7he@m193-216-25-115.cust.tele2.lt PRIVMSG #esolangs :yea i dissconnected < 1732029674 268257 :m5zs7k!aquares@web10.mydevil.net JOIN #esolangs m5zs7k :m5zs7k < 1732029793 958856 :win7he25!~win7he@m193-216-25-115.cust.tele2.lt PRIVMSG #esolangs :e < 1732029829 349075 :win7he!~win7he@m193-216-25-115.cust.tele2.lt QUIT :Ping timeout: 256 seconds < 1732029839 626738 :win7he25!~win7he@m193-216-25-115.cust.tele2.lt PRIVMSG #esolangs :thank god < 1732029877 28366 :win7he25!~win7he@m193-216-25-115.cust.tele2.lt NICK :win7he < 1732029892 725972 :win7he!~win7he@m193-216-25-115.cust.tele2.lt PRIVMSG #esolangs :ok now im me < 1732030066 911586 :win7he!~win7he@m193-216-25-115.cust.tele2.lt PRIVMSG #esolangs :Etic poramig lage < 1732030347 894845 :win7he!~win7he@m193-216-25-115.cust.tele2.lt QUIT :Quit: Client closed < 1732031616 731362 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… > 1732032026 843081 PRIVMSG #esolangs :14[[07Special:Log/newusers14]]4 create10 02 5* 03DevThatCodes 5* 10New user account < 1732032106 852706 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :hey korvo umm i want to disagree with you on that NSA FF discussion we had yester day > 1732032498 90309 PRIVMSG #esolangs :14[[07Esolang:Introduce yourself14]]4 10 02https://esolangs.org/w/index.php?diff=145845&oldid=145747 5* 03DevThatCodes 5* (+91) 10/* Introductions */ < 1732032531 974581 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :lol > 1732032581 248676 PRIVMSG #esolangs :14[[07Esolang:Introduce yourself14]]4 10 02https://esolangs.org/w/index.php?diff=145846&oldid=145845 5* 03DevThatCodes 5* (+99) 10/* Introductions */ > 1732032747 193877 PRIVMSG #esolangs :14[[07Zudjn14]]4 N10 02https://esolangs.org/w/index.php?oldid=145847 5* 03DevThatCodes 5* (+73) 10Created page with "Zudjn is a small Esolang that i have not made yet, but i am working on it" > 1732033460 962740 PRIVMSG #esolangs :14[[07Zudjn14]]4 10 02https://esolangs.org/w/index.php?diff=145848&oldid=145847 5* 03DevThatCodes 5* (+64) 10 > 1732033803 974242 PRIVMSG #esolangs :14[[07Special:Log/newusers14]]4 create10 02 5* 03Malbolger 5* 10New user account < 1732034144 582571 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User < 1732034297 611743 :wib_jonas!~wib_jonas@business-37-191-60-209.business.broadband.hu QUIT :Quit: Client closed < 1732034515 348165 :wib_jonas!~wib_jonas@business-37-191-60-209.business.broadband.hu JOIN #esolangs b_jonas :[https://web.libera.chat] wib_jonas < 1732034812 312123 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… < 1732035445 902656 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User < 1732035548 54396 :wib_jonas!~wib_jonas@business-37-191-60-209.business.broadband.hu QUIT :Quit: Client closed < 1732035945 267727 :amby!~ambylastn@ward-15-b2-v4wan-167229-cust809.vm18.cable.virginm.net JOIN #esolangs amby :realname < 1732036496 227057 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :wWwwW: What's up? < 1732036507 576272 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :well im god what about you < 1732036510 913450 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :*good < 1732036539 767118 :FreeFull!~freefull@46.205.206.114.nat.ftth.dynamic.t-mobile.pl QUIT : < 1732036562 36276 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :Just woke up and watered the plants. < 1732036680 284727 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :damn < 1732036681 284347 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :wai < 1732036684 661358 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :but < 1732036686 807323 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :oh yea < 1732037163 717422 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :wWwwW: So, what were your thoughts? < 1732037194 31877 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :well < 1732037199 752427 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :i had that pointer yesterday < 1732037245 793634 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :first of all in the "run each possible program at the same time" has more states running then "actually do it randomly each time" has only one running < 1732037246 772591 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :also < 1732037308 79156 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :in FF if you say "i will label each state by what pointer is running it" you are actually creating states < 1732037325 926038 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :the difference is the both pointers run in the same program < 1732037378 176773 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :I learned the old ways, so I only know this in terms of Mealy and Moore machines, which I constantly mix up. Nonetheless, I don't see how states are being created here. < 1732037391 870844 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :hmmmm < 1732037399 756304 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :i dont know how to explain it otherwise < 1732037405 329028 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :ok heres another question < 1732037408 467829 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :FSMs don't have pointers. They have states and inputs, along with a transition function that maps a (state, input) pair to the next state. < 1732037423 697715 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :waaait < 1732037438 603344 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :how i understand it theres a pointer that trantisions and points to current state < 1732037450 720209 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :Evaluating an NFA can be done by simulating multiple pointers on top of its DFA, *or* by expanding the NFA to a DFA with exponentially-many states; they're two different equivalent techniques. < 1732037451 443719 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :thats how FF works anyway < 1732037486 684348 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :A pointer is an implementation detail. A pointer to a state is an implementation of a state. < 1732037503 297440 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :true < 1732037515 618550 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :but in FF you have to implement it that way otherwise it would be cheating < 1732037565 723147 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :That's pro-DRM thinking. < 1732037570 694318 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :? < 1732037588 523498 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :That's the same sort of thinking that leads to people trying to control what you can run on your computer. < 1732037597 342783 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :lol < 1732037611 443104 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :well agian you dont have to but thats the way i specify it < 1732037707 125301 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :ok we can agree that we disagree < 1732037719 108692 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :Nah, I don't really go for that whole Discord-coded playground approach with imaginary rules and geass-like restrictions that are magically cast on people by saying the special words. < 1732037757 908193 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :Do you think that it's cheating to implement an optimized Brainfuck interpreter? A Malbolge decryptor? A C compiler which defines some of the undefined behaviors? < 1732037772 958330 :wWwwW!~wWwwW@94.147.203.75 PRIVMSG #esolangs :no < 1732037981 153092 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :wWwwW: Sorry, that was mean of me. I'm glad that you're discovering important concepts like FSMs, even if I'm frustrated that you aren't engaging yourself with them. > 1732039333 283862 PRIVMSG #esolangs :14[[07Eso14]]4 10 02https://esolangs.org/w/index.php?diff=145849&oldid=145844 5* 03Ractangle 5* (-7) 10Redirected page to [[Esolang]] < 1732040151 487487 :FreeFull!~freefull@46.205.206.114.nat.ftth.dynamic.t-mobile.pl JOIN #esolangs FreeFull :FreeFull < 1732040674 824082 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… < 1732041015 423359 :wWwwW!~wWwwW@94.147.203.75 QUIT :Ping timeout: 256 seconds < 1732041571 406519 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User > 1732042373 973840 PRIVMSG #esolangs :14[[07Talk:Eso14]]4 N10 02https://esolangs.org/w/index.php?oldid=145850 5* 03Aadenboy 5* (+306) 10Created page with "is this necessary? ~~~~" > 1732043417 359257 PRIVMSG #esolangs :14[[07Talk:Eso14]]4 10 02https://esolangs.org/w/index.php?diff=145851&oldid=145850 5* 03Ractangle 5* (+204) 10 < 1732043799 453569 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… > 1732043873 186049 PRIVMSG #esolangs :14[[07Talk:Eso14]]4 10 02https://esolangs.org/w/index.php?diff=145852&oldid=145851 5* 03Aadenboy 5* (+297) 10 < 1732043898 335072 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User < 1732045813 43609 :simcop2387!~simcop238@perlbot/patrician/simcop2387 QUIT :Quit: ZNC 1.8.2+deb3.1+deb12u1 - https://znc.in < 1732045813 81260 :perlbot!~perlbot@perlbot/bot/simcop2387/perlbot QUIT :Quit: ZNC 1.8.2+deb3.1+deb12u1 - https://znc.in > 1732045994 476264 PRIVMSG #esolangs :14[[07Comment14]]4 10 02https://esolangs.org/w/index.php?diff=145853&oldid=145829 5* 03Ractangle 5* (+18) 10/* Gammaline languages */ < 1732046515 288397 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :I do not think that it is cheating to implement a optimized brainfuck interpreter, at least in general. (This is not a requirement to implement a optimized brainfuck interpreter, though.) < 1732047018 969857 :korvo!~korvo@2604:a880:4:1d0::4d6:d000 PRIVMSG #esolangs :Sure. I was too rhetorical. I didn't have a good reaction to "you have to implement it that way otherwise it would be cheating". When it comes from a teenager, it's cute and naive, but in the USA it usually comes from preachers and legislators. > 1732049202 944937 PRIVMSG #esolangs :14[[07Special:Log/newusers14]]4 create10 02 5* 03Maza 5* 10New user account > 1732049734 925570 PRIVMSG #esolangs :14[[07Esolang:Introduce yourself14]]4 M10 02https://esolangs.org/w/index.php?diff=145854&oldid=145846 5* 03Maza 5* (+168) 10 < 1732050153 480314 :simcop2387!~simcop238@perlbot/patrician/simcop2387 JOIN #esolangs simcop2387 :ZNC - https://znc.in < 1732050212 399500 :perlbot!~perlbot@perlbot/bot/simcop2387/perlbot JOIN #esolangs perlbot :ZNC - https://znc.in < 1732050490 535578 :mcfrd!~mcfrdy@user/mcfrdy JOIN #esolangs mcfrdy :mcfrdy < 1732050510 462323 :mcfrdy!~mcfrdy@user/mcfrdy QUIT :Ping timeout: 276 seconds < 1732050668 183521 :mcfrd!~mcfrdy@user/mcfrdy NICK :mcfrdy < 1732052219 255741 :__monty__!~toonn@user/toonn QUIT :Quit: leaving > 1732052322 653230 PRIVMSG #esolangs :14[[0714]]4 M10 02https://esolangs.org/w/index.php?diff=145855&oldid=145837 5* 03PythonshellDebugwindow 5* (-194) 10Categories > 1732052514 949089 PRIVMSG #esolangs :14[[07Manuever14]]4 M10 02https://esolangs.org/w/index.php?diff=145856&oldid=145684 5* 03PythonshellDebugwindow 5* (+153) 10Categories > 1732052577 803530 PRIVMSG #esolangs :14[[07g14]]4 M10 02https://esolangs.org/w/index.php?diff=145857&oldid=145694 5* 03PythonshellDebugwindow 5* (+108) 10Categories > 1732052671 239196 PRIVMSG #esolangs :14[[07AnnoyingScript14]]4 M10 02https://esolangs.org/w/index.php?diff=145858&oldid=145728 5* 03PythonshellDebugwindow 5* (+115) 10Categories < 1732052699 906661 :Everything!~Everythin@46-133-188-81.mobile.vf-ua.net JOIN #esolangs Everything :Everything > 1732052836 220097 PRIVMSG #esolangs :14[[07Stuley14]]4 M10 02https://esolangs.org/w/index.php?diff=145859&oldid=145824 5* 03PythonshellDebugwindow 5* (+51) 10Stub, categories > 1732052959 176001 PRIVMSG #esolangs :14[[07Pararedox14]]4 M10 02https://esolangs.org/w/index.php?diff=145860&oldid=145733 5* 03PythonshellDebugwindow 5* (+32) 10Template, categories > 1732053094 473120 PRIVMSG #esolangs :14[[07Halforth14]]4 M10 02https://esolangs.org/w/index.php?diff=145861&oldid=145770 5* 03PythonshellDebugwindow 5* (+71) 10Link, categories < 1732053193 328030 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :Is there a bijective base 2 Morse code? It seem to me that it can be done, with zero meaning a space between words, 1 for E, 2 for T, etc. > 1732053329 419021 PRIVMSG #esolangs :14[[07Estrita14]]4 M10 02https://esolangs.org/w/index.php?diff=145862&oldid=145798 5* 03PythonshellDebugwindow 5* (+24) 10Category > 1732053482 396798 PRIVMSG #esolangs :14[[07RuleLoader14]]4 M10 02https://esolangs.org/w/index.php?diff=145863&oldid=145815 5* 03PythonshellDebugwindow 5* (-42) 10Remove incorrect {{deadlink}}s and empty section, add link > 1732053568 687572 PRIVMSG #esolangs :14[[07Zudjn14]]4 M10 02https://esolangs.org/w/index.php?diff=145864&oldid=145848 5* 03PythonshellDebugwindow 5* (+82) 10Stub, categories > 1732053673 323861 PRIVMSG #esolangs :14[[07Special:Log/newusers14]]4 create10 02 5* 03Mint 5* 10New user account > 1732053684 154721 PRIVMSG #esolangs :14[[07Fiifinite14]]4 M10 02https://esolangs.org/w/index.php?diff=145865&oldid=145776 5* 03PythonshellDebugwindow 5* (+69) 10Categories < 1732054733 867213 :ais523!~ais523@user/ais523 JOIN #esolangs ais523 :(this is obviously not my real name) < 1732056455 3614 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… > 1732058902 494480 PRIVMSG #esolangs :14[[07Pi Calculus14]]4 10 02https://esolangs.org/w/index.php?diff=145866&oldid=139870 5* 03Woofmao 5* (+371) 10Extend cat example