Тёмный

Class Library Design: Building a Postman Clone Course 

IAmTimCorey
Подписаться 421 тыс.
Просмотров 10 тыс.
50% 1

Опубликовано:

 

25 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 27   
@cemkaya4448
@cemkaya4448 5 месяцев назад
Thanks Tim. Although I use MacOs, I still watch this series. I like your videos.
@shuba5173
@shuba5173 5 месяцев назад
Bu adam sayesinde gerçekten bir şeyler öğreniyorum.
@IAmTimCorey
@IAmTimCorey 4 месяца назад
I am glad they have been helpful.
@xpresspackage
@xpresspackage 4 месяца назад
First, time commenter long time viewer. Thank you for all you do. With how postman is right now, I need this in my life
@IAmTimCorey
@IAmTimCorey 4 месяца назад
You are most welcome.
@andergarcia1115
@andergarcia1115 5 месяцев назад
I've learned so much from this series, which is truly impactful like everything you do. It will definitely leave a lasting impression.
@IAmTimCorey
@IAmTimCorey 4 месяца назад
I am glad it was helpful.
@ElCidPhysics90
@ElCidPhysics90 4 месяца назад
Thanks for this new series. I really think WinForms is way underrated. Either that or WPF is way overrated. I understand some of the graphics needs with WPF but the simplicity of WinForms is just so awesome.
@IAmTimCorey
@IAmTimCorey 4 месяца назад
You are welcome.
@allergiecheck
@allergiecheck 4 месяца назад
Love this mini course! I am following along with a WinUI 3 app, which adds a little bit of challenge
@IAmTimCorey
@IAmTimCorey 4 месяца назад
Great!
@pt_trainer9244
@pt_trainer9244 4 месяца назад
Thank you Tim, I am going to be building a Vue ui and have it be a web app instead of WPF. Hoping to also add GraphQL support once im done
@IAmTimCorey
@IAmTimCorey 4 месяца назад
Thanks for sharing!
@ASHOK_162
@ASHOK_162 4 месяца назад
New Web Application After Docker Image container => Kubernetes deployment Can we access through URL?
@felixschneidenbach2422
@felixschneidenbach2422 5 месяцев назад
Hi Tim, what's your reasoning for putting the IsValidUrl method inside the ApiAccess class? Since all it does is check a string, shouldn't it be a static method in a separate utility class? Doesn't matter too much given the scope of this application of course, but I was curious since you kept emphasising setting the app up for future modifications.
@IAmTimCorey
@IAmTimCorey 4 месяца назад
Good question. It can be a bit of preference, but in this case I preferred to keep it with the rest of the API-type calls. Spreading things out without enough of a reason makes things more complex without also providing offsetting value. In this case, I don't anticipate using this method outside of when I'm calling an API, so it fits within the same class. Also, by not making it static, it can later access the logger.
@dennisw8263
@dennisw8263 3 месяца назад
Question. At 22:00, you added 2 more params to CallApiAsync, and I never see you remove them. At that point of course, my version won't build/run. Am I missing something?
@IAmTimCorey
@IAmTimCorey 3 месяца назад
I'm not sure what you mean by "I never see you remove them." I don't remove them. That's the new signature line for the method. As for your version not building, my guess is that you did something different from me. When I added the two new parameters, I also added default values for them. That way, you could call the method without specifying the values for them and it would still work. Did you not do that? Also, the order is important. You cannot have a parameter without a default value come after a parameter that does have a default value.
@dennisw8263
@dennisw8263 3 месяца назад
@@IAmTimCorey Thanks. I must have had a "senior" moment somewhere. Found missing "=true" in the IApiAccess file. No idea how that happened. Onward through the fog!!!
@giorgosfilippas259
@giorgosfilippas259 5 месяцев назад
Excellent Tim. I have finished the app and I ve put and another ui, blazor server. Can I share?
@IAmTimCorey
@IAmTimCorey 4 месяца назад
Not here, not yet, but you can show potential employers. Just make sure that the code is yours and not similar to mine. Otherwise it will do you a disservice.
@giorgosfilippas259
@giorgosfilippas259 4 месяца назад
@@IAmTimCorey OK. Ty!
@King-Merlin
@King-Merlin 4 месяца назад
👏🏾👏🏾👏🏾👏🏾👍🏾👍🏾👍🏾
@IAmTimCorey
@IAmTimCorey 4 месяца назад
Thanks!
@andywalter7426
@andywalter7426 5 месяцев назад
One question I have is when you said the portfolio items are never completed. I actually completed at least 20 portfolio items. I have at least 20 fully completed projects where its so perfect there is no room for improvement. These are things I actually even use myself.
@IAmTimCorey
@IAmTimCorey 4 месяца назад
I covered this before, and I believe I even mentioned it in this video: self-evaluation is an incredibly important part of being a developer. If you look at your work and say it is complete and it is perfect, you have not learned how to properly self-evaluate. Software is never perfect. Ever. If you think it is, you've are deceiving yourself. That needs to be your biggest point of focus, identifying how to better self-evaluate. Otherwise, you will not be able to become a good developer.
@AudioLomtik
@AudioLomtik 4 месяца назад
@@IAmTimCorey No source code is ever perfect, there is always room for improvement. However, zero-defect releases of significant features or projects is possible, and I believe should be the goal of all developers. My own definition of a zero-defect release is one where zero issues were found by internal QA team during testing, and zero issues reported by the end user audience during the first year of release. I would say it doesn't meet criteria for "significant" for purposes of this discussion if the user base is only a handful of users, or if the lines of source code is less than maybe 2000 lines, or if the app never underwent formal QA process, or if the user audience is too small to care or report bugs. Early in my career I thought I was pretty good (youthful hubris probably)... It took about 20-25 years of professional coding experience before I was able to consistently deliver zero-defect releases on features of considerable complexity and size. And even still I can go through the code on each one and sort of cringe and think to myself I could have done this or that better, even if it's something simple like I didn't communicate well enough in the code comments, etc.
Далее
Portfolio Preparation: Building a Postman Clone Course
30:56
Help Me Celebrate! 😍🙏
00:35
Просмотров 5 млн
How To Create Generics in C#, Including New Features
38:51
How ILogger works in C# | Custom Rolling File Logger
30:22
Background Jobs in ASP.NET Core
18:35
Просмотров 53 тыс.
Global Error Handling in C# Minimal APIs
13:59
Просмотров 16 тыс.
Help Me Celebrate! 😍🙏
00:35
Просмотров 5 млн