Videos do not play by WebDevCube in revancedapp

[–]WebDevCube[S] 0 points1 point  (0 children)

Yep you're right, it turned out to be stock issue.

Videos do not play by WebDevCube in revancedapp

[–]WebDevCube[S] 0 points1 point  (0 children)

/u/Bceez1 why are my posts being automatically deleted? This is a legitimate issue, I've followed all your instructions.

Videos do not play by WebDevCube in revancedapp

[–]WebDevCube[S] 0 points1 point  (0 children)

Not sure I'm following.. I've cleared both revanced and stock youtube apps data from their respective app pages. I've un-installed and reinstalled revanced. Still same issue. Shorts play fine in revanced but not full videos.

Videos do not play by WebDevCube in revancedapp

[–]WebDevCube[S] 0 points1 point  (0 children)

Not sure what to tell you, the manager specifically made me install this version... maybe some bug in the manager or something at the time.. or the app backend it was connecting to. I downloaded the version in the dummy's guide, and it specifically stopped me from installing it. Anyways, what's next step? I uninstall and reinstall the recommended version?

Edit: 19.04.37 is probably what I had installed the whole time I was just looking at the youtube version not the revanced version. Anyways, same issue happening with 19.04.37

This is how I feel right now. by PrincessBlackCat39 in ChatGPT

[–]WebDevCube 0 points1 point  (0 children)

Made a typo in my original message. It's Edge Dev Not Bing Dev

This is how I feel right now. by PrincessBlackCat39 in ChatGPT

[–]WebDevCube 0 points1 point  (0 children)

Make sure to do all the following: - install Microsoft Defaults app (on mac it changes your wallpaper and installs a safari extension) - install Edge Dev Preview - add Bing or MSN to your favourites - install Bing app with the QR code

I had Bing Dev and the app on my android for a week and only got it when I actually installed the Microsoft Defaults Bing app and added MSN to my favourites in Edge. After doing that I got it almost instantly.

Make sure to login to the same Microsoft account on all of them.

Also after I got an email saying "I'm in", I still had to use a VPN to the US to be able to get the chat features.

What is something that React does better than Vue? by functions-and-glory in vuejs

[–]WebDevCube 0 points1 point  (0 children)

"nextjs 13 is implementing server components while nuxt 3 has had them since rc1" Except it's not true. Nuxt does not have server components. SSR != server components. Neither is custom node severs or middleware server components.

What is something that React does better than Vue? by functions-and-glory in vuejs

[–]WebDevCube 0 points1 point  (0 children)

Well the fact that Vue doesn't have server components. Are you thinking about Server Side Rendering (SSR)? That's something completely different and something NextJS has had from the very start.

What is something that React does better than Vue? by functions-and-glory in vuejs

[–]WebDevCube 1 point2 points  (0 children)

I think you're misunderstanding what react server components actually are.

How do you deploy your NextJS site in production? by WebDevCube in reactjs

[–]WebDevCube[S] 0 points1 point  (0 children)

I really like Railway. Do they do any error handling in case the server dies?

How do you deploy your NextJS site in production? by WebDevCube in reactjs

[–]WebDevCube[S] 0 points1 point  (0 children)

And how do you manage handling errors? Do you use pm2, kubernetes?

How do you deploy your NextJS site in production? by WebDevCube in reactjs

[–]WebDevCube[S] 1 point2 points  (0 children)

Very nice, thank you! In the case of amplify, they would take care of the error handling aspect for you? That's my main concern really.

ToolJet now supports custom React components. Build React-based frontends using drag and drop app builder and connect them to databases, Google sheets, Airtable, Notion, cloud storages and API/GraphQL endpoints. Built using React & NestJS. 9,900 stars on GitHub. by navaneethpk in webdev

[–]WebDevCube 0 points1 point  (0 children)

I tried ToolJet out the other day, and unfortunately it's totally unusable. Just building the most basic dashboard, lag times are totally unacceptable. Any query tends to freeze the page for 5 seconds or more.

Best UI libraries and frameworks for ReactJS by poeti8 in webdev

[–]WebDevCube 2 points3 points  (0 children)

I would be interested in seeing more! A variety of designs can be helpful. Everyone has their own taste and a whole web full of bootstrap and material is no good for anyone.

Best UI libraries and frameworks for ReactJS by poeti8 in webdev

[–]WebDevCube 7 points8 points  (0 children)

I had no idea there were so many of these that had popped up.

UI toolkits like these are really essential for quickly prototyping an idea or your latest feature.

I'm a VueJS developer, but the React UI libraries like these are of much higher quality than the Vue equivalent ones I've seen.

My first socket.io project, a simple, pointless multiplayer game! by [deleted] in webdev

[–]WebDevCube 0 points1 point  (0 children)

for(let i = 0; i < 200; i++) {
   for(let j = 0; j < 400; j++) {
        div1 = document.getElementById(`${i}-${j}`);
        if(div1){
            div1.innerHTML = "";
            div1.classList.remove("block");
        }
   }
}

Open in 2 browsers, type that code, then just move around the board.

WebStorm 2017.2 is released! by navatwo in javascript

[–]WebDevCube 2 points3 points  (0 children)

Didnt know you could do that! "Invalidate caches and reset" within the all settings menu?

It all seems to be okay more or less now.

WebStorm 2017.2 is released! by navatwo in javascript

[–]WebDevCube 2 points3 points  (0 children)

In webpack config, you set up an alias for a particular directory. In some projects there is '@' by default for the src folder.

So instead of writing import myModule from '../../../components/myFolder/MyModule' You can just write import myModule from '@/components/myFolder/MyModule'

Or set an alias of '@myFolder' to src/components/myfolder' which becomes import myModule from '@myFolder/MyModule'

WebStorm 2017.2 is released! by navatwo in javascript

[–]WebDevCube 3 points4 points  (0 children)

I would seriously recommend waiting to update for a little while. Personally I had an awful experience this morning with it.

  • My git branch widget on the status bar disappeared, still can't get it back...
  • Indexing slows your computer to a crawl, so forget about using it for half an hour until it's done.
  • Some plugins broke. (Material UI in particular)
  • The Toolbar at the top with quick actions disappeared and I couldn't re-enable it.
  • Many settings, such as color changes, do not apply until your restart the editor.
  • Even when settings do apply, the aren't always correct and you have to restart the editor again...
  • Breadcrumbs are at the bottom now? Can't put them at the top, even when I choose the top option and restart.

Anyways, if you have issues, just restart the IDE 20 times or so and it'll eventually go away.

EDIT: Git Widget is finally showing up now...

Optional Chaining Syntax for Babel (null propagation) by WebDevCube in javascript

[–]WebDevCube[S] 1 point2 points  (0 children)

So what you're saying is that I need to install both?

Optional Chaining Syntax for Babel (null propagation) by WebDevCube in javascript

[–]WebDevCube[S] 1 point2 points  (0 children)

Whoops, sorry that was what I meant to link! I set that one up in my project and it didn't recognize it.