< 1707875161 914329 :Lord_of_Life!~Lord@user/lord-of-life/x-2819915 QUIT :Ping timeout: 264 seconds < 1707875259 170620 :Lord_of_Life!~Lord@user/lord-of-life/x-2819915 JOIN #esolangs Lord_of_Life :Lord > 1707876163 502411 PRIVMSG #esolangs :14[[07Captive14]]4 N10 02https://esolangs.org/w/index.php?oldid=123365 5* 03Rottytooth 5* (+4128) 10New language: Captive > 1707876225 391834 PRIVMSG #esolangs :14[[07User:Rottytooth14]]4 10 02https://esolangs.org/w/index.php?diff=123366&oldid=58389 5* 03Rottytooth 5* (-34) 10added language > 1707882836 462521 PRIVMSG #esolangs :14[[07LottoScript14]]4 N10 02https://esolangs.org/w/index.php?oldid=123367 5* 03Imakesi 5* (+1028) 10Created page with "LottoScript is an esolang with five randomized commands: {| class="wikitable" |+ Commands |- ! Command !! Name !! Function |- | Add || [ADD] || Add 1, or 10 (see later at EXR) to the cell |- | Subtract || [SUB] || Remove 1, or 10 (ditto) from the cell |- | Append | > 1707882882 923349 PRIVMSG #esolangs :14[[07LottoScript14]]4 10 02https://esolangs.org/w/index.php?diff=123368&oldid=123367 5* 03Imakesi 5* (+2) 10 > 1707882906 921401 PRIVMSG #esolangs :14[[07LottoScript14]]4 10 02https://esolangs.org/w/index.php?diff=123369&oldid=123368 5* 03Imakesi 5* (+0) 10 > 1707882999 745461 PRIVMSG #esolangs :14[[07LottoScript14]]4 10 02https://esolangs.org/w/index.php?diff=123370&oldid=123369 5* 03Imakesi 5* (+197) 10 > 1707883226 229982 PRIVMSG #esolangs :14[[07LottoScript14]]4 10 02https://esolangs.org/w/index.php?diff=123371&oldid=123370 5* 03Imakesi 5* (+189) 10 > 1707883388 66810 PRIVMSG #esolangs :14[[07LottoScript14]]4 10 02https://esolangs.org/w/index.php?diff=123372&oldid=123371 5* 03Imakesi 5* (+1109) 10 > 1707883403 338650 PRIVMSG #esolangs :14[[07LottoScript14]]4 10 02https://esolangs.org/w/index.php?diff=123373&oldid=123372 5* 03Imakesi 5* (-4) 10 > 1707883505 947012 PRIVMSG #esolangs :14[[07LottoScript14]]4 10 02https://esolangs.org/w/index.php?diff=123374&oldid=123373 5* 03Imakesi 5* (-32) 10 > 1707883549 790950 PRIVMSG #esolangs :14[[07LottoScript14]]4 10 02https://esolangs.org/w/index.php?diff=123375&oldid=123374 5* 03Imakesi 5* (+21) 10 < 1707895558 990701 :perlbot!~perlbot@perlbot/bot/simcop2387/perlbot QUIT :Ping timeout: 255 seconds < 1707895617 77624 :perlbot!~perlbot@perlbot/bot/simcop2387/perlbot JOIN #esolangs perlbot :ZNC - https://znc.in < 1707895729 884064 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :so a problem I'm kind-of stuck on at the moment: given a directed acyclic graph, determine whether or not there are two different paths connecting the same two points < 1707895737 647927 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :it's easy to do in quadratic time, but I'm wondering whether it can be done faster < 1707895757 106856 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :(these are directed paths, otherwise it'd be easy) < 1707895808 329096 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :actually, I'm less interested in the problem itself and more interested in what sort of data structure solves it < 1707896515 955192 :Koen_!~Koen@2a01:e34:ec7c:30:e13d:fb85:1fa5:482 JOIN #esolangs * :Koen < 1707899134 349853 :Sgeo!~Sgeo@user/sgeo QUIT :Read error: Connection reset by peer < 1707900647 222221 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :ais523: do you need two paths that are merely different, or edge-disjoint, or node-disjoint? < 1707900695 151085 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :b_jonas: merely different – although all the definitions are the same because it's not "between two particular points" but "between any two points" < 1707900717 451125 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :so if there are two paths between A and B that both go through C, for example, there are also two paths from either A to C or C to B < 1707900738 800858 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :(or both) < 1707900762 582013 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :so if it can be done with two arbitrary paths, it can also be done with two node-disjoint (apart from the endpoints) paths < 1707900766 229198 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :oh, between any two points < 1707900847 314552 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :between two particular points is easy I think, just do a tsort to see which point comes earlier, then a BFS from the earlier point that counts the number of paths from that point to each other point < 1707900856 662249 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :yeah, any two points sounds less trivial < 1707900862 685866 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :(my quadratic-time algorithm is doing that starting from every point) < 1707900895 926391 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :(or, well, skipping the ones that are downstream of a point you've already checked) < 1707900904 230200 :ais523!~ais523@user/ais523 PRIVMSG #esolangs :(but that doesn't change the computational complexity) < 1707901080 555811 :b_jonas!~x@88.87.242.184 QUIT :Quit: leaving < 1707901709 960880 :ais523!~ais523@user/ais523 QUIT :Quit: quit < 1707906688 812926 :supercode!~supercode@user/supercode JOIN #esolangs supercode :[https://web.libera.chat] supercode < 1707912526 242439 :__monty__!~toonn@12.red-2-138-164.dynamicip.rima-tde.net JOIN #esolangs * :Unknown < 1707912534 2064 :__monty__!~toonn@12.red-2-138-164.dynamicip.rima-tde.net QUIT :Client Quit < 1707912742 821137 :__monty__!~toonn@user/toonn JOIN #esolangs toonn :Unknown < 1707914184 567886 :supercode!~supercode@user/supercode QUIT :Quit: Client closed < 1707914205 556020 :GregorR!~GregorR@71.19.155.102 QUIT :Quit: Ping timeout (120 seconds) < 1707914416 142892 :GregorR!~GregorR@71.19.155.102 JOIN #esolangs GregorR :Gregor Richards < 1707917294 329965 :sknebel!~quassel@v22016013254630973.happysrv.de QUIT :Remote host closed the connection < 1707917379 248059 :sknebel!~quassel@v22016013254630973.happysrv.de JOIN #esolangs sknebel :sknebel < 1707918022 798195 :supercode!~supercode@user/supercode JOIN #esolangs supercode :[https://web.libera.chat] supercode > 1707918857 139632 PRIVMSG #esolangs :14[[07Captive14]]4 10 02https://esolangs.org/w/index.php?diff=123376&oldid=123365 5* 03Rottytooth 5* (+1136) 10Cleaned up wording and styling > 1707919551 317723 PRIVMSG #esolangs :14[[07Captive14]]4 10 02https://esolangs.org/w/index.php?diff=123377&oldid=123376 5* 03Rottytooth 5* (+294) 10Added notes to command table > 1707919819 647237 PRIVMSG #esolangs :14[[07Captive14]]4 10 02https://esolangs.org/w/index.php?diff=123378&oldid=123377 5* 03Rottytooth 5* (+253) 10Added to do list > 1707920240 653144 PRIVMSG #esolangs :14[[07Captive14]]4 M10 02https://esolangs.org/w/index.php?diff=123379&oldid=123378 5* 03Rottytooth 5* (+3) 10/* Constants */ > 1707920774 25987 PRIVMSG #esolangs :14[[07Captive14]]4 M10 02https://esolangs.org/w/index.php?diff=123380&oldid=123379 5* 03Rottytooth 5* (+1) 10/* Concept */ < 1707920800 259983 :FreeFull!~freefull@46.205.205.212.nat.ftth.dynamic.t-mobile.pl QUIT : > 1707921414 271320 PRIVMSG #esolangs :14[[07User:Rottytooth14]]4 10 02https://esolangs.org/w/index.php?diff=123381&oldid=123366 5* 03Rottytooth 5* (+169) 10 > 1707921495 766814 PRIVMSG #esolangs :14[[07Captive14]]4 10 02https://esolangs.org/w/index.php?diff=123382&oldid=123380 5* 03Rottytooth 5* (+303) 10/* Moby Dick */ > 1707923341 142507 PRIVMSG #esolangs :14[[07Pathfollow14]]4 N10 02https://esolangs.org/w/index.php?oldid=123383 5* 03AnotherUser05 5* (+610) 10Created page with "'''Pathfollow''' is an esolang invented by [[User:AnotherUser05]]. ==Commands== @ start of IP | IP follows this vertically - IP follows this horizontally + corner turn ^ one ways 0-9 add to value ; get an input and add it to the value : output the c > 1707924452 71973 PRIVMSG #esolangs :14[[07Captive14]]4 M10 02https://esolangs.org/w/index.php?diff=123384&oldid=123382 5* 03Rottytooth 5* (+77) 10/* To Do */ > 1707925469 289763 PRIVMSG #esolangs :14[[07Pathfollow14]]4 10 02https://esolangs.org/w/index.php?diff=123385&oldid=123383 5* 03AnotherUser05 5* (+354) 10 > 1707925541 200657 PRIVMSG #esolangs :14[[07Pathfollow14]]4 10 02https://esolangs.org/w/index.php?diff=123386&oldid=123385 5* 03AnotherUser05 5* (+22) 10/* Commands */ > 1707925577 713151 PRIVMSG #esolangs :14[[07User:AnotherUser0514]]4 10 02https://esolangs.org/w/index.php?diff=123387&oldid=123331 5* 03AnotherUser05 5* (+27) 10 > 1707925589 960067 PRIVMSG #esolangs :14[[07User:AnotherUser0514]]4 10 02https://esolangs.org/w/index.php?diff=123388&oldid=123387 5* 03AnotherUser05 5* (-1) 10 > 1707925661 854547 PRIVMSG #esolangs :14[[07Pathfollow14]]4 10 02https://esolangs.org/w/index.php?diff=123389&oldid=123386 5* 03AnotherUser05 5* (+59) 10 < 1707926173 895618 :__monty__!~toonn@user/toonn QUIT :Ping timeout: 264 seconds < 1707926979 101641 :__monty__!~toonn@user/toonn JOIN #esolangs toonn :Unknown < 1707928298 847066 :SGautam!uid286066@id-286066.ilkley.irccloud.com JOIN #esolangs SGautam :Siddharth Gautam > 1707929260 145249 PRIVMSG #esolangs :14[[07Captive14]]4 M10 02https://esolangs.org/w/index.php?diff=123390&oldid=123384 5* 03Rottytooth 5* (-6) 10/* Example Programs */ < 1707933319 384427 :supercode!~supercode@user/supercode QUIT :Quit: Client closed > 1707933701 361852 PRIVMSG #esolangs :14[[07Rooms14]]4 10 02https://esolangs.org/w/index.php?diff=123391&oldid=123306 5* 03Yourusername 5* (+128) 10/* Return */ > 1707933723 361717 PRIVMSG #esolangs :14[[07Rooms14]]4 10 02https://esolangs.org/w/index.php?diff=123392&oldid=123391 5* 03Yourusername 5* (+7) 10/* Run with Args */ > 1707933821 332935 PRIVMSG #esolangs :14[[07Rooms14]]4 10 02https://esolangs.org/w/index.php?diff=123393&oldid=123392 5* 03Yourusername 5* (+44) 10/* Run with Args */ > 1707933884 98532 PRIVMSG #esolangs :14[[07Rooms14]]4 10 02https://esolangs.org/w/index.php?diff=123394&oldid=123393 5* 03Yourusername 5* (+78) 10/* Pickup */ > 1707933939 808754 PRIVMSG #esolangs :14[[07Rooms14]]4 10 02https://esolangs.org/w/index.php?diff=123395&oldid=123394 5* 03Yourusername 5* (+34) 10/* Place */ > 1707933950 744003 PRIVMSG #esolangs :14[[07Rooms14]]4 10 02https://esolangs.org/w/index.php?diff=123396&oldid=123395 5* 03Yourusername 5* (+0) 10/* Pickup */ > 1707934103 128162 PRIVMSG #esolangs :14[[07Rooms14]]4 10 02https://esolangs.org/w/index.php?diff=123397&oldid=123396 5* 03Yourusername 5* (+198) 10/* Delete */ > 1707934133 654701 PRIVMSG #esolangs :14[[07Rooms14]]4 10 02https://esolangs.org/w/index.php?diff=123398&oldid=123397 5* 03Yourusername 5* (+1) 10/* Auto Run what you are holding */ > 1707934157 671966 PRIVMSG #esolangs :14[[07Rooms14]]4 10 02https://esolangs.org/w/index.php?diff=123399&oldid=123398 5* 03Yourusername 5* (+0) 10/* Data */ > 1707934334 823726 PRIVMSG #esolangs :14[[07Rooms14]]4 10 02https://esolangs.org/w/index.php?diff=123400&oldid=123399 5* 03Yourusername 5* (-3) 10/* Split */ > 1707934468 758296 PRIVMSG #esolangs :14[[07Rooms14]]4 10 02https://esolangs.org/w/index.php?diff=123401&oldid=123400 5* 03Yourusername 5* (+76) 10/* Split */ > 1707934510 685844 PRIVMSG #esolangs :14[[07Rooms14]]4 10 02https://esolangs.org/w/index.php?diff=123402&oldid=123401 5* 03Yourusername 5* (+18) 10/* Split */ > 1707934706 450366 PRIVMSG #esolangs :14[[07Rooms14]]4 10 02https://esolangs.org/w/index.php?diff=123403&oldid=123402 5* 03Yourusername 5* (+19) 10/* Rooms */ > 1707934752 696235 PRIVMSG #esolangs :14[[07Rooms14]]4 10 02https://esolangs.org/w/index.php?diff=123404&oldid=123403 5* 03Yourusername 5* (+48) 10/* Pickup */ > 1707934789 859079 PRIVMSG #esolangs :14[[07Rooms14]]4 10 02https://esolangs.org/w/index.php?diff=123405&oldid=123404 5* 03Yourusername 5* (+39) 10/* Pickup */ < 1707934835 793344 :Koen_!~Koen@2a01:e34:ec7c:30:e13d:fb85:1fa5:482 QUIT :Quit: Leaving... > 1707934917 687451 PRIVMSG #esolangs :14[[07Rooms14]]4 10 02https://esolangs.org/w/index.php?diff=123406&oldid=123405 5* 03Yourusername 5* (+73) 10/* Data */ > 1707934977 581772 PRIVMSG #esolangs :14[[07Rooms14]]4 10 02https://esolangs.org/w/index.php?diff=123407&oldid=123406 5* 03Yourusername 5* (-10) 10/* Print */ > 1707935025 803883 PRIVMSG #esolangs :14[[07Rooms14]]4 10 02https://esolangs.org/w/index.php?diff=123408&oldid=123407 5* 03Yourusername 5* (+46) 10/* Print */ > 1707935056 316775 PRIVMSG #esolangs :14[[07Rooms14]]4 10 02https://esolangs.org/w/index.php?diff=123409&oldid=123408 5* 03Yourusername 5* (+15) 10/* Pickup Pickup */ > 1707935136 123132 PRIVMSG #esolangs :14[[07Rooms14]]4 10 02https://esolangs.org/w/index.php?diff=123410&oldid=123409 5* 03Yourusername 5* (+79) 10/* Examples */ > 1707935170 857288 PRIVMSG #esolangs :14[[07Rooms14]]4 10 02https://esolangs.org/w/index.php?diff=123411&oldid=123410 5* 03Yourusername 5* (+1) 10/* Print */ > 1707935453 187213 PRIVMSG #esolangs :14[[07Rooms14]]4 10 02https://esolangs.org/w/index.php?diff=123412&oldid=123411 5* 03Yourusername 5* (+48) 10/* Run on run */ > 1707935833 17102 PRIVMSG #esolangs :14[[07Rooms14]]4 10 02https://esolangs.org/w/index.php?diff=123413&oldid=123412 5* 03Yourusername 5* (+60) 10/* Pickup Pickup */ < 1707935928 646186 :b_jonas!~x@88.87.242.184 JOIN #esolangs b_jonas :b_jonas < 1707936066 96580 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :ais523: interesting question. I'm trying to think about the restricted version where the digraph doesn't have 3 long directed paths, so there are just three layers and you want to find two length 2 directed paths with the same start and endpoint. < 1707937733 124499 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :Oh man, someone mentioned N Step Steve and my save file is apparently gone. < 1707937739 331209 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :Which is what I expect from browser-based things. < 1707938352 902568 :fizzie!~irc@selene.zem.fi PRIVMSG #esolangs :More browser-based things should have a save game export/import facility so you can put them in just regular files if they're important. < 1707940662 317717 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :Right. < 1707940668 758406 :shachaf!~shachaf@user/shachaf PRIVMSG #esolangs :Though I'd rather this just not be a browser-based thing. > 1707942245 751 PRIVMSG #esolangs :14[[07Pathfollow14]]4 10 02https://esolangs.org/w/index.php?diff=123414&oldid=123389 5* 03AnotherUser05 5* (+11) 10/* Hello, World! Program */ > 1707942276 64007 PRIVMSG #esolangs :14[[07Pathfollow14]]4 10 02https://esolangs.org/w/index.php?diff=123415&oldid=123414 5* 03AnotherUser05 5* (+15) 10/* Truth Machine */ > 1707942361 852242 PRIVMSG #esolangs :14[[07Pathfollow14]]4 M10 02https://esolangs.org/w/index.php?diff=123416&oldid=123415 5* 03AnotherUser05 5* (+23) 10/* Commands */ > 1707943018 758001 PRIVMSG #esolangs :14[[07Hello, golf!14]]4 M10 02https://esolangs.org/w/index.php?diff=123417&oldid=105418 5* 03PythonshellDebugwindow 5* (+160) 10Categories > 1707943659 289078 PRIVMSG #esolangs :14[[07Entropy14]]4 10 02https://esolangs.org/w/index.php?diff=123418&oldid=84666 5* 03Rottytooth 5* (-81) 10Removed dead links, added link to project site < 1707944332 671553 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :I made up a font, now. (I think some other people on here have also made up a font.) < 1707944459 573939 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :It includes JIS X 0213, JIS X 0212, GB 2312, KS C 5601, 6-dot Braille, and 8-dot Braille. However, only the braille is my own glyphs; the others are from other sources < 1707944575 580749 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :(I also put them together in one font; previously they were separated by several fonts) < 1707946469 355852 :b_jonas!~x@88.87.242.184 PRIVMSG #esolangs :zzo38: https://esolangs.org/wiki/Font < 1707949398 178676 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl JOIN #esolangs * :Textual User < 1707949865 305258 :SGautam!uid286066@id-286066.ilkley.irccloud.com QUIT :Quit: Connection closed for inactivity < 1707950945 47574 :Sgeo!~Sgeo@user/sgeo JOIN #esolangs Sgeo :realname < 1707952278 338198 :ais523!~ais523@user/ais523 JOIN #esolangs ais523 :(this is obviously not my real name) < 1707952583 417626 :tromp!~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl QUIT :Quit: My iMac has gone to sleep. ZZZzzz… < 1707952681 917891 :__monty__!~toonn@user/toonn QUIT :Quit: leaving < 1707953779 770457 :Koen_!~Koen@2a01:e34:ec7c:30:98a:b40b:6a01:563 JOIN #esolangs * :Koen < 1707954003 18582 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :b_jonas: Thank you. However, what I made is a bit different from those, and has a different format, and is mostly combined from other fonts (the file which was used to control the combination is available too). (It might be possible to write a converter into pcf and other bitmap font formats, although I have not done so.) < 1707954030 272711 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :The file which controls the conversion is: https://raw.githubusercontent.com/zzo38/scorpion/trunk/gui/font/T0021_16x16.make < 1707954091 395378 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :(Change the end from ".make" to ".font" to download the font file itself. The program that makes the conversion, and documentation of the file format, are also available.) < 1707954284 85037 :zzo38!~zzo38@host-24-207-52-143.public.eastlink.ca PRIVMSG #esolangs :Also, why is the "Font" article with the categories, which it would probably only be applicable for programming languages? (I doubt any category is actually appropriate, in this case)