00:08:47 [[User talk:Ais523]] https://esolangs.org/w/index.php?diff=130704&oldid=130703 * Ais523 * (+816) /* Featured language */ it is awkward to change, and probably would require more of the admins to be active 00:15:56 -!- ais523 has joined. 00:16:09 coat: "simplest" is relative, but the OISC view of the I/D machine is pretty simple 00:17:50 it has a zero-initialized RAM and a data pointer that is initialized to the first cell, and the command is "add «the given number» to the pointed-to cell, storing it into that cell, then interpret the new number as a memory address and change the pointer to point there" – the program runs in an infinite loop forever 00:18:52 Tip is arguably even simpler but is a bit different from typical OISCs: the program is conceptually repeated infinitely to cover all of memory, you start at instruction 1, and the command is "multiply the instruction pointer by the given value" (which is a rational number but isn't necessarily an integer) 00:19:09 https://esolangs.org/wiki/I/D_machine https://esolangs.org/wiki/Tip 00:20:43 the I/D machine is 24 bytes in Perl, which is a very short implementation as Turing-complete languages go, and is one potential way to measure "simplest" 00:22:26 Fractran is very simple too (the memory is a single integer, and the command is "if the memory times the argument is an integer, store the result as the new integer and goto the start of the program, otherwise continue execution") 00:23:11 there's also a find-and-replace language which is somewhere between Fractran and Thue, "replace this string by that string, if the replacement was successful goto the start of the program" which is both conceptually simple, and much easier to program in than the other languages mentioned 00:26:01 anyway, I don't think that Subleq can be the simplest OISC because https://esolangs.org/wiki/Simpler_Subskin exists and is pretty much strictly simpler 00:27:02 (given that a skip is simpler than a jump and the commands themselves are simpler) 00:27:31 although it hasn't been proven TC yet, and I guess there's some debate about whether an implicit loop is simpler or more complicated than explicit jumps 00:28:55 hmm, maybe I shouldn't try to answer this sort of question while tired (but I wanted to post the answer while the questioner was still around to read it) 00:59:04 thanks ais523 00:59:16 where can I learn how to prove if a language is turing complete or not? 01:00:08 all resources I come across explain to implement brainfuck or an OISC in the new language to prove that it is turing complete. but it feels a bit circular reasoning. it begs the question how then we prove turing completeness for brainfuck or that OISC. 01:00:12 I have been meaning to write an article about that but haven't gotten around to it 01:00:27 you can implement any language that's already been proven TC in it 01:00:30 do we need to write a turing machine simulator in the language to prove that it is turing complete? 01:00:53 or, well, it's easier to understand if you define it in terms of compilers 01:01:07 if language X is Turing-complete, and you have a working compiler from X to Y, then Y is Turing-complete 01:01:12 ais523: but that's what I felt was circular. so I prove lang1 is TC by implementing lang2 in it. but now how do I prove that lang2 is TC? by implementing lang3 in it? it just keeps going on. 01:01:30 and this works because you can chain compilers together, and eventually go back to the Turing machines that were used to prove the first language Turing-complete 01:02:24 e.g. there is a fairly simple compilation from Turing machines to iterated-find-and-replace, so if I have a compiler from iterated-find-and-replace to a given language, I can compile from Turing machines into iterated-find-and-replace, then compile the result into that language, and that gives me a compiler from Turing machines for that language 01:02:54 so what is that first language that was proven to be TC? 01:03:00 Turing machines are by definition 01:03:33 I can't remember when Turing machines and lambda calculus were discovered to be equivalent, in the sense that you can compile in either direction 01:03:39 but it was an early result which was probably quite surprising at the time 01:03:42 so looks like the most fundamental proof would be if we can write a program P in lang L such that P simulates a TM, then L is TC? 01:03:59 most fundamental proof is to be able to compile arbitrary Turing machines into L 01:04:37 there is a bit of a conceptual problem with being able to prove a language can *implement* a simulator for arbitrary Turing machines, because in theory you can have a language that can do that but can't do anything else 01:05:01 so you end up with a language that, in effect, needs input to be Turing-complete, and it is debated whether or not that's a legitimate form of Turing-completeness or not 01:05:04 but isn't that good enough? because now the simulator can compute anything. 01:05:57 the simulator can compute anything if given appropriate input – I think most people consider that to count, but there is some debate among the definitinos 01:06:21 there's some discussion at https://esolangs.org/wiki/%E2%84%92 if you're interested 01:07:45 actually, the way I think about it is that a typical programming language can encode a) computations, and b) data; and can usually perform computations on hardcoded data 01:08:10 but it is not completely impossible to have a programming language which, for some reason, is incapable of hardcoding arbitrary amounts of data (but which is capable of taking it from the user at runtime) 01:08:24 thanks for that link 01:09:20 the question is, if a language is restricted in how much data it can hardcode, but is still capable of expressing computations that would normally be powerful enough to cause Turing-completeness (and that are Turing-complete if given appropriate user input), do we consider that an obstacle to Turing-completeness or not? 01:09:57 (it usually isn't a problem in practice: most esolangs are better at hardcoding data than they are at computations, so the case where the situation is reversed rarely comes up) 01:10:30 and I think the answer is just "it depends on your definition, it is not like people are consistent in how they define 'Turing-complete' anyway" 01:11:41 the more common debate is about "halt state matching" – I have seen (and used) the term "strongly Turing-complete" to describe a situation in which when compiling from language X to language Y to prove the Turing-completeness, the language Y program halts if and only if the language X program halts (also the compiler has to produce a finitely long program) 01:12:15 but there are weaker definitions in which the language Y program merely has to be able to correspond to the language X program but doesn't actually have to halt in the same circumstances 01:12:53 just, you get to examine the internal state of the language Y program and there's a way you can work out the internal state of the language X program based on that 01:13:28 my personal opinion is that the weaker versions of Turing-completeness are "legitimate" in some sense, but harder to define; also that the stronger definitions often make for more interesting puzzles if you're trying to do TCness proofs for fun 01:28:05 [[Talk:Two-instruction madness!]] https://esolangs.org/w/index.php?diff=130705&oldid=122876 * Ais523 * (-466) undo addition of long repetitive text, especially as it breaks the page and doesn't add anything to the conversation 01:49:17 -!- ais523 has quit (Remote host closed the connection). 01:50:31 -!- ais523 has joined. 02:03:35 -!- ais523 has quit (Remote host closed the connection). 02:04:49 -!- ais523 has joined. 02:09:51 -!- ais523 has quit (Remote host closed the connection). 02:11:05 -!- ais523 has joined. 03:59:26 -!- ais523 has quit (Quit: quit). 04:56:00 [[]] https://esolangs.org/w/index.php?diff=130706&oldid=130603 * Ractangle * (+110) /* Examples */ 04:56:46 [[G Sharp]] https://esolangs.org/w/index.php?diff=130707&oldid=130700 * Ractangle * (+1) /* 99 bottles of beer */ 05:16:15 [[ErrorFullC++]] M https://esolangs.org/w/index.php?diff=130708&oldid=115709 * None1 * (+4) 05:24:49 [[Esolang:Sandbox]] https://esolangs.org/w/index.php?diff=130709&oldid=130561 * None1 * (+99) /* f */ 06:18:48 [[]] https://esolangs.org/w/index.php?diff=130710&oldid=130706 * Ractangle * (+183) /* A+B Problem */ 06:39:20 -!- Sgeo has quit (Read error: Connection reset by peer). 07:04:23 [[]] https://esolangs.org/w/index.php?diff=130711&oldid=130710 * Ractangle * (+1) /* Of the esolang */ 07:07:20 [[G Sharp]] https://esolangs.org/w/index.php?diff=130712&oldid=130707 * Ractangle * (+30) /* Commands */ 07:23:52 -!- tromp has joined. 08:38:41 -!- __monty__ has joined. 09:02:16 [[COPY WITH @]] M https://esolangs.org/w/index.php?diff=130713&oldid=130701 * None1 * (+77) Categorize 09:19:53 [[???]] M https://esolangs.org/w/index.php?diff=130714&oldid=129594 * None1 * (+4) /* Cat Program */ fix cat 09:26:34 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 09:27:31 [[???]] M https://esolangs.org/w/index.php?diff=130715&oldid=130714 * None1 * (+1) /* Hello World */ fix 09:30:16 -!- tromp has joined. 09:40:25 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 09:42:34 [[Splitikader]] N https://esolangs.org/w/index.php?oldid=130716 * None1 * (+36) Redirected page to [[]] 09:44:11 -!- tromp has joined. 09:45:06 [[Talk:]] N https://esolangs.org/w/index.php?oldid=130717 * None1 * (+170) Created page with "Did you write the c++ code yourself? Remember that the wiki only allows public domain content. --~~~~" 09:56:39 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 10:00:40 -!- tromp has joined. 11:38:02 [[Leftoutside]] https://esolangs.org/w/index.php?diff=130718&oldid=130264 * Yayimhere * (-10) 12:04:57 [[Leftoutside]] https://esolangs.org/w/index.php?diff=130719&oldid=130718 * Yayimhere * (+132) 12:26:41 [[Leftoutside]] https://esolangs.org/w/index.php?diff=130720&oldid=130719 * Yayimhere * (+76) 12:46:47 -!- __monty__ has quit (Ping timeout: 264 seconds). 12:49:31 [[Esolang:Sandbox]] https://esolangs.org/w/index.php?diff=130721&oldid=130709 * Tommyaweosme * (+59) 12:49:39 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 12:52:21 -!- tromp has joined. 13:21:04 [[Esolang:Sandbox]] M https://esolangs.org/w/index.php?diff=130722&oldid=130721 * None1 * (+121) /* f */ 13:23:02 [[]] https://esolangs.org/w/index.php?diff=130723&oldid=130711 * Ractangle * (+232) /* Examples */ 13:25:27 -!- __monty__ has joined. 13:27:40 [[Postrado]] https://esolangs.org/w/index.php?diff=130724&oldid=129047 * Ractangle * (-37) /* Commands */ 13:28:11 [[Postrado]] https://esolangs.org/w/index.php?diff=130725&oldid=130724 * Ractangle * (-397) i hate interpriter errors now 13:29:19 [[Postrado]] https://esolangs.org/w/index.php?diff=130726&oldid=130725 * Ractangle * (+1) /* Infinite Loop */ 13:30:28 [[Postrado]] https://esolangs.org/w/index.php?diff=130727&oldid=130726 * Ractangle * (+44) yes i had to misspell hello world like this 13:32:16 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 13:35:02 -!- tromp has joined. 13:47:43 [[G Sharp]] https://esolangs.org/w/index.php?diff=130728&oldid=130712 * Ractangle * (-41) gonna archive the pages that are still a stub 13:48:01 [[Special:Log/move]] move * Ractangle * moved [[G Sharp]] to [[User:Ractangle/G Sharp]] 13:49:48 [[User:Ractangle]] https://esolangs.org/w/index.php?diff=130731&oldid=130119 * Ractangle * (+110) /* Esolangs */ 13:50:06 [[Guh]] https://esolangs.org/w/index.php?diff=130732&oldid=128677 * Ractangle * (-93) 13:50:18 [[Special:Log/move]] move * Ractangle * moved [[Guh]] to [[User:Ractangle/Guh]] 13:50:34 [[User:Ractangle/Guh]] https://esolangs.org/w/index.php?diff=130735&oldid=130733 * Ractangle * (-14) 13:50:40 [[Special:Log/move]] move * Ractangle * moved [[User:Ractangle/Guh]] to [[User:Ractangle/guh]] 13:51:23 [[User:Ractangle]] https://esolangs.org/w/index.php?diff=130738&oldid=130731 * Ractangle * (-10) /* Esolangs */ 13:51:42 [[Special:Log/move]] move * Ractangle * moved [[AREA]] to [[User:Ractangle/AREA]] 13:51:42 [[Special:Log/move]] move * Ractangle * moved [[Talk:AREA]] to [[User talk:Ractangle/AREA]] 13:51:55 [[User talk:Ractangle/AREA]] https://esolangs.org/w/index.php?diff=130743&oldid=130741 * Ractangle * (-144) Blanked the page 13:52:39 [[Special:Log/move]] move * Ractangle * moved [[]] to [[User:Ractangle/]] 13:52:47 [[User:Ractangle/]] https://esolangs.org/w/index.php?diff=130746&oldid=130744 * Ractangle * (-13) 13:52:59 [[User:Ractangle]] https://esolangs.org/w/index.php?diff=130747&oldid=130738 * Ractangle * (-120) /* Esolangs */ 13:54:03 [[TISC (Concept)]] N https://esolangs.org/w/index.php?oldid=130748 * Ractangle * (+49) Created page with "{{Stub}} {{Distinguish/Confusion|TISC (Esolang)}}" 13:54:17 [[Special:Log/move]] move * Ractangle * moved [[TISC (Concept)]] to [[User:Ractangle/TISC (Concept)]] 13:54:37 [[Special:Log/move]] move * Ractangle * moved [[TISC]] to [[TISC (Esolang)]] 13:56:14 [[TISC (Esolang)]] https://esolangs.org/w/index.php?diff=130753&oldid=130751 * Ractangle * (+41) 13:56:49 [[ImTooLazyToMakeAnActuallyGoodEsolang]] N https://esolangs.org/w/index.php?oldid=130754 * EvyLah * (+1451) finish hello world 13:57:37 [[User:Ractangle/TISC (Concept)]] https://esolangs.org/w/index.php?diff=130755&oldid=130749 * Ractangle * (+69) 13:59:23 [[User:Ractangle]] https://esolangs.org/w/index.php?diff=130756&oldid=130747 * Ractangle * (+42) /* Language List */ 13:59:50 [[Special:Log/move]] move * Ractangle * moved [[Bat unresponsive]] to [[User:Ractangle/bat unresponsive]] 14:00:09 [[User:Ractangle/bat unresponsive]] https://esolangs.org/w/index.php?diff=130759&oldid=130757 * Ractangle * (-13) 14:00:47 [[User:Ractangle]] https://esolangs.org/w/index.php?diff=130760&oldid=130756 * Ractangle * (+0) 14:00:59 [[User:Ractangle]] https://esolangs.org/w/index.php?diff=130761&oldid=130760 * Ractangle * (+0) 14:01:06 [[User:Ractangle]] https://esolangs.org/w/index.php?diff=130762&oldid=130761 * Ractangle * (+0) 14:01:13 [[User:Ractangle]] https://esolangs.org/w/index.php?diff=130763&oldid=130762 * Ractangle * (+0) 14:01:23 [[User:Ractangle]] https://esolangs.org/w/index.php?diff=130764&oldid=130763 * Ractangle * (+0) 14:01:38 [[User:Ractangle]] https://esolangs.org/w/index.php?diff=130765&oldid=130764 * Ractangle * (+1) 14:01:46 [[User:Ractangle]] https://esolangs.org/w/index.php?diff=130766&oldid=130765 * Ractangle * (-1) 14:01:53 [[User:Ractangle]] https://esolangs.org/w/index.php?diff=130767&oldid=130766 * Ractangle * (+1) 14:02:18 [[User:Ractangle]] https://esolangs.org/w/index.php?diff=130768&oldid=130767 * Ractangle * (+80) 14:02:39 [[Special:Log/move]] move * Ractangle * moved [[BASE]] to [[User:Ractangle/BASE]] 14:02:47 [[User:Ractangle]] https://esolangs.org/w/index.php?diff=130771&oldid=130768 * Ractangle * (-11) /* Esolangs */ 14:03:14 [[User:Ractangle]] https://esolangs.org/w/index.php?diff=130772&oldid=130771 * Ractangle * (+24) /* Esolangs */ 14:03:44 [[User:Ractangle]] https://esolangs.org/w/index.php?diff=130773&oldid=130772 * Ractangle * (-20) /* Programlangs that i know how to program in them */ 14:04:30 [[Special:Log/move]] move_redir * Ractangle * moved [[TISC (Esolang)]] to [[TISC]] over redirect 14:04:30 [[Special:Log/delete]] delete_redir * Ractangle * Ractangle deleted redirect [[TISC]] by overwriting: Deleted to make way for move from "[[TISC (Esolang)]]" 14:05:06 [[Special:Log/move]] move * Ractangle * moved [[User:Ractangle/TISC (Concept)]] to [[User:Ractangle/TWIST]] 14:05:42 [[TISC]] https://esolangs.org/w/index.php?diff=130778&oldid=130774 * Ractangle * (-41) 14:05:54 [[User:Ractangle/TWIST]] https://esolangs.org/w/index.php?diff=130779&oldid=130776 * Ractangle * (-41) 14:07:14 [[User:Ractangle/TWIST]] https://esolangs.org/w/index.php?diff=130780&oldid=130779 * Ractangle * (+16) 14:17:26 [[Brainbits]] https://esolangs.org/w/index.php?diff=130781&oldid=123647 * None1 * (+115) Computational class - not Turing complete 14:27:07 [[ImTooLazyToMakeAnActuallyGoodEsolang]] https://esolangs.org/w/index.php?diff=130782&oldid=130754 * EvyLah * (+145) ditched hello world cuz too long and Im lazy 14:39:10 [[Brainbits+]] N https://esolangs.org/w/index.php?oldid=130783 * None1 * (+851) Created page with "'''Brainbits+''' is an extension of [[Brainbits]] that adds 1 command to make it [[turing complete]]. == Commands == {| class="wikitable" |+ Commands |- ! Command !! Description |- | \ || Invert the bit |- | > || Go to next cell |- | < [[Brainbits+]] M https://esolangs.org/w/index.php?diff=130784&oldid=130783 * None1 * (+9) /* Interpreters */ 14:41:31 [[ImTooLazyToMakeAnActuallyGoodEsolang]] https://esolangs.org/w/index.php?diff=130785&oldid=130782 * EvyLah * (+462) ok category update 14:41:58 [[Brainbits+]] M https://esolangs.org/w/index.php?diff=130786&oldid=130784 * None1 * (+34) 14:44:47 [[Language list]] https://esolangs.org/w/index.php?diff=130787&oldid=130658 * EvyLah * (+43) /* I */ yay 14:47:16 [[Language list]] https://esolangs.org/w/index.php?diff=130788&oldid=130787 * None1 * (+33) /* B */ 14:47:30 [[User:EvyLah]] https://esolangs.org/w/index.php?diff=130789&oldid=130109 * EvyLah * (+194) 14:48:05 [[ImTooLazyToMakeAnActuallyGoodEsolang]] https://esolangs.org/w/index.php?diff=130790&oldid=130785 * EvyLah * (+0) how did I spell languages wrong lmao 14:51:17 -!- __monty__ has quit (Ping timeout: 240 seconds). 14:54:46 [[Brainbits+]] M https://esolangs.org/w/index.php?diff=130791&oldid=130786 * None1 * (+71) 14:54:54 [[ImTooLazyToMakeAnActuallyGoodEsolang]] https://esolangs.org/w/index.php?diff=130792&oldid=130790 * EvyLah * (+0) /* Hello! */ fixed 14:56:54 [[ImTooLazyToMakeAnActuallyGoodEsolang]] https://esolangs.org/w/index.php?diff=130793&oldid=130792 * EvyLah * (+337) yay implemented 14:58:24 -!- __monty__ has joined. 15:00:08 [[User:None1]] https://esolangs.org/w/index.php?diff=130794&oldid=130665 * None1 * (+66) /* My Esolangs */ add brainbits+ 15:12:57 -!- amby has joined. 15:22:14 [[User:Ractangle/AREA]] https://esolangs.org/w/index.php?diff=130795&oldid=130739 * Ractangle * (-91) 15:22:32 [[User:Ractangle/AREA]] https://esolangs.org/w/index.php?diff=130796&oldid=130795 * Ractangle * (-769) Replaced content with "{{Stub}} '''AREA'''" 15:22:46 [[User:Ractangle]] https://esolangs.org/w/index.php?diff=130797&oldid=130773 * Ractangle * (-42) /* Esolangs */ 15:23:33 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 15:24:53 [[User:Ractangle/BASE]] https://esolangs.org/w/index.php?diff=130798&oldid=130769 * Ractangle * (-40) 15:31:09 [[User:Ractangle/BASE]] https://esolangs.org/w/index.php?diff=130799&oldid=130798 * Ractangle * (+90) /* Examples */ 15:31:19 [[User:Ractangle/BASE]] https://esolangs.org/w/index.php?diff=130800&oldid=130799 * Ractangle * (+1) /* Quine */ 15:33:00 [[User:Ractangle/BASE]] https://esolangs.org/w/index.php?diff=130801&oldid=130800 * Ractangle * (+48) /* Examples */ 15:34:51 [[User:Ractangle/BASE]] https://esolangs.org/w/index.php?diff=130802&oldid=130801 * Ractangle * (+67) /* Examples */ 15:35:24 [[User:Ractangle/BASE]] https://esolangs.org/w/index.php?diff=130803&oldid=130802 * Ractangle * (+26) /* Commands */ 15:35:34 [[User:Ractangle/BASE]] https://esolangs.org/w/index.php?diff=130804&oldid=130803 * Ractangle * (+5) /* Commands */ 15:47:51 [[User:Ractangle/BASE]] https://esolangs.org/w/index.php?diff=130805&oldid=130804 * Ractangle * (+27) /* Examples */ 15:48:18 [[User:Ractangle/BASE]] https://esolangs.org/w/index.php?diff=130806&oldid=130805 * Ractangle * (+24) 15:53:10 -!- FreeFull has quit. 15:58:25 -!- FreeFull has joined. 15:59:13 [[User:Ractangle/BASE]] https://esolangs.org/w/index.php?diff=130807&oldid=130806 * Ractangle * (+238) /* Deadfish interpriter */ 15:59:43 [[User:Ractangle/BASE]] https://esolangs.org/w/index.php?diff=130808&oldid=130807 * Ractangle * (+0) oops 16:07:43 [[User:Ractangle/BASE]] https://esolangs.org/w/index.php?diff=130809&oldid=130808 * Ractangle * (+226) /* Examples */ 16:12:06 [[User:Ractangle/BASE]] https://esolangs.org/w/index.php?diff=130810&oldid=130809 * Ractangle * (+108) /* Examples */ 16:12:31 [[Fun Video Game]] https://esolangs.org/w/index.php?diff=130811&oldid=126287 * Ractangle * (+99) /* Implementations */ 16:24:37 [[User:XKCD Random Number]] https://esolangs.org/w/index.php?diff=130812&oldid=129590 * Ractangle * (-18) /* Python */ 16:29:48 [[2d]] https://esolangs.org/w/index.php?diff=130813&oldid=130330 * Ractangle * (+30) 16:29:54 [[2d]] https://esolangs.org/w/index.php?diff=130814&oldid=130813 * Ractangle * (+1) 16:34:51 [[!lyriclydemoteestablishcommunism!]] https://esolangs.org/w/index.php?diff=130815&oldid=116906 * Ractangle * (-345) /* Language specifications */ 16:35:31 [[!lyriclydemoteestablishcommunism!]] https://esolangs.org/w/index.php?diff=130816&oldid=130815 * Ractangle * (-280) /* Language specifications */ 16:36:06 [[!lyriclydemoteestablishcommunism!]] https://esolangs.org/w/index.php?diff=130817&oldid=130816 * Ractangle * (-110) /* Language specifications */ 16:40:22 [[!lyriclydemoteestablishcommunism!]] https://esolangs.org/w/index.php?diff=130818&oldid=130817 * Ractangle * (-505) Tried to make the page better 16:41:59 [[User:Ractangle/BASE]] https://esolangs.org/w/index.php?diff=130819&oldid=130810 * Ractangle * (+121) /* Examples */ 16:43:59 [[!lyriclydemoteestablishcommunism!]] https://esolangs.org/w/index.php?diff=130820&oldid=130818 * Ractangle * (+55) /* Implementations */ 16:44:40 [[User:Ractangle/BASE/Other esolang implementations]] N https://esolangs.org/w/index.php?oldid=130821 * Ractangle * (+64) Created page with "{{WIP}} ==[[!lyriclydemoteestablishcommunism!]]== USER" 16:50:50 [[Special:Log/move]] move * Ractangle * moved [[User:Ractangle/TWIST]] to [[User:Ractangle/prp(-7)]] 16:53:58 [[User:Ractangle/prp(-7)]] https://esolangs.org/w/index.php?diff=130824&oldid=130822 * Ractangle * (-18) 16:54:08 [[Special:Log/move]] move * Ractangle * moved [[User:Ractangle/prp(-7)]] to [[User:Ractangle/rt(-7)]] 17:12:40 [[User:Ractangle/rt(-7)]] https://esolangs.org/w/index.php?diff=130827&oldid=130825 * Ractangle * (+433) 17:12:49 [[Special:Log/move]] move * Ractangle * moved [[User:Ractangle/rt(-7)]] to [[User:Ractangle/rt]] 17:14:34 [[User:Ractangle/rt]] https://esolangs.org/w/index.php?diff=130830&oldid=130828 * Ractangle * (+41) 17:15:00 [[User:Ractangle/rt]] https://esolangs.org/w/index.php?diff=130831&oldid=130830 * Ractangle * (+10) 18:07:47 -!- Lord_of_Life has quit (Ping timeout: 264 seconds). 18:07:54 -!- Lord_of_Life_ has joined. 18:09:15 -!- Lord_of_Life_ has changed nick to Lord_of_Life. 18:19:02 -!- tromp has joined. 20:32:04 am I right that the computers we use today are Universal Turing Machines (UTMs) and not just Turing Machines? 21:15:08 -!- slavfox has quit (Quit: ZNC 1.8.2 - https://znc.in). 21:18:13 -!- slavfox has joined. 21:40:36 [[2DBFIPM]] N https://esolangs.org/w/index.php?oldid=130832 * Tommyaweosme * (+1187) Created page with "2DBFIPM (2-dimensional brainfuck! instruction pointer moves!) is an esolang created by [[User:Tommyaweosme]] == Commands == same as brainfuck # start instruction pointer movement v move instruction pointer down } move instruction pointer right ^ move instructi 21:41:03 [[2DBFIPM]] M https://esolangs.org/w/index.php?diff=130833&oldid=130832 * Tommyaweosme * (+0) why do i always mispell this one category /rhetoricalquestion 21:48:50 [[User:Tommyaweosme]] https://esolangs.org/w/index.php?diff=130834&oldid=130685 * Tommyaweosme * (+14) 21:55:20 [[User:Tommyaweosme/basic tape language]] N https://esolangs.org/w/index.php?oldid=130835 * Tommyaweosme * (+363) Created page with "this is not esoteric, but i figured it might help people anyway cus its so [[low-level]] commands are: RIGHT - go right LEFT - go left SET - set bit to 1 RESET - set bit to 0 FLIP - flip bit IFNULL() - does commands in brackets i 21:59:04 [[User:Tommyaweosme/public tape]] N https://esolangs.org/w/index.php?oldid=130836 * Tommyaweosme * (+733) Created page with " 100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 ^ welcome to the public tape! we are at 16 bytes (256 bits) right now leave a command and then your name the commands 21:59:26 [[User:Tommyaweosme/public tape]] M https://esolangs.org/w/index.php?diff=130837&oldid=130836 * Tommyaweosme * (+1) fixing stuff 21:59:58 [[User:Tommyaweosme]] https://esolangs.org/w/index.php?diff=130838&oldid=130834 * Tommyaweosme * (-11) 22:00:14 [[User:Tommyaweosme]] https://esolangs.org/w/index.php?diff=130839&oldid=130838 * Tommyaweosme * (+11) 22:01:02 [[User:Tommyaweosme]] https://esolangs.org/w/index.php?diff=130840&oldid=130839 * Tommyaweosme * (-11) i dont know what happened for this one. please dont call this an edit war, this is just a weird glitch 22:03:39 [[User:Tommyaweosme/all pages]] N https://esolangs.org/w/index.php?oldid=130841 * Tommyaweosme * (+86) Created page with "organized in shortest to longest namespace=User titleregexp=Tommyaweosme " 22:05:45 [[User:Tommyaweosme/all pages]] https://esolangs.org/w/index.php?diff=130842&oldid=130841 * Tommyaweosme * (+9) 22:22:46 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…). 22:32:01 -!- Sgeo has joined. 22:49:44 [[Special:Log/newusers]] create * CHRI-K * New user account 23:03:16 -!- __monty__ has quit (Quit: leaving). 23:21:56 -!- amby has 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). 23:30:42 [[Brainfuck constants]] https://esolangs.org/w/index.php?diff=130843&oldid=130031 * Tommyaweosme * (+41) /* 48 */ added my method 23:35:14 [[Brainfuck constants]] https://esolangs.org/w/index.php?diff=130844&oldid=130843 * Tommyaweosme * (-41) makes 12 instead? 23:35:54 [[2DBFIPM]] https://esolangs.org/w/index.php?diff=130845&oldid=130833 * Tommyaweosme * (+3)