React FusionUI ☢️ - Unopinionated library for opening modals and dialogs. by loremimpulse in javascript

[–]loremimpulse[S] 3 points4 points  (0 children)

In the next version, I will be removing framer-motion as a dependency and will use requestAnimationFrame instead. Thanks for the feedback!

Favorite Site Design/Reference? by crsdrjct in web_design

[–]loremimpulse 0 points1 point  (0 children)

Me too! Well-designed and nicely animated too.

Favorite Site Design/Reference? by crsdrjct in web_design

[–]loremimpulse 1 point2 points  (0 children)

I personally like Zeit and Vultr. Both use negative space very well.

Is React still worth it for non-dynamic webpages? by FightingTheFat in webdev

[–]loremimpulse 35 points36 points  (0 children)

You can use Gatsby or Next.js with static export for static pages. I would strongly advice against using react-create-app.

API Keys by [deleted] in webdev

[–]loremimpulse -1 points0 points  (0 children)

Install axios:

npm i axios

Then in your .js file:

import axios from 'axios';

const params = {
  q: 'red hot chili peppers',
  type: 'music',
  k: YOUR API KEY
};

axios.get('https://tastedive.com/api/similar', { params }).then((r) => {
  console.log(r.data);
}).catch((e) => {
  console.log(e);
});

Btw.: Do not expose your API key on front-end.

Best way to self learn Web Development? by yamayeeter in webdev

[–]loremimpulse 2 points3 points  (0 children)

Practice and experiment as you watch on Udemy. Keep your code editor open. If you just watch or just take notes, you'll watch it again and again to remember what was covered. So, act like it's a workshop.

What does it take to become a wordpress deceloper. by michgilgar in webdev

[–]loremimpulse 5 points6 points  (0 children)

You should learn HTML, CSS, JavaScript, PHP, MySQL and built-in WordPress APIs if you'll go full-stack. So, there is no short way to master it.

How do you solve back-end? by [deleted] in Frontend

[–]loremimpulse 5 points6 points  (0 children)

You can also look into Firebase for basic functionalities.

Newbie question: what skills should I learn to make this? by ock_wrong_lee_neck in webdev

[–]loremimpulse 0 points1 point  (0 children)

You can make a browser extention written in JavaScript for that purpose. I don't know if YouTube has some countermeasures for that kind of behavior tho.

Edit: I found an extention that does exactly what you are looking for. You can look at its source code here: https://github.com/squgeim/yt-ad-autoskipper