startup interviews be like...

Sdílet
Vložit
  • čas přidán 28. 04. 2022
  • Full video on @jomakaze #startup #tech #interview #coding #emotionaldamage

Komentáře • 1,3K

  • @jomamini
    @jomamini  Před rokem +1528

    Full video on Joma Tech channel

    • @ch4r878
      @ch4r878 Před rokem +3

      Bit late innit?

    • @shadowofheaven3279
      @shadowofheaven3279 Před rokem +18

      Bro, I got you, it's:
      public static byte getMedian(InputStream stream) {
      int length = stream.available();
      byte[] array = new byte[length];
      stream.read(array);
      stream.close();
      return array[length / 2];
      }

    • @jesse2667
      @jesse2667 Před rokem +17

      @@shadowofheaven3279 looks like middle, but not median.

    • @shadowofheaven3279
      @shadowofheaven3279 Před rokem +8

      @@jesse2667 Okay, then it should probably be:
      public static byte getMedian(InputStream stream) {
      int length = stream.available();
      byte[] array = new byte[length];
      stream.read(array);
      stream.close();
      Arrays.sort(array);
      return array[length / 2];
      }

    • @jesse2667
      @jesse2667 Před rokem +4

      @@shadowofheaven3279 Okay then. 🤔Can you make it O(log(n)) for reading a new value and recalculating, instead of O(N log(N))

  • @lan4678
    @lan4678 Před 2 lety +20933

    "My grandmother run faster than your code" 🤣

  • @Porkupine69
    @Porkupine69 Před rokem +17913

    "It was ok meeting you"
    Gotta try that sometime

    • @RetroMemeMaster
      @RetroMemeMaster Před rokem +131

      Hahaha loved that one too

    • @daniell4835
      @daniell4835 Před rokem +38

      That one got me!

    • @B3RyL
      @B3RyL Před rokem +158

      This line is the definition of a paradox: it's stone cold, but it burns like hell.

    • @ruonaazigbo904
      @ruonaazigbo904 Před rokem +12

      Hurtful 😂

    • @fjildeth
      @fjildeth Před rokem +39

      @@B3RyL Exactly, It's spelled and sounds like a compliment, but it hurts.

  • @SpeedShadow54
    @SpeedShadow54 Před rokem +4368

    "It was okay meeting you." has got to be one of the coldest lines ever uttered

    • @dreadlocsamurai4241
      @dreadlocsamurai4241 Před rokem +32

      The disrespect is crazy

    • @dmitry123456789012
      @dmitry123456789012 Před 7 měsíci +7

      I'll start using this phrase in my interviews!

    • @srutisukumar8609
      @srutisukumar8609 Před měsícem

      My Singaporean interviewer really said this and said bye and cut me off didn't even smile. At Cisco. That was cold. Forgot her name though.

  • @tastystinker
    @tastystinker Před rokem +847

    “It was ok meeting you” is such a calm, passive aggressive yet semi-personal thing to say that it’s more emotionally damaging than an outright insult

  • @hehehehehe9987
    @hehehehehe9987 Před 2 lety +11882

    Plot twist: He is his son.

  • @anastasyarin
    @anastasyarin Před rokem +6175

    "disappointment just like my son"
    🤣🤣🤣
    Really asian parent 🤣

    • @nonprofit9426
      @nonprofit9426 Před rokem +10

      me 😔

    • @SourthernerPilgrim
      @SourthernerPilgrim Před rokem +40

      well in asian here u can pick ur class,,
      a doctor, or a disappointment son

    • @TheRash_rv
      @TheRash_rv Před rokem +5

      @@SourthernerPilgrim i thought it was, a doctor with specialisation "specifically neurosurgeon", a lawyer at a big firm or an engineer in a big company "specifically microsoft or tesla"

    • @SourthernerPilgrim
      @SourthernerPilgrim Před rokem +7

      @@TheRash_rv thats for moderon family, for the traiditional one are a doctor or a disappointment

    • @TheRash_rv
      @TheRash_rv Před rokem

      @@SourthernerPilgrim not a high ranking official Or ruin family honor with high amount of disapointment and compared to sibling?

  • @simi8658
    @simi8658 Před rokem +141

    Startups are like:"
    -10+ years of coding as a full stack dev necessary
    -young and dynamic
    -wants to work for a penny an hour"

    • @murtazaabbasi3234
      @murtazaabbasi3234 Před 3 měsíci +1

      And here I was reading it like minus 10 plus year, minus young, minus wants 😂😂😂

    • @m5a1stuart83
      @m5a1stuart83 Před 3 měsíci

      have experience in .Net C#, ASP MVC, WebForm, Xamarin Maui is a must. Java and Phyton is a must. Having deep knowledge in PHP, Javascript, Jquery, Typescript and Angular is a must.
      C/C++ and Assembly atleast intermediete to advance level (proved with international certificate)
      Having good knowledge di ABAP and SAP 4/Hana Framework.
      Having good knowledge in DevOps Azure, Jenkins and Github CICD.

  • @Zachary-
    @Zachary- Před rokem +549

    "It was okay meeting you" would shred my self-esteem like nothing else.

  • @ScientObject40
    @ScientObject40 Před 2 lety +5843

    Emotional damage.

  • @andresmendezcervantes5384
    @andresmendezcervantes5384 Před rokem +3482

    " it was okey meeting you" 😂

  • @tubefile100
    @tubefile100 Před rokem +94

    "You eat too much hash brown, your brain turning to potato" 🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣🤣

    • @Ohuj749
      @Ohuj749 Před rokem

      🤣🤣🤣🤣

    • @beetlepoundcarrot6412
      @beetlepoundcarrot6412 Před 11 měsíci +1

      How the heck did I have to scroll so far down to find this comment!! What a legendary insult! I get that the rest of it is gold too but damn! 🤣

  • @christophfischer2773
    @christophfischer2773 Před 9 měsíci +139

    Store the stream elements in an AVL-Tree. The median is at all times
    - root if balance = 0
    - (root+right)/2 at balance +1
    - (root+left)/2 at balance -1
    Edit: this allows you to find other percentiles as well btw. (25th, 12.5th, 6.25th, ... and any combination of the lot: 75th, 81.25th, ...)

    • @derickd6150
      @derickd6150 Před 7 měsíci +11

      Was looking for a comment like this

    • @69k_gold
      @69k_gold Před 7 měsíci +3

      Better yet, we can use two heaps, easier to balance

    • @Schnorzel1337
      @Schnorzel1337 Před 7 měsíci +6

      Okay your solution boils down to:
      1. Store data in an tree
      2. Always keep the sorting up
      3. Calculate the median.
      Why is that not optimal?
      A good balanced tree implementation can rely on an array with arr[0] as the root, arr[1] is the left tree and arr[2] is the right tree. If not perfectly balanced arr[n] can be null, infinity, undefined. Using a node based approach is slower because of cache misses.
      Now that representation is completely equal to just storing the numbers in a sorted order, with extra steps.
      Keeping the array always sorted is in general slower than sorting it once at the end.
      And for this problem we are not asked to find any other quantile but the 0.5 so my proposal.
      Store the data in an array. Use a random pivot and sort everything less or greater like in quicksort. Repeat until you found the median element(s). This way you can find your value without even sorting all the numbers.
      For example if you have an array of size n and by chance pick the pivot that 60% of values land on the left side, you could in theory forget about 40% of your numbers. Because they can not be part of the median.
      The benefit you could store this somewhat sorted data and come back to it in the same way, to find your 0.25 quantil and so on.
      TLDR: You dont need to do a full balanced tree, when it is enough to only sort it partially. Only do what is asked not more. Only if possible keep the option for more utility.

    • @derickd6150
      @derickd6150 Před 7 měsíci

      @@Schnorzel1337 I don't understand what you do before you have all the data. I understand you want to sort the data only at the end. While you are still receiving the data, you are only doing one operation which is sorting the data into one of two lists depending on if it is greater or less than the pivot? Am I correct?

    • @derickd6150
      @derickd6150 Před 6 měsíci +3

      @@Schnorzel1337 ahh so unfortunate. I really thought you might be saying something interesting, now I see it was just words

  • @blaayou7828
    @blaayou7828 Před rokem +1184

    “It was *OKAY* meeting you” 😂

  • @ashie_2307
    @ashie_2307 Před rokem +694

    "my grandmother run faster than your code"
    *EmOtiOnaL DaMaGe*

  • @mr.quantum3181
    @mr.quantum3181 Před rokem +46

    "My grandma run faster than your code."EMOTIONAL DAMAGE 😭🤣🤣

  • @gametabulas
    @gametabulas Před rokem +1016

    I swear i had an interview like this. That whole thing lasted for about 10 mins. The interviewer asked me my name and wasn't even looking at me, hell he was on Instagram for the entire time. At the end he just said ok, you can leave now. God i wanted to punch him but i just can't. Crazy ass dude, and he wasn't a random dude he was from a MNC.

    • @newaryamen
      @newaryamen Před rokem

      corporate dev are assholes always,

    • @l0remipsum991
      @l0remipsum991 Před rokem +141

      should just walk out or end call, and say you have better interviews to attend

    • @yaqub3567
      @yaqub3567 Před rokem +227

      It is very sad feeling when you meet someone who pretend to be above of your level and treat you shit especially in our specialization.
      I feel you bro .. Hope you got better work than working for that idiot.

    • @AlexeiArntzen
      @AlexeiArntzen Před rokem +271

      Dodged a bullet. If they treat you like that in an interview, it'll be worse once they think they own you. Consider yourself lucky

    • @maimee1
      @maimee1 Před rokem +17

      What's MNC?

  • @captainkatz1775
    @captainkatz1775 Před rokem +286

    "The perfect cross over doesn't exist"
    *uploads this video

  • @lejames5987
    @lejames5987 Před rokem +85

    I am learning programming. This gave me anxiety.

    • @samael66996
      @samael66996 Před rokem +5

      Then get up and "do" more coding.

    • @KristianRobertsen
      @KristianRobertsen Před 7 měsíci +4

      Don't worry.
      If you know your shit, and you know you aren't shit, then you will be fine.
      Don't accept this kind of behaviour from companies, that's the golden rule. You're interviewing them as they are interviewing you.
      Sure the first job can be a mess to get, but once you have even a modicum of experience, you're good.
      Ultimately the world needs more developers than the other way around.

    • @TheAlgorath
      @TheAlgorath Před 3 měsíci +1

      Don't worry, a guy tells him your code is slow, ask him to specify compiler and kernel version. If he does, tell him you're not familar with those and you'll focus on process - you'd seek platform specific efficencies once those elements are specified.
      Then ignore any offers - your health isn't worth it.

  • @hantu-8629
    @hantu-8629 Před rokem +83

    "Good luck with your other interviews" now that some positive comment

  • @SuperExplosivegames
    @SuperExplosivegames Před rokem +212

    Why im unemployed
    "my grandmother codes father than you"
    "Hire her then?"

    • @educlarity
      @educlarity Před rokem +30

      Ahem. Who's gonna explain it to him?

    • @extraFart
      @extraFart Před rokem +22

      @@educlarity nope, let's just enjoy the awkwardness

    • @scxrpion3828
      @scxrpion3828 Před rokem

      @@educlarity PFFFT I DIDNT UNDERSTAND THEN I HAD TO COME BACK

    • @cajun0460
      @cajun0460 Před rokem +1

      @@educlarity LOL it took me a minute there to see

    • @theseangle
      @theseangle Před rokem +4

      My grandmother RUNS faster than your CODE

  • @revelmonger
    @revelmonger Před rokem +123

    I went to an interview were the interviewer was like this. Apparently it was an act to put the applicants under pressure, but they legit didn't know what they where talking about and wanted the database to be in the cloud, but also hosted on site for the example question.
    I ignored the call back for the second interview.

    • @cloudynguyen6527
      @cloudynguyen6527 Před rokem +39

      These companies acting like your boyfriend/girlfriend toying with your feeling to test. Jesus fuck, they're running a business, not a toxic relationship xD

    • @revelmonger
      @revelmonger Před rokem +12

      @@cloudynguyen6527 These bots are getting out of hand....

    • @Outwardpd
      @Outwardpd Před rokem +3

      They were probably referring to a private cloud.

    • @AnEnderNon
      @AnEnderNon Před 7 měsíci

      ???@@revelmonger

  • @markusl.4290
    @markusl.4290 Před rokem +18

    Holy shit I got flashbacks from when I was applying for an internship to this startup. And damn I applied so I could learn to webdev, never realized I gotta study everything on my own in three days in order to deliver on a requirement to be accepted.

    • @casusbelli9225
      @casusbelli9225 Před rokem +5

      At this point it's better to create your own startup. Startup culture sucks balls.

  • @Mr_Dreamer007
    @Mr_Dreamer007 Před rokem +14

    at the end
    Joma: EMOTIONAL DAMAGE

  • @UltraFuruchin
    @UltraFuruchin Před rokem +54

    "What if we create a Beijing Corn?"
    - Steven: "You're hired, I send you to Jesus now"

  • @desigaSab
    @desigaSab Před 2 lety +26

    Sounds like Uncle Roger

  • @BloDzBusTeR
    @BloDzBusTeR Před rokem +30

    Fuuuyyoooo this guy and uncle Roger should be in a video together 😂

    • @otterflipsnorock
      @otterflipsnorock Před rokem

      If you mean the interviewer, you're in luck! They made a video with Twoset violin, called "Asians got parents" czcams.com/video/n_f-1JSJ2fM/video.html

    • @painting
      @painting Před rokem

      Uncle Roger is a hack.

    • @amrutas5464
      @amrutas5464 Před 10 měsíci

      Watch the video : if shark tank was asian

  • @nikgolor8093
    @nikgolor8093 Před rokem +15

    Guys, do not even talk to such companies. And ignore them. They will make you a slave with a minimum wage and a lot of work.

  •  Před rokem +12

    Yeeey, two of my favourites in one video :D Good job guys

  • @mzmohamedzaher
    @mzmohamedzaher Před rokem +8

    Omg it’s the emotional damage dude! I love him ❤️

  • @christianscott3449
    @christianscott3449 Před rokem +7

    “It was okay meeting you” might be the most disrespectful thing I’ve ever heard😂

  • @SWFLCentral
    @SWFLCentral Před 6 měsíci +5

    not him wearing watch on left hand and looking time from right hand 💀

  • @GreyKnightsVenerable
    @GreyKnightsVenerable Před rokem +29

    He says “look at the time” and points to the hand that doesn’t have a watch with the hand that does.

    • @YuriG03042
      @YuriG03042 Před rokem

      it's almost like it was done on purpose!

  • @jl_117
    @jl_117 Před 11 měsíci +6

    “Disappointment just like my son”.
    As an Asian living with my parents, I felt that

  • @Contemelia
    @Contemelia Před rokem +6

    The collab we never thought we needed

  • @Coda8
    @Coda8 Před 6 měsíci +2

    The collab I didn’t know I needed 😂

  • @matthiasmayer4701
    @matthiasmayer4701 Před 2 lety +61

    More vids with steve pls!!!!

  • @davidgillies620
    @davidgillies620 Před 10 měsíci +11

    A good general purpose method is to use two ordered containers (e,g. heaps), min and max, and bin incoming data into one or the other depending on whether it's greater or less than the head or tail elements. This has memory limitations, though.

    • @mntrmntr
      @mntrmntr Před 3 měsíci

      why do you need 2 if you need them ordered anyway? you seem to mean 2 priority heaps (only partially ordered and thus faster than fully ordered grandma) of equal sizes (+-1) - you need to not only place the element into the right heap, but also rebalance them as needed.

  • @lo-fi_austin
    @lo-fi_austin Před rokem +1

    The collaboration I never knew I needed!

  • @mehmeh9885
    @mehmeh9885 Před rokem +10

    Plot twist: the guy that walked out was the one getting interviewed

  • @HansBelphegor
    @HansBelphegor Před rokem +48

    "It was okay meeting you"
    Now thats a lot of emotional damage

  • @anasmohamed6428
    @anasmohamed6428 Před rokem +48

    Is the interviewer the guy of "emotional damage"?

  • @marilakos
    @marilakos Před rokem +4

    When Steven says “look at the time” he’s looking on the hand without a watch lmao

  • @corinnekae1736
    @corinnekae1736 Před rokem +6

    The emotional damage is everywhere 😂

  • @oklerite3511
    @oklerite3511 Před rokem +4

    The best collab EVER 😂😂😂

  • @ashutoshpatil154
    @ashutoshpatil154 Před 11 měsíci +4

    collab we all wanted

  • @MrTolerant
    @MrTolerant Před 3 měsíci +1

    100% accurate description of all the 100% interviews in India 😂

  • @_theunspokenguy
    @_theunspokenguy Před 3 měsíci +1

    The last statement got me 😂😂

  • @klarenzcobie6595
    @klarenzcobie6595 Před rokem +5

    Now I'm genuinely scared on going to interviews 💀

  • @sanketpathak8075
    @sanketpathak8075 Před 8 měsíci +1

    😅😅 You eat too much hash, your brain turn into Potato. 😂😂😂

  • @danielyoutube2893
    @danielyoutube2893 Před rokem +2

    What a great collaboration🤣

  • @smkishtiak
    @smkishtiak Před rokem +3

    BEST COLAB EVER!

  • @cryptos_agency
    @cryptos_agency Před rokem +17

    "Disappointment just like my son"
    -Every asian parents

  • @Ashleycreates_content
    @Ashleycreates_content Před rokem +2

    “Hash, hash you eat too much hash brown your brain turn to potato” 😂😂😂😂

  • @sibanoble6473
    @sibanoble6473 Před rokem +1

    Lol the accuracy! Startups be asking which year you were the CEO of Apple

  • @khalidnuristani400
    @khalidnuristani400 Před rokem +3

    not even good “ it was ok meeting you” lmao

  • @nobodynowhere8061
    @nobodynowhere8061 Před rokem +6

    “it was okay meeting you” is a brutal line

  • @Blin.gde.moy.stariy.nik.
    @Blin.gde.moy.stariy.nik. Před měsícem

    "Disappointment , just like my son" got me rollin 😭😭😭🤣🤣🤣

  • @callmefaust6988
    @callmefaust6988 Před 7 měsíci +1

    Okay, that "It was okay meeting you" line did NOT need to go that hard. LMFAOOO 😂😂😂

  • @user-bm7xl1cl8n
    @user-bm7xl1cl8n Před rokem +3

    This is literally my financial markets teacher...

  • @GonzaloChumillas
    @GonzaloChumillas Před rokem +9

    These types of interviews don’t make sense, because the “day-to-day” of a software developer is not resolving these types of problems. Muy bueno.

    • @LeoGoldenLabrador
      @LeoGoldenLabrador Před rokem

      It is like a standard stuff for swe. There are a lot of fields in computer science and it is really hard to find someone who worked in the field you are going to fill in your company. But it is very easy for an engineer to adapt a new tech to work in the position which he has never worked before. How can you ask questions that he have never worked before, right? Why don't we ask questions on what he have done? Yes we do but it is not enough to conclude a swe if he good/bad for the position (he can lie). So algorithms/system design/data structure are the standard stuff for every swe to should know.

  • @questionabletatoes7303
    @questionabletatoes7303 Před rokem +1

    He pointed to his hand to indicate the time with the hand that had his watch on it

  • @Ragz10
    @Ragz10 Před rokem

    Lmao the ending line brings me back to the interviewers old videos

  • @LucasMp
    @LucasMp Před rokem +3

    "It was okay meeting you" was a lot more brutal than it should lol

  • @mishkattasdid
    @mishkattasdid Před 2 lety +21

    Emotional Damage,

  • @JGD714
    @JGD714 Před rokem +2

    As someone that just went through a technical interview yesterday, that gave me emotional damage.

  • @rishi9406
    @rishi9406 Před rokem +1

    The collab we didn’t expect but happy we all got 😂😂

  • @hamzahassan2388
    @hamzahassan2388 Před rokem +8

    Finally the colab we want the most 🤣🤣🤣🤣

  • @mohra968
    @mohra968 Před rokem +4

    Eeemotional daaamage

  • @OmgItsKira
    @OmgItsKira Před rokem +2

    Great collab..

  • @RobBrightBeast
    @RobBrightBeast Před rokem +1

    "It was okay meeting you" 😂 That's gold I gonna use that

  • @Unknown-np3sk
    @Unknown-np3sk Před 2 lety +11

    Emosanal daammage 😜

  • @khairul-kun-0939
    @khairul-kun-0939 Před 7 měsíci +1

    As a computer science student, god damn this is so real

  • @oliveryt7168
    @oliveryt7168 Před 10 měsíci +1

    "it was okay meeting you".. destruction 😂

  • @MecchaKakkoi
    @MecchaKakkoi Před rokem +3

    This was emotionally damaging

  • @klaasm17486
    @klaasm17486 Před rokem +3

    "It was OK meeting you"
    😂😂

  • @darkh5958
    @darkh5958 Před 10 měsíci

    love the collab

  • @mrsketchbook1702
    @mrsketchbook1702 Před 8 měsíci

    Best Combo Ever

  • @JazzPants0
    @JazzPants0 Před rokem +9

    It was okay meeting you😂😂

  • @abyssjaruga
    @abyssjaruga Před rokem +6

    Uncle Roger's Interview. Haiyaa!!

  • @arjunadityarastogi2118

    I like how he looks at the time on his right wrist but watch was on the left

  • @nikshayjain8902
    @nikshayjain8902 Před rokem +2

    Emotional damage 🤣🤣🤣🤣

  • @CalebHigginbotham
    @CalebHigginbotham Před rokem +3

    “Just like my son” 💀💀

  • @k4kadu
    @k4kadu Před rokem +4

    the first idea was pretty good.
    I'd make an array of all Inputs, divide the number of items by 2, subtract 0.5 if it's not natural and then output the item on that place in the array (you'd have to subtract 1 again if the language starts counting array items with spot 0)
    pretty sure that future me will want to slap me cuz there's an easier solution when he reads this :P

    • @PavloPravdiukov
      @PavloPravdiukov Před rokem +2

      Storing the whole stream is not ideal. You need no more than half of the stream. Just make a queue and pop an item every time 2 new items added to it.

    • @k4kadu
      @k4kadu Před rokem

      @@PavloPravdiukov oh ok, thx

    • @GokuMercenarioSC
      @GokuMercenarioSC Před rokem +1

      med = med/(count+1)*(count);
      med += current/++count;

    • @3rawkz
      @3rawkz Před rokem

      The median... if creating an array solution.. you would need to pop then sort functions in the class for every data point right... or half as the other dude mentioned...

    • @iliiliilya123
      @iliiliilya123 Před 10 měsíci

      ​@@PavloPravdiukovit is not sorted, so you have to sort it fitst to find the median and if you receive a stream of 2 100 2 100 2 100, then your "half" will be either 2 2 2 or 100 100 100 and the median is not guaranteed to be true. You need to use a set with binary search insert to read + sort or a heap with median on the top with log N insert

  • @kevinjohnmalibiran
    @kevinjohnmalibiran Před 21 dnem

    That "fck" is very relatable in some of my interviews.

  • @quangtuantran7181
    @quangtuantran7181 Před rokem +2

    "You r even better than my son at failing tests"

  • @omogbareekpenga3604
    @omogbareekpenga3604 Před rokem +3

    Would you look at the time, he said pointing to the other wrist...🤣

  • @Dr.Phalenge
    @Dr.Phalenge Před rokem +4

    I know uncle Roger but this Chinese guy also speak like this and "emotional demage" is his iconic line. (I don't know so much about him tho)

  • @apurvmj
    @apurvmj Před rokem +1

    Immmmotional daaaaaamaaage

  • @chelseaandnick1395
    @chelseaandnick1395 Před 3 měsíci +1

    Use two heaps min heap and max heap. This is like the OG interview question !

  • @gauthamkrishna4526
    @gauthamkrishna4526 Před 2 lety +4

    Moreeee

  • @sijasanu
    @sijasanu Před rokem +6

    The dude: *Emotional damage*

  • @kenneth8477
    @kenneth8477 Před rokem +2

    "Haaayaaa.."

  • @kuyagoldlink7563
    @kuyagoldlink7563 Před rokem

    I love joma and Steven he! This is GOLD!

  • @sayanpandey1767
    @sayanpandey1767 Před rokem +6

    Anyone who wants answer. Use 2 heaps 1st max heap and second min. Insert values from the data stream keeping in mind the sizes of heaps.
    Case1. If odd no of elemenrs exist within both heaps get the root from the heap with more elements.
    Case2. If even no. of elements exist, take both the roots and compute average of them as result.
    Another better way : median of medians..

  • @ail9631
    @ail9631 Před rokem +4

    The truth of Asian interview. I had seen many difficult while meeting. They asked me to fill in 25 Mc and 1 lq within 20 minutes. Actually, my university gives me 40 minutes to complete same task. It burns my brain. I can't see any respect from Asian employers

  • @silverfang6486
    @silverfang6486 Před 7 měsíci

    Need more videos like this

  • @KETANRAMTEKE
    @KETANRAMTEKE Před rokem +2

    I sense the inevitable emotional damage coming his way.

  • @deservenotdesire3185
    @deservenotdesire3185 Před rokem +3

    This gave me SEVERE anxiety damnit 😭

  • @DiegoVallejoDev
    @DiegoVallejoDev Před rokem +3

    you have to import MSG... hayaaaaa