← Инструктор
И

Инструктор

26 цитат из наших статей · нажмите, чтобы открыть статью-источник
Автор курса по ASP.NET Core
«
Использование async/await в контроллере позволяет серверу не блокироваться во время тяжелых запросов к базе данных.
30:45 · Создание профессионального веб-приложения на ASP.NET Core MVC
«
that's actually the recommended way stripe payments are done
1:51:28 · Создание профессионального веб-приложения на ASP.NET Core MVC
«
If the document.user ID is not equal to the to the user that is currently logged in the application then we're we're going to return a not found page
1:05:16 · Создание профессионального веб-приложения на ASP.NET Core MVC
«
As soon as we hover over the item so the whole div we want to access this item title and the same thing is for the item button
2:24:15 · Создание профессионального веб-приложения на ASP.NET Core MVC
«
Всегда визуализируйте. Вы можете узнать больше о своих данных, просто визуализируя их. Вы никогда не сможете узнать достаточно о своих данных.
2:04:08 · Vision Transformer: полный цикл обучения нейросети на PyTorch
«
Свертка будет походить по изображению и извлекать пространственные признаки.
47:52 · Vision Transformer: полный цикл обучения нейросети на PyTorch
«
Unless there is a specific use case for registering a component globally, you should always opt for registering them locally as compared to the global registration.
3:12:39 · Эволюция Vue.js: от Options API к Composition API
«
The props that you receive here are read only. Only the parent who owns those properties can update them.
3:35:19 · Эволюция Vue.js: от Options API к Composition API
«
getters are basically computed props in a component and purpose is to return a computed value based on the store's current state. and actions are similar to methods in your component or function, but their main purpose is to mutate the stores data
6:42:47 · Эволюция Vue.js: от Options API к Composition API
«
Access и Refresh токены являются HTTP-only куками, а ID токен доступен клиентскому коду для чтения данных пользователя.
02:06:28 · Анатомия безопасности: как защитить веб-приложение с AWS Cognito
«
Мы используем поле cognito:groups в payload токена, чтобы определить, является ли пользователь администратором и какой уровень доступа ему предоставить.
02:11:39 · Анатомия безопасности: как защитить веб-приложение с AWS Cognito
«
Workflow with Google... is exactly same as with Cognito user pool or any other identity provider: first client will talk to Google to get ID token and once it have ID token it will use that ID token to talk to Cognito identity pool.
3:16:57 · Анатомия безопасности: как защитить веб-приложение с AWS Cognito
«
back propagation is the actual process of computing the gradients to understand how much a change in the loss function is there when we are changing the model parameters and then the output of the B propagation is simply used as an input for the gradient descent
78:42 · Анатомия нейросетей: фундаментальный гид по теории глубокого обучения
«
Макрос loop настолько эффективен, что вам не нужны другие виды циклов, хотя он может показаться «не-лисповским» из-за отсутствия скобок.
2:59:16 · Код как данные: почему Common Lisp опережает время
«
Lisp — динамический язык, но если мы предоставим информацию о типах, компилятор сможет реально улучшить производительность.
3:00:36 · Код как данные: почему Common Lisp опережает время
«
The true beauty of Firebase lies in its simplicity and power making app development accessible to everyone
3:58:21 · От верстки до Firebase: пошаговый гид по веб-разработке с ChatGPT
«
local storage is a browser feature that allows a site to store some data in the browser which it can use again and again when you revisit the site
4:27:15 · От верстки до Firebase: пошаговый гид по веб-разработке с ChatGPT
«
we haven't even saved the model... it's actually the pipelines over there
3:00:17 · MLOps: от разработки моделей до автоматизированного деплоя
«
Если вы хотите иметь дело с PyTorch, ваши данные должны быть тензорами.
26:13 · Практический гид по PyTorch: от таблиц до BERT
«
Basically it is just a function that runs in the middle between the request and response.
01:26 · Полный цикл разработки MERN-приложения с нуля
«
Поскольку это бесплатный тариф, сервис становится неактивным через 15 минут простоя. Если вы не заходили на сайт в течение этого времени, при следующем визите загрузка займет около одной минуты.
03:30 · Полный цикл разработки MERN-приложения с нуля
«
Using VAR too much might hurt the readability of your code in the future...
38:02 · Мастерство C#: как писать чистый, надежный и структурированный код
«
The use of TryParse in every program is very essential because if you have a fatal exception then your program will close and you will lose all the data.
1:59:06 · Мастерство C#: как писать чистый, надежный и структурированный код
«
The whole point of DRY is so you don't have multiple sections of code that do basically the same thing.
4:30:10 · Мастерство C#: как писать чистый, надежный и структурированный код
«
Exceptions are used to prevent your code from crashing and then the program closes down.
6:01:06 · Мастерство C#: как писать чистый, надежный и структурированный код
«
Keeping everything wrapped inside the class is the best way forward in most case scenarios.
7:21:56 · Мастерство C#: как писать чистый, надежный и структурированный код