←2024-06-28 2024-06-29 2024-06-30→ ↑2024 ↑all
00:03:32 <esolangs> [[Empty]] https://esolangs.org/w/index.php?diff=131583&oldid=131582 * Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff * (+70) /* Truth-machine */
00:06:26 <esolangs> [[Truth-machine]] https://esolangs.org/w/index.php?diff=131584&oldid=131436 * Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff * (+84)
00:09:29 <esolangs> [[FizzBuzz]] https://esolangs.org/w/index.php?diff=131585&oldid=125827 * Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff * (+230)
00:15:08 <esolangs> [[Hello world program in esoteric languages (D-G)]] https://esolangs.org/w/index.php?diff=131586&oldid=131274 * Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff * (+31)
00:23:47 <ais523> salpynx: I'm pretty sure it's at least a push-down automaton
00:23:54 <ais523> but am doubtful of its TCness
00:24:22 <esolangs> [[Empty]] https://esolangs.org/w/index.php?diff=131587&oldid=131583 * Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff * (+55) /* Modulo */
00:24:31 <esolangs> [[Empty]] https://esolangs.org/w/index.php?diff=131588&oldid=131587 * Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff * (+1) /* Modulo */
00:25:20 <esolangs> [[Empty]] https://esolangs.org/w/index.php?diff=131589&oldid=131588 * Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff * (+45) /* Programs */
00:34:04 <salpynx> ais523: the statement that it "must be in a strictly more powerful computational class" than a PDA is interesting. I don't disagree, but thought the main classes were quite discrete and it's hard to fall between them
00:34:35 <salpynx> without some very contrived wording of the spec.
00:35:19 <ais523> well, it can do everything a PDA can and at least one thing it can't
00:35:39 <ais523> in-between classes aren't so rare, I think – the main issue is that it's very easy to hit TCness accidentally and computable languages can't (as far as we know) go above that
00:37:13 <ais523> I still don't know whether BuzzFizz is LBA-complete, for example: it was intentionally designed to not be any more powerful than an LBA, but I wasn't expecting it to be able to implement all LBAs – maybe it can but that isn't obvious
00:37:21 -!- X-Scale has joined.
00:38:17 <salpynx> I don't suppose you have an example program of that "easy to implement" in Conedy example. I _think_ it's a hypothetical program, but I'll ask just in case
00:40:18 <salpynx> playing with examples in an interpreter gets me further with intuitive understanding than just reasoning through the specs
00:40:36 <ais523> no – I don't have any programs or an interpreter
00:41:05 <ais523> which is part of the reason it's sub-TC in the first place, I would have noticed that I'd accidentally created a stack rather than a queue
00:41:12 <ais523> if I'd actually tried to write a program
00:41:16 <ais523> (I did notice eventually)
00:41:49 <salpynx> I've got a rudimentary interpreter, but I think I need to make the data storage more robust since arbitrary decimal places are going to be pretty important
00:42:28 <ais523> need to use an arbitrary-precision rational type
00:42:54 <ais523> I'm not sure how many languages have those in their standard libraries (Perl does I think)
00:43:27 <salpynx> I'm using Python, and I think numpy should have something that will fit
00:46:02 <salpynx> FSAs that can implement infinite counters is something I was thinking about recently, I thought they fell in between categories, but I concluded the count can't be used for anything, so they are still _equivalent_ to FSA
00:48:13 <salpynx> Proving non-TCness is hard. I thought I had something concrete with data limitations in loops, but my hypothesis was totally wrong there.
00:50:14 <salpynx> Confirming the greater than PDA with an interpreter and code is still interesting, so I'll try to finish it.
00:58:05 <ais523> hmm… if the various things you can do in Conedy are translated into a 1D language, you basically have an accumulator consisting of a single rational, and you can add, subtract, multiply or divide it by rational constants, and do an "if the rational is greater than some specific value, goto some specific line"
01:00:27 <esolangs> [[User talk:Ais523]] https://esolangs.org/w/index.php?diff=131590&oldid=131279 * PrySigneToFry * (+436) /* About your sign */ new section
01:00:51 <esolangs> [[Empty]] https://esolangs.org/w/index.php?diff=131591&oldid=131589 * Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff * (+56) /* Robots */
01:01:30 <ais523> also there's a program-defined maximum value, so you can't use the integer part and fractional part as two different unbounded counters
01:01:43 <esolangs> [[User:PrySigneToFry/Sandbox]] https://esolangs.org/w/index.php?diff=131592&oldid=131052 * PrySigneToFry * (-34)
01:04:02 <esolangs> [[User talk:Ais523]] https://esolangs.org/w/index.php?diff=131593&oldid=131590 * PrySigneToFry * (+342)
01:09:33 <esolangs> [[User:PrySigneToFry/Sandbox/TEST]] N https://esolangs.org/w/index.php?oldid=131594 * PrySigneToFry * (+567) Created page with "Here is my sign format: --[[User:PrySigneToFry|<span style="color:blue;background:white;">PrySigneToFry</span>]](This is the User Page. I span it with blue text.) ([[User talk:PrySigneToFry|<span style="color:yellow;background:black;">talk
01:09:58 <esolangs> [[User:PrySigneToFry/Sandbox/TEST]] https://esolangs.org/w/index.php?diff=131595&oldid=131594 * PrySigneToFry * (-2)
01:10:47 <ais523> I guess one way to make this TC would be "given an infinite list that's an arbitrary suffix of the binary expansion of 3**(-x) * 5**(-y), x and y nonnegative, determine whether x and/or y are zero by parsing the list with a finite state machine"
01:11:02 <ais523> I suspect that's probably impossible, but it might not be? (especially as you can pick different primes)
01:13:34 <ais523> digital-root-based approaches come to mind
01:16:48 <int-e> > (1/3, 1/75)
01:16:49 <lambdabot> (0.3333333333333333,1.3333333333333334e-2)
01:18:13 <int-e> (ah, "binary")
01:22:04 <ais523> can pick other bases
01:22:20 <ais523> I have got as far as this, using the integer portion rather than the fractional portion: https://tio.run/##y0rNyan8/99I69HGdYYGXMZQ2vDQ4sPTD@8zOrSYy/jQYveHO1se7pz9qGHuoW1A7qGtScbmwY@a1gCR@///AA
01:22:59 <ais523> 2**x * 3**y in base 37, with x/y positive, it is possible to determine whether or not x == 1 and whether or not y == 1 using finite state machines on the digits of the integer expansion
01:23:14 <ais523> I am not sure whether doing this with the fractional portion will also be easy
01:24:16 <ais523> (one problem is that it is an infinitely repeating series of digits with fractional place values, and the finite state machine needs to work out where to stop reading – "when it starts to repeat" isn't something a finite state machine can do, and "when you see a lot of 0s in a row" is possible but you'd need to prove that that can't happen at a point other than the repeat point)
01:26:17 -!- X-Scale has quit (Quit: Client closed).
01:28:44 <ais523> OK this is a bit of a better example: https://tio.run/##y0rNyan8/99I69HGdYYGXMZQ2vDQ4sPTD@8zOrSYy/jQYveHO1se7pz9qGHuoW1A7qGtScbmwY@a1gCR@///AA
01:29:15 <ais523> same idea but in base 7, and allowing x and y to be 0; first table is the values in decimal, second table is the values in base 7, third table is the digit sums
01:30:57 <salpynx> those are the same URL?
01:31:51 <ais523> sorry, meant https://tio.run/##y0rNyan8/99Iy9Dg4Y5th5ZwGcNZhocWH55@eJ/RocVcxocWJ5mDyENb3R/ubHm4c/ajhrmHtimYgETCHjWtASJMiWCoxP//AA
01:40:31 <esolangs> [[(a)]] N https://esolangs.org/w/index.php?oldid=131596 * Tommyaweosme * (+1078) Created page with "(a) is an esoteric number system, loosely based off of roman numerals. == How it works == The character "a" represents one. Brackets like this "()" take the power of two of whatevers in it. "(a)", this numbering systems title, means two. The subtraction system works
01:40:46 -!- ais523 has quit (Remote host closed the connection).
01:41:58 -!- ais523 has joined.
01:43:14 <int-e> Oh I see, you check the remainder modulo 36.
01:44:11 <int-e> (Which is something you can also fairly easily do that in other bases than 37.)
01:44:22 <int-e> s/that //
01:50:00 -!- ais523 has quit (Remote host closed the connection).
01:50:10 <int-e> Looking at a fixed number of digits of a suffix of 3^(-x) 5^(-y) will not tell you whether x = 0 or y = 0, because 3**(-x) * 5**(-y) can be made arbitrarily close to a power of 2.
01:50:31 <int-e> in terms of relative errors
01:51:14 -!- ais523 has joined.
01:53:03 -!- nitrix has quit (Quit: ZNC 1.8.2 - https://znc.in).
01:54:10 -!- ais523 has quit (Remote host closed the connection).
01:54:41 -!- nitrix has joined.
01:55:23 -!- ais523 has joined.
01:59:53 <ais523> I just realised there's something else that Conedy can do – generally the way I think about Conedy is to think of a "net edge", with data being transmitted from one net edge to the next by hitting a known edge of the net, and with all the operations so far the two edges have the same orientation
02:00:04 <ais523> i.e. transmitting data from a vertical edge of a net to another vertical edge of a net
02:00:25 <ais523> but, you can transmit from a vertical edge of a net and hit a horizontal edge of a different net, and that does a reciprocal operation, I think
02:00:55 <ais523> new_position = 1 / (old_position + constant) + constant
02:01:23 <ais523> that seems potentially useful
02:14:02 <esolangs> [[User:PrySigneToFry/Sandbox]] https://esolangs.org/w/index.php?diff=131597&oldid=131592 * PrySigneToFry * (+42)
02:27:21 -!- Everything has quit (Ping timeout: 252 seconds).
05:02:18 <salpynx> numpy will not help with arbitrary precision rationals in Python, looks like mpmath will though.
05:04:35 <salpynx> this is the basic loop I am testing https://pastebin.com/KvRJvW6U it should get ever closer to y=4.5, but never reach it
05:06:38 <salpynx> ais523: yes, a net can be hit on a y or an x edge, I'm focussing on getting an accurate interpreter running before thinking about what that means :)
05:07:46 <ais523> salpynx: I agree with you about what that loop should do
05:08:12 <ais523> it's the equivalent of repeatedly pushing the same element onto a stack in a loop
05:16:34 <esolangs> [[CW@ 3 cell brainfuck substitution]] https://esolangs.org/w/index.php?diff=131598&oldid=131529 * Yayimhere * (+178) /* programs */
05:16:59 <esolangs> [[CW@ 3 cell brainfuck substitution]] https://esolangs.org/w/index.php?diff=131599&oldid=131598 * Yayimhere * (+1)
05:17:59 -!- chiselfuse has quit (Remote host closed the connection).
05:18:33 -!- chiselfuse has joined.
05:21:33 <esolangs> [[Deadfish/Implementations (nonalphabetic and A-L)]] https://esolangs.org/w/index.php?diff=131600&oldid=131487 * Ractangle * (+282) /* Bash */
05:21:55 <esolangs> [[BASE]] https://esolangs.org/w/index.php?diff=131601&oldid=131508 * Ractangle * (+28) /* Deadfish implementation */
05:27:49 <esolangs> [[Deadfish/Implementations (M-Z)]] https://esolangs.org/w/index.php?diff=131602&oldid=131476 * Ractangle * (+477) /* PostScript */
05:41:43 <zzo38> If you know how to program IBM 1401 then maybe you should add a implementation of Deadfish in IBM 1401
05:50:00 -!- tromp has joined.
05:53:18 <Sgeo> Are there any computers or esolangs that do instruction decode while an instruction is running? Say, if there's a 3 byte instruction but the first byte of it can cause the third byte to change, and that successfully gets processed?
05:54:23 <Sgeo> zzo38, fine if the commands are uppercase? I'm... not sure if 1401 *has* lowercase letters
05:57:09 <Sgeo> Ok deadfish confuses me
06:02:56 <zzo38> If you have to use uppercase letters then that will work; my implementation in Knuth's MIX also uses uppercase, because MIX also doesn't have lowercase letters either.
06:04:40 <salpynx> I'm most of the way through a 1401 deadfish. I just need to redo MUL, because its a bit odd, and I have to re-calc all my word boundary marks, which has caused me to pause
06:05:43 <salpynx> it uses the 1407 console inquiry station for input, which possibly adds to the humour value (one vide I saw questioned if anyone had ever seriously bought or used that unit)
06:07:38 <Sgeo> I don't understand the 1407. The computer has to... wait before trying to get input from it? Or... there's some limitation I don't understand
06:17:25 <Sgeo> Operator has to indicate they want to use it, and then computer has to test for that before telling the user it's ok to type. I think
06:18:01 <salpynx> I was planning a 20 digit deadfish accumulator (needs a 2*len + 1 mult workspace). Now's the time to request more digits, I guess I could do many more, and I probably only want to write it once
06:19:52 <Sgeo> Accumulator size as close to total memory size as possible >.>
06:20:28 <salpynx> I'm using the 1407 through simh, and it works pretty simply to request single character input, and it can be printed to via a different method than normal print
06:20:45 <salpynx> M%T0{inp}R is read from 1407 to addr {inp}
06:21:07 <Sgeo> " The
06:21:07 <Sgeo> inquiry request indicator must be ON to process this
06:21:08 <Sgeo> instruction. "
06:21:10 <salpynx> M%T0{reg}W is write to the 1407 printer
06:21:56 <Sgeo> That's... unintuitive for write, huh.
06:22:26 <salpynx> Those instructions did make it sound more complicated, I don't really understand it either. `set inq business` in simh had me reading and writing to it without worrying abotu switches
06:25:53 <esolangs> [[Empty]] M https://esolangs.org/w/index.php?diff=131603&oldid=131591 * PythonshellDebugwindow * (+25) Categories
06:27:51 <Sgeo> Rolffson's video on the 1407 has code to wait in a loop for the user to hit request
06:28:30 <esolangs> [[Beefydie]] M https://esolangs.org/w/index.php?diff=131604&oldid=129920 * PythonshellDebugwindow * (+72) Categories
06:31:51 <esolangs> [[Squarelang]] M https://esolangs.org/w/index.php?diff=131605&oldid=124441 * PythonshellDebugwindow * (+66) Stub, categories
06:35:17 <esolangs> [[Translated CSharp/Horribly Translated Page]] M https://esolangs.org/w/index.php?diff=131606&oldid=125830 * PythonshellDebugwindow * (+55) Escape categories
06:41:12 <esolangs> [[DSL]] M https://esolangs.org/w/index.php?diff=131607&oldid=130298 * PythonshellDebugwindow * (+110) Categories
06:43:25 <esolangs> [[Made up grammar rules]] M https://esolangs.org/w/index.php?diff=131608&oldid=130928 * PythonshellDebugwindow * (+98) Categories
07:07:49 <esolangs> [[BASE]] https://esolangs.org/w/index.php?diff=131609&oldid=131601 * Ractangle * (+5) /* Truth-machine */
07:08:19 <esolangs> [[BASE]] https://esolangs.org/w/index.php?diff=131610&oldid=131609 * Ractangle * (+14) /* FizzBuzz */
07:08:32 <ais523> <Sgeo> Are there any computers or esolangs that do instruction decode while an instruction is running? Say, if there's a 3 byte instruction but the first byte of it can cause the third byte to change, and that successfully gets processed? ← that seems unlikely because most instructions don't write to memory until they've finished executing
07:16:32 <esolangs> [[Talk:2L]] https://esolangs.org/w/index.php?diff=131611&oldid=21060 * Ractangle * (+111) /* the 2L program's look */ new section
07:16:49 <esolangs> [[Talk:2L]] https://esolangs.org/w/index.php?diff=131612&oldid=131611 * Ractangle * (+121) forgot to do the ~~~~
07:28:10 <FreeFull> I'm not aware of any
07:40:23 <esolangs> [[CW@ 3 cell brainfuck substitution]] https://esolangs.org/w/index.php?diff=131613&oldid=131599 * Yayimhere * (+38)
07:44:53 <esolangs> [[CW@ 3 cell brainfuck substitution]] https://esolangs.org/w/index.php?diff=131614&oldid=131613 * Yayimhere * (-38)
07:59:03 <esolangs> [[COPY WITH @]] https://esolangs.org/w/index.php?diff=131615&oldid=131538 * Yayimhere * (+69)
08:01:29 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
08:22:49 -!- Sgeo has quit (Read error: Connection reset by peer).
08:27:07 -!- Noisytoot has quit (Excess Flood).
08:30:26 -!- Noisytoot has joined.
08:35:06 <esolangs> [[BASE]] https://esolangs.org/w/index.php?diff=131616&oldid=131610 * Ractangle * (+13) /* Deadfish implementation */
08:37:03 <esolangs> [[Deadfish]] https://esolangs.org/w/index.php?diff=131617&oldid=131458 * Ractangle * (+74) /* Commands */
08:37:24 <esolangs> [[Deadfish]] https://esolangs.org/w/index.php?diff=131618&oldid=131617 * Ractangle * (+4) /* Commands */
08:38:28 <esolangs> [[Deadfish]] https://esolangs.org/w/index.php?diff=131619&oldid=131618 * Ractangle * (+10) oh wait thats why it's not centerd
08:38:58 <esolangs> [[Deadfish]] https://esolangs.org/w/index.php?diff=131620&oldid=131619 * Ractangle * (-2) /* Commands */
08:47:00 <esolangs> [[]] https://esolangs.org/w/index.php?diff=131621&oldid=131524 * Ractangle * (+2) /* Examples */
08:51:44 <esolangs> [[]] https://esolangs.org/w/index.php?diff=131622&oldid=131621 * Ractangle * (+3) /* Commands */
08:52:40 <esolangs> [[]] https://esolangs.org/w/index.php?diff=131623&oldid=131622 * Ractangle * (+33) /* Errors */
08:52:43 <esolangs> [[]] https://esolangs.org/w/index.php?diff=131624&oldid=131623 * Ractangle * (+151) /* A+B Problem */
08:53:38 <esolangs> [[]] https://esolangs.org/w/index.php?diff=131625&oldid=131624 * Ractangle * (-103) /* Commands */
08:57:04 -!- tromp has joined.
08:57:36 <esolangs> [[]] https://esolangs.org/w/index.php?diff=131626&oldid=131625 * Ractangle * (+127) /* Examples */
08:57:59 <esolangs> [[]] https://esolangs.org/w/index.php?diff=131627&oldid=131626 * Ractangle * (+19) /* Examples */
09:00:23 <esolangs> [[]] https://esolangs.org/w/index.php?diff=131628&oldid=131627 * Ractangle * (+206) /* Deadfish Implementation */
09:00:44 <esolangs> [[]] https://esolangs.org/w/index.php?diff=131629&oldid=131628 * Ractangle * (-477) /* Factorial */
09:00:55 <esolangs> [[]] https://esolangs.org/w/index.php?diff=131630&oldid=131629 * Ractangle * (-344) /* Looping counter (almost) */
09:01:16 <esolangs> [[]] https://esolangs.org/w/index.php?diff=131631&oldid=131630 * Ractangle * (+2) /* 99 bottles of beer */
09:01:58 <esolangs> [[]] https://esolangs.org/w/index.php?diff=131632&oldid=131631 * Ractangle * (-81) /* 99 bottles of beer */
09:02:58 <esolangs> [[]] https://esolangs.org/w/index.php?diff=131633&oldid=131632 * Ractangle * (+72) /* Deadfish Implementation */
09:03:10 <esolangs> [[]] https://esolangs.org/w/index.php?diff=131634&oldid=131633 * Ractangle * (+2) /* A+B Problem */
09:03:18 <esolangs> [[]] https://esolangs.org/w/index.php?diff=131635&oldid=131634 * Ractangle * (-253) /* Text Engine */
09:03:32 <esolangs> [[]] https://esolangs.org/w/index.php?diff=131636&oldid=131635 * Ractangle * (-61) /* Empty Program */
09:03:39 <esolangs> [[]] https://esolangs.org/w/index.php?diff=131637&oldid=131636 * Ractangle * (-309) /* Infinite loop */
09:07:05 <esolangs> [[]] https://esolangs.org/w/index.php?diff=131638&oldid=131637 * Ractangle * (+55) /* Deadfish Implementation */
09:07:58 <esolangs> [[]] https://esolangs.org/w/index.php?diff=131639&oldid=131638 * Ractangle * (+15) /* Deadfish Implementation */
09:09:13 <esolangs> [[]] https://esolangs.org/w/index.php?diff=131640&oldid=131639 * Ractangle * (+81) /* Examples */
09:11:25 <esolangs> [[]] https://esolangs.org/w/index.php?diff=131641&oldid=131640 * Ractangle * (+57) /* Deadfish Implementation */
09:12:39 <esolangs> [[Deadfish/Implementations (nonalphabetic and A-L)]] https://esolangs.org/w/index.php?diff=131642&oldid=131600 * Ractangle * (+103) /* BASE */
09:14:03 <esolangs> [[CLFCE]] https://esolangs.org/w/index.php?diff=131643&oldid=130412 * Ractangle * (+45) /* Examples */
09:21:31 <esolangs> [[CLFCE]] https://esolangs.org/w/index.php?diff=131644&oldid=131643 * Ractangle * (+581) /* Deadfish implementation */
09:21:59 <esolangs> [[CLFCE]] https://esolangs.org/w/index.php?diff=131645&oldid=131644 * Ractangle * (-34) /* Deadfish implementation */
09:23:44 <esolangs> [[Deadfish/Implementations (nonalphabetic and A-L)]] https://esolangs.org/w/index.php?diff=131646&oldid=131642 * Ractangle * (+563) /* Castile */
09:23:54 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
09:33:13 -!- ais523 has quit (Quit: quit).
09:35:49 -!- __monty__ has joined.
09:51:01 -!- tromp has joined.
10:21:12 -!- X-Scale has joined.
10:25:54 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
10:30:38 <esolangs> [[January 25, 4092]] M https://esolangs.org/w/index.php?diff=131647&oldid=131574 * Kaveh Yousefi * (+1) Amended an orthographic mistake.
10:32:25 <esolangs> [[CW@ 3 cell brainfuck substitution]] https://esolangs.org/w/index.php?diff=131648&oldid=131614 * Yayimhere * (+1)
10:34:41 -!- salpynx has quit (Quit: Leaving).
10:45:00 -!- X-Scale has quit (Ping timeout: 250 seconds).
11:06:08 -!- X-Scale has joined.
11:16:11 <esolangs> [[(script())]] https://esolangs.org/w/index.php?diff=131649&oldid=130415 * Ractangle * (+89) /* Examples */
11:18:49 <esolangs> [[(script())]] https://esolangs.org/w/index.php?diff=131650&oldid=131649 * Ractangle * (+174) /* Deadfish implementation */
11:19:03 <esolangs> [[(script())]] https://esolangs.org/w/index.php?diff=131651&oldid=131650 * Ractangle * (+0) /* Deadfish implementation */
11:20:29 <esolangs> [[Deadfish/Implementations (nonalphabetic and A-L)]] https://esolangs.org/w/index.php?diff=131652&oldid=131646 * Ractangle * (+241)
11:27:23 -!- amby has joined.
11:32:47 -!- X-Scale has quit (Quit: Client closed).
11:45:07 -!- X-Scale has joined.
12:21:18 <esolangs> [['interbasic]] https://esolangs.org/w/index.php?diff=131653&oldid=130605 * Ractangle * (+325) /* Examples */
12:21:53 <esolangs> [[Deadfish/Implementations (nonalphabetic and A-L)]] https://esolangs.org/w/index.php?diff=131654&oldid=131652 * Ractangle * (+312) /* (script()) */
12:22:56 -!- X-Scale has quit (Ping timeout: 250 seconds).
12:23:14 <esolangs> [[Uyjhmn--]] https://esolangs.org/w/index.php?diff=131655&oldid=130699 * Ractangle * (-225) /* Extensions */
12:24:49 <esolangs> [[Uyjhmn--]] https://esolangs.org/w/index.php?diff=131656&oldid=131655 * Ractangle * (+9) /* Commands */
12:26:15 <esolangs> [[Uyjhmn--]] https://esolangs.org/w/index.php?diff=131657&oldid=131656 * Ractangle * (-29) /* Empty Program */
12:26:30 <esolangs> [[Uyjhmn--]] https://esolangs.org/w/index.php?diff=131658&oldid=131657 * Ractangle * (-9)
12:28:07 <esolangs> [[Uyjhmn--]] https://esolangs.org/w/index.php?diff=131659&oldid=131658 * Ractangle * (-121) /* Commands */
12:43:16 -!- Thelie has joined.
12:45:48 -!- X-Scale has joined.
12:49:39 <esolangs> [[Uyjhmn--]] https://esolangs.org/w/index.php?diff=131660&oldid=131659 * Ractangle * (-56) /* Brainfumn */
13:10:43 <esolangs> [[User:Ractangle]] https://esolangs.org/w/index.php?diff=131661&oldid=131535 * Ractangle * (+53) /* Other things */
13:16:44 <esolangs> [[User:Ractangle]] https://esolangs.org/w/index.php?diff=131662&oldid=131661 * Ractangle * (-53)
13:27:00 <esolangs> [[User:Ractangle]] https://esolangs.org/w/index.php?diff=131663&oldid=131662 * Ractangle * (+8) /* Programlangs that i know how to program in them */
13:41:15 -!- amby has quit (Remote host closed the connection).
13:41:33 -!- amby has joined.
14:02:11 -!- X-Scale has quit (Quit: Client closed).
14:37:08 <esolangs> [[User talk:Tommyaweosme]] https://esolangs.org/w/index.php?diff=131664&oldid=131349 * PrySigneToFry * (+408)
14:43:14 <esolangs> [[User talk:PrySigneToFry]] https://esolangs.org/w/index.php?diff=131665&oldid=131498 * PrySigneToFry * (+299)
14:49:58 <esolangs> [[Kip-asm]] https://esolangs.org/w/index.php?diff=131666&oldid=128539 * Gggfr * (+192)
14:52:38 <esolangs> [[]] https://esolangs.org/w/index.php?diff=131667&oldid=131163 * Gggfr * (+83)
14:55:22 -!- Melvar has quit (Ping timeout: 246 seconds).
15:03:13 <esolangs> [[Schacalic]] N https://esolangs.org/w/index.php?oldid=131668 * PrySigneToFry * (+784) Created page with "Schacalic, or alk, is based on PLUSHIES ART. == Syntax == Same as PLUSHIES ART. == Examples == === Hello, world! === <pre> print("Hello, world!") </pre> === Cat program == <pre> print(x) where: x = str(input(__prompt = "Please input: ")) </pre> === Pseudo-Tru
15:09:02 -!- Melvar has joined.
15:12:13 <esolangs> [[Language list]] https://esolangs.org/w/index.php?diff=131669&oldid=131442 * PrySigneToFry * (+16)
15:56:06 -!- FreeFull has quit.
16:00:31 -!- FreeFull has joined.
16:15:11 <esolangs> [[Empty]] https://esolangs.org/w/index.php?diff=131670&oldid=131603 * Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff * (-1) /* Hello, World! */
16:18:45 -!- Thelie has quit (Ping timeout: 256 seconds).
16:33:05 -!- Thelie has joined.
16:46:55 -!- Sgeo has joined.
16:49:55 <esolangs> [[BFshort]] https://esolangs.org/w/index.php?diff=131671&oldid=130292 * PythonshellDebugwindow * (+1093) Add converter to and from brainfuck, add categories
16:50:30 <esolangs> [[BFshort]] M https://esolangs.org/w/index.php?diff=131672&oldid=131671 * PythonshellDebugwindow * (+25) Category
16:52:47 -!- Thelie has quit (Ping timeout: 272 seconds).
16:54:40 -!- X-Scale has joined.
16:57:53 -!- X-Scale14 has joined.
16:59:50 -!- X-Scale has quit (Ping timeout: 250 seconds).
17:02:26 -!- X-Scale14 has quit (Ping timeout: 250 seconds).
17:05:17 -!- X-Scale has joined.
17:15:29 <esolangs> [[CW@ 3 cell brainfuck substitution]] https://esolangs.org/w/index.php?diff=131673&oldid=131648 * Gggfr * (+0)
17:15:47 <esolangs> [[CW@ 3 cell brainfuck substitution]] https://esolangs.org/w/index.php?diff=131674&oldid=131673 * Gggfr * (+1)
17:18:06 -!- Thelie has joined.
17:21:31 -!- ais523 has joined.
17:47:03 -!- X-Scale19 has joined.
17:50:06 -!- X-Scale has quit (Ping timeout: 250 seconds).
17:53:21 <esolangs> [[(,!)]] N https://esolangs.org/w/index.php?oldid=131675 * Gggfr * (+627) Created page with "(,!) is a esolang about modifying a 3 cell tape. There are only 5 commands: {| class="wikitable" |+ Commands |- ! Symbol !! Meaning |- | / || Perform a NAND on the cell on the left and the right and store the result into the current cell then increment it and multiply it by 2
17:58:12 -!- Thelie has quit (Ping timeout: 255 seconds).
17:58:52 <esolangs> [[(,!)]] https://esolangs.org/w/index.php?diff=131676&oldid=131675 * Gggfr * (+141)
18:00:03 <esolangs> [[lang]] https://esolangs.org/w/index.php?diff=131677&oldid=129697 * Ractangle * (+74) /* Python 3 Interpeter */
18:00:57 <esolangs> [[(,!)]] https://esolangs.org/w/index.php?diff=131678&oldid=131676 * Gggfr * (+32)
18:08:15 <esolangs> [[Talk:IRPT]] https://esolangs.org/w/index.php?diff=131679&oldid=100315 * Ractangle * (+151)
18:14:44 -!- Lord_of_Life_ has joined.
18:14:59 -!- Lord_of_Life has quit (Ping timeout: 264 seconds).
18:16:05 -!- Lord_of_Life_ has changed nick to Lord_of_Life.
18:24:33 <esolangs> [[Hi]] https://esolangs.org/w/index.php?diff=131680&oldid=125965 * Ractangle * (+81) /* Implementations */
18:33:55 -!- X-Scale19 has quit (Quit: Client closed).
19:01:12 <esolangs> [[(,!)]] https://esolangs.org/w/index.php?diff=131681&oldid=131678 * Gggfr * (+22)
19:05:24 <esolangs> [[(,!)]] https://esolangs.org/w/index.php?diff=131682&oldid=131681 * Gggfr * (+33)
19:05:40 <esolangs> [[(,!)]] https://esolangs.org/w/index.php?diff=131683&oldid=131682 * Gggfr * (+3)
19:11:18 -!- X-Scale has joined.
19:25:02 -!- chiselfuse has quit (Ping timeout: 260 seconds).
19:26:35 -!- chiselfuse has joined.
19:27:32 -!- tromp has joined.
19:53:47 <esolangs> [[Special:Log/upload]] upload * Ractangle * uploaded "[[File:The spike.png]]"
19:54:21 <esolangs> [[SPIKE]] N https://esolangs.org/w/index.php?oldid=131685 * Ractangle * (+355) Created page with "[[File:The spike.png||100px|right]] {{infobox proglang |name=SPIKE |author=[[User:Ractangle]] |year=[[:Category:2024|2024]] |files=.spik}} SPIKE is just [[><>|Fish]] but harder. Mostly == Commands == {| class="wikitable" ! Command !! It's action |- | > || Makes the curso
19:54:29 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131686&oldid=131685 * Ractangle * (+1)
19:54:36 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131687&oldid=131686 * Ractangle * (-1)
19:54:49 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131688&oldid=131687 * Ractangle * (+8)
20:02:28 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131689&oldid=131688 * Ractangle * (+129)
20:02:57 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131690&oldid=131689 * Ractangle * (+18)
20:04:33 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131691&oldid=131690 * Ractangle * (+0)
20:12:24 <esolangs> [[Hi]] M https://esolangs.org/w/index.php?diff=131692&oldid=131680 * PythonshellDebugwindow * (+11)
20:24:54 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131693&oldid=131691 * Ractangle * (+436) /* Commands */
20:25:09 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131694&oldid=131693 * Ractangle * (+11) /* Hello, world! */
20:25:59 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131695&oldid=131694 * Ractangle * (+47) /* > errors in SPIKE */
20:26:56 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131696&oldid=131695 * Ractangle * (+15) /* Hello, world! */
20:27:42 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131697&oldid=131696 * Ractangle * (+9) /* Hello, world! */
20:28:30 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131698&oldid=131697 * Ractangle * (+9) /* Hello, world! */
20:34:44 <esolangs> [[User:Ractangle]] https://esolangs.org/w/index.php?diff=131699&oldid=131663 * Ractangle * (+55) /* Esolangs */
20:36:26 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131700&oldid=131698 * Ractangle * (+24) /* Examples */
20:37:10 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
20:40:03 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131701&oldid=131700 * Ractangle * (+144) /* > errors in SPIKE */
20:44:03 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131702&oldid=131701 * Ractangle * (+42) /* Commands */
20:45:27 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131703&oldid=131702 * Ractangle * (+44) /* Commands */
20:47:28 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131704&oldid=131703 * Ractangle * (+53) /* Examples */
20:48:39 <esolangs> [[A+B Problem]] https://esolangs.org/w/index.php?diff=131705&oldid=127503 * Ractangle * (+0) /* Python */
20:49:01 <esolangs> [[A+B Problem]] https://esolangs.org/w/index.php?diff=131706&oldid=131705 * Ractangle * (+1) /* Python */
20:49:41 <esolangs> [[A+B Problem]] https://esolangs.org/w/index.php?diff=131707&oldid=131706 * Ractangle * (+23) /* Sokolang */
20:53:09 <b_jonas> `ftoc 80
20:53:12 <HackEso> 80.00°F = 26.67°C
20:53:16 <b_jonas> `datei
20:53:17 <HackEso> 2024-06-29 20:53:16.848 +0000 UTC June 29 Saturday 2024-W26-6
20:54:51 -!- ais523 has quit (Ping timeout: 264 seconds).
20:55:34 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131708&oldid=131704 * Ractangle * (+50) /* Examples */
20:56:00 -!- tromp has joined.
20:56:12 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131709&oldid=131708 * Ractangle * (+33) /* One Time Cat Program */
20:56:23 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131710&oldid=131709 * Ractangle * (+12) /* One Time Cat Program */
20:57:09 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131711&oldid=131710 * Ractangle * (+24) /* Commands */
20:58:56 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131712&oldid=131711 * Ractangle * (+121) /* SPIKE errors */
20:59:18 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131713&oldid=131712 * Ractangle * (+1) /* Hello, world! */
21:12:13 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131714&oldid=131713 * Ractangle * (+127) /* Hello, world! */
21:12:54 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131715&oldid=131714 * Ractangle * (+0) /* Hello, world! */
21:13:16 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131716&oldid=131715 * Ractangle * (+2) /* Examples */
21:14:31 <esolangs> [[One Time Cat]] https://esolangs.org/w/index.php?diff=131717&oldid=129900 * Ractangle * (+18) /* Examples */
21:15:22 <esolangs> [[One Time Cat]] https://esolangs.org/w/index.php?diff=131718&oldid=131717 * Ractangle * (+1) /* SPIKE */
21:15:51 <esolangs> [[A+B Problem]] https://esolangs.org/w/index.php?diff=131719&oldid=131707 * Ractangle * (+2) /* SPIKE */
21:16:05 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131720&oldid=131716 * Ractangle * (+2) /* Hello, world! */
21:16:15 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131721&oldid=131720 * Ractangle * (+1) /* A+B Problem */
21:16:23 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131722&oldid=131721 * Ractangle * (-1) /* Hello, world! */
21:16:31 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131723&oldid=131722 * Ractangle * (+1) /* One Time Cat Program */
21:17:39 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131724&oldid=131723 * Ractangle * (+55) /* SPIKE errors */
21:17:55 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131725&oldid=131724 * Ractangle * (+1) /* SPIKE errors */
21:19:30 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131726&oldid=131725 * Ractangle * (-113) /* > errors in SPIKE */
21:20:18 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131727&oldid=131726 * Ractangle * (+49) /* Commands */
21:20:41 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131728&oldid=131727 * Ractangle * (-4) /* Commands */
21:35:49 -!- ais523 has joined.
21:36:51 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
21:37:19 <esolangs> [[SPIKE/Constants]] N https://esolangs.org/w/index.php?oldid=131729 * Ractangle * (+253) Created page with "{{WIP}} Constant is basically the shortest way the get a number SPIKE also has them 0:0 1:1 2:2 3:3 4:4 5:5 6:6 7:7 8:8 9:9 10:19a 11:19a1a 12:26m 13:26m1a 14:27m 15:2um1a 16:28m 17:28m1a 18:29m 19:29m1a 20:219am 21:37m 22:219a1am"
21:37:42 <esolangs> [[SPIKE/Constants]] https://esolangs.org/w/index.php?diff=131730&oldid=131729 * Ractangle * (+11)
21:37:51 <esolangs> [[SPIKE/Constants]] https://esolangs.org/w/index.php?diff=131731&oldid=131730 * Ractangle * (+1)
21:38:15 -!- Melvar has quit (Quit: WeeChat 4.3.2).
21:39:20 <esolangs> [[SPIKE/Constants]] https://esolangs.org/w/index.php?diff=131732&oldid=131731 * Ractangle * (-22)
21:40:14 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131733&oldid=131728 * Ractangle * (+40) /* Examples */
21:47:32 <esolangs> [[SPIKE/Constants]] https://esolangs.org/w/index.php?diff=131734&oldid=131732 * Ractangle * (+159)
21:48:29 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131735&oldid=131733 * Ractangle * (+4) /* Constants */
21:48:38 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131736&oldid=131735 * Ractangle * (-1) /* Constants */
21:49:02 <esolangs> [[SPIKE]] https://esolangs.org/w/index.php?diff=131737&oldid=131736 * Ractangle * (+10) /* Constant */
21:51:11 <esolangs> [[A+b problem]] N https://esolangs.org/w/index.php?oldid=131738 * EvyLah * (+25) redirect
21:54:39 <esolangs> [[Kip-asm]] https://esolangs.org/w/index.php?diff=131739&oldid=131666 * EvyLah * (+23)
21:55:47 <esolangs> [[SPIKE/Constants]] https://esolangs.org/w/index.php?diff=131740&oldid=131734 * Ractangle * (+110)
21:56:25 <esolangs> [[Constant]] https://esolangs.org/w/index.php?diff=131741&oldid=122193 * Ractangle * (+22) /* See also */
21:58:08 <esolangs> [[User:Tommyaweosme/public tape]] https://esolangs.org/w/index.php?diff=131742&oldid=131140 * EvyLah * (+63) okie
21:58:23 <esolangs> [[User:Tommyaweosme/public tape]] https://esolangs.org/w/index.php?diff=131743&oldid=131742 * EvyLah * (+34) wait fix
21:59:51 <esolangs> [[SPIKE/Constants]] https://esolangs.org/w/index.php?diff=131744&oldid=131740 * Ractangle * (+35)
22:16:26 -!- __monty__ has quit (Quit: leaving).
22:33:34 -!- salpynx has joined.
22:49:59 -!- Melvar has joined.
23:29:19 -!- X-Scale has quit (Quit: Client closed).
←2024-06-28 2024-06-29 2024-06-30→ ↑2024 ↑all