stalker mode ↑2024 ↑all
2024-12-13
[...]
02:46:58 -!- fria has joined.
03:19:32 <esolangs> [[Talk:Picofuck]] https://esolangs.org/w/index.php?diff=148157&oldid=121513 * L4.m2 * (+323) /* Non-existence Proof 4 */ new section
03:23:55 <esolangs> [[Talk:Picofuck]] https://esolangs.org/w/index.php?diff=148158&oldid=148157 * L4.m2 * (+4)
04:11:37 <korvo> ais523: It's important to me that the types be documented, and in this case, that the types offer the most meaningful constraint on behavior.
04:12:12 <korvo> I agree that the monoid-of-endomorphism nature is the best way to understand what's going on, since it leads directly into exponentiation by squaring, which I think is a very important insight.
04:12:23 <korvo> I think I was trying very hard to not say "endomorphism" though.
04:15:44 <ais523> hmm, offhand I'm not sure I can even think of any esolangs which have forall X. (X → X) → (X → X) as a type
04:16:01 <ais523> functional esolangs tend to be untyped, non-functional esolangs don't have types that complex
04:17:07 <korvo> Cammy does! Cammy has "ends", which are the category-theoretic way of expressing polymorphic types. They aren't reified, but it's possible to write functions with fully-polymorphic signatures.
04:17:22 <korvo> This is because I want expressions like `id` to have type `forall X. X → X`.
04:56:38 -!- fria has quit (Quit: Connection closed for inactivity).
05:04:29 <esolangs> [[true]] https://esolangs.org/w/index.php?diff=148159&oldid=148139 * Ractangle * (-7) the cat program halts
05:07:20 <esolangs> [[Queue-based esolang]] https://esolangs.org/w/index.php?diff=148160&oldid=148134 * Ractangle * (-5) /* Hello, world! */
05:26:25 <korvo> Oh, I forgot to follow through, sorry. This Cammy expression: (comp dup (curry (comp (comp (pair (comp fst fst) (pair (comp fst snd) snd)) (pair fst (comp snd (uncurry id)))) (uncurry id))))
05:27:00 <korvo> Has inferred type: [X, X] → [X, X]. (for all X, of course~)
05:27:30 <korvo> This is the Church numeral 2. 0 and 1 are also expressible but the type-checker infers less restrictive signatures for them.
05:28:51 <korvo> The reason I like the typing is that this is *the* Church numeral, up to isomorphism, by the standard pile of abstract nonsense: there's only one possible composition. If I added this type as an attitude, I could recognize exactly the Church numerals.
05:29:11 <korvo> Er, *the* Church numeral 2, of course.
05:29:46 <ais523> ah right – in a way I'm a little surprised that there are no things of Church numeral type except the Church numerals
05:30:22 <ais523> but it does make sense, if all you have is an X → X and you don't know what X is, all you can do is compose it some nonnegative integer number of times
05:32:01 -!- craigo has joined.
05:35:04 <korvo> Yep. The deep explanation uses discrete dynamical systems (DDSs) and explores the mysteries of the diagram with a single object and a single arrow.
05:37:01 <korvo> This is also how category theorists think of natural numbers. A natural-numbers object (NNO) is some object N s.t. for any element 1 → X and endomorphism X → X, there's a unique N → X which starts at the given element and applies the endomorphism repeatedly.
05:37:32 <ais523> I grew up with impure languages without capabilities, which make it hard to do this sort of reasoning because I'm used to worrying about the possibility of hidden global side effects
05:37:35 <korvo> Hence Cammy's (pr @0 @1) : N → X, given @0 : 1 → X, @1 : X → X
05:38:15 <korvo> Sure, me too. It took a long time, but now I see Algol descendants as operating in an implicit monad, and languages like Haskell really do offer the "programmable semicolon" by making those monads explicit.
05:38:31 <korvo> Can't say whether it was a good choice. As you can see, I'm not really great at relating to peers.
05:39:37 <ais523> I do think "impure, but with capabilities" is an interesting middle-ground, and it probably can be automatically transformed to the pure version by, e.g., putting the capability objects into a state monad
05:42:28 <korvo> Yep. E and Monte can be seen as having a monad which allows for sending messages (but not receiving them), maintaining private mutables, and accessing certain system services safely, particularly system timers and cryptography.
05:43:01 <korvo> E didn't actually have that formalism, but I put in most of the work for Monte at the theoretical level. The subset of Monte whose objects are all transitively immutable ("DeepFrozen") form a category.
05:44:49 <ais523> a while ago I was considering "treat functions with side effects on memory as pure functions which take the state of memory as an input and output the new state of memory in addition to their return value" as a compiler IR for practical use, to help the compiler understand what optimisations were allowed and what program equivalence was
05:45:07 <ais523> although, it'd only work in a single-threaded setting because it abstracts over the details of what the function is doing internally
05:46:20 <korvo> That's basically what my BF interpreter does. Each compiled action is a map (Position × Tape) → Position which impurely mutates the tape but state-monads the position.
05:46:57 <korvo> That ended up being the best shape for the JIT to trace. The JIT lifts the entire tape out and treats it as a mutable global, and the position disappears into local registers.
05:47:56 <korvo> Oh, the state of *memory*, sorry, I misread. I haven't done that personally, but e.g. Haskell's Array subsystem works this way. If one "mutates" an Array, they are usually building up a pile of mutations which will all be applied in a single atomic update.
06:24:18 -!- craigo has quit (Ping timeout: 248 seconds).
07:01:28 -!- tromp has joined.
07:03:42 <esolangs> [[Talk:Comment]] https://esolangs.org/w/index.php?diff=148161&oldid=138195 * Ractangle * (+178) /* New */
07:05:05 <esolangs> [[CLFCE]] https://esolangs.org/w/index.php?diff=148162&oldid=143786 * Ractangle * (+2) /* Hello World */
07:06:48 <esolangs> [[CLFCE]] https://esolangs.org/w/index.php?diff=148163&oldid=148162 * Ractangle * (+2) /* Fixed Repeating Output */
07:07:52 <esolangs> [[G Sharp]] https://esolangs.org/w/index.php?diff=148164&oldid=148067 * Ractangle * (-1) /* Empty Program */
07:08:11 <esolangs> [[Empty Program]] https://esolangs.org/w/index.php?diff=148165&oldid=148063 * Ractangle * (-1) /* G# */
07:12:58 <esolangs> [[Simple translation]] https://esolangs.org/w/index.php?diff=148166&oldid=127266 * Corbin * (+776) /* Formal definition */ Use category theory to quickly formalize the idea that semantics are preserved by STs.
07:15:15 <esolangs> [[Empty Program]] https://esolangs.org/w/index.php?diff=148167&oldid=148165 * Ractangle * (-21) /* Pascal */
07:15:37 <esolangs> [[Empty Program]] https://esolangs.org/w/index.php?diff=148168&oldid=148167 * Ractangle * (-1) /* PHP */
07:20:20 -!- Sgeo has quit (Read error: Connection reset by peer).
07:36:21 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
07:40:55 -!- tromp has joined.
07:56:25 <korvo> esolangs: What is a concatenative programming language?
07:57:59 <esolangs> korvo: A concatenative programming language is a type of language where programs are composed by juxtaposing syntax, meaning the order of code elements determines the final program's behavior. This is achieved by combining smaller expressions into larger ones, similar to how strings are concatenated. Concatenative languages are often based on the...
07:57:59 <esolangs> principle of composition, where complex programs are built from simpler ones. They are characterized by the ability to combine multiple programs into a single program through the juxtaposition of their syntax.
07:58:43 <ais523> that's confused enough that I can't even definitively say that it's wrong, although it did miss the key point
07:59:13 <korvo> Yeah, I'm hoping that it'll reveal to me how to give a better intro to [[concatenative language]].
07:59:36 <b_jonas> korvo: there's a #concatenative channel on libera, ask them, maybe they have a better intro
08:03:43 <esolangs> [[Simple translation]] https://esolangs.org/w/index.php?diff=148169&oldid=148166 * Corbin * (+986) /* Thinking in terms of monoids */ Bluelink locally, grammar, rephrasing, ensuring that the proofs read cleanly.
08:05:34 <korvo> b_jonas: I'm a regular there. The community generally agrees that there isn't a universal definition. The categorical definition, using monoids, is nice and powerful and convenient but makes folks upset for some reason, even though it can account for e.g. the syntax of Forth and Factor.
08:06:45 <korvo> esolangs: What is a concatenative esoteric programming language?
08:08:17 <esolangs> korvo: A concatenative esoteric programming language is a language where programs are composed by juxtaposing syntax, like strings, to create a single program. This composition is based on the idea of building larger programs from smaller ones, similar to how software engineering works. These languages often use a monoid structure, where operations like...
08:08:17 <esolangs> concatenation and substitution are defined, and the meaning of a program is derived from the composition of its syntactic elements.
08:08:33 <korvo> Worse. Hm.
08:09:20 <korvo> Meh, it's not important. It's past midnight locally, I'm still recovering from food poisoning, and my feet are tired.
08:09:26 <b_jonas> yeah, nobody can agree what a functional programming language or a declarative programming language is either
08:13:52 <int-e> Hehe. My biggest disappointment on that front will always be Prolog. It's declared to be declarative, and it has a declarative core somewhere. But in practice you're just controlling backtracking all the time. (cut is not declarative)
08:16:18 <ais523> int-e: more modern Prologs often have a constraint solver, which acts in a rather more declarative way than the base language
08:16:20 <int-e> (I haven't used Prolog for non-toy examples as a result. Built-in unification is nice I guess but I prefer having better control over the flow of execution.)
08:16:42 <int-e> ais523: But is that still Prolog then :)
08:17:05 <int-e> And wouldn't I rather use an SMT solver from a different language...
08:17:21 <ais523> I don't see why not; it isn't unextended ISO Prolog but languages often have a broad range of implementations with different features and libraries
08:17:25 <b_jonas> ais523: yes, and that is a significant addition to the prolog core, but I still don't think it changes what int-e is complaingin about
08:17:29 <int-e> But yeah there's Prolog offsprings that look interesting from afar.
08:18:33 <int-e> Anyway, as usual with opinions ymmv :)
08:19:53 <ais523> a while back I worked out the semantics for a Prolog-inspired declarative esolang. it was similar to Prolog but tried to evaluate paths in parallel rather than with backtracking, and didn't have cuts
08:27:49 <korvo> The typical miniKanren is built on µKanren, a specific short recipe which combines a logic monad with an immutable constraint store. They never backtrack or cut; instead, the logic monad tries many branches, and all succeeding branches move forward.
08:27:59 <korvo> It could be parallelized, maybe, with effort.
08:28:25 <ais523> so the interesting part is trying to come up with an efficient evaluation order
08:28:43 <int-e> korvo: so... bfs instead of dfa at the search tree level?
08:28:49 <int-e> *dfs
08:29:26 <ais523> which seems like it would be one of those problems which is impossible in theory but possible in most practical cases, but there is a nice theoretical solution that shows that it's possible (just try all the evaluation orders in parallel, one of them will be fastest and you can discard the others once it reaches the solution)
08:29:43 <int-e> Anyway, I think constraint solving has value as a paradigm and my complaint is specifically about prolog's core.
08:30:36 <korvo> int-e: Yes, but the visitor can choose whether to actually perform the visit. The constraint store is merely designed to never allow an inconsistent set of constraints.
08:31:03 <korvo> When you put it like that, DFS would be a fun modification. The logic monad's usually written as fair BFS. Too bad Dijkstra's not feasible.
08:31:46 <ais523> Prolog is basically a DFS in that sort of environment, with the order specified precisely enough to allow cuts to work
08:32:12 <ais523> and because it is searching an infinite tree, a DFS can miss a solution by taking an infinitely long time to reach the branch where the solution exists
08:32:52 <int-e> " The constraint store is merely designed to never allow an inconsistent set of constraints." -- start extracting unsatisfiable cores and you almost have an SMT solver
08:33:43 <ais523> but Prolog's evaluation order is undeclarative enough to basically make it an esolang, when you start exploiting the way that Prolog differs from being purely a description of the solution you want
08:33:48 <int-e> ("unsatisfiable core" is jargon for (a practically feasible approximation of) a minimal set of constraints that are contradictory)
08:41:08 <b_jonas> ais523: yes, and also prolog has side effects, some that survive backtracking and some that are retracted on backtracking, and both the prolog core and the side effects are designed in a somewhat inconvenient way where if you try to translate a traditional imperative fortran program it always comes out ugly
08:41:24 <b_jonas> so that makes it even more of an esolang
08:42:01 <ais523> b_jonas: wow, that description reminds me so much of CLC-INTERCAL
08:42:24 <ais523> which is/was full of features which are very reminiscent of, e.g., standard OO programming concepts, but if you try to use them the same way then things start to go subtly wrong
08:44:38 <b_jonas> also there are multiple dialects of prolog with the same core language but lots of incompatible extensions in their libraries
08:55:28 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
09:04:24 -!- chiselfuse has quit (Ping timeout: 264 seconds).
09:30:22 -!- ais523 has quit (Quit: quit).
09:50:39 -!- tromp has joined.
09:57:36 <esolangs> [[G Sharp]] https://esolangs.org/w/index.php?diff=148170&oldid=148164 * Ractangle * (-35) /* Commands */
10:09:39 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
10:14:22 <esolangs> [[Comment]] https://esolangs.org/w/index.php?diff=148171&oldid=148072 * Ractangle * (-9) /* AREA/Hum */
10:52:38 <esolangs> [[WhatLang]] https://esolangs.org/w/index.php?diff=148172&oldid=142095 * DGCK81LNN * (+180) /* Instructions */ rephrase description of ! instruction
11:08:18 -!- __monty__ has joined.
11:51:38 <esolangs> [[User talk:None1]] https://esolangs.org/w/index.php?diff=148173&oldid=147857 * PrySigneToFry * (+843) /* I really don't add more page to that scary, gibberish and offtopic things */ new section
11:51:49 <esolangs> [[Special:Log/newusers]] create * PGThe3G * New user account
11:57:23 <esolangs> [[Recs]] https://esolangs.org/w/index.php?diff=148174&oldid=148103 * Jan jelo * (-3) /* C */
11:59:43 -!- __monty_1 has joined.
12:00:54 -!- __monty__ has quit (Killed (NickServ (GHOST command used by __monty_1))).
12:00:59 -!- __monty_1 has changed nick to __monty__.
12:01:27 -!- tromp has joined.
12:01:59 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=148175&oldid=147996 * PGThe3G * (+202) /* Introductions */
12:02:16 -!- mtm has quit (Ping timeout: 252 seconds).
12:06:10 <esolangs> [[]] N https://esolangs.org/w/index.php?oldid=148176 * PrySigneToFry * (+1496) Created page with "'''''' is an Esolang(semi-serious and quarter-joking and quarter-memorial) designed by PSTF( maybe with ISLPTNG). == Syntax == It is simply edited from [[Nine-hundred-eleven]]. === Command === <pre> Brainfuck >
12:06:14 -!- mtm has joined.
12:08:00 <esolangs> [[Semi-serious language list]] M https://esolangs.org/w/index.php?diff=148177&oldid=147357 * PrySigneToFry * (+19)
12:16:37 <esolangs> [[Tahled]] https://esolangs.org/w/index.php?diff=148178&oldid=147608 * PrySigneToFry * (+117) Undo revision [[Special:Diff/147608|147608]] by [[Special:Contributions/Ractangle|Ractangle]] ([[User talk:Ractangle|talk]]) because Serif Font is more ontopic of this programming language
12:17:11 <esolangs> [[ bits, 0 Bytes]] https://esolangs.org/w/index.php?diff=148179&oldid=142408 * PrySigneToFry * (+282)
12:35:40 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
12:46:17 -!- tromp has joined.
12:47:53 -!- amby has joined.
13:46:57 <esolangs> [[User:Jan jelo/TC proof to partial recursive function]] N https://esolangs.org/w/index.php?oldid=148180 * Jan jelo * (+3805) Created page with "This article comes from my article in Zhihu. == define == zero function <pre> (Z x1 x2 x3...) = 0 </pre> successor function <pre> (S x) = x+1 </pre> projection <pre> ((P m n) x1 x2...xn...xm) = xn </pre> function compose <p
13:47:02 <esolangs> [[Talk:Wizzcake]] https://esolangs.org/w/index.php?diff=148181&oldid=124563 * WoodyFan3412 * (+91) /* Unique Idea */ new section
13:49:21 <esolangs> [[Windmill]] M https://esolangs.org/w/index.php?diff=148182&oldid=148076 * RainbowDash * (+103)
13:50:50 <esolangs> [[User:Jan jelo/TC proof to partial recursive function]] https://esolangs.org/w/index.php?diff=148183&oldid=148180 * Jan jelo * (+4) /* proof */
13:52:42 <esolangs> [[Windmill]] M https://esolangs.org/w/index.php?diff=148184&oldid=148182 * RainbowDash * (+1) /* Implementation details */
13:54:57 -!- lynndotpy has quit (Quit: bye bye).
13:55:24 <esolangs> [[User:Jan jelo]] https://esolangs.org/w/index.php?diff=148185&oldid=148092 * Jan jelo * (+143)
13:57:16 -!- lynndotpy has joined.
14:01:26 <esolangs> [[User:Jan jelo/TC proof to partial recursive function]] https://esolangs.org/w/index.php?diff=148186&oldid=148183 * Jan jelo * (+169) /* proof */
14:02:39 <esolangs> [[]] https://esolangs.org/w/index.php?diff=148187&oldid=148176 * None1 * (+1672) /* Category */
14:03:06 <esolangs> [[]] https://esolangs.org/w/index.php?diff=148188&oldid=148187 * None1 * (+206) /* Examples */
14:03:55 <esolangs> [[]] https://esolangs.org/w/index.php?diff=148189&oldid=148188 * None1 * (-27) change category
14:04:52 <esolangs> [[User:Jan jelo/TC proof to partial recursive function]] https://esolangs.org/w/index.php?diff=148190&oldid=148186 * Jan jelo * (+4) /* proof */
14:05:17 <esolangs> [[Language list]] https://esolangs.org/w/index.php?diff=148191&oldid=148096 * None1 * (+19) /* Non-alphabetic */ Practical enough to be a non-joke language
14:05:56 <esolangs> [[User:Jan jelo]] https://esolangs.org/w/index.php?diff=148192&oldid=148185 * Jan jelo * (-2) /* Proof */
14:07:34 <esolangs> [[Windmill]] https://esolangs.org/w/index.php?diff=148193&oldid=148184 * RainbowDash * (+572) Halting
14:08:10 <esolangs> [[User:Jan jelo]] https://esolangs.org/w/index.php?diff=148194&oldid=148192 * Jan jelo * (+2) /* Proof */
14:08:38 <esolangs> [[Windmill]] M https://esolangs.org/w/index.php?diff=148195&oldid=148193 * RainbowDash * (+18) /* Halting */
14:14:02 <esolangs> [[Recs]] https://esolangs.org/w/index.php?diff=148196&oldid=148174 * Jan jelo * (+1) /* Reduce */
14:25:35 <esolangs> [[]] https://esolangs.org/w/index.php?diff=148197&oldid=148189 * PrySigneToFry * (+172)
15:06:27 <esolangs> [[User:Qawtykit]] https://esolangs.org/w/index.php?diff=148198&oldid=147885 * Qawtykit * (+310) Changed organization of looping counter collection and added LOLCODE looping counter
15:26:01 <esolangs> [[]] https://esolangs.org/w/index.php?diff=148199&oldid=148197 * ZCX islptng * (+1322)
15:26:56 <esolangs> [[Hyperinotoidion]] https://esolangs.org/w/index.php?diff=148200&oldid=147895 * Win7HE * (-1315)
15:45:46 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
15:46:46 <esolangs> [[GotoLang]] N https://esolangs.org/w/index.php?oldid=148201 * ZCX islptng * (+715) Created page with "This is an esolang created by islptng. In this esolang, the only command is Goto(with a few add-ons). == Syntax == Only one command: label:goto Self-explanatory. However, general "match" (just "add-ons") is supported. It can match any integer in <code>[]</code>.<
15:57:58 <esolangs> [[User:Qawtykit]] https://esolangs.org/w/index.php?diff=148202&oldid=148198 * Qawtykit * (+116) added Set looping counter
16:07:49 <esolangs> [[Hyperinotoidion]] https://esolangs.org/w/index.php?diff=148203&oldid=148200 * Win7HE * (+117)
16:12:58 -!- tromp has joined.
16:16:09 <esolangs> [[Hyperinotoidion]] M https://esolangs.org/w/index.php?diff=148204&oldid=148203 * Aadenboy * (-35) well use the stub template then
16:16:47 -!- Sgeo has joined.
16:25:10 <esolangs> [[Talk:Around and around, sleeping sound]] https://esolangs.org/w/index.php?diff=148205&oldid=143214 * 5anz * (+121)
16:53:34 <esolangs> [[User:Yayimhere/Sandbox]] https://esolangs.org/w/index.php?diff=148206&oldid=146686 * Xff * (+1)
17:24:33 <esolangs> [[Special:Log/newusers]] create * Theonetruenerd * New user account
17:27:16 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=148207&oldid=148175 * Theonetruenerd * (+244) /* Introductions */
17:39:09 -!- zenmov has quit (Ping timeout: 252 seconds).
17:43:42 -!- zenmov has joined.
18:06:15 <esolangs> [[Brainrot]] N https://esolangs.org/w/index.php?oldid=148208 * Theonetruenerd * (+2481) Created page with "Ever wanted to use your brainrot and slang to code? No? Well now you can anyway. Inspired by many screenshots that went around various social media sites. == Overview == The syntax of brainrot is relatively simple, the only real quirks (besides the horrid bra
18:08:05 <esolangs> [[Brainrot]] https://esolangs.org/w/index.php?diff=148209&oldid=148208 * Theonetruenerd * (-7)
18:09:24 <esolangs> [[Brainrot]] https://esolangs.org/w/index.php?diff=148210&oldid=148209 * Theonetruenerd * (+42)
18:10:54 <esolangs> [[Language list]] https://esolangs.org/w/index.php?diff=148211&oldid=148191 * Theonetruenerd * (+15) /* B */
18:13:42 -!- Lord_of_Life_ has joined.
18:14:46 -!- Lord_of_Life has quit (Ping timeout: 272 seconds).
18:15:04 -!- Lord_of_Life_ has changed nick to Lord_of_Life.
18:40:42 -!- zenmov_ has joined.
18:40:45 -!- zenmov has quit (Ping timeout: 252 seconds).
19:18:44 <esolangs> [[Special:Log/newusers]] create * Metazale * New user account
19:21:03 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=148212&oldid=148207 * Metazale * (+292) Add introduction for Metazale
19:21:26 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=148213&oldid=148212 * Metazale * (+87) Add signature, oops
19:23:45 <esolangs> [[ELVM]] M https://esolangs.org/w/index.php?diff=148214&oldid=112416 * Metazale * (+1) Fix some typos
20:09:33 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
20:18:40 -!- tromp has joined.
20:36:18 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
20:46:21 -!- tromp has joined.
21:03:54 <esolangs> [[BrainXXXXXXXXXXx]] N https://esolangs.org/w/index.php?oldid=148215 * 5anz * (+3253) Created page with "brainXXXXXXXXXXx is a family of Esolangs inspired by [[BrainfXX]], to be exact, this is 18,446,744,073,709,551,616 different Esolangs. I'm [[User:5anz]], and these are my 4th, 5th, 6th, ... and 18,446,744,073,709,551,619th Esolangs I've made. Fine, we'll just say
21:12:01 <esolangs> [[User:5anz]] https://esolangs.org/w/index.php?diff=148216&oldid=147692 * 5anz * (+181) /* Esolangs I made */
21:14:22 <esolangs> [[Print("Hello, World!")]] https://esolangs.org/w/index.php?diff=148217&oldid=147695 * 5anz * (+0)
21:22:56 <esolangs> [[Guh]] https://esolangs.org/w/index.php?diff=148218&oldid=147847 * Ractangle * (+1) /* tab */
21:25:43 <esolangs> [[Xtrod]] https://esolangs.org/w/index.php?diff=148219&oldid=145964 * Ractangle * (+16) /* See also */
21:29:47 <esolangs> [[Special:Log/delete]] delete * Ais523 * deleted "[[File:Emojic wheel result.png]]": offtopic (connectiont to esolangs is too tenuous and doesn't need a screenshot to establish) and possibly also a copyright violation
21:30:24 -!- ais523 has joined.
21:39:07 <esolangs> [[User:Tommyaweosme/Emojic collab with yayimhere and ractangle]] https://esolangs.org/w/index.php?diff=148220&oldid=147591 * Ractangle * (-22)
22:04:54 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
22:18:53 -!- tromp has joined.
22:24:37 <esolangs> [[Print("Hello, World!")]] M https://esolangs.org/w/index.php?diff=148221&oldid=148217 * Aadenboy * (-88) lowercase
22:30:22 <esolangs> [[Talk:Print("Hello, World!")]] N https://esolangs.org/w/index.php?oldid=148222 * Aadenboy * (+711) Created page with "{{lowercase}} <blockquote>[...] Esolang doesn't know that I typed a lowercase p for some reason.</blockquote> page titles are required to start with a capital, this is a restriction set by MediaWiki (which powers Esolangs). you can use the <code>{{
22:40:30 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
22:49:28 -!- chiselfuse has joined.
22:59:30 -!- tromp has joined.
23:17:53 <esolangs> [[The Genetic Computer]] N https://esolangs.org/w/index.php?oldid=148223 * Theonetruenerd * (+1915) Language Created
23:18:30 <esolangs> [[The Genetic Computer]] https://esolangs.org/w/index.php?diff=148224&oldid=148223 * Theonetruenerd * (+24)
23:19:52 <esolangs> [[Language list]] M https://esolangs.org/w/index.php?diff=148225&oldid=148211 * Theonetruenerd * (+27) /* T */
23:41:01 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
2024-12-14
00:03:24 -!- mtm has quit (Ping timeout: 260 seconds).
00:05:39 -!- mtm has joined.
00:12:02 -!- __monty__ has quit (Quit: leaving).
01:04:30 <esolangs> [[Poetic (esolang)]] https://esolangs.org/w/index.php?diff=148226&oldid=147363 * None1 * (+1060)
01:06:04 <esolangs> [[Interpret Esolangs Online]] https://esolangs.org/w/index.php?diff=148227&oldid=145661 * None1 * (+13) /* Introduction */ [[Poetic]] is now supported
01:06:25 <esolangs> [[Interpret Esolangs Online]] https://esolangs.org/w/index.php?diff=148228&oldid=148227 * None1 * (+0) /* Introduction */
01:07:09 <esolangs> [[User talk:None1]] https://esolangs.org/w/index.php?diff=148229&oldid=148173 * None1 * (+265) /* Interpret esolangs online */
01:11:02 -!- 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).
01:14:27 <esolangs> [[Print("Hello, World!")]] https://esolangs.org/w/index.php?diff=148230&oldid=148221 * None1 * (+117) /* Languages */
01:14:59 <esolangs> [[Print("Hello, World!")]] M https://esolangs.org/w/index.php?diff=148231&oldid=148230 * None1 * (+1) /* Befunge */ Reversing twice is the same as not reversing
01:25:45 <esolangs> [[Ifunge]] https://esolangs.org/w/index.php?diff=148232&oldid=131023 * None1 * (-121)
01:34:07 <esolangs> [[Ifunge]] https://esolangs.org/w/index.php?diff=148233&oldid=148232 * None1 * (+373)
01:35:25 <esolangs> [[Ifunge]] M https://esolangs.org/w/index.php?diff=148234&oldid=148233 * None1 * (+9) /* Interpreters */
01:38:14 <esolangs> [[Ifunge]] https://esolangs.org/w/index.php?diff=148235&oldid=148234 * None1 * (+44) /* Interpreters */
01:44:32 <esolangs> [[Ifunge]] https://esolangs.org/w/index.php?diff=148236&oldid=148235 * None1 * (-42) /* Hello World */
01:44:51 <esolangs> [[Ifunge]] https://esolangs.org/w/index.php?diff=148237&oldid=148236 * None1 * (-48) /* Cat Program */
01:45:25 <esolangs> [[Special:Log/upload]] overwrite * None1 * uploaded a new version of "[[File:Ifunge 99.png]]": new 99 bottles of beer
01:46:04 <esolangs> [[Ifunge]] https://esolangs.org/w/index.php?diff=148239&oldid=148237 * None1 * (-32) /* 99 bottles of beer (Found a bug, may be modified in the future) */
01:47:27 <esolangs> [[Ifunge]] M https://esolangs.org/w/index.php?diff=148240&oldid=148239 * None1 * (-45) /* 99 bottles of beer (Found a bug, may be modified in the future) */
01:49:15 <esolangs> [[Ifunge]] https://esolangs.org/w/index.php?diff=148241&oldid=148240 * None1 * (+420) /* Interpreters */
01:56:38 <esolangs> [[Special:Log/upload]] overwrite * None1 * uploaded a new version of "[[File:Ifunge 99.png]]"
01:57:18 <esolangs> [[Ifunge]] https://esolangs.org/w/index.php?diff=148243&oldid=148241 * None1 * (+9) /* Interpreters */
03:11:51 <esolangs> [[Albuquerque challenge/exampled to itself]] N https://esolangs.org/w/index.php?oldid=148244 * Tommyaweosme * (+8237) Created page with "the albuquerque challenge is a programming challenge is a programming challenge by [[user:tommyaweosme]] after getting 3-4 hours into a programming challenge by [[user:tommyaweosme]] after getting 3-4 hours into a 17-hour video call
04:07:39 -!- craigo has joined.
04:39:44 <esolangs> [[User:ZCX islptng/Sandbox]] https://esolangs.org/w/index.php?diff=148245&oldid=148155 * PrySigneToFry * (+273)
04:42:04 <esolangs> [[Talk:BOREDOM]] N https://esolangs.org/w/index.php?oldid=148246 * PrySigneToFry * (+112) Created page with "<pre> <ACTV> STAMP H "H", e "e", l "l", ... STAMP print (*args, **kwargs) -> screen print (Hello, world!) </pre>"
04:53:47 <esolangs> [[ bits, 0 Bytes]] https://esolangs.org/w/index.php?diff=148247&oldid=148179 * PrySigneToFry * (+136)
05:02:49 <esolangs> [[User talk:None1]] https://esolangs.org/w/index.php?diff=148248&oldid=148229 * PrySigneToFry * (+24) /* Some questions */
05:15:48 <esolangs> [[User:ZCX islptng/Sandbox]] M https://esolangs.org/w/index.php?diff=148249&oldid=148245 * ZCX islptng * (-167) Then you use
05:43:30 <esolangs> [[User:ZCX islptng/Sandbox]] M https://esolangs.org/w/index.php?diff=148250&oldid=148249 * PrySigneToFry * (+402)
05:44:08 <esolangs> [[User:ZCX islptng/Sandbox]] M https://esolangs.org/w/index.php?diff=148251&oldid=148250 * PrySigneToFry * (+45)
05:44:44 <esolangs> [[User:ZCX islptng/Sandbox]] https://esolangs.org/w/index.php?diff=148252&oldid=148251 * PrySigneToFry * (+0) Fixed script
05:54:23 <esolangs> [[User:ZCX islptng/Sandbox]] https://esolangs.org/w/index.php?diff=148253&oldid=148252 * PrySigneToFry * (+286)
06:59:06 <esolangs> [[Talk:Deadfish with gotos and input]] N https://esolangs.org/w/index.php?oldid=148254 * Win7HE * (+131) Created page with "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, f? f."
07:03:00 -!- Noisytoot has quit (Excess Flood).
07:07:36 -!- Noisytoot has joined.
07:10:55 <esolangs> [[Treadnil]] https://esolangs.org/w/index.php?diff=148255&oldid=147512 * BoundedBeans * (-96) No more timeplane execution with IO's F variant
07:12:27 <esolangs> [[Special:Log/delete]] delete * Ais523 * deleted "[[Deadfish but its tilted a bit]]": duplicate page (same content as [[Deadfish]] but different formatting)
07:12:56 <esolangs> [[Special:Log/delete]] delete * Ais523 * deleted "[[Deadshark but its tilted a bit]]": duplicate page (same content as [[Deadshark]] but different formatting)
07:14:16 <esolangs> [[Treadnil]] https://esolangs.org/w/index.php?diff=148256&oldid=148255 * BoundedBeans * (+141) Clarified thread-local data
07:41:16 <esolangs> [[Mobius brainfuck]] N https://esolangs.org/w/index.php?oldid=148257 * L4.m2 * (+533) Created page with "Mobius brainfuck is like brainfuck with finite unbounded cells. After one circle every number turns into its opposite. This allows to use only increment to decrease without wrap. ==Instructions== {| class="wikitable" |+ Caption text |- ! Char !! Equivalent C |-
08:06:30 -!- ais523 has quit (Quit: sorry about my connection).
08:06:44 -!- ais523 has joined.
08:17:53 -!- tromp has joined.
09:02:01 <esolangs> [[Talk:Slimey]] N https://esolangs.org/w/index.php?oldid=148258 * Win7HE * (+29) Created page with "hey you forgot the categories"
09:02:17 <esolangs> [[Talk:Slimey]] https://esolangs.org/w/index.php?diff=148259&oldid=148258 * Win7HE * (+18)
09:04:07 <esolangs> [[User:Win7HE]] https://esolangs.org/w/index.php?diff=148260&oldid=147899 * Win7HE * (+40) thing
09:04:28 <esolangs> [[User:Win7HE]] https://esolangs.org/w/index.php?diff=148261&oldid=148260 * Win7HE * (+11)
09:06:57 <esolangs> [[Deadshark]] https://esolangs.org/w/index.php?diff=148262&oldid=146768 * Ractangle * (+1) /* Example Program */
09:13:16 <esolangs> [[User:Yayimhere/Sandbox]] https://esolangs.org/w/index.php?diff=148263&oldid=148206 * Xff * (+1226) /* research */
09:14:14 <esolangs> [[User:Yayimhere/Sandbox]] https://esolangs.org/w/index.php?diff=148264&oldid=148263 * Xff * (+53) /* esolang: brainrot */
09:16:11 <esolangs> [[Special:Log/move]] move * Xff * moved [[Brainrot]] to [[Brainrot (Theothetruenerd)]]: i made an esolang with same name and like it isnt the most popular ever
09:16:25 <esolangs> [[Brainrot]] https://esolangs.org/w/index.php?diff=148267&oldid=148266 * Xff * (-40) Blanked the page
09:19:49 <esolangs> [[User talk:None1]] https://esolangs.org/w/index.php?diff=148268&oldid=148248 * None1 * (+385) /* Some questions */
09:22:12 <esolangs> [[Brainrot (Yayimhere)]] N https://esolangs.org/w/index.php?oldid=148269 * Xff * (+1294) Created page with "'''brainrot''' is an esolang based on the evolution of television and the crisis of "OMG gen Z is doomed" when thye had the same with every other fricking gen, so basically its just saying "gen z not doomed lol". a, b and c are strings, with all of them being
09:24:18 <esolangs> [[Outinp]] N https://esolangs.org/w/index.php?oldid=148270 * Win7HE * (+1289) Created page with "Outinp is an esolang created by [[User:Win7HE]], not made for code golfing and probably turing complete. ==Commands== Any # can be replaced by a diffrent character. Any $ can be a comment, or empty. out##### - outputs the #'s. inp##### - asks you for 5 character input
09:37:20 <esolangs> [[Talk:Brainrot]] N https://esolangs.org/w/index.php?oldid=148271 * Win7HE * (+59) Created page with "gagagageageagegage skibibi toilet so simga- [[User:Win7HE]]"
09:41:34 -!- zenmov_ has quit (Quit: leaving).
09:41:37 <esolangs> [[Brainrot (Yayimhere)]] https://esolangs.org/w/index.php?diff=148272&oldid=148269 * Xff * (+3)
09:41:55 -!- zenmov has joined.
09:42:33 <esolangs> [[Brainrot (Yayimhere)]] https://esolangs.org/w/index.php?diff=148273&oldid=148272 * Xff * (+64) /* BRATACER(/bts/) */
10:06:20 <esolangs> [[The Genetic Computer]] https://esolangs.org/w/index.php?diff=148274&oldid=148224 * Theonetruenerd * (+100) Updated with new codons, changed "hello" program to "Hello, World!"
10:06:39 <esolangs> [[Talk:Brainrot]] https://esolangs.org/w/index.php?diff=148275&oldid=148271 * Ractangle * (+212)
10:16:03 <esolangs> [[The Genetic Computer]] M https://esolangs.org/w/index.php?diff=148276&oldid=148274 * Theonetruenerd * (+46) Added code for truth machine
10:16:26 <esolangs> [[User:Win7HE]] https://esolangs.org/w/index.php?diff=148277&oldid=148261 * Win7HE * (+21)
10:16:32 <esolangs> [[The Genetic Computer]] M https://esolangs.org/w/index.php?diff=148278&oldid=148276 * Theonetruenerd * (+76) Added codons for user input
10:18:33 <esolangs> [[Outinp]] https://esolangs.org/w/index.php?diff=148279&oldid=148270 * Win7HE * (+12)
10:18:44 <esolangs> [[Outinp]] https://esolangs.org/w/index.php?diff=148280&oldid=148279 * Win7HE * (+0) /* Hello World */
10:45:45 <esolangs> [[The Genetic Computer]] M https://esolangs.org/w/index.php?diff=148281&oldid=148278 * Theonetruenerd * (+217) Added code for Cat Program and A+B Problem
10:46:16 <esolangs> [[The Genetic Computer]] M https://esolangs.org/w/index.php?diff=148282&oldid=148281 * Theonetruenerd * (+40) Updated codons
10:52:51 -!- __monty__ has joined.
10:58:15 <esolangs> [[The kids choice awards]] https://esolangs.org/w/index.php?diff=148283&oldid=135611 * Win7HE * (+35)
11:05:17 -!- Sgeo has quit (Read error: Connection reset by peer).
11:16:10 -!- ais523 has quit (Quit: quit).
11:21:46 <esolangs> [[Talk:Verbose]] https://esolangs.org/w/index.php?diff=148284&oldid=92001 * WoodyFan3412 * (+97) /* Cool Idea */ new section
11:29:36 <esolangs> [[Talk:Eso]] https://esolangs.org/w/index.php?diff=148285&oldid=145852 * Win7HE * (+48)
11:34:02 <esolangs> [[The kids choice awards]] https://esolangs.org/w/index.php?diff=148286&oldid=148283 * Ractangle * (+1) /* Outinp */
12:03:15 -!- mtm has quit (Ping timeout: 246 seconds).
12:04:48 <esolangs> [[Talk:8 bits, 256 bytes]] N https://esolangs.org/w/index.php?oldid=148287 * Win7HE * (+37) Created page with "more like 257 bytes - [[User:Win7HE]]"
12:05:39 -!- mtm has joined.
12:22:31 -!- __monty__ has quit (Quit: leaving).
12:41:09 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
13:08:24 <esolangs> [[User:PkmnQ/Esimpl stuff]] N https://esolangs.org/w/index.php?oldid=148288 * PkmnQ * (+1785) [[Esimpl]]
13:39:23 <esolangs> [[User:UrnEn/Sandbox]] N https://esolangs.org/w/index.php?oldid=148289 * UrnEn * (+944) Created page with " This page describes something that random. {| class="wikitable" ! when you !! it goes !! because that |- | () || None || its a 0 lenth py tuple |- | ()() || undef || it thinks that you are tring to call the "()" |- | {()()} || "undef" || some random features i
13:48:22 -!- tromp has joined.
14:53:35 <esolangs> [[Mobius brainfuck]] https://esolangs.org/w/index.php?diff=148290&oldid=148257 * L4.m2 * (+7)
14:55:49 <esolangs> [[User:Jan jelo/TC proof to partial recursive function]] https://esolangs.org/w/index.php?diff=148291&oldid=148190 * Jan jelo * (+0) /* proof */
15:42:11 <esolangs> [[Talk:Slimey]] https://esolangs.org/w/index.php?diff=148292&oldid=148259 * Tommyaweosme * (+331)
15:53:39 <esolangs> [[16x16 RGB2 panel]] N https://esolangs.org/w/index.php?oldid=148293 * Tommyaweosme * (+1036) Created page with "16x16 RGB2 panel is a non-turing compete language based on build logic. == commands == === mode changing === set position mode increment mode === set position mode === + increase value } increase color - decrease value { decrease color > brainfuck >
15:53:49 <esolangs> [[16x16 RGB2 panel]] https://esolangs.org/w/index.php?diff=148294&oldid=148293 * Tommyaweosme * (+11) /* mode changing */
15:54:02 <esolangs> [[16x16 RGB2 panel]] https://esolangs.org/w/index.php?diff=148295&oldid=148294 * Tommyaweosme * (+15) /* mode changing */
15:54:19 <esolangs> [[16x16 RGB2 panel]] https://esolangs.org/w/index.php?diff=148296&oldid=148295 * Tommyaweosme * (+18) /* output */
16:41:11 -!- craigo has quit (Quit: Leaving).
16:42:05 <esolangs> [[The Genetic Computer]] M https://esolangs.org/w/index.php?diff=148297&oldid=148282 * Theonetruenerd * (+256) /* Codons */
16:42:29 -!- zzo38 has quit (Ping timeout: 248 seconds).
17:26:32 <esolangs> [[Deadfish]] https://esolangs.org/w/index.php?diff=148298&oldid=148077 * Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff * (+34) /* Variants of deadfish */
17:28:11 <esolangs> [[User:Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff]] https://esolangs.org/w/index.php?diff=148299&oldid=147800 * Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff * (-6)
17:28:21 <esolangs> [[Truth-machine]] https://esolangs.org/w/index.php?diff=148300&oldid=147646 * Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff * (+119) /* dc */
17:35:19 <esolangs> [[Divmeq]] M https://esolangs.org/w/index.php?diff=148301&oldid=145510 * TheCanon2 * (+290) Added a squaring program
17:43:19 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
17:47:28 <esolangs> [[MAWP]] https://esolangs.org/w/index.php?diff=148302&oldid=82524 * Ractangle * (+0) using the current version
17:49:24 <esolangs> [[Brainpocalypse II]] https://esolangs.org/w/index.php?diff=148303&oldid=141315 * Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff * (+35) /* External resources */
18:00:03 <esolangs> [[Mutual Modification Machine]] N https://esolangs.org/w/index.php?oldid=148304 * RacistCat * (+1071) Created page with "Mutual Modification Machine is a Brainfuck derivative where program and memory can switch roles, and this switching serves as the main mechanism for control flow. = Instructions = Mutual Modification Machine borrows all of Brainfuck's instruction
18:00:28 <esolangs> [[Mutual Modification Machine]] https://esolangs.org/w/index.php?diff=148305&oldid=148304 * RacistCat * (+1)
18:01:11 <esolangs> [[Special:Log/move]] move * Ractangle * moved [[C-like language]] to [[Hashmark]]
18:01:49 <esolangs> [[Hashmark]] https://esolangs.org/w/index.php?diff=148308&oldid=148306 * Ractangle * (-864)
18:02:07 <esolangs> [[Hashmark]] https://esolangs.org/w/index.php?diff=148309&oldid=148308 * Ractangle * (+11)
18:02:38 <esolangs> [[Hashmark]] https://esolangs.org/w/index.php?diff=148310&oldid=148309 * Ractangle * (+27)
18:15:26 -!- Lord_of_Life has quit (Ping timeout: 244 seconds).
18:16:27 -!- Lord_of_Life has joined.
18:45:46 -!- tromp has joined.
19:57:22 <esolangs> [[How dare you fuck the brain]] https://esolangs.org/w/index.php?diff=148311&oldid=144010 * Ractangle * (+12) /* Interpreter */
20:06:35 <esolangs> [[How dare you fuck the brain]] https://esolangs.org/w/index.php?diff=148312&oldid=148311 * Ractangle * (+217) added argument support. even tho there's only 1 argument
20:17:41 <esolangs> [[How dare you fuck the brain]] https://esolangs.org/w/index.php?diff=148313&oldid=148312 * Ractangle * (+23) /* Interpreter */
20:20:12 <esolangs> [[How dare you fuck the brain]] https://esolangs.org/w/index.php?diff=148314&oldid=148313 * Ractangle * (-14)
20:23:39 -!- Sgeo has joined.
21:08:35 -!- Everything has joined.
21:09:46 <esolangs> [[How dare you fuck the brain]] https://esolangs.org/w/index.php?diff=148315&oldid=148314 * Ractangle * (-8) /* Syntax */
21:22:19 <esolangs> [[User:Ractangle/Sandbox]] https://esolangs.org/w/index.php?diff=148316&oldid=148071 * Ractangle * (+15) /* Stuff to continue */
21:22:47 <esolangs> [[User:Ractangle/Sandbox]] https://esolangs.org/w/index.php?diff=148317&oldid=148316 * Ractangle * (-1) /* Stuff to continue */
21:37:14 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
21:40:57 -!- tromp has joined.
21:43:31 <esolangs> [[Hello world program in esoteric languages (B-C)]] https://esolangs.org/w/index.php?diff=148318&oldid=144388 * Ractangle * (-71) /* C-like language */
21:50:06 -!- amby has joined.
21:56:54 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
21:57:06 -!- Everything has quit (Ping timeout: 248 seconds).
21:58:56 -!- Everything has joined.
21:59:01 -!- __monty__ has joined.
22:04:50 -!- tromp has joined.
22:18:24 -!- Everything has quit (Ping timeout: 265 seconds).
22:20:16 -!- Everything has joined.
22:31:45 <esolangs> [[User:Tommyaweosme/hello world brainfuck but every time a command repeats it loops]] N https://esolangs.org/w/index.php?oldid=148319 * Tommyaweosme * (+601) Created page with " +++++++++++++++[>+[>+++++++[>++++[>++++[>+[>+++>++>+>+++++>+++>+>+++++>+++>+>+<<<<<<<-]>+<<<<-]>+<<<<-]>+>+>+>+>+>-]>+>+>->->>>+>->>+[>++>+++>+++>+<<<<-]>+>+>->>+[<-]>+>+>->>+[<]>+>+>->>+[<]<
22:46:46 <esolangs> [[V3i]] https://esolangs.org/w/index.php?diff=148320&oldid=120687 * Kaveh Yousefi * (+134) Improved the language's syntactical consistency by inserting semicolons (;) at appropriate locations.
22:47:34 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
22:48:01 <esolangs> [[V3i]] https://esolangs.org/w/index.php?diff=148321&oldid=148320 * Kaveh Yousefi * (+141) Added a hyperlink to my implementation of the V3I programming language on GitHub and altered the Unimplemented category tag to Implemented.
23:23:29 -!- zzo38 has joined.
23:36:28 -!- ais523 has joined.
23:41:13 -!- Everything has quit (Quit: Lost terminal).
23:44:21 <esolangs> [[Mice in a maze]] https://esolangs.org/w/index.php?diff=148322&oldid=73499 * 5anz * (+282) /* Infinite Loop */
23:49:17 <esolangs> [[Brainpocalypse II]] https://esolangs.org/w/index.php?diff=148323&oldid=148303 * Ais523 * (-35) Undo revision [[Special:Diff/148303|148303]] by [[Special:Contributions/Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff|Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff]] ([[User talk:Ffffffffffffffffffffffffffffffffffffffffffffffff
2024-12-15
00:02:25 -!- mtm has quit (Ping timeout: 244 seconds).
00:06:02 -!- mtm has joined.
00:45:31 <esolangs> [[Mutual Modification Machine]] https://esolangs.org/w/index.php?diff=148324&oldid=148305 * RacistCat * (-18)
00:45:54 <esolangs> [[Mutual Modification Machine]] https://esolangs.org/w/index.php?diff=148325&oldid=148324 * RacistCat * (+4)
00:52:38 -!- __monty__ has quit (Quit: leaving).
01:01:22 <esolangs> [[Poetic (Mihai Popa)]] https://esolangs.org/w/index.php?diff=148326&oldid=142943 * PrySigneToFry * (+76)
01:12:01 <esolangs> [[Special:Log/newusers]] create * AGO061 * New user account
01:16:03 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=148327&oldid=148213 * AGO061 * (+348)
01:18:06 <esolangs> [[(PSTF)]] N https://esolangs.org/w/index.php?oldid=148328 * PrySigneToFry * (+2266) Created page with "There is also an Esolang called [[]], but I'm trying to make [[Poetic (Mihai Popa)]] as Chinese -------- is another Esolang with same name of None1's [[]], and it is designed by PSTF. == Language overview == Every line is a command, and punctuations are ignored.
01:19:18 <esolangs> [[Language list]] https://esolangs.org/w/index.php?diff=148329&oldid=148225 * PrySigneToFry * (+54)
01:22:01 <esolangs> [[HQ9-]] https://esolangs.org/w/index.php?diff=148330&oldid=115666 * PrySigneToFry * (+3361)
01:26:51 <esolangs> [[User:ZCX islptng/Sandbox]] https://esolangs.org/w/index.php?diff=148331&oldid=148253 * PrySigneToFry * (+49)
01:32:32 <esolangs> [[User talk:/w/wiki/index.php/Talk:index.php/Main page]] https://esolangs.org/w/index.php?diff=148332&oldid=147768 * PrySigneToFry * (+433)
01:53:04 -!- 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).
01:58:36 <esolangs> [[TuringLang]] N https://esolangs.org/w/index.php?oldid=148333 * AGO061 * (+3138) Added TuringLang wiki with concepts, commands, interpreters and notes
02:14:51 <esolangs> [[]] https://esolangs.org/w/index.php?diff=148334&oldid=148199 * PrySigneToFry * (+17)
02:14:59 <esolangs> [[(PSTF)]] https://esolangs.org/w/index.php?diff=148335&oldid=148328 * PrySigneToFry * (+17)
02:31:19 <esolangs> [[TuringLang]] M https://esolangs.org/w/index.php?diff=148336&oldid=148333 * AGO061 * (-1) Fixed typo
02:32:32 <esolangs> [[User:PrySigneToFry]] https://esolangs.org/w/index.php?diff=148337&oldid=147859 * PrySigneToFry * (+136)
02:37:42 <esolangs> [[AH'TALIQUAE ENGLISH]] https://esolangs.org/w/index.php?diff=148338&oldid=143280 * PrySigneToFry * (+0)
03:02:51 <esolangs> [[AH'TALIQUAE ENGLISH/Extension]] https://esolangs.org/w/index.php?diff=148339&oldid=145082 * PrySigneToFry * (+1489)
03:03:57 <esolangs> [[AH'TALIQUAE ENGLISH]] https://esolangs.org/w/index.php?diff=148340&oldid=148338 * PrySigneToFry * (+96)
03:05:04 -!- op_4 has quit (Remote host closed the connection).
03:05:35 -!- op_4 has joined.
04:11:17 <esolangs> [[AH'TALIQUAE ENGLISH/News]] N https://esolangs.org/w/index.php?oldid=148341 * PrySigneToFry * (+609) Created page with "{{Back|AH'TALIQUAE ENGLISH}} = Major update! Major update! = At now time, AH'TALIQUAE ENGLISH supports to control the operating system and network. You can see [[AH'TALIQUAE ENGLISH/Extension]] for more detail! == SYSTEM Library == This standard
04:12:18 <esolangs> [[AH'TALIQUAE ENGLISH/Extension]] https://esolangs.org/w/index.php?diff=148342&oldid=148339 * PrySigneToFry * (+216)
04:12:42 <esolangs> [[AH'TALIQUAE ENGLISH]] https://esolangs.org/w/index.php?diff=148343&oldid=148340 * PrySigneToFry * (+28)
04:19:22 <esolangs> [[AH'TALIQUAE ENGLISH/Extension]] https://esolangs.org/w/index.php?diff=148344&oldid=148342 * PrySigneToFry * (+789)
04:34:12 <esolangs> [[Wasaya/Libraries]] https://esolangs.org/w/index.php?diff=148345&oldid=147461 * PrySigneToFry * (+631)
05:27:16 <esolangs> [[Halting problem (language)]] N https://esolangs.org/w/index.php?oldid=148346 * ZCX islptng * (+416) Created page with "Halting problem is a language designed by islptng. ==Commands== (code)loop| while code halts, execute loop. <name> executes function called name. <name:value> defines a function. + accept (Halt) - reject (Ha
06:32:09 <esolangs> [[List of quines]] https://esolangs.org/w/index.php?diff=148347&oldid=145072 * Ractangle * (+2) /* Python (Python 3) */
07:59:34 -!- tromp has joined.
08:11:57 -!- ais523 has quit (Quit: quit).
08:16:24 -!- ski has joined.
08:22:35 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
08:37:44 -!- tromp has joined.
09:02:47 <esolangs> [[Gammascript]] https://esolangs.org/w/index.php?diff=148348&oldid=146701 * Ractangle * (-9) /* Syntax */
09:48:12 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
10:02:49 -!- tromp has joined.
10:07:51 -!- __monty__ has joined.
10:44:10 <esolangs> [[Shape-Machine]] https://esolangs.org/w/index.php?diff=148349&oldid=136133 * Ractangle * (-19) /* Python3 */
10:47:14 <esolangs> [[Shape-Machine]] https://esolangs.org/w/index.php?diff=148350&oldid=148349 * Ractangle * (+1) /* AsciiDots */
10:55:46 <esolangs> [[Halting problem (language)]] https://esolangs.org/w/index.php?diff=148351&oldid=148346 * ZCX islptng * (-39)
11:22:07 <esolangs> [[]] https://esolangs.org/w/index.php?diff=148352&oldid=148334 * ZCX islptng * (+131)
11:38:23 -!- Sgeo has quit (Read error: Connection reset by peer).
11:57:09 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
12:04:16 -!- mtm has quit (Ping timeout: 252 seconds).
12:06:05 -!- mtm has joined.
12:11:15 -!- __monty__ has quit (Quit: leaving).
12:24:43 -!- craigo has joined.
13:02:53 <esolangs> [[H+Q9]] M https://esolangs.org/w/index.php?diff=148353&oldid=133196 * PrySigneToFry * (+174)
13:08:56 <esolangs> [[AH'TALIQUAE ENGLISH/Extension]] https://esolangs.org/w/index.php?diff=148354&oldid=148344 * PrySigneToFry * (+88)
13:54:25 <esolangs> [[Yappacino]] N https://esolangs.org/w/index.php?oldid=148355 * RaiseAfloppaFan3925 * (+10777) Made page, took a day with 60% of the time spent being lazy
14:00:13 <esolangs> [[Yappacino]] N https://esolangs.org/w/index.php?oldid=148356 * RaiseAfloppaFan3925 * (+217) Redirected page to [[Yappacino]]
14:24:05 -!- tromp has joined.
14:37:40 <esolangs> [[Shape-Machine]] M https://esolangs.org/w/index.php?diff=148357&oldid=148350 * PkmnQ * (-4) Exact number
14:38:14 <esolangs> [[User:RaiseAfloppaFan3925]] https://esolangs.org/w/index.php?diff=148358&oldid=147752 * RaiseAfloppaFan3925 * (+2634) Added my opinions (please don't flame me)
14:50:58 <esolangs> [[Yappacino]] M https://esolangs.org/w/index.php?diff=148359&oldid=148355 * RaiseAfloppaFan3925 * (+98) Added categories
15:32:48 <esolangs> [[Talk:Hexagony]] https://esolangs.org/w/index.php?diff=148360&oldid=44252 * 5anz * (+103)
15:35:32 -!- amby has joined.
15:36:25 <esolangs> [[Talk:Hexagony]] https://esolangs.org/w/index.php?diff=148361&oldid=148360 * 5anz * (-1)
15:38:20 <esolangs> [[Outinp]] https://esolangs.org/w/index.php?diff=148362&oldid=148280 * Win7HE * (+19) /* The Only External Link */
15:40:52 <esolangs> [[User:Win7HE]] https://esolangs.org/w/index.php?diff=148363&oldid=148277 * Win7HE * (-85)
16:03:12 <esolangs> [[Inputbrain]] https://esolangs.org/w/index.php?diff=148364&oldid=122234 * Ractangle * (-4)
16:42:10 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
17:04:33 -!- tromp has joined.
17:14:03 <esolangs> [[true]] https://esolangs.org/w/index.php?diff=148365&oldid=148159 * Ractangle * (+99) /* Commands */
17:15:41 <esolangs> [[true]] https://esolangs.org/w/index.php?diff=148366&oldid=148365 * Ractangle * (+100) /* Implemented */
17:16:03 <esolangs> [[true]] https://esolangs.org/w/index.php?diff=148367&oldid=148366 * Ractangle * (+0) /* Implemented */
17:16:34 <esolangs> [[true]] https://esolangs.org/w/index.php?diff=148368&oldid=148367 * Ractangle * (+23) /* Implemented */
17:41:27 <esolangs> [[How dare you fuck the brain]] https://esolangs.org/w/index.php?diff=148369&oldid=148315 * Ractangle * (+82) /* Interpreter */
17:49:08 -!- __monty__ has joined.
18:05:27 -!- lynndotpy has quit (Quit: bye bye).
18:16:07 -!- Lord_of_Life_ has joined.
18:16:24 -!- Lord_of_Life has quit (Ping timeout: 260 seconds).
18:19:03 -!- Lord_of_Life_ has changed nick to Lord_of_Life.
18:21:15 -!- lynndotpy has joined.
18:25:22 <esolangs> [[Trianguish]] M https://esolangs.org/w/index.php?diff=148370&oldid=117278 * Ais523 * (+1) /* Computational class */ change to the correct verb (the phrase previously said the opposite of what it meant)
18:56:35 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
19:03:54 -!- tromp has joined.
19:08:30 <esolangs> [[Yappacino]] https://esolangs.org/w/index.php?diff=148371&oldid=148359 * RaiseAfloppaFan3925 * (+1439) Fixed typo pointed out by ChatGPT + explained NovemHeader + clarification about type annotations
19:14:38 <esolangs> [[Yappacino]] M https://esolangs.org/w/index.php?diff=148372&oldid=148371 * RaiseAfloppaFan3925 * (+126) Fixed spelling of language keywords unsynchronized -> unsynchronised + notice
19:47:35 <esolangs> [[User:Tommyaweosme]] https://esolangs.org/w/index.php?diff=148373&oldid=147788 * Tommyaweosme * (+1191)
19:48:27 -!- Sgeo has joined.
20:22:19 -!- chiselfuse has quit (Remote host closed the connection).
20:23:41 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
20:26:17 -!- tromp has joined.
20:26:26 -!- chiselfuse has joined.
21:09:18 <esolangs> [[true]] https://esolangs.org/w/index.php?diff=148374&oldid=148368 * Ractangle * (+33) /* Unimplemented */
21:38:13 -!- ais523 has joined.
21:51:06 <esolangs> [[true]] https://esolangs.org/w/index.php?diff=148375&oldid=148374 * Ractangle * (-1) /* Unimplemented */
22:11:30 -!- craigo has quit (Ping timeout: 260 seconds).
22:37:53 <esolangs> [[Special:Log/newusers]] create * H3RALD * New user account
23:16:04 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
23:37:48 <esolangs> [[Special:Log/newusers]] create * Lem0n * New user account
23:41:25 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=148376&oldid=148327 * Lem0n * (+219) introduce user Lem0n
23:41:38 <esolangs> [[Brainfuck]] https://esolangs.org/w/index.php?diff=148377&oldid=147896 * Lem0n * (+1) /* GUI and Other I/O */
2024-12-16
00:04:06 -!- mtm has quit (Ping timeout: 265 seconds).
00:05:57 -!- mtm has joined.
00:09:12 -!- __monty__ has quit (Quit: leaving).
00:27:50 <esolangs> [[Empty]] https://esolangs.org/w/index.php?diff=148378&oldid=147627 * Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff * (+17)
02:00:26 -!- amby has quit (Remote host closed the connection).
02:05:28 <esolangs> [[(PSTF)]] https://esolangs.org/w/index.php?diff=148379&oldid=148335 * ZCX islptng * (+165) /* Examples */
04:59:05 <esolangs> [[User:ZCX islptng/Sandbox]] https://esolangs.org/w/index.php?diff=148380&oldid=148331 * ZCX islptng * (-59)
07:15:28 -!- Sgeo has quit (Read error: Connection reset by peer).
07:18:16 -!- mtm has quit (Read error: Connection reset by peer).
07:22:38 -!- mtm has joined.
07:34:46 -!- fowl has quit (Read error: Connection reset by peer).
07:35:35 -!- fowl has joined.
08:05:25 -!- tromp has joined.
08:25:16 -!- FreeFull has quit (Ping timeout: 252 seconds).
08:34:21 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
08:42:32 -!- tromp has joined.
08:58:23 <esolangs> [[Special:Log/newusers]] create * MeWhenI * New user account
09:04:39 -!- leah2 has quit (Ping timeout: 260 seconds).
09:09:53 -!- __monty__ has joined.
09:12:43 <esolangs> [[Special:Log/newusers]] create * MWI! * New user account
09:16:45 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=148381&oldid=148376 * MWI! * (+149) /* Introductions */
09:22:25 <esolangs> [[Rockstar]] https://esolangs.org/w/index.php?diff=148382&oldid=133650 * MWI! * (+175) Added update about 2.0 release of language
09:28:58 <esolangs> [[User talk:MeWhenI]] N https://esolangs.org/w/index.php?oldid=148383 * MWI! * (+140) Created page with "I created this account and immediately forgot the password. Oops. ~~~~"
09:41:43 <esolangs> [[User:ZCX islptng/Sandbox]] https://esolangs.org/w/index.php?diff=148384&oldid=148380 * ZCX islptng * (+148) /* Examples */
09:41:53 <esolangs> [[User:ZCX islptng/Sandbox]] https://esolangs.org/w/index.php?diff=148385&oldid=148384 * ZCX islptng * (+1) /* =Judge if a number is even or odd */
10:20:51 -!- leah2 has joined.
10:52:08 <esolangs> [[Talk:Poetic (Mihai Popa)]] N https://esolangs.org/w/index.php?oldid=148386 * None1 * (+348) Created page with "==Ambiguity== An 11-letter word can be interpreted as both 1 1 and 11. --~~~~"
11:05:23 -!- zenmov has quit (Quit: Lost terminal).
11:07:22 -!- zenmov has joined.
11:23:27 -!- ais523 has quit (Quit: quit).
11:47:07 <esolangs> [[Wasaya/Libraries]] https://esolangs.org/w/index.php?diff=148387&oldid=148345 * PrySigneToFry * (+472)
11:49:17 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
11:55:40 <esolangs> [[Captive]] M https://esolangs.org/w/index.php?diff=148388&oldid=124358 * LyricLy * (+2) Show "indicates end of block" as a note, not as a "followed by"
11:57:59 <esolangs> [[User:AGO061]] N https://esolangs.org/w/index.php?oldid=148389 * AGO061 * (+137) Added my wiki page
11:59:24 <esolangs> [[TuringLang]] M https://esolangs.org/w/index.php?diff=148390&oldid=148336 * AGO061 * (-27) Changed external user link to internal user link
12:00:04 <esolangs> [[Captive]] M https://esolangs.org/w/index.php?diff=148391&oldid=148388 * LyricLy * (+0) Preceded, not followed
12:03:26 -!- mtm has quit (Ping timeout: 252 seconds).
12:06:11 -!- tromp has joined.
12:06:22 -!- mtm has joined.
12:29:38 -!- craigo has joined.
12:47:30 <esolangs> [[(PSTF)]] https://esolangs.org/w/index.php?diff=148392&oldid=148379 * PrySigneToFry * (+164)
12:55:08 <esolangs> [[User talk:ZCX islptng]] https://esolangs.org/w/index.php?diff=148393&oldid=148130 * PrySigneToFry * (+223) /* I'll made an Esolang that make Funge-98 in Chinese! */ new section
12:55:25 <esolangs> [[User talk:ZCX islptng]] https://esolangs.org/w/index.php?diff=148394&oldid=148393 * PrySigneToFry * (+0)
13:26:13 <esolangs> [[User:ZCX islptng/Sandbox]] https://esolangs.org/w/index.php?diff=148395&oldid=148385 * PrySigneToFry * (+907)
13:56:45 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
14:32:41 <esolangs> [[+-)]] M https://esolangs.org/w/index.php?diff=148396&oldid=138203 * None1 * (+24) /* External resources */
14:32:57 -!- zenmov has quit (Ping timeout: 244 seconds).
14:34:53 -!- zenmov has joined.
15:24:09 -!- tromp has joined.
15:34:54 -!- FreeFull has joined.
16:05:17 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
16:31:10 -!- user3456 has quit (Quit: I use ZNC - https://znc.in).
16:31:25 -!- amby has joined.
16:35:29 -!- user3456 has joined.
16:38:49 -!- tromp has joined.
16:41:22 -!- molson__ has joined.
16:44:48 -!- molson_ has quit (Ping timeout: 272 seconds).
17:46:25 -!- j4cbo_ has joined.
17:47:48 -!- errilaz_ has joined.
17:54:01 -!- j4cbo has quit (*.net *.split).
17:54:01 -!- errilaz has quit (*.net *.split).
17:54:02 -!- j4cbo_ has changed nick to j4cbo.
18:15:45 -!- Lord_of_Life_ has joined.
18:16:49 -!- Lord_of_Life has quit (Ping timeout: 252 seconds).
18:18:43 -!- Lord_of_Life_ has changed nick to Lord_of_Life.
18:33:17 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
18:34:44 <esolangs> [[Talk:Kava]] https://esolangs.org/w/index.php?diff=148397&oldid=140913 * 5anz * (+71)
18:47:52 -!- tromp has joined.
20:08:16 -!- __monty__ has quit (Ping timeout: 244 seconds).
20:16:47 -!- mtm has quit (Remote host closed the connection).
20:17:33 -!- mtm has joined.
20:57:03 -!- craigo has quit (Quit: Leaving).
21:04:57 <esolangs> [[User talk:MeWhenI]] https://esolangs.org/w/index.php?diff=148398&oldid=148383 * Aadenboy * (+333)
21:50:23 <esolangs> [[BrainXXXXXXXXXXx]] https://esolangs.org/w/index.php?diff=148399&oldid=148215 * 5anz * (+126) /* Might add more */
21:50:56 <esolangs> [[BrainXXXXXXXXXXx]] https://esolangs.org/w/index.php?diff=148400&oldid=148399 * 5anz * (+2) /* Might add more */
22:01:17 <esolangs> [[Talk:CBA]] N https://esolangs.org/w/index.php?oldid=148401 * 5anz * (+53) Created page with "Chess battle advanced. -~~~~~"
22:12:37 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
22:54:40 -!- Everything has joined.
23:03:33 -!- ais523 has joined.
23:08:04 -!- FreeFull has quit (Ping timeout: 244 seconds).
23:09:42 -!- FreeFull has joined.
23:32:44 -!- Sgeo has joined.
23:33:14 <esolangs> [[Special:Log/newusers]] create * Myxtral * New user account
23:39:46 <esolangs> [[(PSTF)]] https://esolangs.org/w/index.php?diff=148402&oldid=148392 * ZCX islptng * (+484)
23:43:47 <esolangs> [[(PSTF)]] https://esolangs.org/w/index.php?diff=148403&oldid=148402 * ZCX islptng * (-17)
23:45:52 <esolangs> [[User:ZCX islptng/Sandbox]] https://esolangs.org/w/index.php?diff=148404&oldid=148395 * ZCX islptng * (+12) stop using , pstf!
23:47:04 <esolangs> [[User:ZCX islptng/Sandbox]] https://esolangs.org/w/index.php?diff=148405&oldid=148404 * ZCX islptng * (-149) /* Arithmetic & Logical */
23:48:02 <esolangs> [[User:ZCX islptng/Sandbox]] https://esolangs.org/w/index.php?diff=148406&oldid=148405 * ZCX islptng * (-114) we can use lambda, and don't forget we are operating on a stack!
2024-12-17
00:02:30 -!- mtm has quit (Ping timeout: 265 seconds).
00:04:23 -!- Everything has quit (Quit: leaving).
00:05:52 -!- mtm has joined.
00:59:57 -!- molson has joined.
01:03:49 -!- molson__ has quit (Ping timeout: 260 seconds).
02:05:40 -!- amby has quit (Ping timeout: 252 seconds).
02:42:24 -!- slavfox has quit (Quit: ZNC 1.8.2 - https://znc.in).
02:42:48 -!- slavfox has joined.
03:22:46 -!- Guest9 has joined.
03:22:51 -!- Guest9 has quit (Client Quit).
06:38:57 -!- ais523 has quit (Ping timeout: 276 seconds).
07:16:35 -!- tromp has joined.
07:24:50 <esolangs> [[User:Jan jelo/TC proof to partial recursive function]] https://esolangs.org/w/index.php?diff=148407&oldid=148291 * Jan jelo * (+3) /* define */
07:25:16 <esolangs> [[User:Jan jelo/TC proof to partial recursive function]] https://esolangs.org/w/index.php?diff=148408&oldid=148407 * Jan jelo * (+4) /* define */
07:57:34 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
07:59:33 -!- Sgeo has quit (Read error: Connection reset by peer).
08:11:15 -!- Lymia has quit (Ping timeout: 246 seconds).
08:21:11 -!- Lymia has joined.
08:25:36 -!- Lymia has quit (Client Quit).
08:27:47 -!- Lymia has joined.
08:33:18 <esolangs> [[Parigot numeral]] N https://esolangs.org/w/index.php?oldid=148409 * Jan jelo * (+1551) Created page with "A '''Parigot numeral''' is a natural number encoded into [[Lambda calculus]]. It is related to primitive recursion. In the parigot numeral,there are <pre> 0 g h = h (succ n) g h = g n (n g h) </pre> and let <code>R(g,h)</code> be a primitive recursive function
08:34:27 <esolangs> [[Recs]] https://esolangs.org/w/index.php?diff=148410&oldid=148196 * Jan jelo * (+7) /* R */
08:39:37 -!- tromp has joined.
09:25:16 <myname> c
09:25:19 <myname> 5c
09:25:51 <myname> ugh, my keyboard remapping is not behaving how i wish it does
09:35:52 <esolangs> [[Parigot numeral]] https://esolangs.org/w/index.php?diff=148411&oldid=148409 * Jan jelo * (+1) /* Examples */
09:47:46 <esolangs> [[Scott numeral]] https://esolangs.org/w/index.php?diff=148412&oldid=148145 * Jan jelo * (+1) /* Examples */
09:54:55 <esolangs> [[Church numeral]] https://esolangs.org/w/index.php?diff=148413&oldid=148146 * Jan jelo * (+426) /* Arithmetic */
09:55:06 <fizzie> https://zem.fi/misc/aoc/twist.html <- 2024 day 17, a new record. :)
09:57:06 <esolangs> [[User:Jan jelo/TC proof to partial recursive function]] https://esolangs.org/w/index.php?diff=148414&oldid=148408 * Jan jelo * (+1) /* functions */
11:15:35 -!- __monty__ has joined.
11:24:22 <int-e> I stayed under 1h after starting (I'm *not* getting up at 6am for this this year)
11:24:39 <int-e> So it went okay but I should've disassembled sooner. :P
12:03:36 <fizzie> 5am for me, and not getting up either.
12:04:05 -!- mtm has quit (Ping timeout: 248 seconds).
12:04:21 <fizzie> Not sure how long it took after opening the puzzle page, was doing breakfast and other morning things in parallel.
12:05:41 <int-e> I'm not really tracking that either... the timestamp of the `input` file may be close enough.
12:05:44 -!- mtm has joined.
12:08:44 <fizzie> There was some chatter on the web that the site should have a "from your first visit to solution submission" timer, of course it'd still be on the honour system but it would make it easier for people who want to try doing it fast. (I'm not one of them.)
12:13:29 <fizzie> I guess you might guess from the instruction set (and/or watching register values on the example) that it's going to be some sort of "shift down by 3" kind of a loop, and then come up with a semi-generic solution search that just executes the program, without disassembling it. But I just started with that.
12:16:15 <int-e> In my case I found /a/ solution with a black-box approach but it was too large.
12:17:37 <int-e> (for my input there are 22 possible starting values for A)
12:38:59 <int-e> Ah wow, why did I search for the input from the low end instead of the high end...
12:40:11 <int-e> (Well, I know why: I was worried there'd be state affecting later computations. But I didn't switch direction after disassembling the program.)
12:56:16 <fizzie> Usually I give up on Burlesque around day 21 or so, but this time I only got up to day 5 (and day 9 part 1). :/
12:56:34 <fizzie> (I blame videogames, I've been playing the space game.)
12:56:46 <int-e> haha, "the"
12:56:50 <fizzie> Er, not the space age space game.
12:58:36 <fizzie> ("Everyone else" has been doing Factorio: Space Age, but I just started Elite: Dangerous a couple of months ago.)
13:14:42 * int-e has only watched streamers play Space Age
13:15:17 <int-e> so much to juggle
13:15:41 -!- __monty__ has quit (Quit: leaving).
13:15:42 <int-e> (well they're trying to speedrun which makes it worse)
13:30:52 <fizzie> A number of people took vacation for the launch week, so it must be pretty big deal, that's all I know.
13:37:16 <int-e> it's a substantial expansion to an already big game'
13:38:24 <esolangs> [[I/D machine]] https://esolangs.org/w/index.php?diff=148415&oldid=146185 * Jan jelo * (+503) /* Implementations */
13:44:48 -!- craigo has joined.
14:13:03 <esolangs> [[true]] https://esolangs.org/w/index.php?diff=148416&oldid=148375 * Ractangle * (-59) /* Unimplemented */
14:16:30 <esolangs> [['Brainfuck' is not recognized]] https://esolangs.org/w/index.php?diff=148417&oldid=147948 * Ractangle * (-134) Redirected page to [[How dare you fuck the brain]]
14:17:01 <esolangs> [[User:Ractangle/Sandbox]] https://esolangs.org/w/index.php?diff=148418&oldid=148317 * Ractangle * (-35) /* Stuff to continue */
14:20:03 <esolangs> [[User:ZCX islptng/Sandbox]] M https://esolangs.org/w/index.php?diff=148419&oldid=148406 * PrySigneToFry * (+66)
14:22:34 <esolangs> [[(PSTF)]] https://esolangs.org/w/index.php?diff=148420&oldid=148403 * PrySigneToFry * (+3)
14:27:18 <esolangs> [[Poetic (Mihai Popa)]] https://esolangs.org/w/index.php?diff=148421&oldid=148326 * PrySigneToFry * (+272)
14:29:56 <esolangs> [[License plate language]] N https://esolangs.org/w/index.php?oldid=148422 * None1 * (+352) Created page with "{{WIP}} '''License plate language''' is an esolang invented by User:None1. Programs are concatenations of first 2 characters in Chinese (inland) license plates. ==Commands== They are like this: ''command'' ''argument'' The command is a Chinese character, w
14:36:24 <esolangs> [[User talk:Tommyaweosme/Emojic collab with yayimhere and ractangle]] N https://esolangs.org/w/index.php?oldid=148423 * PrySigneToFry * (+1352) Created page with "== Criticism == Emojis often displays as a "No-Glyph" symbol, but many fonts (especially the various Serifs and Sans-serifs) support Chinese character (although sometimes rare characters are not supported,
14:38:13 <esolangs> [[User talk:Tommyaweosme/Emojic collab with yayimhere and ractangle]] https://esolangs.org/w/index.php?diff=148424&oldid=148423 * PrySigneToFry * (+175)
14:53:59 <esolangs> [[Special:Log/move]] move * Ractangle * moved [[Pluck]] to [[fish]]
15:00:06 <esolangs> [[Fish]] https://esolangs.org/w/index.php?diff=148427&oldid=147370 * Ractangle * (-9) /* Literals and operators */
15:13:04 <esolangs> [[fish]] https://esolangs.org/w/index.php?diff=148428&oldid=148425 * Ractangle * (-75)
15:14:32 <esolangs> [[User:Tommyaweosme/Emojic collab with yayimhere and ractangle]] https://esolangs.org/w/index.php?diff=148429&oldid=148220 * Yayimhere * (-331)
16:02:57 <esolangs> [[License plate language]] M https://esolangs.org/w/index.php?diff=148430&oldid=148422 * Aadenboy * (+4) link
16:10:07 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
16:19:13 -!- amby has joined.
16:23:38 -!- tromp has joined.
16:50:11 -!- wib_jonas has joined.
16:51:01 <wib_jonas> fizzie: I'm not sure what you mean by "everyone else" because as far as I'm aware I'm the only one on esolangs who plays Factorio Space Age, even though you'd expect more people here to play it
16:51:42 <wib_jonas> that's why I didn't add it to https://esolangs.org/wiki/User:B_jonas#Games_that_the_esolangs_community_plays
16:53:09 <wib_jonas> it's kind of weird, it's a programming game, people here play programming games, why isn't the whole channel playing Factorio? a few people might be deliberately avoiding it because it's a big addictive timewaster, but that's not something I expect all of #esolangs to do
17:13:06 <fizzie> Yeah, I don't have an explanation for why I never got into it at all. But by "everyone else" I meant people around the office and so on.
17:15:39 <wib_jonas> well it's not too late. they released a lot of improvements into the game besides the expansion, so now might be the best time to get into it.
17:16:48 <wib_jonas> or maybe a few months from now is the best time when some of the changes after the big upgrade stabilize
17:18:13 <wib_jonas> probably now, the following few changes won't matter too much
17:45:15 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
18:03:02 <esolangs> [[BFInfinity]] https://esolangs.org/w/index.php?diff=148431&oldid=148113 * * (+1806) /* Commands */
18:03:39 -!- tromp has joined.
18:14:55 -!- wib_jonas has quit (Quit: Client closed).
18:16:52 -!- Lord_of_Life_ has joined.
18:17:22 -!- Lord_of_Life has quit (Ping timeout: 248 seconds).
18:19:47 -!- Lord_of_Life_ has changed nick to Lord_of_Life.
18:20:20 <esolangs> [[BFInfinity]] https://esolangs.org/w/index.php?diff=148432&oldid=148431 * * (+136) /* Commands */
18:21:18 <esolangs> [[BFInfinity]] https://esolangs.org/w/index.php?diff=148433&oldid=148432 * * (-15) /* Commands */
18:24:31 <esolangs> [[BFInfinity]] https://esolangs.org/w/index.php?diff=148434&oldid=148433 * * (+256) /* Commands */
18:27:20 <esolangs> [[BFInfinity]] https://esolangs.org/w/index.php?diff=148435&oldid=148434 * * (-203) There's already that command
18:32:40 <esolangs> [[BFInfinity]] https://esolangs.org/w/index.php?diff=148436&oldid=148435 * * (+58) /* Examples */
19:40:50 <esolangs> [[Parigot numeral]] https://esolangs.org/w/index.php?diff=148437&oldid=148411 * Corbin * (+365) Grammar and more words. I may have the recursion schemes backward, in which case these would be anamorphisms and apomorphisms respectively.
19:50:08 <esolangs> [[Church numeral]] https://esolangs.org/w/index.php?diff=148438&oldid=148413 * Corbin * (+125) Explicitly link to the alternatives, as it seems like Church numerals are widespread enough to mistakenly appear as ''the'' choice when they are only one possibility.
19:58:19 <esolangs> [[The Genetic Computer]] https://esolangs.org/w/index.php?diff=148439&oldid=148297 * Theonetruenerd * (+824) Added meaning of all currently defined codons, changed format to table. Updated some example code.
20:06:54 <esolangs> [[The Genetic Computer]] M https://esolangs.org/w/index.php?diff=148440&oldid=148439 * Theonetruenerd * (+948) Added table showing ascii character <-> codon conversion
20:18:18 <esolangs> [[The Genetic Computer]] M https://esolangs.org/w/index.php?diff=148441&oldid=148440 * Theonetruenerd * (-247) Updated example codon with stop codons rather than return codons, updated description of what happens if it encounters undefined codons
20:24:34 <esolangs> [[Afterstar]] N https://esolangs.org/w/index.php?oldid=148442 * Keymaker * (+3022) 1st of my 2 languages this year. A minimal division/multiplication language.
20:54:36 <esolangs> [[Convalescent]] N https://esolangs.org/w/index.php?oldid=148443 * Keymaker * (+3244) 2nd of my 2 languages this year... A two-character, two-instruction language powered by prime factors.
21:12:33 <esolangs> [[Special:Log/newusers]] create * 47 * New user account
21:15:02 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=148444&oldid=148381 * 47 * (+83)
21:16:49 <esolangs> [[User:47]] N https://esolangs.org/w/index.php?oldid=148445 * 47 * (+123) Created page with "alt account of [[User:Ractangle]]. This account exists because of a vandal in the progressmod95 wiki but the name of muvert"
21:18:34 <esolangs> [[User:47]] https://esolangs.org/w/index.php?diff=148446&oldid=148445 * 47 * (+104)
21:20:00 <esolangs> [[User:Ractangle]] https://esolangs.org/w/index.php?diff=148447&oldid=148070 * 47 * (+13) /* Other things */
21:20:30 <esolangs> [[User:Ractangle/Sandbox]] https://esolangs.org/w/index.php?diff=148448&oldid=148418 * 47 * (+21)
22:57:35 -!- craigo has quit (Quit: Leaving).
23:10:45 <esolangs> [[License plate language]] https://esolangs.org/w/index.php?diff=148449&oldid=148430 * None1 * (+97)
23:34:46 -!- Sgeo has joined.
23:39:47 <esolangs> [[User:ZCX islptng/Sandbox]] https://esolangs.org/w/index.php?diff=148450&oldid=148419 * ZCX islptng * (+14)
23:41:29 <esolangs> [[User:ZCX islptng/Sandbox]] https://esolangs.org/w/index.php?diff=148451&oldid=148450 * ZCX islptng * (-231) /* Data types */
2024-12-18
00:04:19 -!- mtm has quit (Ping timeout: 265 seconds).
00:06:04 -!- mtm has joined.
00:39:53 <esolangs> [[(islptng)]] N https://esolangs.org/w/index.php?oldid=148452 * ZCX islptng * (+2300) Created page with "There are already [[|two]] [[(PSTF)|esolangs]] with this name, but THEY ARE ALL BF DERIVATIVES! I want to make a difference! {{wip}} This esolang, created by islptng, is a bit different from BF.<br> The pointer takes a box with it. Items are unbounded.<br> We're
00:45:35 <esolangs> [[(islptng)]] https://esolangs.org/w/index.php?diff=148453&oldid=148452 * ZCX islptng * (+0)
00:46:46 <esolangs> [[(islptng)]] https://esolangs.org/w/index.php?diff=148454&oldid=148453 * ZCX islptng * (+8)
00:48:43 -!- JAA has quit (Ping timeout: 245 seconds).
00:49:01 <esolangs> [[Poetic (family)]] https://esolangs.org/w/index.php?diff=148455&oldid=147606 * ZCX islptng * (+101)
00:50:25 -!- JAA has joined.
01:03:47 <esolangs> [[(islptng)]] https://esolangs.org/w/index.php?diff=148456&oldid=148454 * ZCX islptng * (+8)
01:05:07 <esolangs> [[Overload]] https://esolangs.org/w/index.php?diff=148457&oldid=147625 * Fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff * (+66) /* Cat program (halts) */
01:22:07 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
01:26:38 <esolangs> [[(islptng)]] https://esolangs.org/w/index.php?diff=148458&oldid=148456 * ZCX islptng * (+1118)
02:15:25 -!- 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).
03:08:51 <esolangs> [[Talk:Redstone]] M https://esolangs.org/w/index.php?diff=148459&oldid=86441 * CreeperBomb * (+1667)
03:18:13 <esolangs> [[Redstone]] M https://esolangs.org/w/index.php?diff=148460&oldid=112012 * CreeperBomb * (+780)
03:18:21 <esolangs> [[Redstone]] M https://esolangs.org/w/index.php?diff=148461&oldid=148460 * CreeperBomb * (+0)
03:19:24 <esolangs> [[Redstone]] M https://esolangs.org/w/index.php?diff=148462&oldid=148461 * CreeperBomb * (-7) Minecraft Wiki is better than Minecraft Fandom Wiki
03:20:11 <esolangs> [[Redstone]] M https://esolangs.org/w/index.php?diff=148463&oldid=148462 * CreeperBomb * (-46)
04:09:10 <esolangs> [[Talk:Albuquerque challenge]] N https://esolangs.org/w/index.php?oldid=148464 * ZCX islptng * (+819) Created page with "supercalifragilisticalbuquerquedocious: supercalifralifragifragilifragilifragilisupercalifragilistifragilisticalifragilisticexpifragilisticexpialifragilisticexpialifragilisticexpialifragilisticexpialidocalifragilisticexpialidocifragilisticexpialid
04:17:54 <esolangs> [[Talk:Albuquerque challenge]] https://esolangs.org/w/index.php?diff=148465&oldid=148464 * ZCX islptng * (-23)
04:21:55 <esolangs> [[Albuquerque challenge]] https://esolangs.org/w/index.php?diff=148466&oldid=147726 * ZCX islptng * (+844)
04:55:05 <esolangs> [[Albuquerque challenge]] https://esolangs.org/w/index.php?diff=148467&oldid=148466 * ZCX islptng * (+113) /* interpretations */
06:37:19 -!- Sgeo has quit (Read error: Connection reset by peer).
06:41:02 <esolangs> [[(islptng)]] https://esolangs.org/w/index.php?diff=148468&oldid=148458 * ZCX islptng * (+2271)
07:31:10 -!- Ae has quit (Ping timeout: 252 seconds).
07:31:45 -!- Ae has joined.
07:59:17 -!- tromp has joined.
09:09:56 -!- b_jonas has quit (Quit: leaving).
09:12:49 <esolangs> [[User:GUAqwq]] https://esolangs.org/w/index.php?diff=148469&oldid=139148 * GUAqwq * (-10) /* All my esolangs */
10:13:50 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
10:48:22 -!- tromp has joined.
11:29:58 -!- __monty__ has joined.
12:04:19 -!- mtm has quit (Ping timeout: 252 seconds).
12:05:42 -!- mtm has joined.
12:25:59 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
12:43:29 -!- tromp has joined.
13:34:01 -!- amby has joined.
14:14:03 <esolangs> [[(PSTF)]] https://esolangs.org/w/index.php?diff=148470&oldid=148420 * PrySigneToFry * (+88)
14:19:01 <esolangs> [[BFInfinity]] https://esolangs.org/w/index.php?diff=148471&oldid=148436 * PrySigneToFry * (+154)
14:42:08 -!- Everything has joined.
14:55:41 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
15:00:15 -!- tromp has joined.
15:33:59 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
15:56:23 -!- tromp has joined.
16:04:16 <esolangs> [[Albuquerque challenge]] M https://esolangs.org/w/index.php?diff=148472&oldid=148467 * Aadenboy * (-4) /* interpretations */
16:41:26 -!- mtm has quit (Ping timeout: 265 seconds).
16:44:38 -!- mtm has joined.
17:32:04 -!- Everything has quit (Ping timeout: 272 seconds).
17:36:45 -!- wib_jonas has joined.
17:36:57 <wib_jonas> `olist 1315
17:36:59 <HackEso> olist <https://www.giantitp.com/comics/oots1315.html>: shachaf oerjan Sgeo boily nortti b_jonas Noisytoot
18:16:55 -!- Lord_of_Life_ has joined.
18:18:06 -!- Lord_of_Life has quit (Ping timeout: 265 seconds).
18:19:53 -!- Lord_of_Life_ has changed nick to Lord_of_Life.
18:27:37 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
18:32:03 -!- tromp has joined.
18:32:57 <esolangs> [[User:Keymaker]] https://esolangs.org/w/index.php?diff=148473&oldid=107722 * Keymaker * (+165) Added the new languages.
18:34:57 <esolangs> [[U (Ractangle)]] https://esolangs.org/w/index.php?diff=148474&oldid=142915 * Ractangle * (+1351) /* Examples */
18:39:22 -!- craigo has joined.
18:44:33 <esolangs> [[Church numeral]] https://esolangs.org/w/index.php?diff=148475&oldid=148438 * Cosmikdebris * (+29) /* Definition */
18:45:24 <esolangs> [[Parigot numeral]] https://esolangs.org/w/index.php?diff=148476&oldid=148437 * Cosmikdebris * (+20)
19:03:52 <esolangs> [[Timeline of esoteric programming languages]] M https://esolangs.org/w/index.php?diff=148477&oldid=125250 * Corbin * (+65) /* 1964 */ Fix sentence? These paragraphs tasted a little jank for some reason.
19:06:32 <esolangs> [[Timeline of esoteric programming languages]] M https://esolangs.org/w/index.php?diff=148478&oldid=148477 * Corbin * (+43) /* 1970 */ Hmm... Timeline? Also bluelink.
19:13:03 <esolangs> [[Timeline of esoteric programming languages]] https://esolangs.org/w/index.php?diff=148479&oldid=148478 * Corbin * (+502) Repetition is a literary device in which a phrase is repeated, often with minor variations, to emphasize an underlying theme.
19:20:52 -!- wib_jonas has quit (Quit: Client closed).
19:36:50 -!- Everything has joined.
19:40:56 <esolangs> [[Special:Log/move]] move * Ractangle * moved [[fish]] to [[Definition]]
19:53:58 -!- Everything has quit (Ping timeout: 252 seconds).
19:55:01 <esolangs> [[Definition]] https://esolangs.org/w/index.php?diff=148482&oldid=148480 * Ractangle * (+486)
19:55:53 -!- Everything has joined.
19:58:26 <esolangs> [[Definition]] https://esolangs.org/w/index.php?diff=148483&oldid=148482 * Ractangle * (+169)
19:58:54 <esolangs> [[User:Ractangle/Sandbox]] https://esolangs.org/w/index.php?diff=148484&oldid=148448 * Ractangle * (+5) /* Stuff to continue */
20:05:47 <esolangs> [[Definition]] https://esolangs.org/w/index.php?diff=148485&oldid=148483 * Ractangle * (-3) /* Syntax */
20:06:08 <esolangs> [[Definition]] https://esolangs.org/w/index.php?diff=148486&oldid=148485 * Ractangle * (+1) /* Syntax */
20:08:06 <esolangs> [[How dare you fuck the brain]] https://esolangs.org/w/index.php?diff=148487&oldid=148369 * Ractangle * (-62) /* Interpreter */
20:08:46 <esolangs> [[How dare you fuck the brain]] https://esolangs.org/w/index.php?diff=148488&oldid=148487 * Ractangle * (-87) /* Interpreter */
20:22:48 -!- Everything has quit (Ping timeout: 265 seconds).
20:24:30 -!- Everything has joined.
20:48:56 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
20:50:44 -!- tromp has joined.
21:15:25 -!- Sgeo has joined.
21:23:01 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
21:28:10 -!- tromp has joined.
22:06:01 <esolangs> [[Definition]] https://esolangs.org/w/index.php?diff=148489&oldid=148486 * Ractangle * (+17)
22:06:43 <esolangs> [[Definition]] https://esolangs.org/w/index.php?diff=148490&oldid=148489 * Ractangle * (-2) /* Syntax */
22:08:12 <esolangs> [[Definition]] https://esolangs.org/w/index.php?diff=148491&oldid=148490 * Ractangle * (+65)
22:37:23 -!- b_jonas has joined.
22:56:08 -!- Everything has quit (Quit: leaving).
23:01:54 <esolangs> [[License plate language]] https://esolangs.org/w/index.php?diff=148492&oldid=148449 * None1 * (+71) /* Commands */
23:13:30 <esolangs> [[License plate language]] https://esolangs.org/w/index.php?diff=148493&oldid=148492 * None1 * (+590) /* Commands */
23:18:10 <esolangs> [[User:H. H. P. M. P. Cole/Modulo 2]] M https://esolangs.org/w/index.php?diff=148494&oldid=147358 * H. H. P. M. P. Cole * (+12)
23:19:46 <esolangs> [[User:H. H. P. M. P. Cole]] M https://esolangs.org/w/index.php?diff=148495&oldid=147344 * H. H. P. M. P. Cole * (-64)
23:22:53 <esolangs> [[Special:Log/move]] move * H. H. P. M. P. Cole * moved [[User:H. H. P. M. P. Cole/Modulo 2]] to [[Modulo 2]]
23:23:15 <esolangs> [[User:H. H. P. M. P. Cole]] M https://esolangs.org/w/index.php?diff=148498&oldid=148495 * H. H. P. M. P. Cole * (-33)
23:23:30 <esolangs> [[Modulo 2]] M https://esolangs.org/w/index.php?diff=148499&oldid=148496 * H. H. P. M. P. Cole * (-4)
23:24:24 <esolangs> [[Special:Log/move]] move * H. H. P. M. P. Cole * moved [[Modulo 2]] to [[User:H. H. P. M. P. Cole/Sketchbook]]
23:24:37 <esolangs> [[User:H. H. P. M. P. Cole/Sketchbook]] M https://esolangs.org/w/index.php?diff=148502&oldid=148500 * H. H. P. M. P. Cole * (+4)
23:24:53 <esolangs> [[Modulo 2]] M https://esolangs.org/w/index.php?diff=148503&oldid=148501 * H. H. P. M. P. Cole * (-49) Blanked the page
23:25:19 <esolangs> [[User:H. H. P. M. P. Cole/Modulo 2]] M https://esolangs.org/w/index.php?diff=148504&oldid=148497 * H. H. P. M. P. Cole * (+666) Removed redirect to [[Modulo 2]]
23:25:27 <esolangs> [[User:H. H. P. M. P. Cole/Sketchbook]] M https://esolangs.org/w/index.php?diff=148505&oldid=148502 * H. H. P. M. P. Cole * (-658) Replaced content with "MAKE MODULO2 TURING COMPLETE!!"
23:27:42 <esolangs> [[Modulo 2]] M https://esolangs.org/w/index.php?diff=148506&oldid=148503 * H. H. P. M. P. Cole * (+688)
23:30:46 <esolangs> [[User:H. H. P. M. P. Cole/Sketchbook]] M https://esolangs.org/w/index.php?diff=148507&oldid=148505 * H. H. P. M. P. Cole * (+112)
23:31:12 <esolangs> [[User:H. H. P. M. P. Cole]] M https://esolangs.org/w/index.php?diff=148508&oldid=148498 * H. H. P. M. P. Cole * (+40)
23:35:36 <esolangs> [[User:H. H. P. M. P. Cole/Modulo 2]] M https://esolangs.org/w/index.php?diff=148509&oldid=148504 * H. H. P. M. P. Cole * (+64)
23:35:47 <esolangs> [[User:H. H. P. M. P. Cole]] M https://esolangs.org/w/index.php?diff=148510&oldid=148508 * H. H. P. M. P. Cole * (-6)
23:36:24 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
23:50:07 <esolangs> [[(islptng)]] https://esolangs.org/w/index.php?diff=148511&oldid=148468 * ZCX islptng * (-1793)
23:50:17 <esolangs> [[(islptng)]] https://esolangs.org/w/index.php?diff=148512&oldid=148511 * ZCX islptng * (-1) /* Syntax of */
23:50:39 <esolangs> [[Brainstack(islptng)]] N https://esolangs.org/w/index.php?oldid=148513 * ZCX islptng * (+1172) Created page with "{{lowercase}} Brainstack is not a [[brainfuck]] derivative, but a completely new language. Instead of cells, we operate on stacks. The pointer itself has also got a box.<br> Elements can be any integer, unbounded. The stack tape is unbounded, too. ==Co
23:53:15 <esolangs> [[(islptng)]] https://esolangs.org/w/index.php?diff=148514&oldid=148512 * ZCX islptng * (+1085)
23:53:57 -!- __monty__ has quit (Quit: leaving).
23:54:04 <esolangs> [[(islptng)]] https://esolangs.org/w/index.php?diff=148515&oldid=148514 * ZCX islptng * (+0)
23:54:49 <esolangs> [[Brainstack(islptng)]] https://esolangs.org/w/index.php?diff=148516&oldid=148513 * ZCX islptng * (+43)
2024-12-19
00:02:50 -!- mtm has quit (Ping timeout: 272 seconds).
00:05:39 -!- mtm has joined.
00:37:21 <esolangs> [[Semi-serious language list]] https://esolangs.org/w/index.php?diff=148517&oldid=148177 * Ais523 * (-136) a) rm spam, b) mark comments as comments so that they don't increase the prominence of the language on the page
00:38:35 <esolangs> [[FukYorBrane]] https://esolangs.org/w/index.php?diff=148518&oldid=139244 * Ais523 * (-34) /* External resources */ rm irrelevant external resource (this should be linked to the on-wiki version instead, but such a link already exists in the article)
02:14:00 -!- 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).
04:29:01 -!- craigo has quit (Quit: Leaving).
06:51:27 -!- sprock has quit (Ping timeout: 276 seconds).
07:56:24 <esolangs> [[Definition]] https://esolangs.org/w/index.php?diff=148519&oldid=148491 * Ractangle * (+72)
07:57:40 -!- tromp has joined.
08:46:59 <esolangs> [[Special:Log/newusers]] create * MareoLevis * New user account
09:02:04 -!- Sgeo has quit (Read error: Connection reset by peer).
09:02:10 <esolangs> [[Pyline]] https://esolangs.org/w/index.php?diff=148520&oldid=148038 * Jan jelo * (+114) /* Truth machine */
09:32:00 <esolangs> [[Pyline]] https://esolangs.org/w/index.php?diff=148521&oldid=148520 * Jan jelo * (+114)
09:33:32 <esolangs> [[Definition]] https://esolangs.org/w/index.php?diff=148522&oldid=148519 * Ractangle * (+69)
09:34:12 -!- tromp has quit (Quit: My iMac has gone to sleep. ZZZzzz…).
10:13:41 -!- tromp has joined.
10:17:26 <esolangs> [[Talk:Main Page]] M https://esolangs.org/w/index.php?diff=148523&oldid=143392 * Rdococ * (+220) /* Fix the name */
10:31:22 -!- __monty__ has joined.
10:38:24 <esolangs> [[(islptng)]] https://esolangs.org/w/index.php?diff=148524&oldid=148515 * None1 * (+1) Fix grammar mistakes
10:47:42 <esolangs> [[BFInfinity]] https://esolangs.org/w/index.php?diff=148525&oldid=148471 * None1 * (+120) /* Commands */
10:55:17 <esolangs> [[Table]] https://esolangs.org/w/index.php?diff=148526&oldid=109177 * Rdococ * (+125)
10:55:51 <esolangs> [[Table]] M https://esolangs.org/w/index.php?diff=148527&oldid=148526 * Rdococ * (-2) /* Syntax */
10:56:39 <esolangs> [[Talk:Table]] M https://esolangs.org/w/index.php?diff=148528&oldid=107326 * Rdococ * (+7)
11:20:11 -!- SGautam has joined.
11:30:46 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=148529&oldid=148444 * MareoLevis * (+177)
11:47:30 -!- fowl5 has joined.
11:47:41 -!- fowl has quit (Read error: Connection reset by peer).
11:47:41 -!- fowl5 has changed nick to fowl.
12:03:22 -!- mtm has quit (Ping timeout: 265 seconds).
12:05:35 -!- mtm has joined.
12:35:23 -!- tromp has quit (Read error: Connection reset by peer).
13:03:35 <esolangs> [[BFInfinity]] https://esolangs.org/w/index.php?diff=148530&oldid=148525 * Jan jelo * (+134) /* Commands */
14:05:28 -!- X-Scale has joined.
14:09:52 -!- amby has joined.
14:20:46 -!- X-Scale has quit (Quit: Client closed).
14:27:01 <esolangs> [[User:PrySigneToFry/NO NETWORK ENGLISH SLANG!]] N https://esolangs.org/w/index.php?oldid=148531 * PrySigneToFry * (+2291) Created page with "<big><big><big><big><big><big><big><big><big><big><big><big>NO NETWORK ENGLISH SLANG!</big></big></big></big></big></big></big></big></big></big></big></big><ref>The "slang" here includes all the odd English abbreviations, "gra
14:33:09 <esolangs> [[BFInfinity]] https://esolangs.org/w/index.php?diff=148532&oldid=148530 * PrySigneToFry * (+600)
14:38:10 -!- X-Scale has joined.
14:39:47 <esolangs> [[User:ZCX islptng/Sandbox]] https://esolangs.org/w/index.php?diff=148533&oldid=148451 * PrySigneToFry * (+95)
14:43:07 <esolangs> [[User:ZCX islptng/Sandbox]] https://esolangs.org/w/index.php?diff=148534&oldid=148533 * PrySigneToFry * (+0) Command repeat: Both "20" and "ordinal" are "". To distinguish them, I use as "ordinal".
14:44:46 -!- Sgeo has joined.
15:10:10 -!- X-Scale has quit (Ping timeout: 240 seconds).
16:58:24 <fizzie> `blsq "wurbg"XX{**J3&&j4./4&&||}m[ " using the fact that these are distinct for convenience today "vv
16:58:25 <HackEso> ​{7 5 6 2 3}
17:00:27 <int-e> > map (\c -> fromEnum c `mod` 9 `div` 2) "wurbg"
17:00:29 <lambdabot> [1,0,3,4,2]
17:01:34 <int-e> wait, they're distinct modulo 6 even. but maybe you don't want 0
17:01:54 * int-e still doesn't know burlesque
17:05:26 -!- SGautam has quit (Quit: Connection closed for inactivity).
17:07:04 <fizzie> I wanted something bitwise for speed, and it was for Go rather than Burlesque. :)
17:07:24 <int-e> ah
17:08:03 <fizzie> (Though I did look at modulo a few small numbers too and still missed that somehow.)
17:08:30 <fizzie> That'd be better for code size in Burlesque certainly.
17:08:53 <fizzie> (Though if I get around to doing it I'll probably stick to the actual characters.)
17:10:08 <fizzie> `blsq "wurbg"XX{**6.%}m[ " just checking "vv
17:10:09 <HackEso> ​{5 3 0 2 1}
17:11:11 <esolangs> [[Special:Log/newusers]] create * WattleFoxxo * New user account
17:14:20 <fizzie> Had four iterations of the Go solution today, with runtimes of 23.6 ms, 3.0 ms, 0.53 ms and 0.32 ms.
17:14:47 <fizzie> Since the question itself wasn't exactly complicated, had to extract some content out of it somehow.
17:15:25 <fizzie> Guessing the AIs found it quite easy as well, since the top time for the first star is 6 seconds.
17:24:35 <int-e> I'd like to know how many wrong LLM-"generated" answers the platform receives in the first minute or so.
17:24:49 <int-e> But it's probably impossible to say.
17:29:18 <fizzie> I could send a HTTP request every second for the first five minutes, measure the latency, and use that as a proxy for how busy the site gets, but that might be a little impolite. ;)
17:31:24 <fizzie> Already a bit uneasy about re-fetching the /stats page every 5 minutes for that other set of charts, but I think once every 5 minutes is okayish.
17:32:17 <int-e> yeah that does sound rather impolite
17:35:37 <fizzie> Actually now that I look at my stats data, there's actually already a gap, the first entry is 1 Dec 05:05am UTC, and then it goes every 5 minutes up to 2 Dec 04:55am, but then the next row is 05:10am.
17:36:50 <fizzie> Maybe those timed out. :)
17:37:03 <int-e> it's a plausible assumption :)
17:46:51 <fizzie> As it happens, I record both the nominal timestamp and the time I actually finished fetching the stats page in the file; eyeballing the numbers it looks like there isn't much of a difference for the 05:00 fetch in latency, except for the two missed 05:00 updates and the one missed 05:05 one: https://0x0.st/XCLG.txt
18:18:55 -!- Lord_of_Life has quit (Ping timeout: 265 seconds).
18:18:56 -!- Lord_of_Life_ has joined.
18:21:55 -!- Lord_of_Life_ has changed nick to Lord_of_Life.
18:38:31 <esolangs> [[Print("Hello, World!")]] https://esolangs.org/w/index.php?diff=148535&oldid=148231 * Ractangle * (+81) /* Languages */
20:01:40 <esolangs> [[Special:Log/move]] move * Ractangle * moved [[Fortuludmium]] to [[Jive]]
20:02:29 <esolangs> [[Jive]] https://esolangs.org/w/index.php?diff=148538&oldid=148536 * Ractangle * (-963) Replaced content with "{{lowercase}}{{WIP}} will make the page later [[Category:Languages]] [[Category:2024]]"
20:07:52 <esolangs> [[Jive]] https://esolangs.org/w/index.php?diff=148539&oldid=148538 * Ractangle * (+32)
20:15:33 <esolangs> [[Jive]] https://esolangs.org/w/index.php?diff=148540&oldid=148539 * Ractangle * (+351)
20:15:58 <esolangs> [[Jive]] https://esolangs.org/w/index.php?diff=148541&oldid=148540 * Ractangle * (+14) /* Syntax */
20:17:30 <esolangs> [[Jive]] https://esolangs.org/w/index.php?diff=148542&oldid=148541 * Ractangle * (+45) /* Syntax */
20:28:04 <esolangs> [[Jive]] https://esolangs.org/w/index.php?diff=148543&oldid=148542 * Ractangle * (+42)
20:31:53 -!- __monty__ has quit (Ping timeout: 244 seconds).
20:38:55 -!- __monty__ has joined.
20:41:34 <esolangs> [[Jive]] https://esolangs.org/w/index.php?diff=148544&oldid=148543 * Ractangle * (+88) /* Factorial */
20:52:12 <esolangs> [[Mornington Crescent]] https://esolangs.org/w/index.php?diff=148545&oldid=135661 * Pppery * (+6471) /* Computational class */ Draft of a turing completeness proof. First time doing this so probably got something wrong
20:53:05 <esolangs> [[Mornington Crescent]] https://esolangs.org/w/index.php?diff=148546&oldid=148545 * Pppery * (-12)
20:53:23 <esolangs> [[Mornington Crescent]] https://esolangs.org/w/index.php?diff=148547&oldid=148546 * Pppery * (+0)
21:01:57 <esolangs> [[Mornington Crescent]] https://esolangs.org/w/index.php?diff=148548&oldid=148547 * Pppery * (+23) /* Computational class */
21:49:49 -!- sprock has joined.
21:53:13 <esolangs> [[Jive]] https://esolangs.org/w/index.php?diff=148549&oldid=148544 * Ractangle * (+33) /* Syntax */
21:55:32 <esolangs> [[Comment]] https://esolangs.org/w/index.php?diff=148550&oldid=148171 * Ractangle * (-8) /* !!brainfeed */
21:57:39 <esolangs> [[Factorial]] https://esolangs.org/w/index.php?diff=148551&oldid=141880 * Ractangle * (+25) /* J-- */
22:21:09 -!- craigo has joined.
23:20:14 -!- __monty__ has quit (Quit: leaving).
23:58:04 -!- lynndotpy has quit (Quit: bye bye).
2024-12-20
00:03:12 -!- mtm has quit (Ping timeout: 244 seconds).
00:03:26 -!- lynndotpy has joined.
00:05:28 -!- mtm has joined.
00:26:36 -!- chiselfuse has quit (Ping timeout: 264 seconds).
00:27:26 -!- chiselfuse has joined.
01:13:01 <esolangs> [[Tile]] https://esolangs.org/w/index.php?diff=148552&oldid=147574 * Dtp09 * (-1809) removed segment about save codes (as they have been updated), updated program save codes to use newer format, changed infinite loop warning on truth machine
01:17:50 <esolangs> [[Mornington Crescent]] https://esolangs.org/w/index.php?diff=148553&oldid=148548 * Pppery * (-6) /* Hello, World! */
01:19:00 <esolangs> [[Tile/Update Log]] https://esolangs.org/w/index.php?diff=148554&oldid=133969 * Dtp09 * (+527) merry christmas
01:31:00 <esolangs> [[Mornington Crescent]] https://esolangs.org/w/index.php?diff=148555&oldid=148553 * Pppery * (+191) /* Computational class */ +
02:32:55 -!- 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).
03:53:57 -!- zzo38 has quit (Ping timeout: 248 seconds).
04:25:33 <esolangs> [[PokBattle]] M https://esolangs.org/w/index.php?diff=148556&oldid=143834 * ZachChecksOutEsolangs * (+584) Added a truth machine that uses jump loops
04:25:59 <esolangs> [[PokBattle]] https://esolangs.org/w/index.php?diff=148557&oldid=148556 * ZachChecksOutEsolangs * (+2)
04:26:18 <esolangs> [[PokBattle]] https://esolangs.org/w/index.php?diff=148558&oldid=148557 * ZachChecksOutEsolangs * (+1)
05:37:10 -!- zzo38 has joined.
05:37:42 <zzo38> What is the proper conversion between D&D money and Lsd money?
06:17:10 <esolangs> [[User:ZCX islptng/Sandbox]] https://esolangs.org/w/index.php?diff=148559&oldid=148534 * ZCX islptng * (+0) /* Arithmetic & Logical */
06:34:01 -!- mtm has quit (Ping timeout: 244 seconds).
06:36:34 -!- mtm has joined.
06:40:58 <esolangs> [[Special:Log/newusers]] create * Orange2 * New user account
06:53:05 <esolangs> [[Esolang:Introduce yourself]] https://esolangs.org/w/index.php?diff=148560&oldid=148529 * Orange2 * (+103) /* Introductions */
06:53:29 <esolangs> [[ABC]] https://esolangs.org/w/index.php?diff=148561&oldid=120415 * Orange2 * (+691) Added python implementation. I'm the original author of the language.
06:57:09 <zzo38> How should I implement the percussions in Super ZZ Zero?
07:02:38 -!- orange2 has joined.
07:02:48 <orange2> wassup
07:04:13 <korvo> Writing a djinn.
07:04:26 <orange2> what's that mean?
07:05:24 <korvo> djinn is a classic Haskell tool that takes a type signature and tries to write a (Haskell) expression with that signature.
07:05:47 <korvo> I've written one before for Cammy. I'm writing another to address some deficiencies. BRB stove.
07:07:35 <orange2> oh, interesting.
07:09:22 <orange2> I'm here because I used to do esolang stuff about 15 years ago, starting 2008. looking through all the articles was pretty formative for me for programming, when I was 14.
07:09:29 -!- Sgeo has quit (Read error: Connection reset by peer).
07:09:29 <orange2> was just wondering what the irc chat looked like today
07:10:15 <orange2> this is my old user page: https://esolangs.org/wiki/User:Orange
07:10:48 -!- craigo has quit (Quit: Leaving).
07:11:12 <korvo> I'm currently on a very slow quest to improve the most historically important articles. Honestly there's not that much to do, which is nice.
07:13:25 <orange2> what's your username on the wiki?
07:15:32 <korvo> https://esolangs.org/wiki/Special:Contributions/Corbin
07:18:17 <orange2> interesting!
07:18:47 <orange2> I just skimmed the timeline one. it's very good.
07:22:58 <korvo> Thanks. I can't take credit for that one; I'm just making small improvements to an existing structure.
07:26:38 <orange2> have you made any esolangs?
07:28:01 <korvo> Yeah. I take half credit for Monte and full credit for Cammy.
07:38:28 <orange2> oh, nice
07:41:00 <korvo> I guess I should try to not be secretive. I'm working on reproducing this paper: https://www.cs.hmc.edu/~oneill/papers/Combinators-ASPGP.pdf
08:08:59 -!- wib_jonas has joined.
08:31:40 -!- orange2 has quit (Ping timeout: 240 seconds).
09:22:55 -!- __monty__ has joined.
10:32:48 <esolangs> [[License plate language]] https://esolangs.org/w/index.php?diff=148562&oldid=148493 * None1 * (+317) /* Commands */
11:01:45 <esolangs> [[PokBattle]] https://esolangs.org/w/index.php?diff=148563&oldid=148558 * PrySigneToFry * (+401)
11:06:24 <esolangs> [[VERPNL]] https://esolangs.org/w/index.php?diff=148564&oldid=147255 * PrySigneToFry * (+86)
11:07:19 <esolangs> [[Ting Vit]] https://esolangs.org/w/index.php?diff=148565&oldid=142088 * PrySigneToFry * (+43)
12:02:29 -!- mtm has quit (Ping timeout: 248 seconds).
12:05:21 -!- mtm has joined.
12:34:38 <esolangs> [[BFInfinity]] https://esolangs.org/w/index.php?diff=148566&oldid=148532 * PrySigneToFry * (+112)
13:56:15 <esolangs> [[UserEdited]] M https://esolangs.org/w/index.php?diff=148567&oldid=143192 * PrySigneToFry * (+588)
14:14:37 <esolangs> [[Directions]] N https://esolangs.org/w/index.php?oldid=148568 * ZCX islptng * (+682) Created page with "Directions is a deque-based 2D esolang. The PC moves in various directions on tiles(<code>#</code>). If it turns, nothing happens. If it didn't, an instruction will be executed. The tile which the PC comes from will be ignored. Priority: 5 4 3 4 5 4 2 1 2
14:19:53 <esolangs> [[Pyline]] https://esolangs.org/w/index.php?diff=148569&oldid=148521 * YufangTSTSU * (+1439)
14:22:10 <esolangs> [[Pyline]] M https://esolangs.org/w/index.php?diff=148570&oldid=148569 * YufangTSTSU * (-19) wait i can remove the flush
14:32:22 <esolangs> [[UserEdited]] https://esolangs.org/w/index.php?diff=148571&oldid=148567 * None1 * (+157) /* Commands */
14:34:40 <esolangs> [[UserEdited]] https://esolangs.org/w/index.php?diff=148572&oldid=148571 * None1 * (-36) /* Commands */
14:41:09 <esolangs> [[UserEdited]] https://esolangs.org/w/index.php?diff=148573&oldid=148572 * Unname4798 * (+25)
14:42:16 <esolangs> [[UserEdited]] https://esolangs.org/w/index.php?diff=148574&oldid=148573 * Unname4798 * (+24)
14:42:54 <esolangs> [[UserEdited]] https://esolangs.org/w/index.php?diff=148575&oldid=148574 * Unname4798 * (-44)
15:18:44 -!- wib_jonas has quit (Quit: Client closed).
15:52:11 <esolangs> [[Six instruction language :)]] https://esolangs.org/w/index.php?diff=148576&oldid=126316 * Ractangle * (+0)
15:58:57 -!- Sgeo has joined.
16:13:04 -!- amby has joined.
17:03:00 <esolangs> [[Jive]] https://esolangs.org/w/index.php?diff=148577&oldid=148549 * Ractangle * (+35) /* Syntax */
17:12:36 <esolangs> [[Jive]] https://esolangs.org/w/index.php?diff=148578&oldid=148577 * Ractangle * (+29) /* Factorial */
17:45:27 <esolangs> [[Special:Log/upload]] overwrite * Ractangle * uploaded a new version of "[[File:SWCE Charecter s.png]]": logo for jive
17:45:37 <esolangs> [[Special:Log/move]] move * Ractangle * moved [[File:SWCE Charecter s.png]] to [[File:Jive.png]]
17:58:16 <esolangs> [[Jive]] https://esolangs.org/w/index.php?diff=148582&oldid=148578 * Ractangle * (+41)
17:58:26 <esolangs> [[Jive]] https://esolangs.org/w/index.php?diff=148583&oldid=148582 * Ractangle * (+0)
18:07:38 -!- craigo has joined.
18:18:41 -!- Lord_of_Life_ has joined.
18:19:15 -!- Lord_of_Life has quit (Ping timeout: 265 seconds).
18:21:39 -!- Lord_of_Life_ has changed nick to Lord_of_Life.
18:35:31 <esolangs> [[Language list]] M https://esolangs.org/w/index.php?diff=148584&oldid=148329 * RocketRace * (+110) add missing languages
18:36:39 <esolangs> [[User:RocketRace]] https://esolangs.org/w/index.php?diff=148585&oldid=146518 * RocketRace * (+69)
19:22:33 <esolangs> [[Jive]] https://esolangs.org/w/index.php?diff=148586&oldid=148583 * Ractangle * (+54) /* Implementation */
19:26:15 <esolangs> [[Jive]] https://esolangs.org/w/index.php?diff=148587&oldid=148586 * Ractangle * (+175) /* Implementation */
19:43:35 -!- X-Scale has joined.
20:19:16 -!- __monty__ has quit (Quit: Lost terminal).
20:39:57 -!- zenmov has quit (Ping timeout: 252 seconds).
20:41:01 -!- SGautam has joined.
21:33:19 -!- zzo38 has quit (Ping timeout: 252 seconds).
21:36:10 -!- X-Scale has quit (Ping timeout: 240 seconds).
22:36:14 -!- zzo38 has joined.
22:52:44 -!- X-Scale has joined.
23:26:57 <esolangs> [[Special:Log/move]] move * Rdococ * moved [[Tinytalk]] to [[Closuretalk]]: Changing the name of this language for clarity reasons
23:27:38 <esolangs> [[Closuretalk]] M https://esolangs.org/w/index.php?diff=148590&oldid=148588 * Rdococ * (+31) rename lang
23:30:40 -!- X-Scale has quit (Ping timeout: 240 seconds).
23:48:54 <esolangs> [[Closuretalk]] https://esolangs.org/w/index.php?diff=148591&oldid=148590 * Rdococ * (+1162) Conclusion
23:49:08 <esolangs> [[Closuretalk]] M https://esolangs.org/w/index.php?diff=148592&oldid=148591 * Rdococ * (-4) /* Conclusion */
23:49:57 <esolangs> [[Closuretalk]] M https://esolangs.org/w/index.php?diff=148593&oldid=148592 * Rdococ * (-101) /* Conclusion */
23:52:11 <esolangs> [[Closuretalk]] M https://esolangs.org/w/index.php?diff=148594&oldid=148593 * Rdococ * (+169) /* Conclusion */ note further simplifications
23:52:46 <esolangs> [[User:Rdococ]] M https://esolangs.org/w/index.php?diff=148595&oldid=130158 * Rdococ * (+3)
23:54:10 <esolangs> [[Swapfuck]] M https://esolangs.org/w/index.php?diff=148596&oldid=102766 * Rdococ * (-21)
2024-12-21
00:04:42 -!- mtm has quit (Ping timeout: 276 seconds).
00:06:40 -!- mtm has joined.
00:09:43 -!- SGautam has quit (Quit: Connection closed for inactivity).
00:22:25 <esolangs> [[Ichi]] M https://esolangs.org/w/index.php?diff=148597&oldid=134402 * TheCanon2 * (-75) Ichi doesn't require the ability to grab new inputs. Since Ichi cannot grab more than two inputs at a time, an interpreter can use one long sequence at the beginning of a program and read two inputs at a time.
00:35:20 <esolangs> [[Ichi]] M https://esolangs.org/w/index.php?diff=148598&oldid=148597 * TheCanon2 * (+22) improved readability
01:15:10 -!- jix has quit (Quit: quit).
01:18:18 -!- jix has joined.
01:21:41 -!- zzo38 has quit (Ping timeout: 244 seconds).
02:29:25 -!- Noisytoot has quit (Remote host closed the connection).
02:31:11 -!- Noisytoot has joined.
02:47:29 -!- 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).
03:28:23 -!- Hooloovoo has quit (Quit: ZNC 1.8.2+deb2+deb11u1 - https://znc.in).
03:47:39 -!- Hooloovoo has joined.
05:06:05 <esolangs> [[User:UrnEn/Sandbox]] M https://esolangs.org/w/index.php?diff=148599&oldid=148289 * UrnEn * (+73)
06:08:44 -!- mtm has quit (Ping timeout: 252 seconds).
06:12:24 -!- mtm has joined.
07:25:20 <esolangs> [[User:UrnEn/Sandbox]] M https://esolangs.org/w/index.php?diff=148600&oldid=148599 * UrnEn * (+3321)
07:25:36 <esolangs> [[User:UrnEn/Sandbox]] M https://esolangs.org/w/index.php?diff=148601&oldid=148600 * UrnEn * (-101) /* Quine */
07:26:01 <esolangs> [[User:UrnEn/Sandbox]] M https://esolangs.org/w/index.php?diff=148602&oldid=148601 * UrnEn * (+2) /* Quine */
07:34:53 -!- Sgeo_ has joined.
07:36:44 <esolangs> [[User:UrnEn/Sandbox]] M https://esolangs.org/w/index.php?diff=148603&oldid=148602 * UrnEn * (+26) /* This Shitful Lingua */
07:38:12 -!- Sgeo has quit (Ping timeout: 252 seconds).
07:46:09 <esolangs> [[Onechar]] N https://esolangs.org/w/index.php?oldid=148604 * Cycwin * (+1153) Created page with "I will edit it after some time and there's the interpreter below... <pre>code=5 values=[code] k=2 q=[[0,1]] while code//k>1: values.append(code//k) code=code//k k+=1 if k==2 else 2 pointer=0 while pointer<len(values): j=pointer i=values[j] ttype=0
07:50:41 -!- craigo has quit (Ping timeout: 248 seconds).
08:07:12 <esolangs> [[Onechar]] https://esolangs.org/w/index.php?diff=148605&oldid=148604 * Cycwin * (+936)
08:31:28 <esolangs> [[User:YufangTSTSU]] N https://esolangs.org/w/index.php?oldid=148606 * YufangTSTSU * (+1394) Created page with "Finally, this page isn't empty anymore! == Something I made == === [[brainfuck]] interpreter in [[Befunge]] === "v v < Row 0-3 & 5,5 stores data >0>1+\| Width is changeable vp550< (if greater than 62) (requires warp) > >1-:::::0\0p0
09:27:39 <esolangs> [[Short-print]] N https://esolangs.org/w/index.php?oldid=148607 * Ractangle * (+253) Created page with "'''[]-print''' is self explanatory. You just print an empty list. However, you're required to make the shortest code to print an empty list and also creating the variable with the empty list A pesudocode if you didn't understand: print m(emptylist [])"
09:28:00 <esolangs> [[Special:Log/move]] move * Ractangle * moved [[Short-print]] to [[Empty list-print]]
09:29:12 <esolangs> [[Empty list-print]] https://esolangs.org/w/index.php?diff=148610&oldid=148608 * Ractangle * (+29)
09:29:56 <esolangs> [[UserEdited]] https://esolangs.org/w/index.php?diff=148611&oldid=148575 * PrySigneToFry * (+254)
09:30:25 <esolangs> [[Empty list-print]] https://esolangs.org/w/index.php?diff=148612&oldid=148610 * Ractangle * (-1)
09:31:49 <esolangs> [[User:ZCX islptng/Sandbox]] https://esolangs.org/w/index.php?diff=148613&oldid=148559 * PrySigneToFry * (+0) Then "Cardinal" and "Continue" are repeated, so I changed second as .
09:33:42 <esolangs> [[User:Ractangle]] https://esolangs.org/w/index.php?diff=148614&oldid=148447 * Ractangle * (+70) /* Programm forms */
09:37:39 <esolangs> [[Empty list-print]] https://esolangs.org/w/index.php?diff=148615&oldid=148612 * Ractangle * (+34) /* Python */
09:39:02 <esolangs> [[Empty list-print]] https://esolangs.org/w/index.php?diff=148616&oldid=148615 * Ractangle * (-8)
09:40:17 -!- __monty__ has joined.
10:17:41 -!- Sgeo_ has quit (Read error: Connection reset by peer).
10:59:41 <esolangs> [[UserEdited]] https://esolangs.org/w/index.php?diff=148617&oldid=148611 * Ractangle * (-13)
11:00:16 <esolangs> [[UserEdited]] https://esolangs.org/w/index.php?diff=148618&oldid=148617 * Ractangle * (+28) /* Examples */
11:02:16 <esolangs> [[Jive]] https://esolangs.org/w/index.php?diff=148619&oldid=148587 * Ractangle * (+35) /* Factorial */
11:37:50 <esolangs> [[Pyline]] https://esolangs.org/w/index.php?diff=148620&oldid=148570 * Jan jelo * (+1199) /* Brainfuck interpreter */
11:46:25 <esolangs> [[Pyline]] https://esolangs.org/w/index.php?diff=148621&oldid=148620 * Jan jelo * (+45) /* Brainfuck interpreter */
12:04:02 -!- mtm has quit (Ping timeout: 248 seconds).
12:05:07 <esolangs> [[Jive]] https://esolangs.org/w/index.php?diff=148622&oldid=148619 * Ractangle * (+51) /* In jive-online */
12:06:56 -!- mtm has joined.
13:29:12 -!- amby has joined.
13:39:03 <esolangs> [[Onechar]] https://esolangs.org/w/index.php?diff=148623&oldid=148605 * Cycwin * (+582) /* The Syntax */
13:52:07 <esolangs> [[Onechar]] https://esolangs.org/w/index.php?diff=148624&oldid=148623 * Cycwin * (+532) /* The Syntax */
13:53:06 <esolangs> [[Onechar]] https://esolangs.org/w/index.php?diff=148625&oldid=148624 * Cycwin * (-68) /* The interpreter of Onechar */
14:01:06 <esolangs> [[User talk:Tommyaweosme]] https://esolangs.org/w/index.php?diff=148626&oldid=147653 * PrySigneToFry * (+1062) /* Criticism to your collaborative Esolang "Emojic" */ new section
14:02:21 <esolangs> [[Onechar]] https://esolangs.org/w/index.php?diff=148627&oldid=148625 * Cycwin * (+384)
14:03:08 <esolangs> [[Onechar]] https://esolangs.org/w/index.php?diff=148628&oldid=148627 * Cycwin * (-3) /* Some simple programs(?) */
14:05:07 <esolangs> [[Onechar]] https://esolangs.org/w/index.php?diff=148629&oldid=148628 * Cycwin * (+10) /* Some simple programs(?) */
14:06:22 <esolangs> [[User:Cycwin]] https://esolangs.org/w/index.php?diff=148630&oldid=144504 * Cycwin * (+20)
14:07:24 <esolangs> [[User:Cycwin]] https://esolangs.org/w/index.php?diff=148631&oldid=148630 * Cycwin * (+0)
14:23:54 <esolangs> [[4ME]] https://esolangs.org/w/index.php?diff=148632&oldid=148027 * Ractangle * (-13) /* Arguments */
14:24:16 <esolangs> [[4ME]] https://esolangs.org/w/index.php?diff=148633&oldid=148632 * Ractangle * (+1)
14:24:27 <esolangs> [[4ME]] https://esolangs.org/w/index.php?diff=148634&oldid=148633 * Ractangle * (+6)
14:24:48 <esolangs> [[4ME]] https://esolangs.org/w/index.php?diff=148635&oldid=148634 * Ractangle * (+0)
14:25:22 <esolangs> [[4ME]] https://esolangs.org/w/index.php?diff=148636&oldid=148635 * Ractangle * (-62) /* See Also */
14:30:57 <esolangs> [[4ME]] https://esolangs.org/w/index.php?diff=148637&oldid=148636 * Ractangle * (+245)
14:31:46 <esolangs> [[4ME]] https://esolangs.org/w/index.php?diff=148638&oldid=148637 * Ractangle * (+49) /* Hello world */
14:34:41 <esolangs> [[User:0ptr]] https://esolangs.org/w/index.php?diff=148639&oldid=119839 * 0ptr * (+42)
15:05:46 <esolangs> [[Jive]] https://esolangs.org/w/index.php?diff=148640&oldid=148622 * Ractangle * (-11) /* Implementation */
15:07:32 <esolangs> [[Jive]] https://esolangs.org/w/index.php?diff=148641&oldid=148640 * Ractangle * (-23) /* In jive-online */
15:08:13 <esolangs> [[Factorial]] https://esolangs.org/w/index.php?diff=148642&oldid=148551 * Ractangle * (+62) /* jive */
15:09:42 <esolangs> [[Jive]] https://esolangs.org/w/index.php?diff=148643&oldid=148641 * Ractangle * (+26) /* Syntax */
To update automatically, stalker mode requires a reasonably modern browser with scripts enabled. If this message does not disappear, it's either because of that or a bug. Feel free to get in touch on channel for debugging. Or just work around the issue by manually reloading.