Тёмный

“California Skater Boy” Reacts To Senior JS Interview 

Theo - t3․gg
Подписаться 287 тыс.
Просмотров 47 тыс.
50% 1

Наука

Опубликовано:

 

5 май 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 139   
@chriswinslow
@chriswinslow 27 дней назад
“Don’t write this down, it will all change by next week” is golden 😂😂
@kizigamer6895
@kizigamer6895 27 дней назад
That is GOLDEN and also TRUE! 😂😂
@RonnieBanerjee007
@RonnieBanerjee007 27 дней назад
The fact that Theo didn't get the satire behind the statement and actually went on to explain that the NativeWind dev now works at expo is so wildly meta! It's insane! 😂😂
@DirkZz
@DirkZz 27 дней назад
Missed the SATAN and Pentacle he ended up drawing? ;)
@kokoinmars
@kokoinmars 27 дней назад
Theo is so much into this ecosystem that the only joke he got was the rust joke at the end
@RonnieBanerjee007
@RonnieBanerjee007 27 дней назад
This just makes me sad, current Web dev state is so pathetically tragic.
@plaintext7288
@plaintext7288 27 дней назад
​@@RonnieBanerjee007just use one of the three frameworks and only the standard tooling ;)
@ElclarkKuhu
@ElclarkKuhu 27 дней назад
​@@plaintext7288 True, I have always used Svelte but lately I have had a lot of fun writing vanilla.
@pranavtaysheti7858
@pranavtaysheti7858 27 дней назад
@@plaintext7288just use jquery and standard javascript
@kokoinmars
@kokoinmars 27 дней назад
@@plaintext7288 yup 🤣 Just because there are a 1000 different things at the buffet table, it doesn't mean you have to eat all of it.
@ElementalCode
@ElementalCode 27 дней назад
"serverless-lessness" Art.
@danielmajer1648
@danielmajer1648 27 дней назад
"we push on save" 😂😂😂😂
@rmnilin
@rmnilin 17 дней назад
I really like how Theo puts Kai's parody on pause and acts the same way but for real.
@nazarshvets7501
@nazarshvets7501 27 дней назад
SATAN stack is new standard
@TheOmfg02
@TheOmfg02 27 дней назад
They have done a Rust one. It is funny. But im glad im no longer in JS/TS anymore.
@abraham_o
@abraham_o 27 дней назад
- What is V8? - Exactly.
@voidmachines
@voidmachines 27 дней назад
The insane is how normal all those things seem to theo 😅 and he didn't get the serverslessness
@pawelparadysz
@pawelparadysz 26 дней назад
the fact theo didnt laugh at 'we push on save' tells you everything hahahaha
@underflowexception
@underflowexception 27 дней назад
The funny thing about this entire thing is when I originally watched the video I thought the T4 stack was a joke but it turns out the T4 stack is an actually thing and the t5 stack domain seems to be registered so I wouldn't be surprised if that came out soon as well. 😭😭😭
@Griffolion0
@Griffolion0 11 дней назад
"Yeah but couldn't Drizzle just..." "Silence." That killed me.
@thespikything
@thespikything 27 дней назад
Oh, he DID do a Rust dev one 🦀
@abates3747
@abates3747 27 дней назад
best joke with the Rust interview "at this point I'm almost fully oxidized"
@AvanaVana
@AvanaVana 27 дней назад
I started noticing it seemed like he was drawing a star when I saw this on theprimeagen, but I didn’t watch it all the way through and so I never noticed the “SATAN” and final pentacle (note: not a pentagram, which is inverted and without an enscribing circle). Hilarious. Can’t believe Theo didn’t notice that, or if he did he didn’t react to it…
@itamarsharify
@itamarsharify 27 дней назад
Weird how Theo skipped the SATAN part...
@sealone777
@sealone777 3 дня назад
Wow. So much knowledge. I have been enlightened.
@Heater-v1.0.0
@Heater-v1.0.0 27 дней назад
Funny but tragic. I put my foot into web dev a few years ago, when I realised that web sockets and webgl along with the speed boost of modern JS engines would make what we wanted to do possible. All that was still under "experimental" flags in Chrome at the time. Also incorporated React and Bootstrap. Our project worked out fine, things moved from experimental to mainstream. I soon realised the web world was insane and got out ASAP. Now though, I find myself contemplating another try with Rust and WASM... God help me...
@monad_tcp
@monad_tcp 27 дней назад
The killer feature of the web is delivering code and a sandbox for executing such code in a platform independent way, everything else is accidental complexity, and the JS ecosystem is insanity. Which is why I only use 2 things : webpack and react, everything else I just write myself (in F#/Fable), because it changes every week and I don't have time to learn all that shit, I just use what I wrote in 2017 and it works, sure it took months to write everything myself, but I only had to do it one time. Well, I can write things myself because I am actually a programmer and I can indeed program, I don't have to import everything as a library and just write JSX.
@Heater-v1.0.0
@Heater-v1.0.0 27 дней назад
@@monad_tcp I totally agree. That ability to distribute code is a wonderful thing. I'm also with you on the DIY approach. Although I'm not adverse to using available libraries. The webpack thing bugs me though. It just seems ass backwards to introduce a build step when using an interpreted language. Last time I tried using webpack it ended up as slow as building a Rust program!
@monad_tcp
@monad_tcp 27 дней назад
@@Heater-v1.0.0 "It just seems ass backwards to introduce a build step when using an interpreted language" Yes, it is. Such interpreted language is so bad that it doesn't include a standard library, so you end up having to embed a lot of code, the amount of code is so big as a result of the lack of standard library, and everyone ends up with copies and copies of the same things that are very similar and not even really used, so you end up having to cut out things you don't use before deploy, otherwise you would end up having to deploy 200MB of JS. With Python, for example, no one cares about doing that, if you do a "pip install" for a single function of a library, you end up with the entire library. Which is why my python .env has 2GB. In case of Python, it helps not having to import an entire library because python doesn't have a "pad" string function (it does natively). Also, the JS ecosystem is incredibly granular when it comes to "npm" packages, there are a lot of packages with a couple of functions in a couple of files that really should have been a single file already, or not even exist, for example "_" underscore, that should be standard library, and god help you if you use one of the alternatives to "_" , there are 5 or 6, that's why you end up needing a "compiler" in a interpreted language. In my case, as I'm using F#, which is a compiled language, it makes sense to use Webpack to run the Fable compiler (it is a plugin for webpack) , it compiles F# to JS and embed all the React dependencies and some of its own dependencies (which is made in Typescript). I end up with roughly 200KB of code, which is kind of small considering the average size of any website.
@ErazerPT
@ErazerPT 27 дней назад
@@monad_tcp Sorta, kinda, but a bit unfair too. The Python, and add C# to it is just that. When you look at your "package cache" folder, it's the size of two OS's :D But who cares, it's one time, space is plenty, f'it. JS... you need to remember WHY JS was even made. It was to interop with THE BROWSER. Anything past that wasn't in the horizon. Sure, in hindsight, things like sockets/storage should have been in the bundle, but... it wasn't, and even having JS at all was huge, with the browser wars, users not having "latest browser", etc... If you were to do it today, most of that would be standard, and now you'd only need framework libraries, 3d libraries, ML libraries... Anyway, i sure am glad i "only" have to deal with bad diamond dependencies in the backend, not insanity on the frontend :D
@Heater-v1.0.0
@Heater-v1.0.0 27 дней назад
@@monad_tcp I'm not sure what you mean by a "standard library" for JS. Effectively the browser DOM and other API's are the standard library of JS. Well, except the browser vendors messed that up my implementing their own variants over the years. I have done something similar in the past, compile C++ with Emscripten, webpack it all up. I don't recall the bundle being huge. So I have hopes of doing similar with Rust now a days.
@zomgoose
@zomgoose 8 дней назад
"Interview with Senior Rust Developer in 2023" was created 10 months ago
@Oler-yx7xj
@Oler-yx7xj 27 дней назад
Theo is getting, what Prime has has for quite some time now
@piotrhaasiewicz2522
@piotrhaasiewicz2522 26 дней назад
I was thinking - "what do you mean you only now saw it, I saw your comment there just after the video was released". But now I see it is just a long production cycle ;)
@gro967
@gro967 27 дней назад
The best part is that this covers only a percentage of the challenges and only in the React/Next stack 😂
@tarikogic9313
@tarikogic9313 27 дней назад
Hello. I've been working with uploadthing. When I wrap my tailwind config with the withUt I can't access the tailwind colors with resolveConfig. It gives me an error, which doesn't exist when I don't wrap it with withUt. I can't remember the exact error. It's something like the withUt has no export bla bla. Anyone know how to have withUt and still being able to access the tailwind colors?
@KoenVerheyen
@KoenVerheyen 27 дней назад
I've been waiting for this video for 2 weeks now...
@josefjelinek
@josefjelinek 25 дней назад
Something went seriously wrong when completely satirical and seemingly ridiculous video is just an exact description of reality. People targeted do not even consider to stop and ask "Are we the baddies?".
@k98killer
@k98killer 27 дней назад
They did make a video about a senior Rust dev. It is pretty funny. "Join the community. It is not a cult."
@Kane0123
@Kane0123 27 дней назад
So happy this happened
@maxnibler6090
@maxnibler6090 27 дней назад
This video basically sums up why I have realized JS is not for me. The constantly shifting standards, solutions and technologies is too much to keep up with. Huge respect for anyone who does, but Ill be avoiding it like the plague
@e404
@e404 26 дней назад
what domain are u currently in now?
@AlexRodriguez-gb9ez
@AlexRodriguez-gb9ez 16 дней назад
Anyone use something else in the frontend with webassembly like clojurescript, python, julia, hmm
@ISKLEMMI
@ISKLEMMI 27 дней назад
I appreciate you posting this even though the video was making fun of the fickle, fragmented and overengineered nature of the JS ecosystem. You're a good sport!
@readywhen
@readywhen 27 дней назад
(skaterboy from california)
@tyu3456
@tyu3456 27 дней назад
* skater boi
@ColinTimmins
@ColinTimmins 27 дней назад
Theo is so pure he couldn’t see SATAN right in front of him. 🤣
@huzbum
@huzbum 16 дней назад
I watched the original, but didn't notice until just now, I think this is an interview question, not someone interviewing a Sr. JS developer.
@abates3747
@abates3747 27 дней назад
best joke with the Rust interview "at this point I'm almost fully oxidized"
@kyuthefox
@kyuthefox 27 дней назад
"they haven't done a senior rust dev" - well they have and prime has an reaction to it. Absolute gold
@srirampant3135
@srirampant3135 27 дней назад
10:58 The SATAN stack 🤣
@PaulSebastianM
@PaulSebastianM 27 дней назад
He said serverlessness!
@wlockuz4467
@wlockuz4467 27 дней назад
I don't know if I should laugh or cry.
@vdmoKstati
@vdmoKstati 26 дней назад
that is super funny :) you made itz!
@xpmon
@xpmon 27 дней назад
I missed the SATAN Stack when I watched the actual video😅
@keithjohnson6510
@keithjohnson6510 27 дней назад
Although this is all just for fun, it does point out a fundamental aspect of coding. Been coding for 30 years+ now, and the one thing you can guarantee 10 years from now it's likely to be different again, it's a double edge sword, on the one hand things constantly changing can feel really annoying, but I also like learning new languages & new things so I don't think I'd like it any other way. I would hate a Job were every day was the same thing. IOW: it's all good fun!!!!!.. :)
@AlexRodriguez-gb9ez
@AlexRodriguez-gb9ez 16 дней назад
Dunno, do you think all the frameworks limitations may be due to JavaScript/TypeScript. What if we had a LISP like clojurescript, Racket, Pharo/Smalltalk, or CommonLisp in the front-end and back-end... The power of MACROS and s-expression compilers would allow you to change your code from one framework to the next, the DSLs you can embed in LISP are out of this world, and Shen's type system is more advanced than TypeScript's type system I believe. The propagator model of computation would allow two-way binding and real-time editing of your program and probably fix a lot of stuff.
@zackaryfrazier4036
@zackaryfrazier4036 27 дней назад
Which is like heroku, which is owned by Salesforce, which is therefore evil **screams in governor limits**
@theblckbird
@theblckbird 27 дней назад
Rust mentioned!
@MrSodabean
@MrSodabean 27 дней назад
Well all know Theo prewatched this video.
@Mglunafh
@Mglunafh 14 дней назад
Predesigned it
@DefenderPuma
@DefenderPuma 27 дней назад
Basically, it's Theo...
@sealone777
@sealone777 3 дня назад
I do agree on T3 documentation
@mikescholz6429
@mikescholz6429 27 дней назад
He did Sr Rust developer 10 months ago
@samuelkelemen9597
@samuelkelemen9597 27 дней назад
Spotify uses CEF (Chromium Embedded Framework) not Electron.
@Hypn0s2
@Hypn0s2 27 дней назад
This is like Regular Swedish Meal Time but for JS
@okosunfamily1081
@okosunfamily1081 27 дней назад
You are a Legend
@JiNx-yf1ef
@JiNx-yf1ef 27 дней назад
🎉
@ved_s
@ved_s 27 дней назад
He has `Interview with Senior Rust Developer in 2023` already
@PffScrub
@PffScrub 27 дней назад
They have done a senior rust one
@bibek_magar
@bibek_magar 27 дней назад
Haha reaction is funny as well.
@jonnyso1
@jonnyso1 26 дней назад
The Rust one is hilarius.
@slipperyeel9206
@slipperyeel9206 27 дней назад
Funny how he drew a pentagram. Genius 😂
@dumbfailurekms
@dumbfailurekms 27 дней назад
what do you mean youve watched these videos since you started coding? the first one is two years old..
@astral6749
@astral6749 26 дней назад
There's already Senior Rust Dev
@markm1514
@markm1514 22 дня назад
It's not peak, we still have synergy.
@nileshjain1090
@nileshjain1090 27 дней назад
The satan pentagon was yhe best fr
@sedrakpc
@sedrakpc 27 дней назад
He has a Rust video.
@MarcelRobitaille
@MarcelRobitaille 27 дней назад
Of course there's also a rust one.
@awnion
@awnion 27 дней назад
Let's do Rust video next
@modolief
@modolief 27 дней назад
Peak
@cornheadahh
@cornheadahh 27 дней назад
11:26 I'm dying laughing LOL quinn-oh-a
@Supabase
@Supabase 26 дней назад
proud member of the SATAN stack 😈
@zachw566
@zachw566 27 дней назад
Theo, please do the original
@DiegoxKa
@DiegoxKa 27 дней назад
Serverlesslessness is the option of choise of the SATAN stack :D
@steamer2k319
@steamer2k319 22 дня назад
So JavaScript devs are just archeologists. Got it.
@f0r3v3r_
@f0r3v3r_ 27 дней назад
Let me save you the trouble I found myself in as a young grocery clerk: When you see Quinoa - think "Keen-Wah". That first customer that showed me the spelling laughed so hard when I said "Quinn-no-ahh".
@caerphoto
@caerphoto 27 дней назад
laughed like "hahahaha look at you not knowing how to pronounce a word you've never heard out loud before, and which has a completely unintuitive spelling!!!! oh my sides they are splitting" ?
@f0r3v3r_
@f0r3v3r_ 27 дней назад
@@caerphoto They didn't die laughing but enough for a kid to feel less than, anyway. Oh, those East side customers were the best at making the people around them as small as possible. That job taught me a lot about the vast spectrum of human behavior. At least I learned how to pronounce Quinoa, I guess.
@GiveMeSomeMeshuggah
@GiveMeSomeMeshuggah 27 дней назад
Didn’t expect “Theo reveals he’s a Nicki stan”
@EpicNicks
@EpicNicks 27 дней назад
Keen-Wah
@sahilverma_dev
@sahilverma_dev 27 дней назад
t in t3 stands for Theo
@timothyvandyke9511
@timothyvandyke9511 27 дней назад
They’ve done a rust one, go watch it pls
@vincentnthomas1
@vincentnthomas1 27 дней назад
Yes hes Done a rust one
@n1loy846
@n1loy846 27 дней назад
noooo you missed the SATAN Stack
@andrewredican1413
@andrewredican1413 27 дней назад
You missed the punchline at the end. S.A.T.A.N. stack
@futuregootecks
@futuregootecks 27 дней назад
#wemadeit 🎉😂
@charliecarrot
@charliecarrot 26 дней назад
t3 documentation also still recommends against using the app router. Get on it y'all smh
@funkenjoyer
@funkenjoyer 27 дней назад
The SATAN stack for the win
@BenjaminAster
@BenjaminAster 27 дней назад
I thought you wouldn't do reaction content anymore?
@t3dotgg
@t3dotgg 27 дней назад
I didn't think my favorite programming channel would make a video about me and my 2nd favorite channel would react to it lol
@ooccococococooco4512
@ooccococococooco4512 27 дней назад
I laughed my ass off at this video
@ahsokaincognito
@ahsokaincognito 27 дней назад
Zustand is pronounced Like Sue but with a Ts in front, and stunt but with a sh in front. SO tsue-shtunt
@idk_who_am_i2748
@idk_who_am_i2748 27 дней назад
God im so happy im not a JS Dev LUL
@tequilasunset4651
@tequilasunset4651 25 дней назад
Wait, the name "Supabase" isn't inherently funny to some people?
@SyntaxLexx
@SyntaxLexx 27 дней назад
The SATAN stack
@tzuilee588
@tzuilee588 27 дней назад
lmao
@DubiousNachos
@DubiousNachos 27 дней назад
11:26 Theo please Google "Quinoa" and reflect on the syllables that just came out of your mouth
@xen2297
@xen2297 27 дней назад
lol. Just learn to speak in general. Unaware American-ness shines all of the time
@lsvensson2166
@lsvensson2166 27 дней назад
cope and seethe
@nephatrine
@nephatrine 27 дней назад
I know how to pronounce quinoa, but only because I did google it at some point. It's not a word I had ever heard uttered in real life and I suspect that is true of many people. I don't see how it is an americanism or any sort of flaw that not everyone has heard every word that's ever existed before. Even worse, it could be that he HAS heard others say the word in the same way he did and understandably assumed they were pronouncing it correctly. Would you prefer Theo pause his reaction in the middle of the stream to look it up live? It's an absolutely bonkers expectation.
@ColinTimmins
@ColinTimmins 27 дней назад
@@xen2297I’m dyslexic and murder pronunciations constantly, can’t blame Theo for not knowing. For example, who puts silent letters in a language? A crazy person. English is a blend of words from many cultures making it far from perfect.
@VivekYadav-ds8oz
@VivekYadav-ds8oz 27 дней назад
The way you said it made me think he accidentally said a slur. I would've even forgiven that since clearly the word is obscure. But I'm just now realising you're so seriously shaming him just because he got the pronunciation wrong.
@alexstrz6995
@alexstrz6995 27 дней назад
I understood nothing
@DitherWither
@DitherWither 27 дней назад
SATAN stack, lmfao
@hafermuech
@hafermuech 27 дней назад
the way he butchered the pronounciation of "Zustand" omg
@vimaltonybabu2212
@vimaltonybabu2212 27 дней назад
Satan stack😂😂
@andythedishwasher1117
@andythedishwasher1117 27 дней назад
lmao California Skater Boi can't pronounce quinoa...
@dezly-macauley
@dezly-macauley 27 дней назад
I switched to Systems Programming because of this mess. If building websites is basically turning into rocket science at rate, then I might as well try to build rocket systems lol
@kamyabbakhtiarzadeh
@kamyabbakhtiarzadeh 27 дней назад
4 minutes ago)
@user-yf3ec9ml1j
@user-yf3ec9ml1j 27 дней назад
First comment lul
@himankshu
@himankshu 27 дней назад
Wow you succeeded in life 🙌
@user-yf3ec9ml1j
@user-yf3ec9ml1j 27 дней назад
@@himankshu thanks mate, i know!
@RobertMcGovernTarasis
@RobertMcGovernTarasis 26 дней назад
Enjoyed, but went on too long (although that _might_ be with T3's pausing). Oh for pete's sake, Prime has done a react as well 🤦
@senbonzakura662
@senbonzakura662 15 дней назад
Extremely cringe title
@avi7278
@avi7278 27 дней назад
This is guy is super cringy and his schtick is too obvious, it's not even funny.
@deadchannel8431
@deadchannel8431 27 дней назад
It’s funny to me, and my sense of humour is world renowned
Далее
Why WebAssembly Can't Win
19:38
Просмотров 100 тыс.
Interview With A Sr JavaScript Dev | Prime Reacts
24:43
НЕБЛАГОДАРНЫЙ ВНУК #shorts
00:22
Просмотров 499 тыс.
САМЫЕ ТУПЫЕ МАЖОРЫ С ПАТРИКОВ
33:19
МАЛОЙ ШАНТАЖИСТ
00:34
Просмотров 78 тыс.
You only Git Merge?!? feat Theo : DevHour #1
10:43
Просмотров 132 тыс.
The Loudest Sound In The Quietest Room
1:00
Просмотров 9 млн
I Abandoned Next.js... Again
7:58
Просмотров 3,3 тыс.
Interview with Venture Capitalist in 2024
9:58
Просмотров 65 тыс.
Rails Deserves Better.
32:33
Просмотров 35 тыс.
What Does An Electron Look Like
1:00
Просмотров 1 млн
Keyboards Should Have Been Like This
8:01
Просмотров 250 тыс.
TIMTHETATMAN REACTS TO CLIPS THAT MADE SKETCH FAMOUS
12:32
КАК GOOGLE УКРАЛ ANDROID?
17:44
Просмотров 60 тыс.