Пікірлер
@mateoherrera1413
@mateoherrera1413 2 күн бұрын
my teacher suck explaining haha, thanks
@jinigenie1173
@jinigenie1173 4 күн бұрын
at 4'17", at one line there are several methods, you use some key strok to switch among those methods. Can you explain how to choose one among them?
@AneeshMistry
@AneeshMistry 4 күн бұрын
Hey, I am using the arrow keys on my keyboard to switch left and right amongst the methods. Then when one is highlighted (pink) I select step-into, the down facing arrow, to go into the method
@jinigenie1173
@jinigenie1173 4 күн бұрын
@@AneeshMistry thanks
@raymondli150
@raymondli150 9 күн бұрын
Dang these videos are so good I dunno why it has so little views
@AneeshMistry
@AneeshMistry 3 күн бұрын
Thank you so much!
@zahirulislam2097
@zahirulislam2097 9 күн бұрын
Very helpful videos. Thank you again. One thing I faced was mock object could not be created. I was getting: Unable to make protected final java.lang.Class java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int) throws java.lang.ClassFormatError accessible: module java.base does not "opens java.lang" to unnamed module Thank I had to add jvm argument: --illegal-access=warn --add-opens java.base/java.lang=ALL-UNNAMED
@loveyouself5389
@loveyouself5389 10 күн бұрын
Very useful, please upload more videos to test coroutines, flows and new android concepts.
@ShubhamSharma-sf8wk
@ShubhamSharma-sf8wk 11 күн бұрын
Just completed this course, it took me a week to complete But I'm a far better developer right now than I was a week before. Thanks much mate.
@AneeshMistry
@AneeshMistry 10 күн бұрын
Great to hear!
@randomdude4255
@randomdude4255 12 күн бұрын
I have tried at least 10hours of tutorials and none worked, this was my last hope and it didnt dissapoint me.... thank you veryyyyy much
@AneeshMistry
@AneeshMistry 10 күн бұрын
You're welcome!
@ashketchum3255
@ashketchum3255 16 күн бұрын
could you please explain the lamda function you used in 1:25:14?
@AneeshMistry
@AneeshMistry 15 күн бұрын
Hey, so whenever we call the assignScoreStats method on the chess player, we want to fix how the method behaves. So with the lambda, I am forcing that method to assign the chess player with 3 wins and 9 points
@ShubhamSharma-sf8wk
@ShubhamSharma-sf8wk 18 күн бұрын
Man I was so confused when I saw when and thenReturn in my org's code, thank you so much for this video. You saved me.
@AneeshMistry
@AneeshMistry 17 күн бұрын
I’m really glad it helped! Thank you!!
@gbh1998
@gbh1998 28 күн бұрын
Hi Aneesh, at line 30, you're comparing p.getName() == this.getName(). Are you trying to compare two strings to check if they are same references?
@VenkateshKalimuthu-in6ye
@VenkateshKalimuthu-in6ye Ай бұрын
please make more videos on Java Tips
@ekrarefaz8594
@ekrarefaz8594 Ай бұрын
Hey man a little late here, but I hope you're doing well. I loved the series and helped me adapt to my new work super fast!
@AneeshMistry
@AneeshMistry Ай бұрын
That’s so nice to hear! Thank you!!
@HenryLeu
@HenryLeu Ай бұрын
can you also make a video for REST API using Java ?
@AneeshMistry
@AneeshMistry Ай бұрын
Hi Henry, please check out my Spring playlist where we create a fullstack MEAN application
@princesskuruba2330
@princesskuruba2330 Ай бұрын
thank you it resolved my issue !!!
@AneeshMistry
@AneeshMistry Ай бұрын
Thank you!!
@nope7505
@nope7505 Ай бұрын
this was such a magneficent tutorial even if it was a little hard to follow your actions(bc you are so good at coding that you are superfast), thank you so much for this video
@AneeshMistry
@AneeshMistry Ай бұрын
Thank you so much. It’s so rewarding to hear it helped!
@wendywang1736
@wendywang1736 Ай бұрын
Wow, the video is really clear and at the right length and also easy to follow! Thanks Aneesh!
@AneeshMistry
@AneeshMistry Ай бұрын
Thank you so much for saying!
@damianalvarez5266
@damianalvarez5266 Ай бұрын
Hi,good evening ,a very usefull information , i have a question sir ,there is a way of hide and show graph in Matplotlib using the states of QCheckBoxs in Pyside?
@ajaybiswal1
@ajaybiswal1 Ай бұрын
Great video.Subscribed to your channel. Hoping to see great videos in future
@AneeshMistry
@AneeshMistry Ай бұрын
Thank you!
@rishiraj2548
@rishiraj2548 Ай бұрын
thanks
@Velcola
@Velcola 2 ай бұрын
Honestly one of the best Springboot tutorials I've found, good job mate
@AneeshMistry
@AneeshMistry Ай бұрын
Thank you so much!
@AlexWortmeier
@AlexWortmeier 2 ай бұрын
Hey, im pretty late to this, but big thanks :)
@AneeshMistry
@AneeshMistry Ай бұрын
Thank you!!
@Maharishi.
@Maharishi. 2 ай бұрын
This was the best tutorial i found so far for migration from the non-modular to modular system. But I have a problem in my case, i have external resources such as png files in a resources folder, but the problem is my worse directory structure, i have src/some.class src/program/someother.class and src/program/resources. I'm confused on what to do, can I just include that resources as a module, or something else is there in place for resources
@laynt00
@laynt00 2 ай бұрын
For those following the tutorial with Angular version 17 or greater there's no more a file called app-routing.module.ts, now it's called app.routes.ts. Also you will need to import the RouterModule to the header.component.ts so it will look like this: import { Component } from '@angular/core'; import { RouterModule } from '@angular/router'; @Component({ selector: 'app-header', standalone: true, imports: [RouterModule], templateUrl: './header.component.html', styleUrl: './header.component.css' }) export class HeaderComponent { }
@nope7505
@nope7505 Ай бұрын
i should have read your comment before attempting to recreate this app i spent like 10 hours trying to deal with all the errors bc of this app-routing.module file
@AneeshMistry
@AneeshMistry Ай бұрын
Thank you for sharing this!
@user-ij9vi6sn8g
@user-ij9vi6sn8g 2 ай бұрын
Your explanations are concise and easy to follow, could you please create a playlist for maven, multi module maven and various plugin, how to create maven plugins etc.
@blooming_saffron
@blooming_saffron 2 ай бұрын
This is great, exactly what I was looking for. Great quality, thanks a lot!
@AneeshMistry
@AneeshMistry 2 ай бұрын
Thank you so much for saying!
@user-hy5pu1tk5x
@user-hy5pu1tk5x 3 ай бұрын
Thanks Aneesh for making this tutorial
@AneeshMistry
@AneeshMistry 3 ай бұрын
Thank you!
@TheGhanashyam123
@TheGhanashyam123 3 ай бұрын
one of the easiest and great tutorials.
@AneeshMistry
@AneeshMistry 3 ай бұрын
Thank you!!
@JamesJ30t
@JamesJ30t 3 ай бұрын
Thanks!
@AneeshMistry
@AneeshMistry Ай бұрын
Thank you so much!
@JamesJ30t
@JamesJ30t 3 ай бұрын
@Aneesh Mistry - I noticed you did not use the annotations @Runwith or @PrepareForTest.
@rajashekarganiger3875
@rajashekarganiger3875 3 ай бұрын
This is for junit 4 or 5
@AneeshMistry
@AneeshMistry 3 ай бұрын
Junit 4
@garvisrobot9274
@garvisrobot9274 3 ай бұрын
Use .equals()
@anesushangwa7823
@anesushangwa7823 3 ай бұрын
thannks man with this mean stack tutorials l was little bit rust but now am back on the game ...... great job
@AneeshMistry
@AneeshMistry 3 ай бұрын
Thank you!
@anesushangwa7823
@anesushangwa7823 3 ай бұрын
@@AneeshMistry anytime 😊 man
@mahdiandalib186
@mahdiandalib186 3 ай бұрын
thx man, plz create more mean stack tutorials
@gehadqaki
@gehadqaki 3 ай бұрын
Thanks you for the super concise and clear explanation. I've actually been using a lot of these functions what was confused by the Java document terminology for different methods saying they accept consumer /predicate/ function etc., but this video has shown me that they're actually really simple!
@AneeshMistry
@AneeshMistry 3 ай бұрын
Thank you so much for saying!
@barreneric00
@barreneric00 3 ай бұрын
Sprit ful faith. Based mov. Mobjective
@anktmshr
@anktmshr 4 ай бұрын
Most underrated channel in the entire KZbin.
@AneeshMistry
@AneeshMistry 3 ай бұрын
Thank you! More python videos coming soon
@bloom6874
@bloom6874 4 ай бұрын
Hi, I have just started watching your video and would like to add one suggestion. Please use white background theme for your future videos as its hard to watch the video in day light. Hope you understand. :)
@AneeshMistry
@AneeshMistry 4 ай бұрын
Thank you, I will start using a mix of light theme going ahead
@jnayehsirine6222
@jnayehsirine6222 4 ай бұрын
I encourage every student who just started learning unit testing in java to kick start with this tutorial! great work Aneesh
@AneeshMistry
@AneeshMistry 4 ай бұрын
Thank you, it’s so nice to hear this!
@kristati
@kristati 4 ай бұрын
thanks for explaining this, easy to understand, do you have examples with the service layer, and customize behavior? also what about not checked exceptions?
@AneeshMistry
@AneeshMistry 4 ай бұрын
I would check out the around annotation for adding AOP for service layer methods. And for unchecked exceptions, we don’t usually want to handle these as they typically represent a failure in the application logic rather than an input or external factor
@navedpatel9718
@navedpatel9718 4 ай бұрын
it took 3-4 hours for me to complete a 26 min video
@AneeshMistry
@AneeshMistry 4 ай бұрын
Thank you for sticking at it, and completing the video. I would say it is expected to take longer to follow along the video than to watch it straight. Keep practicing and you’ll gain familiarity with the keywords and components of Angular
@navedpatel9718
@navedpatel9718 4 ай бұрын
if you say it is simple app so far i cant imagine what will you call complicated, my head spins after hearing DiaryEntry also what is happening for me it is difficult to understand , I followed you until the end , but didnt understood anything . Should I giveup on learning angular or web dev. is it really me who find this difficult ?
@AneeshMistry
@AneeshMistry 4 ай бұрын
Web development is certainly a difficult skill to pick up. I wouldn’t be discouraged, the more you practice the easier it gets. I can try explain a little better anything didn’t make sense? Otherwise there is fantastic documentation online for Angular
@veebxl
@veebxl 4 ай бұрын
Hi Aneesh, thank you so very much for this series!!! - It has opened my eyes so much about how Angular parts work and how to use tokens, authentication and middleware , basically - everything - I have started a year ago with tutorials and training on the job, but my much senior colleagues of course didn't have the time and the tutorials are nice, but too detailed and theoretical - this is a fast and efficient way to really jump into Angular and reactive forms. THANK YOU!
@AneeshMistry
@AneeshMistry 4 ай бұрын
What an amazing comment to read, thank you so much! This makes me really happy!
@veebxl
@veebxl 5 ай бұрын
Thanks
@AneeshMistry
@AneeshMistry 5 ай бұрын
Thank you so so much! I’m glad you could find this helpful. This has made my day!
@veebxl
@veebxl 5 ай бұрын
@@AneeshMistry No really , just a small token of gratitude - I am learning so much, the videos are clear, concise and fast - very helpful, thanks!
@Rob-J-BJJ
@Rob-J-BJJ 5 ай бұрын
good video buddy
@AneeshMistry
@AneeshMistry 5 ай бұрын
Thanks 👍
@HR-pz7ts
@HR-pz7ts 5 ай бұрын
You are so talented and underrated!
@AneeshMistry
@AneeshMistry 5 ай бұрын
Thank you so much 😀
@TM-jb8bw
@TM-jb8bw 5 ай бұрын
Thanks, please show a scenario then you use the extended functions and so.
@gnaneshv3899
@gnaneshv3899 5 ай бұрын
How to mock and set values in blobclient class and offer properties class?
@beth8able
@beth8able 5 ай бұрын
Thank you Aneesh for this wonderful video, it's very helpful!!! Well explained, love your examples, very concise and good! Thank you again!!! 5 stars/5
@AneeshMistry
@AneeshMistry 5 ай бұрын
Thank you so much!
@dariamusinova7113
@dariamusinova7113 5 ай бұрын
Thanks a lot, the most comprehensive video on youtube, watched like 3 other before this one... everywhere lots of unneeded information, unnecessary repetitions of useless information. Your video is exactly on the topic, nothing more, nothing else. Please make more videos of that kind :)
@AneeshMistry
@AneeshMistry 4 ай бұрын
Thank you so much!!
@shayannafees9936
@shayannafees9936 5 ай бұрын
best video... buddy.... just completed javascript html and css...started angular but don't know where to go...bcz i am a type of person who needs direction in every miunute. so what are your suggestion ???? how do i get familiar with angular???
@AneeshMistry
@AneeshMistry 4 ай бұрын
Hey! I would recommend learning node and express. These tend to go hand in hand with Angular as a web developer