00:07:06 -!- Guest50 has joined. 00:07:08 -!- Guest50 has quit (Client Quit). 00:12:49 [[Program Number System]] https://esolangs.org/w/index.php?diff=83774&oldid=83772 * Aspwil * (+549) 00:17:57 [[NDBall]] https://esolangs.org/w/index.php?diff=83775&oldid=83757 * Aspwil * (-13) /* Truth machine */ 00:18:08 [[NDBall]] https://esolangs.org/w/index.php?diff=83776&oldid=83775 * Aspwil * (-13) /* Hello World */ 00:18:18 [[NDBall]] https://esolangs.org/w/index.php?diff=83777&oldid=83776 * Aspwil * (-13) /* Add 2 numbers */ 00:18:31 [[NDBall]] https://esolangs.org/w/index.php?diff=83778&oldid=83777 * Aspwil * (-12) /* Writing Code */ 00:18:37 [[NDBall]] https://esolangs.org/w/index.php?diff=83779&oldid=83778 * Aspwil * (-1) /* Writing Code */ 00:19:06 [[NDBall]] https://esolangs.org/w/index.php?diff=83780&oldid=83779 * Aspwil * (-40) /* First Method: Point */ 00:19:20 [[NDBall]] https://esolangs.org/w/index.php?diff=83781&oldid=83780 * Aspwil * (-27) /* Second Method: Vector List */ 00:19:20 [[SF Code]] M https://esolangs.org/w/index.php?diff=83782&oldid=83535 * JaydenIrwin * (-27) removed self-modifing category 00:20:23 [[SF Code]] M https://esolangs.org/w/index.php?diff=83783&oldid=83782 * JaydenIrwin * (+27) Undo revision 83782 by [[Special:Contributions/JaydenIrwin|JaydenIrwin]] ([[User talk:JaydenIrwin|talk]]) 00:27:14 -!- simcop2387 has quit (Changing host). 00:27:14 -!- simcop2387 has joined. 00:27:33 -!- perlbot has quit (Changing host). 00:27:33 -!- perlbot has joined. 00:34:34 [[Program Number System]] M https://esolangs.org/w/index.php?diff=83784&oldid=83774 * Doridian * (+28) Grammar fixes, formatting fixes 00:52:54 [[Program Number System]] https://esolangs.org/w/index.php?diff=83785&oldid=83784 * Aspwil * (+786) /* An actual dictionary */ 00:53:55 [[Program Number System]] https://esolangs.org/w/index.php?diff=83786&oldid=83785 * Aspwil * (-19) /* Use */ 02:07:37 [[Esolang:Sandbox]] https://esolangs.org/w/index.php?diff=83787&oldid=83739 * ColorfulGalaxy (disambiguation) * (+157) /* OK */ 02:32:46 -!- Guest46 has joined. 02:33:30 Hello 02:33:48 I am making an esolang, but need help making a compiler 02:34:07 hm 02:34:21 I really want it in python. 02:34:24 brctl: help ignore 02:34:24 brctl: usage: "brctl: ignored" (to list), "brctl: ignore [net/]nick" (to add) or "brctl: unignore [net/]nick" (to remove); network defaults to your own; nick = * matches any message 02:34:43 Here are the docs : https://bluefalconhd.github.io/Dragynslash/docs 02:35:06 Python is my most knowlegable langauge. 02:36:26 And the esolang is based off of Asciidots 02:37:31 -!- Guest46 has quit (Client Quit). 02:37:52 -!- BlueFalconHD has joined. 02:37:54 Welp im back 02:37:59 accidentally reloaded 02:38:07 i am the Guest45 dude 02:38:15 making this https://bluefalconhd.github.io/Dragynslash/docs 02:38:54 I need help with a compiler, as I hav no idea how to compile a 2d lanaguge. 02:39:32 I really want it to be in python, and not use external packages except for built in ones like time and system. 02:39:52 brctl: help ignore 02:39:52 brctl: usage: "brctl: ignored" (to list), "brctl: ignore [net/]nick" (to add) or "brctl: unignore [net/]nick" (to remove); network defaults to your own; nick = * matches any message 02:40:36 hello? anyone here? 02:40:58 brctl: ignored 02:40:58 brctl: Ignore list: freenode/V freenode/shachaf libera/Sgeo libera/Soni libera/V libera/cd libera/int-e libera/shachaf 02:41:01 BlueFalconHD: This is IRC, do be patient, people may take a while to respond. 02:41:04 Also: Why compile 02:41:22 Because it is a self made esolang. 02:41:28 why not interpret it 02:41:30 I need a compiler for output. 02:41:32 BlueFalconHD: you have to tell it to ignore you specifically, that's the brctl: ignore [net/]nick syntax 02:41:42 oh 02:41:43 it's probably just an interpreter 02:41:47 ok 02:41:57 well then I need help making an interpreter. 02:42:16 if any of you use github, here is the repo: https://github.com/BlueFalconHD/Dragynslash 02:42:17 Since this is vaguely befunge-like I'd look for a befunge interpreter in Python and use that as inspiration. 02:42:23 ok 02:43:00 Then adapt the code? 02:43:53 Well, maybe try to understand it, then write your own? 02:44:06 as for where to start, a few hints: first you'll want to arrange the input file onto a 2D grid, start with that; then work on moving an "instruction pointer" around the grid, obeying direction changing instructions 02:44:16 from there, work on supporting each operation one by one 02:44:27 start with the easy ones, more important ones first 02:44:50 The thing is, adapting code that you don't understand is likely to just not work. And when you do understand it, you can write your own and be sure of all the features it has (excluding bugs). 02:44:55 ^ 02:45:39 Ok thanks. 02:45:52 If you use github, you can help out lol 02:45:57 I suck at python 02:46:05 but it is my best langauge 02:46:06 my first esolang interpreters sucked, but i learned a lot more by writing it myself than I did adapting other code 02:46:28 * cd somehow still remembers learning about the jank behavior of \ in C 02:46:48 \\ doc comment blah blah \ 02:47:02 i++; \\ oops, because of \ this is still a comment 02:47:03 lol 02:47:04 or was it / 02:47:11 * cd forgets 02:47:24 it was \ 02:47:46 Are you speaking is js 02:47:50 gtg 02:49:17 cd: the line comments are //, the ordinary comments are /* */ 02:49:33 int-e, yes, i'm talking about the special behavior of \ at the end of a line 02:49:50 ah. 02:50:03 but yes i used the wrong symbol for comments 02:50:04 how did i do that 02:50:07 doesn't work for comments :) 02:50:08 i must be too tired 02:50:43 i literally use C-like languages constantly how'd i make that mistake lol 02:52:01 cd: so apparently I never really ran into that, apart from knowing that // comments inside macros don't work. 02:52:23 i ran into it only because i was commenting an esolang interp where \ was a command 02:52:40 so \ ended up at the end of a line, and broke the implementation silently 02:52:41 >:I 02:53:07 Always write full sentences. Problem solved. 02:53:38 i think i made that mistake 5-6yr ago now 02:53:42 was a long time ago 02:54:02 `help hackeso, help me figure out when i first showed up in the channel pls 02:54:08 ​`hackeso, help me figure out when i first showed up in the channel pls? ¯\(°​_o)/¯ 02:54:11 * int-e is just bantering at this point. 02:54:13 `help 02:54:13 Runs arbitrary code in GNU/Linux. Type "`", or "`run " for full shell commands. "`fetch [] " downloads files. Files saved to $HACKENV are persistent, and $HACKENV/bin is in $PATH. $HACKENV is a mercurial repository, "`revert " can be used to revert, https://hack.esolangs.org/repo/ to browse. $PWD ($HACKENV/tmp) is persistent but unversioned, /tmp is ephemeral. 02:55:22 sometime late 2016, huh. yep almost 5yr ago now 02:56:05 `learn The password of the month is moving to Libera Chat. 02:56:11 Relearned 'password': The password of the month is moving to Libera Chat. 02:56:51 ..jeeez have i really been here 5yr now 02:56:55 huh 02:56:59 `? imode 02:57:01 imode is an Innovative Multicomponent Drug Designer, afflicted by a severe case of the UPPERs. 02:58:44 `? sgeo 02:58:46 Sgeo is a language nomad. (Not to be confused with a language monad.) He invented Metaplace sex, thus killing it within a month. He was Doctor Mengele in his previous life, as evidenced by his norn experiments. 02:59:21 `? sgeolang 02:59:23 Sgeolang used to change frequently, but eventually it rusted in place. 03:00:08 cd: AIUI, HackEso still has a presence on freenode. 03:00:41 int-e: Yea but I don't :P 03:01:14 `? password 03:01:16 The password of the month is moving to Libera Chat. 03:07:27 * nakilon never adapts others' code 03:23:42 -!- BlueFalconHD has quit (Ping timeout: 250 seconds). 03:26:35 -!- Lord_of_Life has quit (Ping timeout: 272 seconds). 03:26:50 -!- Lord_of_Life has joined. 05:39:46 [[Program Number System]] https://esolangs.org/w/index.php?diff=83788&oldid=83786 * Aspwil * (+180) /* Interpreter */ 06:20:31 [[Talk:Airline food]] N https://esolangs.org/w/index.php?oldid=83789 * ColorfulGalaxy (disambiguation) * (+253) Polyglot 06:21:40 -!- dyeplexer has joined. 06:58:02 -!- tromp has joined. 07:09:52 [[Esolang:Sandbox]] https://esolangs.org/w/index.php?diff=83790&oldid=83787 * ColorfulGalaxy (disambiguation) * (+57) 07:12:06 [[Airline food]] https://esolangs.org/w/index.php?diff=83791&oldid=82866 * ColorfulGalaxy (disambiguation) * (+141) 07:15:50 -!- hanif has joined. 07:36:53 -!- imode has quit (Ping timeout: 264 seconds). 07:38:35 -!- river has quit (Quit: Leaving). 07:44:44 oh yeah, password change. I forgot about that. 07:46:20 -!- mistbreeze has joined. 07:49:07 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 07:56:02 -!- tromp has joined. 08:07:28 -!- hendursa1 has joined. 08:07:36 -!- Sgeo has quit (Read error: Connection reset by peer). 08:10:07 -!- hendursaga has quit (Ping timeout: 252 seconds). 08:17:53 [[Pain]] M https://esolangs.org/w/index.php?diff=83792&oldid=82994 * OfficialCraftCGame * (+2) Added a full stop and a line break near the top of the page. 08:52:14 -!- dyeplexer has quit (Remote host closed the connection). 09:08:40 -!- arseniiv has joined. 09:15:02 -!- archenoth has quit (Read error: Connection reset by peer). 09:48:29 -!- Melvar has quit (Ping timeout: 272 seconds). 10:24:41 -!- hanif has quit (Remote host closed the connection). 10:25:05 -!- hanif has joined. 10:33:40 -!- hanif has quit (Ping timeout: 252 seconds). 10:39:46 -!- hanif has joined. 10:40:05 -!- hanif has left. 10:40:47 -!- wib_jonas has joined. 10:43:19 zzo38: multi-colored color indicators shown as multiple normal-sized disks only slightly overlapping would be nicer and easier to read, but indeed would be hard to fit to Nicol Bolas, the Arisen's type line now that the typeline shows "Legendary". perhaps it could only be reprinted in sets with narrower expansion symbols, not in core sets. 10:47:14 " The thing is, adapting code that you don't understand is likely to just not work." then why is copying huge blocks of boilerplate from StackOverflow stereotypically popular among code monkeys? 11:12:58 because it's boilerplate? 11:13:35 also.. the result stereotypically only almost always works. 11:13:52 Also there's reasons why code monkeys remain code monkeys 11:14:11 ook. 11:15:12 wib_jonas: FWIW, even though I spoke in general, the remark was colored by context; interpreters aren't really the kind of code where you expect to copy last chunks from another interpreter and expect it to fit well 11:15:34 last? large. 11:15:48 * int-e bonks head on table a few times to see if that fixes it. 11:24:00 -!- salpynx has quit (Quit: Connection closed). 11:27:37 Fixes the table? 11:29:39 :t fix head 11:29:40 error: 11:29:40 • Occurs check: cannot construct the infinite type: a ~ [a] 11:29:40 Expected type: a -> a 11:30:30 fungot: Do you even have a head? 11:30:30 fizzie: the king awaits. you saved our queen? you see, the mammon machine! nya ha! what losers! you can walk your way across but that's the plan, so he was banished from zeal. a great disaster in zeal somehow threw me into this thing. what you have? transform! this trading house. it's the kind? the mystics supposedly despise you! i'm leaving! 11:30:44 ^style 11:30:44 Available: agora alice c64 ct* darwin discworld enron europarl ff7 fisher fungot homestuck ic irc iwcs jargon lovecraft nethack oots pa qwantz sms speeches ss wp ukparl youtube 11:31:03 You can tell from all the references to Zeal. 11:31:42 Chrono Trigger? 11:31:47 Yep. 11:32:07 There was a copy of "the script" at one of those gamefaqsy kind of places, that's what it's trained on. 11:32:40 fungot: Is he really a tricycle? 11:32:40 fizzie: you! take! we find! spekkio. the master of war! i've seen all kinds of battles from here, step back, prometheus! 11:32:52 Dramatric. 11:33:00 s/tr/t/ 11:46:21 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 11:52:37 -!- HackEso has quit (Ping timeout: 268 seconds). 11:53:15 -!- HackEso has joined. 12:08:25 -!- wib_jonas has quit (Quit: Client closed). 12:14:46 fungot! 12:14:46 FireFly: must think of a way to the ocean palace! and if you wish! we shall hold this position to the last man! big fire where lavos fall from sky! we no can call you " knight cyrus fell while protecting our kingdom from magus. i'd stay away! 12:17:09 Sound advice. 12:17:53 [[Talk:Bubbles]] https://esolangs.org/w/index.php?diff=83793&oldid=67738 * Monochromeninja * (+1109) /* Ideas */ new section 12:19:48 [[Talk:Bubbles]] M https://esolangs.org/w/index.php?diff=83794&oldid=83793 * Monochromeninja * (+43) Sorry! I forgot to add my signature 12:21:06 [[Esolang:Sandbox]] M https://esolangs.org/w/index.php?diff=83795&oldid=83790 * Monochromeninja * (+283) signature check 12:21:32 [[Esolang:Sandbox]] M https://esolangs.org/w/index.php?diff=83796&oldid=83795 * Monochromeninja * (+2) signature check 12:22:04 [[Talk:Bubbles]] M https://esolangs.org/w/index.php?diff=83797&oldid=83794 * Monochromeninja * (+81) sorry i messed up my signature AGAIN AAAAAAAAAAAAAAA 12:23:02 indeed 12:27:37 -!- river has joined. 12:31:24 [[Esolang:Sandbox]] M https://esolangs.org/w/index.php?diff=83798&oldid=83796 * PythonshellDebugwindow * (+42) No include 12:31:36 [[Esolang:Sandbox]] M https://esolangs.org/w/index.php?diff=83799&oldid=83798 * PythonshellDebugwindow * (-2) 12:33:20 [[Esolang talk:Sandbox]] M https://esolangs.org/w/index.php?diff=83800&oldid=82646 * PythonshellDebugwindow * (+133) ? 12:33:38 [[Esolang talk:Sandbox]] M https://esolangs.org/w/index.php?diff=83801&oldid=83800 * PythonshellDebugwindow * (-24) - 12:33:40 -!- tromp has joined. 12:37:33 ~200 new official baba is you levels 12:37:36 coming soon, this month probably 12:38:25 I should probably solve the first lot, then 12:39:26 yes it's a good game! 12:39:31 I used hints near the end 12:39:37 and some hints at the beginning too 12:44:07 I've been trying to do it without hints but I don't tend to be very good at puzzles 12:44:16 And then I put it down and forget everything I've learnt 12:45:14 -!- Thelie has joined. 12:52:49 I think that it is hard enough that it's more fun to occasionally used hints after giving a level a really solid try 12:53:12 it just depends on whether you're still enjoying it or not 13:09:22 -!- BlueFalconHD has joined. 13:17:51 -!- wib_jonas has joined. 13:19:59 does Baba is You have a secret secret secret ending, or only a secret secret ending? I get confused about which games have what. 13:21:17 I think it has only got two levels of secret ending 13:22:15 -!- Thelie has quit (Remote host closed the connection). 13:23:11 I have question. How do I get a esolang on the wiki when I finish making it? 13:24:11 You make an article for it 13:24:26 Are there guidlines ect. 13:24:55 just write it up well 13:25:00 Ok 13:25:03 cool 13:29:23 -!- hendursa1 has quit (Quit: hendursa1). 13:29:49 -!- hendursaga has joined. 13:32:58 -!- BlueFalconHD has quit (Ping timeout: 250 seconds). 14:01:09 -!- jinn has quit (Quit: Lost terminal). 14:05:43 -!- Melvar has joined. 14:21:02 [[Talk:Pie]] N https://esolangs.org/w/index.php?oldid=83802 * Monochromeninja * (+1368) made 14:22:34 [[Special:Log/newusers]] create * Qbit * New user account 14:25:33 [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=83803&oldid=83762 * Qbit * (+157) /* Introductions */ 14:30:59 -!- Hooloovo- has quit (Ping timeout: 252 seconds). 14:32:14 -!- Hooloovoo has joined. 14:35:06 [[User:VilgotanL]] M https://esolangs.org/w/index.php?diff=83804&oldid=83682 * VilgotanL * (+334) add github links 14:44:15 -!- Sgeo has joined. 15:18:26 -!- wib_jonas has quit (Quit: Client closed). 15:25:32 -!- slavfox has quit (Read error: Connection reset by peer). 15:26:20 -!- slavfox has joined. 15:32:51 -!- Thelie has joined. 15:42:25 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 16:09:48 [[Special:Log/newusers]] create * ResU * New user account 16:15:20 [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=83805&oldid=83803 * ResU * (+143) 16:20:36 -!- Pricey has joined. 16:33:01 [[Talk:++Brainfuck]] N https://esolangs.org/w/index.php?oldid=83806 * Monochromeninja * (+211) created and asked meaning 16:36:03 -!- tromp has joined. 17:15:22 -!- imode has joined. 17:17:17 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 17:17:33 Github is so lame they are not incapable to implement a CI to keep a green master in a repo with 500 contributors 17:18:05 https://github.com/github/explore/commits/main 17:20:26 to pretend in from of their own managers or whatever that they have CI they made a ./script/cibuild but still break the Github Action build 17:21:53 [[User talk:Truttle1]] M https://esolangs.org/w/index.php?diff=83807&oldid=83237 * UltimateProGrammer * (+238) appreciation! 17:21:55 why am I then being surprised my local folks if such as Github make this a quality standard 17:24:14 -!- Hooloovoo has quit (*.net *.split). 17:24:15 -!- nakilon has quit (*.net *.split). 17:24:15 -!- Soni has quit (*.net *.split). 17:24:30 -!- SoniEx2 has joined. 17:30:23 -!- Thelie has quit (Remote host closed the connection). 17:30:30 -!- Hooloovoo has joined. 17:31:50 -!- nakilon has joined. 17:32:12 I feel like thelounge is having some bad time on authing on libera with sasl certificate 17:32:20 switched to username+password 17:32:22 anyway 17:32:52 dude presses the pull request approval BEFORE asking to rebase; and calling the rebase a "Update branch" -- I even checked if it's maybe their term for that but nope, it's "Fetch upstream" 17:33:59 then I checked who is that and it's an asian girl; previous time when I had a deal with Github stuff it was an amazing idiocy about rewriting someone's library with my library source code that I mentioned before -- that time it was some black dude 17:36:26 so I assume they are hiring based on the "need of diversity" rather on checking if people are competent 17:50:40 i think that's an unfair assumption to make purely from your experience 17:51:02 but also github is known for trying too hard to be woke (overcorrecting for an earlier period of their corporate culture) so it may be true anyway 17:52:42 these things can get a bit cringe 17:53:28 one time i was on an airplane and the guy next to me noticed I was trans and started going on and on about how woke his company is, and how he made everyone put their pronouns in their email signature and stuff like that, and i should come work for him, while saying almost nothing about what the company actually does or why i would be a good fit 17:55:00 https://thehardtimes.net/culture/trans-person-crosses-street-avoid-overly-supportive-liberals/ 17:59:00 [[Pie]] M https://esolangs.org/w/index.php?diff=83808&oldid=78988 * PythonshellDebugwindow * (+131) /* Instructions */ Computational class (thanks to Monochromeninja) 18:02:44 I love how they say "we should care about everyone not only about ourselves" in their guidelines 18:03:06 and at the same time they FORCE-changed the default repo branch name for all the users 18:05:59 [[PythonshellDebugwindow/Rewriting Language]] M https://esolangs.org/w/index.php?diff=83809&oldid=74118 * PythonshellDebugwindow * (-141) Please delete 18:06:40 [[PythonshellDebugwindow/Vandevelo]] M https://esolangs.org/w/index.php?diff=83810&oldid=79353 * PythonshellDebugwindow * (-223) This page should be deleted 18:10:12 -!- Thelie has joined. 18:10:38 their build failed even after my rebase, lol 18:12:53 any kind of woke guidelines or code of conduct should not be taken at face value. they are political documents meant to support a particular ideology 18:13:08 the same people who promote these documents openly gloat about not following their own rules 18:18:09 -!- tromp has joined. 18:18:21 i'm happy that it's not my problem anymore 18:18:44 they changed my personal preference about the default branch name without notifying me and I've lost' multiple hours guessing why things don't work; why do they think I need it at all? what if I love the "master" branch name? what if also name by dev branch "slave" and it's my kink? they used black people as slaves for centuries in US but we didn't 18:18:44 in Russia -- why should I be affected? it's not my problem... 18:20:38 countries besides the USA exist?? whoa 18:21:15 -!- SoniEx2 has changed nick to Soni. 18:22:27 [[Talk:Cerberus]] N https://esolangs.org/w/index.php?oldid=83811 * Monochromeninja * (+1412) Created page with "I wrote an interpreter for this. It has a wimpmode too: [https://tio.run/##nVVNb9s4ED2bv2KqPVRqJNVOFj0YdYGiwKI@dFOgvQlCQUu0zUYiBZJCEhT57dkZUrJlZYsF1jYscfjm8c0Hye7RHbW6eY6iiG1B..." 18:22:46 this is #esolangs, not #politics 18:23:58 [[Talk:Cerberus]] M https://esolangs.org/w/index.php?diff=83812&oldid=83811 * Monochromeninja * (+106) updated my post 18:24:48 What I read, they allow you to change the default branch names individually per project and rename them. But if they did like you described, then perhaps it is too confusing what they did 18:30:09 (Which names are appropriate might depend on the project. Naming a branch "slave" is unlikely to be appropriate for most projects, but I cannot predict everything, of course.) (When you are mirroring a repository with another system, it would help to use the same branch names as the original rather than changing them to "main" or "master" (unless they already are), I think.) 18:33:31 maybe we should also get rid of the word "robot" since it derives from a slavic word for "slave" / "serf" 18:34:20 also "servo" 18:34:58 the "server" word is bad too? 18:35:11 should it be "partner" or something 18:35:39 still off-topic for #esolangs 18:37:09 I think is not the good idea to get rid of the words; it doesn't help. 18:46:12 does Baba is You have a secret secret secret ending, or only a secret secret ending? I get confused about which games have what. => oh I hope they aren’t disjoint and I wouldn’t need to replay it all from scratch to get another ending 18:46:25 not that I’m close (I’m not) 18:47:10 that is a fun game 18:47:16 maybe i should play it some more 18:47:37 i don't play many games but when i do it's often because they are mentioned here 18:47:52 ++ 18:48:17 I think now half my games are those which were mentioned here :D 18:48:27 or at least a third 18:50:56 I think probably none of the computer games I like to play are the ones mentioned here 18:51:25 I was shocked when I learned today that blur filter in SVG is not a special attribute of a group or primitive, but a filter among other filters. Didn’t suspect that as Inkscape treats it a bit special and I get why — it’s very useful compared to many other filters which would often be more useful as part of a composite filter chain 18:51:52 zzo38: but you mentioned them yourself so technically they are :) 19:00:31 arseniiv: Yes, after I left the room I thought of that, yes they are mentioned on the IRC, even if I am the only one who did (well, at least some of them, not necessarily all of them are mentioned) 19:06:45 Some games I wrote by myself, although not all of them. I don't know if you liked any of the same ones or not 19:15:32 The pokedex number is actually the old pokedex number 19:15:45 now there is a national pokedex number which is sometimes different 19:16:35 there may be a regional pokedex for each region with its own numbering 19:25:37 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 19:49:34 github/explore available issue labels: bug, enhancement, duplicate, invalid, question, help wanted, wont fix, india 19:50:12 no joke https://i.imgur.com/bhhMCd1.png 19:52:59 [[Talk:Tiangou]] N https://esolangs.org/w/index.php?oldid=83813 * Monochromeninja * (+777) Created page with "I wrote an interpreter for this: [https://tio.run/##nZM9b9swEIZn81ectYROLLdGNyMKEGTSUGToaHi4iOeIsUSyJIW4KPrb3ZPsQgrdLp1EnZ573/ug3I9YW/PllGWZKEGbSN55iqQg1gTlp2fAAIqw0eYV3nWs4fH..." 19:56:13 -!- Thelie has quit (Remote host closed the connection). 20:01:28 -!- archenoth has joined. 20:06:52 -!- tromp has joined. 20:13:17 What is the new pokedex number? 20:24:12 national pokedex number 20:24:27 the national pokedex has a unique number for all pokemon of all generations 20:24:42 the regional pokedex has smaller numbers but only assigned to local pokemon 20:25:17 Yes, I know of the pokedex numbers, but you mentioned a old and new pokedex numbers; what is the difference? 20:27:04 The first divergence is national pokedex number #152 Chikorita 20:27:14 in the Johto region pokedex this is pokemon #1 20:27:52 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 20:28:57 Yes, although I only use the global numbers myself, and the pokemon mahjong that I made up only uses the global numbers. 20:29:33 what about regional pokemahjong which only uses regional pokemon? 20:30:12 You could play it that way too if you wanted to I suppose, although I have not thought of that, but you are correct. 20:32:28 Starting the game requires knowing the number of generations, but you could use a variant rule for the regional variant, such as treat it as one generation for the rules that care about that. 20:34:00 There are two kind of sequences possible, being numeric sequences and evolution sequences. When it is generation I only, all evolution sequences are also numeric sequences; with more generations, it might not be. (A sequence in mahjong must consist of three cards, so an evolution sequence cannot be made with Eevee. Its evolution is still relevant, but not for making sequences.) 20:37:13 -!- tromp has joined. 20:48:55 -!- salpynx has joined. 20:50:15 Do you like pokemon mahjong game? 20:53:04 [[Special:Log/newusers]] create * Spidey Zac * New user account 20:58:58 i have never tried it 20:59:07 i don't play mahjong 20:59:15 I like it though 21:16:37 -!- sprock has quit (Quit: brb). 21:18:00 -!- sprock has joined. 21:18:33 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 21:27:55 -!- tromp has joined. 21:28:26 -!- rodgort has joined. 21:45:26 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 21:47:41 -!- arseniiv has quit (Ping timeout: 264 seconds). 22:10:26 I have liked mahjong and pokemon separately in the past. 22:10:46 🀣 hurt itself in its confusion. 22:11:03 `unidecode 🀣 22:11:04 ​[U+1F023 MAHJONG TILE ORCHID] 22:18:13 -!- hendursaga has quit (Ping timeout: 252 seconds). 22:20:06 -!- hendursaga has joined. 22:36:47 So do I, but that doesn't necessary mean you can't play pokemon mahjong too. 22:43:49 [[User:OfficialCraftCGame]] N https://esolangs.org/w/index.php?oldid=83814 * OfficialCraftCGame * (+111) Created page with "The creator of several games ''(some unfinished)'' and an esoteric programming language called '''Nevermind'''." 23:01:06 [[Special:Log/newusers]] create * Maximxls * New user account 23:03:54 -!- cd has changed nick to moon. 23:05:15 [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=83815&oldid=83805 * Maximxls * (+171) /* Introductions */ 23:09:59 [[LongDick]] https://esolangs.org/w/index.php?diff=83816&oldid=81154 * Maximxls * (+67) 23:28:10 [[Program Number System]] https://esolangs.org/w/index.php?diff=83817&oldid=83788 * Aspwil * (+288) 23:36:24 [[NDBall]] https://esolangs.org/w/index.php?diff=83818&oldid=83781 * Aspwil * (+67) 23:40:37 [[Program Number System]] https://esolangs.org/w/index.php?diff=83819&oldid=83817 * Aspwil * (+74) 23:50:42 -!- mnrmnaugh has quit (Ping timeout: 264 seconds). 23:51:06 -!- mnrmnaugh has joined. 23:53:18 -!- mistbreeze has quit (Read error: Connection reset by peer).