Codevolution

Codevolution

Tutorials on the latest tech in web development!

Пікірлер

  • @chesterxp508
    @chesterxp50823 сағат бұрын

    GoodJob!

  • @chesterxp508
    @chesterxp50823 сағат бұрын

    GoodJob!

  • @sunilband4649
    @sunilband4649Күн бұрын

    Anyone Coming from next 15 , the GET is not cached by default now

  • @nafiyashanu8329
    @nafiyashanu8329Күн бұрын

    I don't know what happened but whenever I go to the url localhost:3000/docs - it is showing not found error but other urls like localhost:3000/docs /route etc are working fine can anyone help me to resolve this issue.

  • @Chris-qg6kc
    @Chris-qg6kcКүн бұрын

    Excellent work, sir. Which mind map tool do you use, btw?

  • @1turiz
    @1turizКүн бұрын

    nice

  • @ahrorsulaymanov4072
    @ahrorsulaymanov4072Күн бұрын

    thanks

  • @chesterxp508
    @chesterxp508Күн бұрын

    GoodJob!

  • @chesterxp508
    @chesterxp508Күн бұрын

    GoodJob!

  • @chesterxp508
    @chesterxp508Күн бұрын

    GoodJob!

  • @chesterxp508
    @chesterxp508Күн бұрын

    GoodJob!

  • @srikanthg8006
    @srikanthg8006Күн бұрын

    Can we write code in TypeScript instead of JS?

  • @akintobiafeez4070
    @akintobiafeez4070Күн бұрын

    Thank you Vishwas!!!

  • @user-tv5vg5yb4g
    @user-tv5vg5yb4gКүн бұрын

    Great video, this finally explains the caching behavior in next.js for me.

  • @AnjaliSharma-lq8ut
    @AnjaliSharma-lq8utКүн бұрын

    such a beautiful feature in sveltekit

  • @saputrauta09
    @saputrauta09Күн бұрын

    10 seconds revalidator get executed instead of 20

  • @anasouardini
    @anasouardiniКүн бұрын

    BRO, you've been repeating the same thing in the last 3 videos

  • @10xGeneration
    @10xGenerationКүн бұрын

    I made it to the end! Fantastic tutorial! Continue your amazing and inspiring work! Subbed and Donated.

  • @chesterxp508
    @chesterxp508Күн бұрын

    GoodJob!

  • @DojoDyo
    @DojoDyo2 күн бұрын

    thank you sir

  • @derickasane8499
    @derickasane84992 күн бұрын

    I don't even know what to say,very intuitive and clear. Thanks sir

  • @penksvubalam3977
    @penksvubalam39772 күн бұрын

    how to run watch mode 6:01

  • @proton3773
    @proton37732 күн бұрын

    Thankyou.

  • @proton3773
    @proton37732 күн бұрын

    Thankyou

  • @kikish_sabina
    @kikish_sabina2 күн бұрын

    thank you for clarifying it!🤩🤩🤩🤩

  • @balajir391
    @balajir3912 күн бұрын

    I can’t able to see this user state in redux dev tool? Also while accessing user inside the component am getting error. Anyone facing this issue?

  • @daymenpasick7825
    @daymenpasick78252 күн бұрын

    Beautifully explained :O

  • @angelecg
    @angelecg2 күн бұрын

    Woow, very good explanation. Thanks!!!

  • @user-ss2rj4wz5s
    @user-ss2rj4wz5s2 күн бұрын

    I really don't understand why buttons should be rerendered. Their appearance doesn't change, behavior doesn't change.. It's not obvious

  • @mulkrajsingh834
    @mulkrajsingh8342 күн бұрын

    I'm getting error ``` /src/app/globals.css Module parse failed: Unexpected character '@' (1:0) > @tailwind base; ``` can anyone guide me?

  • @chesterxp508
    @chesterxp5082 күн бұрын

    GoodJob!

  • @chesterxp508
    @chesterxp5082 күн бұрын

    GoodJob!

  • @chesterxp508
    @chesterxp5083 күн бұрын

    GoodJob!

  • @chesterxp508
    @chesterxp5083 күн бұрын

    GoodJob!

  • @chesterxp508
    @chesterxp5083 күн бұрын

    GoodJob!

  • @chesterxp508
    @chesterxp5083 күн бұрын

    GoodJob!

  • @proton3773
    @proton37733 күн бұрын

    Thankyou So Much.

  • @shubhaverma5697
    @shubhaverma56973 күн бұрын

    Wow. Amazed by the content you provided in 7 minutes. I must have tried to learn about dynamic routes from so many resources, never quite understood it until now.

  • @fredconv
    @fredconv3 күн бұрын

    Hi thanks for the video How do you set a default value for a disabled field , and still wanting to pass this "fixed" value to the submitted datas ? (for example an email that you can not change anymore ? thanks

  • @arafatsbackup-data8027
    @arafatsbackup-data80273 күн бұрын

    Your teaching style is really awesome

  • @user-dl7bj4gl4i
    @user-dl7bj4gl4i3 күн бұрын

    after following every steps, in last when I m running the command "anshv-pokedex" in terminal. i m getting an error "The term 'anshv-pokedex' is not recognized as the name of a cmdlet, function, script file, or operable program." Anyone please Help...

  • @fernandojimenez508
    @fernandojimenez5083 күн бұрын

    When Installed it I didn't see any App.js file on my folder

  • @vinays6706
    @vinays67063 күн бұрын

    For those who are wondering It's quadratic. But it's not. The time complexity of the Merge Sort algorithm is O(n log n), where 'n' is the number of elements in the array. In Merge Sort, the array is recursively divided into halves until each sub-array contains only one element, which takes O(log n) time. Then, in the merging phase, each level of the recursion involves merging all the sub-arrays, which takes O(n) time in each level. So, overall, it takes O(n log n) time to split the array into halves and O(n) time to merge them, resulting in a time complexity of O(n log n) for the entire algorithm.

  • @roebucksruin
    @roebucksruin3 күн бұрын

    The square root trick is interesting, but does it actually optimize the function? The first instance where n % i === 0 will trigger the return statement, so all future loops will not run.

  • @user-rq9vo5kl8u
    @user-rq9vo5kl8u4 күн бұрын

    Is Middleware really a must in my react web app?

  • @AmirJabic
    @AmirJabic4 күн бұрын

    thank you bro / There are really few kind and compassionate people like you in the world

  • @nicolasdesclaux2779
    @nicolasdesclaux27794 күн бұрын

    Very good playlist ! All your explanations are clear, thanks a lot ! Just have one question, is there a reason of using arrow functions for components and declaratives function for pages ? Don't know if you already answered this question :/

  • @john-ve1hi
    @john-ve1hi4 күн бұрын

    Dashoard😩😩😩

  • @utkarsh-by9pl
    @utkarsh-by9pl4 күн бұрын

    is that possible to do like users can't see API calls in dev tools