Horrifically mangle that like and subscribe button
@catalyysst25 күн бұрын
Peer dependencies are stressing me out
@ShashankPandey-e8vАй бұрын
What's the meaning of Wanted version of packages?
@wixet17Ай бұрын
POG, thank u!!!
@waynemutai33412 ай бұрын
I still find myself coming back to this video. Very helpful
@itrrmp2 ай бұрын
I just don't get it why this loud music, I can barely hear you
@lannblade2 ай бұрын
This was super helpful!
@hackneythugg3 ай бұрын
4:30 LOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOL - Only a develper would understand!
@charliem17506 ай бұрын
You saved my life with this
@INFOSTOP-bx1bz7 ай бұрын
i would like to learn some Node App.js with you can i have you email to Connect?
@wickathou7 ай бұрын
"In the spirit of cowboy" Loved that
@martineboulanger8 ай бұрын
Explanations are good, but please if you explain something and you want to use you webcam too, face the webcam when you speak. It is just weird to look at your side profile
@AbcdEfgh-nq5bw8 ай бұрын
I tried to make git pushes going back date. Everything is fine but in the activity section, i can still see that commits are made recently. Is there any way to make those dates reflected in the activity section aswell?
@NP-id2pp8 ай бұрын
Thanks for your sharing a lot! Now my git graph so clean that help me get rid of all my ashame commit from my team repo
@faroukallani9829 ай бұрын
thanks a lot
@jackpitts55619 ай бұрын
I have two dependencies, one depends on another in series. Unable to update the higher dependency bc it asks for a previous version of the downstream dependency. It won't let me do both at the same time?? How to resolve this?
@caleyCodeLab9 ай бұрын
If the author of the higher dependency has not updated their package there's not much you can do. You can force it to use a newer version but it may not work. In that situation I'd advise sticking with the version spec'd by the higher dependency
@jamesmitchell198619 ай бұрын
Great video
@caleyCodeLab9 ай бұрын
Glad you enjoyed it
@TonicCantaloupe9 ай бұрын
Whats the process now in 2024, with the latest version of NextJS? Has anything changed?
@JRob869 ай бұрын
Yes!!
@ArminDaDee9 ай бұрын
Sempai, why GO? Big bucks on horizon?
@caleyCodeLab9 ай бұрын
Process of elimination, combined with desire to not enter a saturated language i.e. python. Big bucks guaranteed
@ArminDaDee9 ай бұрын
@@caleyCodeLabThank you. Great video as always! <3
@romko-romario9 ай бұрын
I like NextJS very much, but it's unbelievable how that have screwed up Webpack config, hiding css loader, sass loader, etc somewhere deeply and making their customizations impossible without weird crutches. Thanks for the video.
@TribalMaggot110 ай бұрын
Nice one! V helpful
@MrAswinprabhakar10 ай бұрын
🔥
@billardmelissa460811 ай бұрын
Thanks to you for that , very helpful 😉
@JunoYu-z3w11 ай бұрын
R u walton raiders?
@ngocthienvu7903 Жыл бұрын
i love it, it's so funny
@temattcha Жыл бұрын
i wish it was this easy :(
@tofiquekhanvlog Жыл бұрын
This is a fantastic way to resolve CLS score of using sliders websites. Keep it up 👍👍👍👍👍👍
@ferdousfahim2332 Жыл бұрын
while I am installing any npm, all the time I am facing this problem. (Some issues need review, and may require choosing a different dependency.) plz give me a solution
@ARGAMX Жыл бұрын
I just want to change the message for old commit. There also was Merges in that brach. And after I made steps from this video and new commit message printed. Git ask me to... RESOLVE CONFLICTS. WTF?? Ridiculous. So rebase is a wrong way for editing message.
@AbcdEfgh-nq5bw8 ай бұрын
Bro do you know how to make commits in back date? I have used a method but in the activity section, i could still see that commits are done recently. Can you help?
@ARGAMX8 ай бұрын
@@AbcdEfgh-nq5bw how about to turn off internet connection and change time and date on your PC before commit?
@pogirockz Жыл бұрын
Why does git rebase -i HEAD~3 showing all commits on my end? Do you have any idea?
@millicentwright9359 Жыл бұрын
'PromoSM'
@ghoniemcodes Жыл бұрын
TYYYY!
@AkashMore-f4h Жыл бұрын
Clean and concise. Huge thanks!
@ananyakashyap4759 Жыл бұрын
Thank you so much
@jamesmitchell19861 Жыл бұрын
This guy is great. Now he has his own website. Incredible.
@caleyCodeLab Жыл бұрын
🤣
@pbhalshankar5 Жыл бұрын
i really love your reaction on error ....Its never straight forward...never like that......😂😅
@ahmednasser4009 Жыл бұрын
Q1/15: Which choice is an incorrect way to define an arrow function that returns an empty object? In JavaScript, there are four ways to define an arrow function that returns an empty object: ``` () => {} () => { return { } } () => ({}) () => (({})) ``` The incorrect way to define an arrow function that returns an empty object is () => (({})). This is because the parentheses around the object are not necessary, and they actually create an anonymous function instead of an arrow function. The correct way to define an arrow function that returns an empty object is () => {}. This is because the arrow function returns an empty object literal, which is an object without any properties. The arrow function () => {} is correct because the function is based on an object, and it returns an object. The parentheses around the object are not necessary, but they are often used to make the code more readable. The {} in the arrow function is an object literal. An object literal is a way to create an object without using a constructor function. The object literal in this case has no properties, so it is an empty object. Why when we log () => {} in console that return undefined and explain we can use console.log(myFunc) to log empty function When you log () => {} in the console, it will return undefined. This is because the arrow function is not assigned to a variable. To get the expected output, you need to assign the arrow function to a variable. For example: ``` const myFunction = () => {}; console.log(myFunction); // {} ``` In this code, the arrow function is assigned to the variable myFunction. When you run the code, the value of the variable myFunction will be printed to the console. The reason why you can use console.log(myFunc) to log empty function is because the arrow function is added to the prototype of the window object when it is defined. This means that you can access the function using the dot notation. Maybe i'm wrong, after that comment you can reply to me. Finally i'm sorry because my comment is too long 😄
@Pistonheaddd Жыл бұрын
Thanks for the sand bg tune
@DeepakKhopade Жыл бұрын
great & short stuff, you saved my day, thanks.
@patitorodri Жыл бұрын
thanks mate, you are funny
@JoseRuiz-hs5mt Жыл бұрын
great video, couldn't find a good step by step process on stackoverflow or chatGPT but Caley came through with the clutch video
@Its_nirbhay_gupta_ Жыл бұрын
How are you so cool dude😅
@caleyCodeLab Жыл бұрын
I'm going to assume this is some dry sarcasm
@ayodejiatanda6197 Жыл бұрын
thank you! they need to fix their documentation 😂
@LajosUti Жыл бұрын
upgrading packages willy-nilly without running test suites to confirm the app still works? That's brave :)
@caleyCodeLab Жыл бұрын
🤣
@Elistotelis Жыл бұрын
Perfect explanation! Huge thx!
@datcodingguy Жыл бұрын
Very helpful video, thanks!!
@jamesmitchell19861 Жыл бұрын
Just emailed you about the mentorship. I’ve got a few specific issues I’d like to discuss. Looking forward to hearing from you. Keep making the videos. Love the skits at the start. The drink at the start. Absolutely classic. Sure most people will get the reference. Hilarious.