P. S. Needs to be even more garish. Remember the "space pigs" theme of FastTracker II? Man, those were the days.
Look ma, no React: I recoded my portfolio site with vanilla everything
91–100 of 192 posts
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#92> 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…
The biggest single thing I think I ended up doing during that session was getting him to re-frame his thinking from "I'm a React developer" to "I'm a developer", emphasising how all the fundamentals remain the same, just the nitty gritty implementation changes a bit from time to time. It was interesting to watch that lightbulb moment happening with him as we were talking, while also frustrating that the bootcamp etc. training he'd been through had so fundamentally set his thinking up wrong from the outset (since had a few more interns that came via different bootcamps, and it has been the same story with each!)
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#93Earlier quoted context omitted.
Why would you need JSX for a static website? If you need JS then it's not "static".
Static doesn’t mean no JavaScript. Usually it means it’s not rendered on the server. Every time i start making a static website, i end up needing to include a table (or some other structured display of data) and then just switch to JSX to render the data with a loop. Sometimes i then render it as html and deploy, and sometimes i deploy it as react. But that’s how i usually end up using React even when static.
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#94Earlier quoted context omitted.
"A convoluted SPA" is fully orthogonal to React. If you're making a blog into a SPA, that's a you problem. It's been possible (and recommended for many things!) to just bake a static website with React and use JSX as a templating language for a long time.
It's also been possible for 30 years to do the same with languages like PHP, ColdFusion, etc, no build steps necessary, and HTML is your "templating language".
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#95> 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…
I'm glad I've only been around the industry for 25-some-odd years. We already had many high level abstractions to work with. If I were old like you and had to start with flipping toggle switches, I'm sure I would have zoned out immediately and never progressed further.
I could handle flipping toggle switches now, but only because I've been engrossed in the bigger picture thanks to those high level abstractions.
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#96Earlier quoted context omitted.
You think they would have discovered Flask or something similar just out of personal curiosity.
I think a culture has been created where anything resembling server-side rendering (other than Node spitting out JSON) is legacy to be avoided ..... until of course the Javascript creates its own convoluted version of server-side rendering, which is revolutionary and the new hotness.
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#97My 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
#98Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#99Earlier quoted context omitted.
Seems like just lack of experience. You can even do it simply with JS with onHoverIn / onHoverOut
While that's possible, it's a lot more fault tolerant to use the declarative :hover rule, than it is to handle it procedurally. The browser knows how to handle odd pointing devices, touch states and won't ever have to deal with uncaught errors in a mouseover/mouseout event.
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#100Jumping on the React hate train has become a trend these days, but it still has its place.
Of course it has its place. Not for a blog though, it makes no sense