Earlier quoted context omitted.
Agreed, but it's so rare nowadays though. I still remember when I saw a junior frontend dev struggling to get some element to look differently when hovered in React. They went though loops and hoops to style it using CSS-in-JS and mousemove, only because they didn't hear about :hover.
My favorite experience with Bootcamp folks was someone who came in do an interview, and she could talk , was professional, had nice looking blogs, etc. and seemed really awesome on paper. However, I had her do a really simple React exercise, and she was producing some really strange code like using Ruby inside of a JavaScript onClick handler? lol I think a failing of a lot of these bootcamps is they encourage people…
Look ma, no React: I recoded my portfolio site with vanilla everything
111–120 of 192 posts
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#112Earlier quoted context omitted.
> That statement indicates you don't know why react was developed. Why was it developed?
Hint: it was not because the performance nor the JS language limitations. You can google the rest.
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#113Earlier quoted context omitted.
Agreed, but it's so rare nowadays though. I still remember when I saw a junior frontend dev struggling to get some element to look differently when hovered in React. They went though loops and hoops to style it using CSS-in-JS and mousemove, only because they didn't hear about :hover.
Then what ? That junior dev could produce working software, and fix the css issue later (if needed). Give that "senior CSS developer" a day and figure out how to manage state, then what you get is a crap.
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#114My website is also completely static, but made with React. That means no React at all at runtime, it is completely static. React does not automatically mean dynamic. I get all the benefits of both. I love the flexibility nextjs provides here.
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#115Earlier quoted context omitted.
Agreed, but it's so rare nowadays though. I still remember when I saw a junior frontend dev struggling to get some element to look differently when hovered in React. They went though loops and hoops to style it using CSS-in-JS and mousemove, only because they didn't hear about :hover.
Seems like just lack of experience. You can even do it simply with JS with onHoverIn / onHoverOut
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#116> I became a dev when everyone was hiring for React, so React is what I taught myself immediately after bootcamp in the scramble for a job A better education path (in a bootcamp, university, book, youtube, whatever) would start with the fundamentals and build it from the ground up... not the other way around. (I just realized how lucky I am for being taught in the best possible order, from the ground up... first the…
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#117Author made a two page static website without React. Okay? Congrats?
Actually, yes. The conventional wisdom these days is to do everything in React (or something similarly bloated). Because, you know, users just love seeing a bunch of grey boxes shimmer and dance on a white background for several seconds before the magic really starts to happen. So any exercise which demonstrates that there just might be an alternative to this philosophy should be applauded.
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#118Earlier quoted context omitted.
And that's why learning is best left as an individual pursuit. For me, it is always best to start with a complex system and then work backwards, understanding the thoughts and decisions that went into each step along the way. When I start with the basics I don't get a feel for the bigger picture and it means nothing. I'm glad I've only been around the industry for 25-some-odd years. We already had many high level abs…
I hate to break it to you but if you've been in the professional world for 25 years, you're old :)
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#119I've tried learning Ember, React, and Vue and have tapped out pretty early. Now I'm learning how to build a site using only vanilla JS and doing everything from scratch unless I find a reason to switch it. I think I'm making decent progress. I even wrote my own simple test framework that shoves the results on the bottom of a page. After adding a few features I decided to switch it to Jasmine. One thing I'm noticing i…
Jest is a different story, it's not a single JS file and has many dependencies. Running it globally is an easy way to reduce the need to include it per project.
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#120I've tried learning Ember, React, and Vue and have tapped out pretty early. Now I'm learning how to build a site using only vanilla JS and doing everything from scratch unless I find a reason to switch it. I think I'm making decent progress. I even wrote my own simple test framework that shoves the results on the bottom of a page. After adding a few features I decided to switch it to Jasmine. One thing I'm noticing i…
I'd much rather do `npm i whatever` than having to hunt down a bunch of git repos and copying files over and when they're outdated having to do the same thing to update them etc.