Reactjs, Vue, Angular ... when should they be used?

  Рет қаралды 6,831

Stefan Mischook

Stefan Mischook

Күн бұрын

Пікірлер: 59
@captaintuttle5006
@captaintuttle5006 2 ай бұрын
Back in the day the first thing I would do when seeing a flash intro was looking for the damn skip button so I could get to the site index page.
@kaffeetasse2461
@kaffeetasse2461 2 ай бұрын
0:48 exactly describes my boss and architect decisions about tech setup of our new project.
@KeganVanSickle
@KeganVanSickle 2 ай бұрын
This works for a freelancer mindset, but if you are looking to get a job, which most of us are, you have to not only know all these frameworks and libraries, you also have to be cloud devops master now. The list of requirements to be a developer aren't what they were just a couple of years ago. If you can make a good living doing freelance, more power to you.
@DerFeindmarkierer
@DerFeindmarkierer 2 ай бұрын
I see Uncle Stef, I click.
@Sons_of_Eden
@Sons_of_Eden Ай бұрын
Great advice and points of view
@scottodowd5735
@scottodowd5735 Күн бұрын
Great content ❤ Fully agree on the complexicty part but disagree on the flash intro same as its useless on netflix the paying customers (the person who owns and pays for the site) still wants them and page load transitions popup and drop downs panels ect ect ect. Flash was killed by the over complex desire for google searching and indexing .... Pretty sure we were doing fully animated interactive apps and games in the early 200s with simple xml that felt fully native and took a few days to build... a full 10 years latter to build the same app or game at that same level is months at best and needs html5, css3, and js just for the front end rendering 😊
@camelotenglishtuition6394
@camelotenglishtuition6394 2 ай бұрын
Great video!
@nick8292
@nick8292 2 ай бұрын
Totally with you on this. Recently discovered the power of using just php (learning with Claude! plus did a like 10-year-old Udemy course on PHP). And yes Bootstrap plus a bit of JS ... boom! "Bob's your uncle", as we say in the UK. Stef's your uncle? So many cool things you can do with just that.
@HephzibsGospel
@HephzibsGospel 2 ай бұрын
hey nick, is learning with claude the name of the website to learn php?
@nick8292
@nick8292 Ай бұрын
@@HephzibsGospel Hi. I thought I'd already replied but it doesn't seem to be here. What I meant was that I use Claude AI to help and explain things while programming.
@devwithbrian1534
@devwithbrian1534 2 ай бұрын
Right on Stef
@kvelez
@kvelez 2 ай бұрын
0:53 Interesting.
@dezly-macauley
@dezly-macauley 2 ай бұрын
I've been asking myself whether to learn React first or Svelte first. I'm wondering if I'm being difficult for not learn React as that's where the jobs are, or if I should just go straight into Svelte and get better at the technology that I actually want to use because it will make things easier to maintain long term. Svelte makes the most sense if I'm trying to avoid overcomplicating things on the front end (using Go on the Backend). But many courses online including the Meta FrontEnd Developer professional certificate use React. So React feels like the thing I have to know just because it's the industry standard.
@Meleeman011
@Meleeman011 2 ай бұрын
and here you discover that the software industry is behind the times, and uses crap software
@DovahKiinActual
@DovahKiinActual 2 ай бұрын
We're full stack devs, dev ops, ui/ux designers, tech lead, some add in ceo, book kepper, advertising, customer service ect. It's already a mouthful 😂
@aznbspikey
@aznbspikey 2 ай бұрын
About that “Skip” button, was it pressed so often because returning visitors have already seen it or because first time visitors are pressing it?
@StefanMischook
@StefanMischook 2 ай бұрын
First time. That’s why the intro fad disappeared.
@StefanMischook
@StefanMischook 2 ай бұрын
Good question btw!
@electrictrojan6719
@electrictrojan6719 2 ай бұрын
The a good intro/animation can make a site look artistic and sophisticated, so long as it doesn't interfere with the user ability to use the website in any way.
@yaasararfathh8355
@yaasararfathh8355 2 ай бұрын
Uncle stefan - chad 🧑‍💻
@kandycan
@kandycan 2 ай бұрын
really good advices.
@StefanMischook
@StefanMischook 2 ай бұрын
Glad you think so!
@carstenaltena
@carstenaltena 2 ай бұрын
Peter Levels makes a fortune with plain ol’ PHP, Jquery, HTML and CSS, right? No fancy stuff at all.
@bushcrafter-o6w
@bushcrafter-o6w 2 ай бұрын
Flash was also not compatible with SEO, that became very important the same time.
@ETAonTheEUC
@ETAonTheEUC 2 ай бұрын
My question is, isn't it kind of important to see what these different technologies can do so one day you can decide the fastest way to make your project? If you never used Reactjs, for example, and Reactjs would make your project faster, then you'd be in the dark because you never used it. That's kind of where I'm at. I don't know what technologies will make my projects faster because I never used them or know exactly what they are for
@denissorn
@denissorn 2 ай бұрын
has nothing to do with 'speed', or not necessarily. It's more about maintenablity, features, sometimes speed of developent. What's often ignored in videos like this is that building a Web API is often done, because it makes sense. E.g. you have OpenAI API you can use with Python, JS etc (Doesn matter the language, but in context of the frontent JS support is relevant.). Now, for a regular web site using something like React, Vue etc is overkill. However, if you're building an interactive application (So, it is more an application, and not a web site/page) where you want/need a lot of ineractivity, and no page refreshes, you'll anyway use JS (there's wasm nowadays, but JS is probably still the best option for most things/scenarios.) SPA (Single page applications) are often a good or better choice. You may already have an API or multiple APIs, so you already have your data and backend, now you're basically building a frontent. Why design an application from scratch like that, for one because you want APIs which can be consumed by various services, applications etc. Doesn't even have to be a web appication, or a mobile. It can be a console application, or a service (Anything that can speak HTTP). However, nowadays you have options eg JS metaframeworks like Next etc provide where you can mix various techniques and have multipage application/site, but part of it can behave like a single page application. This has pros and cons, and often a 'classic' PHP whatever site can be a better choice, especially if that's what you are familiar with. It all depends on what are you building, and what are the long term goals.
@andreilucasgoncalves1416
@andreilucasgoncalves1416 2 ай бұрын
If you use the react cool stuff your project will be slower in production and in build step That's the reality of any framework, the best thing you can do is to KISS
@melvinwelton3528
@melvinwelton3528 2 ай бұрын
What's the name of the hoodie you’re wearing? 🖖🏽
@StefanMischook
@StefanMischook 2 ай бұрын
Man ... I wish I knew. I bought 3 copies when I came across it. I remove the tags when I buy new clothes because they bother me.
@stylo816
@stylo816 2 ай бұрын
​@@StefanMischook you should start making some merch!
@train_xc
@train_xc 2 ай бұрын
I just use either jquery or Ember
@dvdragon
@dvdragon 2 ай бұрын
"Is the juice worth the squeeze?" - Project Manager
@chrisrockscode1202
@chrisrockscode1202 2 ай бұрын
Totally happened to me in my last team project… the team wanted to over complicate things and all voted on an insane amount of complexity… long story short, we did not get our product out on time and it was embarrassing
@ZeryusXD
@ZeryusXD 2 ай бұрын
I wanna create a flash intro about Ruby. I wonder how many skips it will receive
@sunny7268
@sunny7268 2 ай бұрын
As you always say, go after the market and not after hype Israel, i think yoy should learn old dead langs like pearl as there huge market of old apps, like bank, while react have huge market but amount of react dev killing the competition.
@reilwaystation4372
@reilwaystation4372 2 ай бұрын
im still using django with plain html in my own app
@justingiovanetti
@justingiovanetti 2 ай бұрын
2A for life… lol. But yea, Flash was awesome.
@LtFoodstamp
@LtFoodstamp 2 ай бұрын
The answer is you should always use rails.
@denniswenrich6221
@denniswenrich6221 2 ай бұрын
Always 😂
@Joshua.Developer
@Joshua.Developer 2 ай бұрын
90% of the time unless your building the Next spotify you don't need REACT. You may not even need it then.
@train_xc
@train_xc 2 ай бұрын
Even you build Spotify , you won’t need react. React is crap Ember is the OG
@Joshua.Developer
@Joshua.Developer 2 ай бұрын
@@train_xc what's ember?
@nyrick999
@nyrick999 2 ай бұрын
What is sas? 0:30
@Bad4Good2
@Bad4Good2 2 ай бұрын
SaaS stands for software as a service
@zeer0629
@zeer0629 2 ай бұрын
To be fair, xamarin was always buggy as hell. Other mobile cross platform technology are more stable.
@user-kc9fo7hc6j
@user-kc9fo7hc6j 2 ай бұрын
You aren't losing your hair unc. You already lost it
@StefanMischook
@StefanMischook 2 ай бұрын
LOL. True!
@rahmhann
@rahmhann 2 ай бұрын
hmmmmmm
@CascadiaNow69
@CascadiaNow69 2 ай бұрын
Leave unc alone, I’m barely 34 and it’s goin fast 🥲
@StefanMischook
@StefanMischook 2 ай бұрын
@@CascadiaNow69you’re writing ruby too?
@darwinrc
@darwinrc 2 ай бұрын
So why is DHH showing his shinny long hair in every podcast after 20yrs with ruby on rails? Maybe uncle’s loss is due to PHP instead 😂
@guled669
@guled669 2 ай бұрын
It's like what people know these days
@littlebrit
@littlebrit 2 ай бұрын
Not reactjs if you want me to visit your page.
@bitcoinxofficial
@bitcoinxofficial 2 ай бұрын
I choose reactjs
Is PHP Dying in 2024?
18:30
Stefan Mischook
Рет қаралды 18 М.
What’s Up with Laravel? It’s Everywhere, and Here’s Why!
6:22
The Ultimate Sausage Prank! Watch Their Reactions 😂🌭 #Unexpected
00:17
La La Life Shorts
Рет қаралды 8 МЛН
Thank you Santa
00:13
Nadir Show
Рет қаралды 39 МЛН
How many people are in the changing room? #devil #lilith #funny #shorts
00:39
Farmer narrowly escapes tiger attack
00:20
CTV News
Рет қаралды 12 МЛН
Angular vs React vs Vue: Which Framework to Learn in 2022
17:19
DHH discusses SQLite (and Stoicism)
54:00
Aaron Francis
Рет қаралды 100 М.
Typescript Adoption in React Development in 2025?
14:55
Stefan Mischook
Рет қаралды 4,5 М.
Angular’s Third Era is…weird
21:41
Theo - t3․gg
Рет қаралды 94 М.
Why People Fail at Learning to Code?
11:01
Stefan Mischook
Рет қаралды 10 М.
The Difference Between Vue and React
10:27
Lachlan Miller
Рет қаралды 41 М.
Microservices are Technical Debt
31:59
NeetCodeIO
Рет қаралды 652 М.
React vs Angular vs Vue vs Svelte vs SolidJS | E2 Code & Curiosity Podcast
32:35
Maximilian Schwarzmüller
Рет қаралды 17 М.
Learning JavaScript Frameworks in 2024
23:07
Stefan Mischook
Рет қаралды 10 М.
Laravel First Impressions From A JavaScript Dev
21:08
adamdotdev
Рет қаралды 138 М.
The Ultimate Sausage Prank! Watch Their Reactions 😂🌭 #Unexpected
00:17
La La Life Shorts
Рет қаралды 8 МЛН