I Watched TikTok Programming | Prime Reacts

Поделиться
HTML-код
  • Опубликовано: 20 сен 2024

Комментарии • 288

  • @anandmahamuni5442
    @anandmahamuni5442 9 месяцев назад +923

    Prime forgets to turn off alerts as frequently as there is a new js framework developed

    • @ThePrimeTimeagen
      @ThePrimeTimeagen  9 месяцев назад +177

      about 2 x a week?

    • @chrisalexthomas
      @chrisalexthomas 9 месяцев назад +16

      @@ThePrimeTimeagen FIVE DOLLARS A MONTH!!!

    • @kn4ppster
      @kn4ppster 9 месяцев назад

      Check out our new blazingly fast framework alertdisablr.js!

    • @connormc711
      @connormc711 9 месяцев назад +7

      2x per day

    • @JiripocaPiadora
      @JiripocaPiadora 9 месяцев назад +12

      He needs an ElGato stream deck to turn off it

  • @Ramkatral
    @Ramkatral 9 месяцев назад +283

    I found your channel a handful of months back and basically took all your vim talk as "What's the worst that could happen?" and gave it a serious try. My guy, I am now using it full time, have moved fully over to linux, have installed vim key shortcuts on firefox and everything else, am using sway tiling window manager instead of gnome, tmux, the whole show. It is madness how much everything changes just by learning to navigate one application by keyboard alone. My wife calls me silly when I express disdain at having to use a mouse on her computer. You have damaged me irreparably.

    • @ThePrimeTimeagen
      @ThePrimeTimeagen  9 месяцев назад +182

      I absolutely love that you shared this, thank you very much. Another life ruined

    • @Abu_Ubaida9
      @Abu_Ubaida9 9 месяцев назад

      loooooooooooooooool
      @@ThePrimeTimeagen

    • @thechi758
      @thechi758 8 месяцев назад

      ​@@ThePrimeTimeagencan we smash

    • @melodyogonna
      @melodyogonna 8 месяцев назад

      @@ThePrimeTimeagen 😂😂

  • @4bclover
    @4bclover 9 месяцев назад +46

    regarding the first tiktok, this exactly what happen to me in Sep this year. For over 2y I heard that everything is fine I am doing ok, and suddenly they call me and say, bye bye.

    • @ThePrimeTimeagen
      @ThePrimeTimeagen  9 месяцев назад +24

      yeah, it happens, i am a bit shocked it does, but i have heard of this

    • @bobanmilisavljevic7857
      @bobanmilisavljevic7857 9 месяцев назад +3

      I wonder if they said "gottem" after

    • @hotgoosezion547
      @hotgoosezion547 4 месяца назад

      When this happens, how should one react? Can you bring this to a lawyer or something? I imagine that fighting to stay at the company isn't the best move, your career will pretty much be stunted. How do you explain this to your next employer?

    • @that_matt
      @that_matt Месяц назад

      ​@@hotgoosezion547if you're in the US you are probably in at-will employment which means that you can leave at any time and they can fire you at any time, no cause needed.

  • @russelllapua4904
    @russelllapua4904 9 месяцев назад +256

    You can see his braincells fly away watching these.

  • @TheTrienco
    @TheTrienco 9 месяцев назад +50

    The moment you add prints and your code starts working is when you realize you're in serious trouble. At least you know a race condition is more likely than memory corruption. When you switch from optimized to debug and it starts working, though... that's where the fun begins.

    • @jamesnewman9547
      @jamesnewman9547 9 месяцев назад +5

      Had some C with UB that worked in debug, which I had been exclusively running it in - but failed (not with an error, but with erroneous results) in an optimized build. 100% Agree.

    • @gustavomendez2891
      @gustavomendez2891 7 месяцев назад +1

      Bro the pain. The code is gaslighting you

  • @Yupppi
    @Yupppi 9 месяцев назад +48

    Tiktok is like watching AI generated videos: it takes all the content it's seen and it has no idea how comedy is made, but it puts the necessary stuff in. It's not like a human who has intuition about what's funny and who's able to plan, then reflect on the plan, then execute and review it. It just shoots out the components of all the other stuff. Or like a baby that tries things out by trying to copy what it sees with no ability to parse what the real meaning of it is. The greatest common denominator or something.

    • @AhrkFinTey
      @AhrkFinTey 2 месяца назад +1

      This sums it up perfectly. These all have the form of skits but there's no jokes. It's so bizarre

  • @DUMBDUDEGAMER
    @DUMBDUDEGAMER 9 месяцев назад +19

    3:58 The inserting a print statement and it working thing is so on point it actually hurts my soul.

    • @XDarkGreyX
      @XDarkGreyX 9 месяцев назад

      Now that I think about it....

    • @andrewshirley9240
      @andrewshirley9240 9 месяцев назад +9

      Inserting a print and having it work is like, almost always pointing directly to some sort of race condition, which I find to be an incredibly helpful clue for debugging. It's only really soul-crushing when the race condition exists in some other code you're relying on and it's structured in such a way that there's no way to *fix* the race condition and so you just have to fall back on hacky process waits and finger-crossing.

  • @iron7956
    @iron7956 9 месяцев назад +48

    A friend friend once asked me help to debug a piece of c++. The code behaved differently if we changed the order of declaration of the variables or if we used a different compiler. Turns there was an off-by-one error while reading inside an array

    • @Raspredval1337
      @Raspredval1337 9 месяцев назад +16

      typical undefined behavior stuff 😱

    • @anima94
      @anima94 9 месяцев назад +4

      wait, does c++ just let you access out of bounds stuff without giving you an error? And the out of bounds thing you reached was whatever you declared earlier..?

    • @iron7956
      @iron7956 9 месяцев назад +36

      @@anima94 It is undefined behavior, it could crash or it could just read whatever chunk of memory is after it. That's how a lot of vulnerabilities are created

    • @anima94
      @anima94 9 месяцев назад

      ​@@iron7956wow I didn't know that, kinda makes sense that it gives you the freedom to do so but I expected the compiler to at least mention something

    • @intermitttence2022
      @intermitttence2022 9 месяцев назад

      There are access methods that use bounds checking for containers (.at()) but many programs opt not to use it for performance reasons.

  • @deaddevil7
    @deaddevil7 9 месяцев назад +58

    I remember writing some audio processing code for the browser. It was one of the most basic algorithms to make music play slower/faster while maintaining the same tone. I spent hours, at the end of the day, arbitrarily changing coeficients for the algorithm. After some time, it started to sound without almost no audio artifacts/distortions. And after some more time, i came to my senses and thought "why is this working so well? The papers and all the other implementations have a bunch of audio artifacts...bruh wtf lol". The code is still up and i remember the faces of the biggest experts in the field when i presented it at a conference and said "I have absolutely no idea why this sounds so good, it shouldnt but it does".

  • @mosomiliardaru
    @mosomiliardaru 9 месяцев назад +15

    tiktok programming is a bunch of failed wannabe programmers trying to become content creators by remaking every coding "funny" trend and it's just not cool anymore...

  • @ridass.7137
    @ridass.7137 9 месяцев назад +8

    skip to 8:10

  •  9 месяцев назад +39

    "Yesterday I did what suppose to do yesterday and today I'll do what I am suppose to do today" was a good onw.

  • @philsburydoboy
    @philsburydoboy 9 месяцев назад +11

    The manic bastard at 2:36 uses Title_Snake case. What in the hell even is that?!

  • @hansdampf2284
    @hansdampf2284 9 месяцев назад +18

    I love the machines they have, it looks so much like they are actually have their live in order.
    My machine is a 20 year old big tower which I upgraded to somewhat new hardware, my desk is full of papers and stuff and a soldering iron and the keyboards. And the screens are used ones I got for cheap and they are different sizes

    • @deado7282
      @deado7282 9 месяцев назад +14

      Sounds like a chad hardware setup

    • @debonairrose
      @debonairrose 9 месяцев назад +1

      sounds practical babyyy, you get work done!

    • @johanneswelsch
      @johanneswelsch 9 месяцев назад

      I have so much stuff on my dask, I have to use my whole arm to sweep some room for the laptop :D. And there's like 5 miles of cables in here.

  • @Dev-Siri
    @Dev-Siri 9 месяцев назад +98

    I had to watch this video muted because I knew tiktok programming is going to be cringe af

    • @ThePrimeTimeagen
      @ThePrimeTimeagen  9 месяцев назад +35

      careful, once you catch the cringe....

    • @peekknuf
      @peekknuf 9 месяцев назад +7

      if you gaze into the cringe, the cringe gazes also into you. (c)

    • @smort123
      @smort123 6 месяцев назад +2

      @@ThePrimeTimeagenPerhaps i am cringe, but that makes me free.

  • @warrenprezydent2010
    @warrenprezydent2010 2 месяца назад +1

    Small talk is one thing, but having 2 daily meetings is fucking hilarious (in the morning internal one with ppl from europe, and in the afternoon meeting with american clients). I literally say the same thing but with just different tense.
    In the morning "I will work on XD-123" and later in the day "I worked on XD-123"
    AND IT TAKES 1H every single day.

  • @eamonburns9597
    @eamonburns9597 9 месяцев назад +3

    That "-agen" at the end of the long rant was perfect 🤣 the longer it went I got more worried that you would forget

  • @gwaptiva
    @gwaptiva 9 месяцев назад +55

    The "why is this working" thing is to me one of the major differences between a new and an experienced programmer. The new programmer's reaction can be seen in that TikTok; the experienced one (incl Mr Prime) first feels their pain) and then realises that that is one of the biggest red flags in the business: if something works and you don't know why, Ctrl-A, Delete

    • @shauas4224
      @shauas4224 9 месяцев назад +7

      True, even if you figure out it after some time, it's probably too complicated to begin with. It's like a plumber saying - if you need to connect 5 pipes together, you screwed up hour ago so start over

    • @sa1t938
      @sa1t938 9 месяцев назад +2

      I don't really get the whole "its working but I don't know why" thing. If im writing a piece of code, I have a goal in mind so if it works it's because that goal is being accomplished

    • @twothreeoneoneseventwoonefour5
      @twothreeoneoneseventwoonefour5 9 месяцев назад

      @@sa1t938 you probably take hours to build things then. Most people (after some experience) can usually write some code that does the thing, only from the unknown instinct and only then understand what it does properly. It's kind of like writing a novel when you are drunk, and thinking "how did I write this?? it's so genious, I can't even continue it now" next morning when you are in your normal senses. Well I have this experience a lot. Simply said it's just the difference between people who write their code by their instinct (like drawing art, singing etc.) vs people who write their code fully rationally. Usually first type of people is rare because code itself is more math-y and concrete, but people who write a whole lot of code and who are very creative sometimes become that "instinct" type. It's neither good nor bad imo.

    • @gwaptiva
      @gwaptiva 9 месяцев назад

      @@sa1t938 Thing is, if you don't know Why something is working, it may, no, will, break the moment you change anything. If you have that sort of code you are not in control. And if you're not in control, chances are something or -- worse -- someone else is, and that usually doesn't end well

    • @SimonBuchanNz
      @SimonBuchanNz 9 месяцев назад +2

      Even with a bunch of experience, you can still occasionally hit "why does this work?", it's just that you're a lot better at figuring it out, so it's not as notable.
      "Why doesn't this work", in the other hand, is eternal.
      For me, the closer example for the difference experience makes is the "No, there's no way this code is broken. All the tests pass, I have 100% coverage, it hasn't been changed in a year, the bug is definitely somewhere else."
      Narrator: it was not.

  • @isodoubIet
    @isodoubIet 9 месяцев назад +15

    Sometimes, it really is the children that are wrong.

  • @duke605
    @duke605 9 месяцев назад +9

    That last one tho was honestly relatable. The other ones are clearly from script kiddies that do TikTok more than coding

    •  2 месяца назад

      Yup. Especially the two breakdowns a day. 😂

  • @Nik-rx9rj
    @Nik-rx9rj 6 месяцев назад +2

    The one with the guy working at his desk and “deep focus” sessions is me 100% 😂 And when it hits 5 I close every window and peace out.

  • @matt.loupe.
    @matt.loupe. 9 месяцев назад +8

    Friendly reminder that we were all onboarded on social media to keep up with what our friends are doing. We are so far past that. It’s just random noise now.

  • @plaintext7288
    @plaintext7288 9 месяцев назад +14

    "Why does it look so thick" while looking at a girl is wild 💀(joke ofc)

    • @ThePrimeTimeagen
      @ThePrimeTimeagen  9 месяцев назад +15

      i thought the context was clear, but my editor made fun of me the exact same way

    • @DomskiPlays
      @DomskiPlays 9 месяцев назад

      lmao yea i laughed so hard about that too :D

    • @javierflores09
      @javierflores09 9 месяцев назад +1

      @@ThePrimeTimeagen the context was clear, but the switch-up mid-sentence is still funny nonetheless

    • @full-timepog6844
      @full-timepog6844 9 месяцев назад +3

      😶 he said "so creamy as well"

  • @Jabberwockybird
    @Jabberwockybird 7 месяцев назад +2

    The reason you don't get any feedback based on performance before they layoff is that the layoff is broad across many people, it's not based on your performance. So your direct manager didn't let you down. They had no feedback to give that could help this situation.

  • @dreri3738
    @dreri3738 9 месяцев назад +29

    I haven't seen any TikTok programming before and was excited to see some good memes.
    As you may guess, my day is utterly ruined.

    • @DeathBean89
      @DeathBean89 9 месяцев назад

      same, it hurts my soul

  • @endredomokos1770
    @endredomokos1770 8 месяцев назад +2

    Possibly hot take: if she wants to have a streamboard to open apps let her have it. If the speed you open your emails is something you need to optimise (outside of optimising for personal enjoyment), something went terribly wrong

  • @kuhluhOG
    @kuhluhOG 9 месяцев назад +4

    4:40 From my experience this always happens when you have something which is lazily evaluated but shouldn't be.

  • @larryd9577
    @larryd9577 9 месяцев назад +3

    When print statements "fix" your code it could be an indicator for concurrent problems under the hood. The stdout is synchronized and when you start to print while stuff happens, atuff will be synchronized. The moment you remove the little cheeky print, order collapses and its fudged again.

  • @Exilum
    @Exilum 9 месяцев назад +5

    Even as someone who enjoys watching tiktok reacts, this was particularly painful.
    Programming tiktoks should be a new circle of hell.

  • @kickeddroid
    @kickeddroid 8 месяцев назад +2

    There’s times where I look at my old code and it takes me a good hour to figure out what I was even doing 😂

  • @dinushkam2444
    @dinushkam2444 9 месяцев назад +2

    When he said 2 print statements to fix a bug.
    Reminded me when I saved 2 times to db in hibernate to make sure it got flushed. That fixes a random bug where few are not properly saved to db.

  • @Grumpicles
    @Grumpicles 3 месяца назад +4

    When print/logging out to console magically makes things work.
    You're not "experienced" until that has happened to you at least once.
    WT-actual-F!

    • @zaper2904
      @zaper2904 Месяц назад +1

      95% of the time it's going to be a memory issue UB or a race condition. In fact that's true in general for non deterministic bugs.

  • @stackercoding2054
    @stackercoding2054 9 месяцев назад +2

    my standup calls consists of 6 developers + project lead and its 15 minutes long, my speech there lasts a maximum of 15 seconds.... some people even take 3 minutes, its hell on earth.

  • @kahnfatman
    @kahnfatman 9 месяцев назад +1

    Yup -- it was 30 of January 2023, I had an appointment with my head of department. Little did I know that HR was also invited.... Boom! My team was gone

  • @ОлегСеров-й1б
    @ОлегСеров-й1б 2 дня назад

    I was hoping that you will end your speech in the end with “…agen”
    I’m kinda happy that you really did it

  • @TalicZealot
    @TalicZealot 9 месяцев назад +1

    Oh god why did you remind me about logging making the bug go away, that hurt me emotionally, I had forgotten about JS doing this.

  • @BrentMalice
    @BrentMalice 6 месяцев назад

    lmao this actually changed my life. installed wsl2 because of that viewer, and now im using screen and neovim to do some basic stuff from windows. being able to just dos tuff from command line without dealing with windows shenanigans is amazing. i just follow along python tutorials without hating life. maybe ill get that wubuntu

  • @karpfenboy
    @karpfenboy 9 месяцев назад

    I love it when "I still don't even get - I don't even get TikTok yet, okay? I don't get it. I didn't get it before, i still don't get it today. Okay? I'm too old, or too young. I'm one of the two. And i don't know which one it is. But I'm not the correct age, for whatever this is. Whatever just happened on my screen ... I'm either a boomer or a zoomer. One of the two"-agen uploads a new video

  • @martijn3151
    @martijn3151 9 месяцев назад +1

    It still amazed me that Americans can just be fired like that. No protection whatsoever. We don’t need you anymore, bye. It’s crazy.

  • @MrDejvidkit
    @MrDejvidkit 9 месяцев назад +1

    I cringe so hard, I can't look at it anymore, but I gave it a like because you sacrificed to go through this!

  • @Kane0123
    @Kane0123 9 месяцев назад +5

    Can’t believe it took almost 5 minutes for someone to ask Prime to stop…

  • @octavioavila6548
    @octavioavila6548 2 месяца назад

    6:23 The most unrealistic part of this is the logging off at 5:00pm part, more like 11:00pm

  • @Twoface227
    @Twoface227 2 месяца назад

    I have been teaching myself Python and have been using VSC.... I couldn't count how many times I've had a program I've written not work, not be able to run it, have everything look fine, walk away for an hour or two out of frustration, just to come back and have it run no issue when I come back....

  • @BeamMonsterZeus
    @BeamMonsterZeus 9 месяцев назад +54

    I think what makes Tiktok most successful, above all other factors, is its global availability and ease of access to those that obsess over social media attention and followings. Personally, it looks like spyware.

    • @TofuBug24
      @TofuBug24 9 месяцев назад

      Looks like? You are too kind with your soft words. Tiktok is an infectious plague that primarily affects intelligence. Its like CIP but instead of pain its SHAME they can no longer feel

    • @aviral2759
      @aviral2759 9 месяцев назад +1

      Like Instagram

    • @lemon__snicker5973
      @lemon__snicker5973 9 месяцев назад +3

      Well, it *_is_* spyware. (Lookin' at you, Winnie the Pooh.)

    • @BeamMonsterZeus
      @BeamMonsterZeus 9 месяцев назад

      I mean, even if it is directly feeding information on its users to the CCP, which it definitely is, that revelation won't stop little Timmantha from chasing likes

  • @v0id_d3m0n
    @v0id_d3m0n 7 месяцев назад +1

    Last one, very relatable haha

  • @ward7576
    @ward7576 9 месяцев назад +1

    I might be different here - I am all about working 100% remote, but I am ok of having tons of chitchat in standup meetings, I don't mind. That's the "socialization" that satisfies me, but no more than that, I don't even want to exist in the office anymore.

  • @GilbertWiget
    @GilbertWiget 2 месяца назад

    Stumbled about this just today. I'm glad not being the only one who doesn't get tiktok.

  • @chizidotdev
    @chizidotdev 9 месяцев назад +1

    5:56 to 6:25 is the most relatable 30secs I’ve ever seen in my career😂😂

  • @postblitz
    @postblitz 2 месяца назад

    Tik tok tik tok = the sound of the time you have left to live while stuck watching ADHD inducing short clips.

  • @anj000
    @anj000 6 месяцев назад +1

    6:22
    5 PM, you feel bad that you couldn't focus during the day and you fell like you did nothing, so you stay trying to code something until 8 PM, take a break, go back to it at 11 PM because you still feel like shit and you need to have something to tell about on the standup meeting in the morning.

  • @magnanimist
    @magnanimist 9 месяцев назад +1

    I definitely wanna hear about Rufus... wtf happened to Rufus???

  • @cheebadigga4092
    @cheebadigga4092 9 месяцев назад +1

    that streamdeck thing killed me

  • @kiryls1207
    @kiryls1207 9 месяцев назад

    "the thing that mostly gets me is not when something does or does not work like that, but when i put in a print statement and it starts working"
    this right here, this is when i start doubting my abilities the most

  • @bianchialex
    @bianchialex 9 месяцев назад +17

    Lowkey code written by overconfident senior engineers that thing everyone knows things as well as they do is way harder to read then a junior who is taking his time because he doesn’t know what’s going on.

    • @twothreeoneoneseventwoonefour5
      @twothreeoneoneseventwoonefour5 9 месяцев назад +9

      The thing only a Junior dev would say.
      I would rather read 5 lines of code that elegantly does the thing, one by one, by understandable chunks, than 20 lines written by a junior who used a for loop, a bunch of clunky if elses, 2 disconnected arrays and god knows what else weird techniques they think the problem can be solved with, potentially filled with bugs.
      I really dislike that people are degradating their code for no reason. If you don't understand someone's code, learn it and it's done. Drop that loser mindset. You should improve your understanding and your code quality, not degradate.

    • @BlazingMagpie
      @BlazingMagpie 9 месяцев назад +1

      @@twothreeoneoneseventwoonefour5 The senior engineers I know are the ones that write the second one, commit without comments (svn is brand new technology) and if anything needs to be fixed, they copy-paste, wrap it in if-else and pass in feature flag from somewhere. And god forbid you do foreach anywhere, don't you know it's sloooooow?

    • @oxidant5
      @oxidant5 9 месяцев назад

      @@twothreeoneoneseventwoonefour5simple and more explicit code is always better.

    • @twothreeoneoneseventwoonefour5
      @twothreeoneoneseventwoonefour5 9 месяцев назад +1

      ​@@BlazingMagpie are they senior engineers then?.. I'd say not really. I am (almost) a senior engineer and I always try to write efficient, eloquent and (at the same time) practical code when possible. It is not simple by any standard, but it is succinct and clear once you understand it. Like a poem?.. Well maybe I am just an abnormal engineer in current age lol. I will not go out of my way to oversimplify, or overengineer something, but I will certainly use some new language features added recently(that will be compiled away by the bundler anyway so no worry there), or less known features like ?? or ??= operators when they are applicable, or an optimization hack that can only be explained with a three line long comment, because it is actually valuable.

    • @anarchoyeasty3908
      @anarchoyeasty3908 9 месяцев назад +2

      @@BlazingMagpie Those sr developers suck. Sr doesn't just mean you've been doing it a long time. It implies some level of skill. Those are just juniors that never grew.

  • @someman7
    @someman7 9 месяцев назад +1

    Translation for people who do debugging using debuggers: When he says "I put in a print statement", imagine he said "I add a breakpoint" (+ "I recompile")

    • @someman7
      @someman7 9 месяцев назад

      Printagen

    • @shyshka_
      @shyshka_ 9 месяцев назад +1

      People who use debuggers still know what a print statement is bro 😂

  • @scheimong
    @scheimong 9 месяцев назад +2

    Usually when inserting print statements makes things work, it's a race condition somewhere.

    • @isodoubIet
      @isodoubIet 9 месяцев назад +1

      Can also be various forms of undefined or unspecified behavior: memory corruption, indeterminate expression evaluation order, overflow, that sort of thing.

  • @MrAbrazildo
    @MrAbrazildo 9 месяцев назад

    4:00, UB. The bug use to start before. That's 1 of the reasons I like to have several conditional compilation: I start switching those switches, and may get rid of the UB. So I know in which section it started.
    About her code: didn't she run into an infinite recursive loop?
    6:15, it's over, time to go!

  • @mamoor
    @mamoor 9 месяцев назад +1

    Oh no. It is happening.

  • @ner0718
    @ner0718 7 месяцев назад

    The first one was just straight up depressing.

  • @codeguy11
    @codeguy11 9 месяцев назад +2

    Goodbye PrimeAgen, We lost our best legend. :sob:

  • @carriagereturned3974
    @carriagereturned3974 22 дня назад

    PG is constant, no improvisation. Alert scenario.
    if(alert) then out("I forgot to turn off alerts!")

  • @Dyils
    @Dyils 17 дней назад

    5:35 Brother, she on Windows, what window manager 💀

  • @3ventic
    @3ventic 9 месяцев назад

    There are small pockets of actual meaningful programming and tech discussion happening on tiktok, but the jokes and zoomer humour is what appeals to the masses.

  • @Redman8086
    @Redman8086 9 месяцев назад

    I don't understand the point of Tiktoks that start out like they're working up to a punch line but nothing funny ever happens. Like "hey guys isn't this #relatable??" and that's it, nothing else happens. "Isn't it funny that I compiled my code and it actually worked??" No... not really.

  • @ryanleemartin7758
    @ryanleemartin7758 9 месяцев назад +1

    TBH, I don't mind hearing about a dog named Rufus.

  • @breadiusloafus5068
    @breadiusloafus5068 9 месяцев назад +1

    Normal Tik Tok videos are already cringe, programming Tik Tok videos is the next fricking level.

  • @wolfschaf
    @wolfschaf 9 месяцев назад +2

    Do you know what is painful?
    When you add a comment and the behavior of your program changes ☠️
    Thanks MSVC for that compiler bug 🖤

  • @0xTas
    @0xTas 9 месяцев назад +4

    Don't worry Prime, there really is no "getting" tiktok. It's just bad.

    • @ThePrimeTimeagen
      @ThePrimeTimeagen  9 месяцев назад +1

      Do I not have enough brainworms? There must be a way to understand this

  • @eliassantistevan7001
    @eliassantistevan7001 9 месяцев назад

    Loved the "Do we have to keep doing this" comment....

  • @riccardozappitelli450
    @riccardozappitelli450 2 месяца назад

    0:25 song: My Live Mine All Mine

  • @nexovec
    @nexovec 9 месяцев назад

    "Why is it working?" is one of the most cursed questions ever.

  • @nathanfahrni5547
    @nathanfahrni5547 9 месяцев назад

    The printstatement and then working is the worst possible outcome

  • @macmanbd
    @macmanbd 9 месяцев назад

    That surprise HR pop-in happened to me a year ago. Yeah, it sucks.

  • @malditamente6713
    @malditamente6713 9 месяцев назад

    3:05 You're wrong, it was the netcode, that shit will suck the life out of you. - A network eng.

  • @giorgos-4515
    @giorgos-4515 9 месяцев назад

    prime, not getting tiktok is a good thing, your brain has not been fried

  • @dasKeks28
    @dasKeks28 2 месяца назад

    Print synchronizes thread registers.

  • @r1konTheAutomator
    @r1konTheAutomator 3 месяца назад

    6:22 - false. what we do is go do not disturb or appear offline, alt+tab to something we'd rather be doing and do that. What is this "get up out of the chair when its quitting time because we want to do something other than computer stuff" stuff?

  • @kenneth_romero
    @kenneth_romero 9 месяцев назад +1

    it's all good prime. i tried getting into tik tok a few times and gave up completely. and im 23, wtf am i just old now 👴

  • @darrenzou2483
    @darrenzou2483 7 месяцев назад

    In my experience if a code passes test even though I know for sure it shouldn't then something MAJOR is wrong with the code

  • @NeytozINF
    @NeytozINF 9 месяцев назад +3

    yeah, that's when "volatile" helps. Sometimes compiler wrongly over optimize code, and adding print prevent it from doing it :D

    • @isodoubIet
      @isodoubIet 9 месяцев назад +6

      I don't think adding volatile is something you want to do except perhaps a part of a debugging effort. If the optimizer is being too aggressive and optimizing your code so you have incorrect semantics, you almost certainly have a case of undefined/unspecified behavior on your hands and the better solution would be specify the semantics correctly.

  • @shadowcude3944
    @shadowcude3944 18 дней назад

    Idk, the one interview i had with an HR on it was the one i was hired after

  • @nyzss
    @nyzss 9 месяцев назад +1

    the last tiktok was the only funny and non-cringe one imo, it was hilarious

  • @VojtaJavora
    @VojtaJavora 9 месяцев назад

    If there is one thing I can count on in life it's you forgetting to turn of alerts.

  • @anotherdamnuser
    @anotherdamnuser 9 месяцев назад +1

    In Java, sometimes, things only work when there is a breakpoint. WTF.

  • @BintonDev
    @BintonDev 9 месяцев назад +2

    MOM IM ON TV

  • @rethinking3289
    @rethinking3289 2 месяца назад

    Its funny how you talk like the comedian bill burr😂

  • @5h4ndt
    @5h4ndt 7 месяцев назад

    0:59 Usually I appear in HR Meetings.... To fix their stuff :/

  • @nrrgrdn
    @nrrgrdn 7 месяцев назад

    "I have relearned why I don't like TikTok"

  • @RamkrishanYT
    @RamkrishanYT 9 месяцев назад +1

    once again prime gave us brain rot

  • @AkiiiMatcha
    @AkiiiMatcha 8 месяцев назад

    Prime I totally feel u man. I don't get it either. Tiktok is just this enigmatic black whole that absorbs every last one of your brain cells if you dare to scroll for more than 2 minutes. I am 21 y/o, almost all of my friends use it. I really don't understand the purpose of it but still I am weird to not know what the name of this one dancing toilet head thingy is. Sure, Andy.

  • @skeleton_craftGaming
    @skeleton_craftGaming 9 месяцев назад

    I've heard horror stories of printf both fixing and breaking code...

  • @asdjzcx2619
    @asdjzcx2619 2 месяца назад

    With the screen and everything it is not programming. Prime it is called smiling

  • @7th_CAV_Trooper
    @7th_CAV_Trooper 9 месяцев назад +9

    that day in the life standup was based

  • @mtardibu
    @mtardibu 9 месяцев назад

    I actually liked the tiktoks. I thought I would be too old for it.

  • @nexovec
    @nexovec 9 месяцев назад

    "TikTok hates him, he used this one simple trick"

  • @blazeboi3305
    @blazeboi3305 3 месяца назад

    5:40
    Form over function.
    💀

  • @dovh49
    @dovh49 9 месяцев назад

    I had that happen to me before at a really small company. For 1 year they said everything was good and everyone liked me. Then I asked for a pay raise review and the review went awful and they said I was terrible. Like, couldn't you tell me that during the year? And then a month later I was laid off because they didn't "have the money." Which I think was true, but it was a bit weird after I got a really bad review.

  • @magnusahlden7087
    @magnusahlden7087 9 месяцев назад

    I got a mental breakdown over those tiktoks.

  • @krtirtho
    @krtirtho 9 месяцев назад

    My ears!!!!!!!
    I was using a headphone. With 70% volume and BGM. The cringe came through all this noise.

  • @nacimhoc
    @nacimhoc 9 месяцев назад

    After watchi´g this video, I will never open a tiktok account.