TMMLPTEALPAITAFNFAL!

Ғылым және технология

Yes, that's what it's called. It's a programming language that changes based on what day it is.
LINKS:
Esolang Wiki Page:
esolangs.org/wiki/TMMLPTEALPA...
Official TMMLPTEALPAITAFNFAL webpage:
p-nand-q.com/programming/langu...
MUSIC:
"Jumper 2", "Jumper 2013", "Hexagon Force", and "Velocity Wings" by Waterflame
/ @waterflamemusic
"Anachronist" and "Bet You Can" by Kevin Macleod
"Karma Chameleon" by Culture Club

Пікірлер: 182

  • @anthonydalfonso8470
    @anthonydalfonso84705 жыл бұрын

    I think that paper is the healthiest thing for u 100 sheets = 2 calories 1 gram of carbs and 2 grams of fat

  • @faisaltaher851

    @faisaltaher851

    5 жыл бұрын

    After Tony D'Alfonso hey paper is not healthy stop eating it eat ice cream

  • @tux1468

    @tux1468

    5 жыл бұрын

    After Tony D'Alfonso! Also, can you please stop eating paper? It isn't digestible.

  • @hyper4306

    @hyper4306

    5 жыл бұрын

    After tony d'alfonso! Paper is not good for you. Stop eating it.

  • @islilyyagirl

    @islilyyagirl

    5 жыл бұрын

    After Tony D'Alfonso Paper will not sustain you, so stop eating it.

  • @javaaugustus4469

    @javaaugustus4469

    5 жыл бұрын

    After Tony D'Alfonso Uhh... What everyone else said

  • @csilcox01
    @csilcox015 жыл бұрын

    The boss character could be like the guy that demands dumb stuff without understanding how coding actually works

  • @MichaelDarrow-tr1mn

    @MichaelDarrow-tr1mn

    8 күн бұрын

    For example: "I need our sales percentages in all of our categories to increase!" "Sir that's. Not mathematically possible. They always have to total to 100%." "DON'T CARE!"

  • @rogervanbommel1086
    @rogervanbommel10863 жыл бұрын

    WELL, that’s a bust, for today(23-5-2021) variables cannot be longer than 1 character

  • @Lexinathan

    @Lexinathan

    3 жыл бұрын

    Oof, oh wait this is one month ago, probs a different set of rules

  • @rogervanbommel1086

    @rogervanbommel1086

    3 жыл бұрын

    @@Lexinathan yes, that's why I specified a date in my comment

  • @iamboredfor2months

    @iamboredfor2months

    Жыл бұрын

    i used ti-basic before

  • @tux1468
    @tux14685 жыл бұрын

    When Truttle1 releases a new video: "I've been waiting for this." Also, you should make a video about Scratch 1.0, the very first version of it.

  • @tux1468

    @tux1468

    5 жыл бұрын

    @apollyon093 It is turing complete, as can be seen here: scratch.mit.edu/projects/12113903/

  • @Blue-Maned_Hawk

    @Blue-Maned_Hawk

    5 жыл бұрын

    Okay, @@tux1468, but still...why?

  • @tux1468

    @tux1468

    5 жыл бұрын

    @@Blue-Maned_Hawk Because it's old, and you can make games with it. Seems perfect for this channel.

  • @Blue-Maned_Hawk

    @Blue-Maned_Hawk

    5 жыл бұрын

    @@tux1468, hat fkeasy really what sifsjs sskin. I was moreover think inf of why Scratch exists.

  • @Truttle1

    @Truttle1

    5 жыл бұрын

    @apollyon093 Scratch definitely is a programming language, it just uses drag and drop commands.

  • @_fluffyy1028
    @_fluffyy10284 жыл бұрын

    Imagine being a cell in TMMLPTEALPAITAFNFAL and people have to call you "Jerry[[[[[[[[[[[[[[[[[[["

  • @1leon000

    @1leon000

    2 жыл бұрын

    hopefully that only lasts a day, where you will have to be renamed to "Jer" or smthn

  • @brinleyhamer729

    @brinleyhamer729

    Ай бұрын

    and then "J" and then "A" and then "JERR"

  • @origedit
    @origedit4 жыл бұрын

    Just realised, there was jumper 2 by Waterflame playing all this time.

  • @stickstormmind4416
    @stickstormmind44165 жыл бұрын

    Dude, your channel is so underrated. If I were you, I think I wouldn't know where to get the motivation from! Great vid :)

  • @SoI-
    @SoI-2 жыл бұрын

    Idea: make a program that updates the calculator every day with a different language by entering in text. This may be hard but it makes it easy long-term.

  • @edpineda7988
    @edpineda79884 жыл бұрын

    Now create FizzBuzz (June 11-13), 99 Bottles of Beer (June 14-16) and Truth Machine (June 17-19).

  • @neverdie0001
    @neverdie00012 жыл бұрын

    My idea: Boolless In this programming language, there are NO booleans, conditionals or comparison operators AT ALL. Data types: Number (can be written as decimal (-12.34) or hex (0xb3), converted to strings when doing string operations) String (escape codes are \", \', \\, , \t; use \(...) to embed an expression; converted to numbers when doing number operations) Global constants: pi e infinity (=n/0) NaN (=0/0, or ivalid conversion to number) Global functions: ord chr concat min max ln sqrt sin cos tan asin acos atan rep (repeat string) Operators from highest to lowest precedence: ( ) function calls and [] (0-indexed charat e.g. 'abcd'[1:3] returns 'bcd', empty string if out of range) - (unary negation) ~ (bitwise not) ^ (power) * / % + - > (rshift) & (bitwise and) | (bitwise or) $ (bitwise xor) Commands (as of 1.0, comments are introduced with '\\'): input var set var value forever do ... (break) done repeat x times do ... (break) done print x1, x2, x3, ..., xn function name(a1,a2,...,an) does ... (return v) close quit Examples: Truth Machine input test repeat test times do forever do print 1 done done print 0 99-Bottles (this one correctly prints '1 bottle') set b 99 repeat 99 times do set bword concat('bottle', rep('s', b-1)[0]) print b, bword, 'of beer on the wall,' b, bword, 'of beer ', 'Take one down and pass it around' set b b-1 set bword concat('bottle', rep('s', b-1)[0]) print b, bword, 'of beer on the wall!' done

  • @kronostitananthem

    @kronostitananthem

    2 жыл бұрын

    I think it may be difficult to program in (and not Turing-complete) without conditionals. However some things that manipulate something dynamically based on the value can simulate conditionals. Here are a few examples: * Text replacing in Thue, which only happens if a certain specified value is matched * The discrete log in Emmental * In Mascarpone, having an interpreter on the stack with all symbols set to do nothing except for "E", then executing a symbol, effectively checks if a symbol is "E", simulating an if-statement. You can extend this to any symbol, not just "E".

  • @official-obama

    @official-obama

    Жыл бұрын

    you could use math to simulate bitwise cyclic tag in binary

  • @MCRuCr
    @MCRuCr3 жыл бұрын

    I like how he uses the video to express his anger against his boss

  • @scottishscotty7215
    @scottishscotty72155 жыл бұрын

    why not call him, literally, "the boss"? I kinda like where this is going with them working together in an office.

  • @diegojesussilvaeduardo9347
    @diegojesussilvaeduardo93472 жыл бұрын

    Truttle, u are incredible, I learn a lot from your videos.

  • @iamsushi1056
    @iamsushi10563 жыл бұрын

    Boy george outro music! I'm so happy!

  • @jameswalker199
    @jameswalker1994 жыл бұрын

    You have great taste in music

  • @Veptis
    @Veptis2 жыл бұрын

    Maybe you could do a golfing language that has a single command but it's operations changes every second. So you can run it one command per second with modulo, so cycle through the set of like 30 operations. Any way you want. Sounds good simply go haven't been done.

  • @kronostitananthem

    @kronostitananthem

    2 жыл бұрын

    Some similar things have been done, although they aren't based on timing. They're known as Turning Tarpits (not to be confused with "Turing Tarpits", without the n between the r and i) An example is Braincrash, where a space increments a counter, and an exclamation point executes the bf command assigned to the counter, then increments the counter.

  • @unchaynd7266
    @unchaynd7266Ай бұрын

    0:37 "It's no coincidence that that's also the day we finished making the app." DEAD

  • @YEWCHENGYINMoe
    @YEWCHENGYINMoe Жыл бұрын

    I figured out how to say TMMLPTEALPAITAFNFAL

  • @_rysz
    @_rysz Жыл бұрын

    To make it have less changes you could: - use cell numbers instead of variable names - create subroutines for every operation

  • @MCLooyverse
    @MCLooyverse3 жыл бұрын

    Small nitpick for 10:38 "rounds down to the nearest whole number". "rounds down" is correct, "to the nearest..." is not.

  • @schwingedeshaehers

    @schwingedeshaehers

    3 жыл бұрын

    Also could 404,65 rounded down to 400, which Is not the nearest number. Round down to the nearest number men That it is the highest natural number less or equal to the number

  • @MCLooyverse

    @MCLooyverse

    3 жыл бұрын

    @@nimiugn Hmm, yeah. English do be messy that way.

  • @schwingedeshaehers

    @schwingedeshaehers

    2 жыл бұрын

    @Mr. Flat Broke yes, I am from a country where the comma is used. I said, if it should be rounded down to the next number, not round to the next number

  • @anthonydalfonso8470
    @anthonydalfonso84705 жыл бұрын

    Also this is what I live for in life to cut emu depression

  • @masonthedunce3711

    @masonthedunce3711

    5 жыл бұрын

    stop eating paper

  • @tux1468

    @tux1468

    5 жыл бұрын

    @@masonthedunce3711 You're supposed to say "After Tony D'Alfonso!" And to reply to Anthony D'Alfonso, PLEASE stop eating paper. Seriously, what is wrong with you?

  • @szlanty
    @szlanty4 жыл бұрын

    I just want a snarky remark, with no 4/20 joke thing After D’Alfonso, and they need to stop eating paper.

  • @carlthecaiman8294

    @carlthecaiman8294

    4 жыл бұрын

    Because I can totally make a snarky remark without the one thing I was making snarky remarks ABOUT... Also wow, you're Anthony D'Alfonso comment was very original. Never heard "stop eating paper" before.

  • @SoI-

    @SoI-

    Жыл бұрын

    @@carlthecaiman8294 you do realize that your sarcasm in the first sentence is wrong? you made a snarky response while saying you couldn't due to the fact you don't have a prompt. you also happened to find a prompt to use too, so that start was incorrect twice. next time you make a snarky response, do it right.

  • @masonthedunce3711
    @masonthedunce37115 жыл бұрын

    i love your channel, keep up the good work! also, is the cosmos series still a thing?

  • @Truttle1

    @Truttle1

    5 жыл бұрын

    I might do cosmos again later. I just haven't been interested in it recently...

  • @masonthedunce3711

    @masonthedunce3711

    5 жыл бұрын

    @@Truttle1 hi again! i downloaded cosmos for visual studio 2017 and for some reason it will not run when I click the debug button. i was just wondering if you knew why. thanks! EDIT: nvm figured it out

  • @douro20
    @douro204 жыл бұрын

    I guess the requirements are selected at random for each day of the week?

  • @Truttle1

    @Truttle1

    4 жыл бұрын

    Each calendar date has their own requirements. Code that works on one Saturday will not necessarily work the next. It can only be guaranteed to work on that specific day.

  • @caleb-hill
    @caleb-hill2 жыл бұрын

    i wonder what happens on leap year day?

  • @Official_Lucas37
    @Official_Lucas378 ай бұрын

    why was a jumper remix playing

  • @pinkshortcomedy
    @pinkshortcomedyАй бұрын

    so basically its just "what if we took the idea of i came back to the codebase 2 days later and now nothing runs and made it into an actual Thing that can happen?" noted. i hate it

  • @nito8066
    @nito806625 күн бұрын

    making an sfml project is an escolang of its own

  • @vicr123
    @vicr1235 жыл бұрын

    Did you end up actually waiting the day to continue making the video or did you just tick the clock over manually?

  • @Truttle1

    @Truttle1

    5 жыл бұрын

    Yes

  • @potatoxel7800

    @potatoxel7800

    4 жыл бұрын

    @@Truttle1 This is an OR question :o

  • @brotherandy

    @brotherandy

    3 жыл бұрын

    In programming, an OR statement resolves to True or False. So Truttle must of done one or both of those things. To find out which one, we must ask each question individually.

  • @svz5990
    @svz59906 ай бұрын

    1:19 Yup, that sure isn't a fine name for a language, you could've renamed it into TMMLPTEALP

  • @javaaugustus4469
    @javaaugustus44695 жыл бұрын

    YY/MM/DD; I smell CGPGrey Q&A's..

  • @huhneat1076
    @huhneat10763 жыл бұрын

    He programmed on my birthday :D

  • @fensti7917
    @fensti79175 жыл бұрын

    Great akromym

  • @wacesferpit
    @wacesferpit5 жыл бұрын

    Tired: A 99 bottles of beer program Wired: A 99 bottles of beer program where every step is a Fibonacci number I can say this because I did it in C++ out of boredom :P

  • @i_need_better_handles
    @i_need_better_handles2 жыл бұрын

    I remember that one time i tried spelling [insert esolang name here] blind, i put: TMMLTEALAIAFNFAL yea

  • @flixtocicgaming3576
    @flixtocicgaming35763 жыл бұрын

    april 420!

  • @circleubuntu
    @circleubuntu2 жыл бұрын

    tmmlp teal paita fn fal

  • @pbscatcher
    @pbscatcher Жыл бұрын

    Happy Weed day 8)

  • @CyborusYT
    @CyborusYT2 жыл бұрын

    TIM-UHL-PAH-TEAL-PIE-TAFF-IN-FAHL

  • @Rhys_1000
    @Rhys_10002 жыл бұрын

    Tmmlptealpaitafnfal is pronounced like tm-lp-teel-pei-tah-f-nf-fal

  • @Rhys_1000

    @Rhys_1000

    11 ай бұрын

    hello this is me in 1 year and ur idea is stupid.

  • @imaginartist2139
    @imaginartist21393 жыл бұрын

    I dare u make a diss abt goto statements lol. //this adrrupt curiosty

  • @lfwj
    @lfwj Жыл бұрын

    April 14th is my birthday!

  • @YellowToad
    @YellowToad3 жыл бұрын

    its 4/20 haha weed lol (expecting snarky reply)

  • @trimethoxy4637
    @trimethoxy46374 жыл бұрын

    why they got their claws only on left hand?

  • @Truttle1

    @Truttle1

    4 жыл бұрын

    When their hands are closed, the claws are less visible.

  • @trimethoxy4637

    @trimethoxy4637

    4 жыл бұрын

    Truttle1 🤔

  • @YEWCHENGYINMoe
    @YEWCHENGYINMoe Жыл бұрын

    TOILET

  • @iamsushi1056
    @iamsushi10563 жыл бұрын

    Oh, darn. TMMLPTEALPAITAFNFAL doesn't exist for MacOS. What a…real uh shame

  • @tornadomimicyclone6707
    @tornadomimicyclone67075 жыл бұрын

    weed day lol

  • @carlthecaiman8294

    @carlthecaiman8294

    5 жыл бұрын

    Yes, that is very relevant now...in MAY...a whole month after weed day ended... You're really ahead of the times, aren't ya?

  • @andrewmironchik9274
    @andrewmironchik92742 жыл бұрын

    It's April 200ls day!111!!!

  • @ghoom
    @ghoom5 жыл бұрын

    Try to reduce the volume when you're shouting, because it's hurting my ears. Filter it a bit.

  • @enderben2805
    @enderben28054 жыл бұрын

    Weed day 420 lol

  • @NStripleseven
    @NStripleseven3 жыл бұрын

    Haha April 20 weed day funi

  • @faisaltaher851
    @faisaltaher8515 жыл бұрын

    thxs Truttle1 for liking my comment

  • @tux1468

    @tux1468

    5 жыл бұрын

    You didn't have to say that.

  • @faisaltaher851

    @faisaltaher851

    5 жыл бұрын

    @@tux1468 But i did

  • @tornadomimicyclone6707
    @tornadomimicyclone67074 жыл бұрын

    Weed MONTH coming soon

  • @carlthecaiman8294

    @carlthecaiman8294

    4 жыл бұрын

    Isn't one day enough?

  • @coder436
    @coder4362 жыл бұрын

    [Insert april 20 joke here] im so funny lelelele

  • @pinkshortcomedy
    @pinkshortcomedy3 жыл бұрын

    Looks like SQL to me 🤷‍♂️

  • @LunaTheFoxgirl
    @LunaTheFoxgirl5 жыл бұрын

    lmao the music in the outro is lower quality than a deep fried jpeg

  • @Truttle1

    @Truttle1

    5 жыл бұрын

    I'm going to change it in every video, similar to what I do for my other channel, so you won't hear it in any other vids. If you are referring to sound quality, I recorded the music using Audacity from a lyrics video, so it may have gone down from recording or something...

  • @LunaTheFoxgirl

    @LunaTheFoxgirl

    5 жыл бұрын

    @@Truttle1 It was the sound quality i was referring to, that track is a classic! :P

  • @LunaTheFoxgirl

    @LunaTheFoxgirl

    5 жыл бұрын

    @@Truttle1 Also, why not just use creative commons licensed music? Then it'll atleast have a bitdepth higher than potato

  • @Blue-Maned_Hawk
    @Blue-Maned_Hawk5 жыл бұрын

    Pardon me, but I think that you forgot the card.

  • @Truttle1

    @Truttle1

    5 жыл бұрын

    KZread changed how cards are put in and I just thought "screw this" and closed the tab. I guess I'll try again now. :p

  • @maikeru5187
    @maikeru51872 жыл бұрын

    4/20 is weed day and stop eating paper pls

  • @v0xl
    @v0xl3 жыл бұрын

    my birthday is at april 14tg

  • @chaoticantifreeze
    @chaoticantifreeze3 жыл бұрын

    lol 420 week

  • @otesunki
    @otesunki4 жыл бұрын

    4/20

  • @carlthecaiman8294

    @carlthecaiman8294

    4 жыл бұрын

    Original. Did you come up with that yourself?

  • @SquooshyShark1000

    @SquooshyShark1000

    3 жыл бұрын

    i write my dates as dd/mm/yyyy so fuck off

  • @therandomsomeone.
    @therandomsomeone.2 жыл бұрын

    yo 694 likes

  • @scottishscotty7215
    @scottishscotty72155 жыл бұрын

    Funnie Wdeed

  • @carlthecaiman8294

    @carlthecaiman8294

    5 жыл бұрын

    ha ha yes very funny and interesting and not a stupid joke at all.

  • @scottishscotty7215

    @scottishscotty7215

    5 жыл бұрын

    WAIT WHAT HOLY SHIT IWASNTEXPECTINGTHAT

  • @carlthecaiman8294

    @carlthecaiman8294

    5 жыл бұрын

    @@scottishscotty7215 Was I not clear enough at 8:55?

  • @scottishscotty7215

    @scottishscotty7215

    5 жыл бұрын

    you know, i should've expected it but the fourth wall and such

  • @deadmemes7716
    @deadmemes77163 жыл бұрын

    April 20 lol

  • @Truttle1

    @Truttle1

    3 жыл бұрын

    dead memes

  • @NikoCubeRoot

    @NikoCubeRoot

    Жыл бұрын

    @@Truttle1 4/20 lol

  • @legoshaakti
    @legoshaakti4 жыл бұрын

    8:11

  • @amasende21
    @amasende21 Жыл бұрын

    901st liker

  • @the_player_2
    @the_player_23 жыл бұрын

    Hehe lol 420

Келесі