Dedicated Managers
Dedicated Managers
  • Видео 109
  • Просмотров 319 571
Zoom, Video & Voice Issues - The 2nd test to check your Real-Time communication problems
Typically when you have internet issues, you'll test your internet speed with an online tool. But speed tests aren't the whole story. Speed tests show an overall average and tell you how long it will take to download a movie.
But speed tests don't prove why you might be having problems with your real-time communications (i.e. Zoom Video, MS Teams, Skype or IP Phone call).
You need to run a 2nd test to show if your connection is having real-time issues. The second test is a "ping" test and can help you understand if you've got issues with "delay", "jitter" or "packet loss".
Chapters
--------------
00:00 Real-Time Communication Intro (w/ Silliness)
00:29 Logo Animation
00:35 Discuss 2 Tests
01:59 ...
Просмотров: 66

Видео

Auth0 - High Level Overview for Your Project Architecture
Просмотров 22 тыс.3 года назад
Auth0 is a 3rd party service you can plug into your application which helps you to rapidly implement login (authentication) and permissions (authorization). Auth0 handles your sign up forms and emails as well as your login forms. Signed Tokens are sent to your application which your app uses for authentication and authorization information. This video gives a high-level architectural overview o...
Vue CLI Scaffolded Application vs Vanilla Javascript / CDN Vue Application
Просмотров 7864 года назад
In this video I discuss how Vue gets mounted into the DOM (Document Object Model). I show how Vue CLI scaffolds out an application and relate it back to implementing a Vanilla Javascript so you can start to understand what all the tooling behind the Vue CLI application does for you. I show how Vue components are compiled from Vue CLI application's single file components.
How to Download and Install Microsoft Office 2019 Products Requested from TechSoup
Просмотров 61 тыс.4 года назад
In this video I show how to install Microsoft Office 2019 when a non-profit purchases the software trough TechSoup. The instructions to install Microsoft Office 2019 are different than in years past. The keys are still obtained through the Microsoft Volumen Licensing Center (VLSC), but the software is now downloaded and installed using the Microsoft Office Deployment Tool. The Microsoft Office ...
Microsoft Office Deployment Tool - Really Bad Error Message
Просмотров 56 тыс.4 года назад
While deploying Microsoft Office 2019 using the Microsoft Office Deployment Tool, I accidentally input the wrong configuration file name. The error that was reported by the tool had nothing to do with the actual error and therefore it took me entirely too long to solve the problem and complete the install. The Microsoft Office Installation Tool error returned a window that stated, "Couldn't ins...
Cloudways Managed Cloud Hosting Platform: Caching Systems
Просмотров 3415 лет назад
👉🏼 Use this LInk to get a $15 credit on your Cloudways account as soon as you sign up: 🔗 vrlps.co/xWjSlse/cp 🔗 Recently I had a server get hit with about 1000 visitors in a short period of time. The average page load time skyrocketed to 36s which showed the server couldn't handle the load. I needed to better understand Cloudway's various caching mechanisms to verify they were working properly. ...
2.1 Client Types - Understanding OAuth 2.0 Directly from the IETF RFC 6749 Specification
Просмотров 1735 лет назад
In this video, I discuss the "Confidential" and "Public" Client Types in the 0Auth 2.0 IETF 6749 specification. Confidential client types are those that can maintain the confidentiality of their credentials, like a server-based application. Public client types are those that have exposure for a hacker to be able to extract "secret" or confidential information. This would be a native application...
1.5 Refresh Token - Understanding OAuth 2.0 Directly from the IETF RFC 6749 Specification
Просмотров 1625 лет назад
In this video discuss section 1.5 "Refresh Token" of the OAuth 2.0 Specification (IETF RFC 6749). tools.ietf.org/html/rfc6749#section-1.5 I discuss how refresh tokens used to obtain new access tokens when an access token has expired. Refresh tokens are only used with an Authorization server, they are never sent to a Resource server. Also, the "Implicit" grant type cannot get a refresh token bec...
1.4 Access Token - Understanding OAuth 2.0 Directly from the IETF RFC 6749 Specification
Просмотров 2615 лет назад
In this video discuss section 1.4 "Access Token" of the OAuth 2.0 Specification (IETF RFC 6749). tools.ietf.org/html/rfc6749#section-1.4 I discuss how access tokens are credentials that replace the usage of username and password. This allows a resource owner (usually a person) to allow a 3rd party to access a resource they own. I relate this back to the Google Drive example. I discuss how the a...
1.3.4 Client Credentials Authorization Grant - Understanding OAuth 2.0 Directly from IETF 6749 Spec
Просмотров 2905 лет назад
In this video, I cover the Authorization Grant - 1.3.4 Client Credentials section of the IETF RFC 6749 Specification, "The OAuth 2.0 Authorization Framework". tools.ietf.org/html/rfc6749#section-1.3.4 Twitter uses the OAuth2.0 Client Credentials specification to authenticate a client (application) that needs to access public information via the Twitter API. This video is part of a playlist seri...
1.3.3 Resource Owner Password Credentials (Authorization Grant) - OAuth2.0 from IETF 6749
Просмотров 2065 лет назад
In this video, I cover the Authorization Grant section 1.3.3 Resource Owner Password Credentials section of the IETF RFC 6749 Specification, "The OAuth 2.0 Authorization Framework". tools.ietf.org/html/rfc6749#section-1.3.3 This video is part of a playlist series of videos on the OAuth2.0 (IETF RFC 6749) specification: ruclips.net/p/PLjuQOVlnQv2UUmUuq_ZuwFyVEXanuGh9v
1.3.2 Implicit (Authorization Grant) - Understanding OAuth2.0 Directly from the IETF RFC 6749 Spec
Просмотров 1835 лет назад
In this video, I cover the Authorization Grant section 1.3.2 Implicit section of the IETF RFC 6749 Specification, "The OAuth 2.0 Authorization Framework". tools.ietf.org/html/rfc6749#section-1.3.2 The implicit grant type is a simplified grant type to be used with clients that cannot authenticate themselves. This would typically be how a front end javascript application like VueJS or ReactJS wou...
1.3.1 Authorization Code (Authorization Grant) - Understanding OAuth2.0 Directly from IETF 6749 Spec
Просмотров 2655 лет назад
In this video, I cover the Authorization Grant section 1.3.1 Authorization Code section of the IETF RFC 6749 Specification, "The OAuth 2.0 Authorization Framework". tools.ietf.org/html/rfc6749#section-1.3.1 The Authorization Code Grant is used when a client can authenticate itself with the resource server. This is the most secure of the authorization grant types. This video is part of a playlis...
1.2 Protocol Flow - Understanding OAuth 2.0 Directly from the IETF RFC 6749 Specification
Просмотров 2495 лет назад
In this video I blast through the Protocol Flow section of the IETF RFC 6749. It's a very abstract section and very hard to understand. When I first read it I was completely confused and nearly gave up on trying to read the specification because it didn't relate at all back to what I was doing in the real world with Auth0 and VueJS. So watch this video just to hear some terminology and don't gi...
1.1 Roles - Understanding OAuth 2.0 Directly from the IETF RFC 6749 Specification
Просмотров 3925 лет назад
In this video, I cover the Roles section of the IETF RFC 6749 Specification, "The OAuth 2.0 Authorization Framework". tools.ietf.org/html/rfc6749#section-1.1 I think this is the most important section to understanding the OAuth2.0 spec. I talk about the major roles "resource owner", "resource server", "client" and "authorization server" and try to relate them to an actual website instance. Most...
1. Introduction Section - OAuth 2.0 Directly from the IETF RFC 6749 Specification
Просмотров 4815 лет назад
1. Introduction Section - OAuth 2.0 Directly from the IETF RFC 6749 Specification
0. Overview - Understanding OAuth 2.0 Directly from the IETF RFC 6749 Specification
Просмотров 1,8 тыс.5 лет назад
0. Overview - Understanding OAuth 2.0 Directly from the IETF RFC 6749 Specification
18 Exploring Auth0, JSON Web Tokens, Signature Validation, JWKS, RS256, HS256, OpenID, Encryption
Просмотров 5 тыс.5 лет назад
18 Exploring Auth0, JSON Web Tokens, Signature Validation, JWKS, RS256, HS256, OpenID, Encryption
17. User Interface and Services Layer - More Pieces to the VueJS/Auth0 Project Puzzle
Просмотров 8705 лет назад
17. User Interface and Services Layer - More Pieces to the VueJS/Auth0 Project Puzzle
16. Adding Auth0 Logout function to fully log the user out of the VueJS Javascript Application
Просмотров 1,6 тыс.5 лет назад
16. Adding Auth0 Logout function to fully log the user out of the VueJS Javascript Application
15. Handling the Auth0 Callback and Completing the Login Process in VueJS using Javascript
Просмотров 3,6 тыс.5 лет назад
15. Handling the Auth0 Callback and Completing the Login Process in VueJS using Javascript
14. Loading Auth0 Javascript sdk, Configuring Auth0 object, Dispatching Login from VueJS component
Просмотров 1,7 тыс.5 лет назад
14. Loading Auth0 Javascript sdk, Configuring Auth0 object, Dispatching Login from VueJS component
13. Changing the User Interface Based on Authentication State using VueJS Vuex
Просмотров 1,9 тыс.5 лет назад
13. Changing the User Interface Based on Authentication State using VueJS Vuex
Windows 10 Productivity Tip: Take Screenshot & Paste Directly Into Apps
Просмотров 265 лет назад
Windows 10 Productivity Tip: Take Screenshot & Paste Directly Into Apps
How to install FREE SSL Certificate on cPanel using WHM autoSSL (Comodo / Sectigo / Let's Encrypt)
Просмотров 6 тыс.5 лет назад
How to install FREE SSL Certificate on cPanel using WHM autoSSL (Comodo / Sectigo / Let's Encrypt)
Multi-Camera Syncing & Editing In Adobe Premiere - 4 Camera Angles (Segmented Files) & 6 Mic Tracks
Просмотров 1235 лет назад
Multi-Camera Syncing & Editing In Adobe Premiere - 4 Camera Angles (Segmented Files) & 6 Mic Tracks
12. Configuring Vue Routing Logic for Authentication in router.beforeEach
Просмотров 8 тыс.5 лет назад
12. Configuring Vue Routing Logic for Authentication in router.beforeEach
11. Adding "meta" Information to Pages that Require Authorization
Просмотров 2 тыс.5 лет назад
11. Adding "meta" Information to Pages that Require Authorization
10. Adding VueJS Login Page & Logout Button & Hard Coding Vuex/Global Authorized Flag
Просмотров 4 тыс.5 лет назад
10. Adding VueJS Login Page & Logout Button & Hard Coding Vuex/Global Authorized Flag
7. Implementation Steps for Adding Auth0 to the VueJS Project
Просмотров 2,3 тыс.5 лет назад
7. Implementation Steps for Adding Auth0 to the VueJS Project

Комментарии

  • @najamkhan2791
    @najamkhan2791 6 дней назад

    I like the way you describe things with a humor twist. By any chance, do you have that high-level drawing?

  • @ahmedmouad344
    @ahmedmouad344 25 дней назад

    Thank you so much it's really helpful but i really suggest visiting therapist ASAP xD

  • @MADARSAAAISHASIDDIQA2005
    @MADARSAAAISHASIDDIQA2005 26 дней назад

    Thanks you

  • @user-wn9xm8jz3r
    @user-wn9xm8jz3r Месяц назад

    i also want to know

  • @PiSPiszczekiScibor
    @PiSPiszczekiScibor 2 месяца назад

    Do thnik about do this same but in 2024?

  • @ChinmayAgrawal3344
    @ChinmayAgrawal3344 3 месяца назад

    Thanks Bro you are a Life Saver!

  • @azddineen5500
    @azddineen5500 3 месяца назад

    Big thanks for the helpful video! Installed the Microsoft Office Deployment Tool

  • @chris4321das
    @chris4321das 4 месяца назад

    Excellent info, and I do appreciate the humor! 😂😂🤣🤣🤣🤣

  • @user-kl3bv4uw9y
    @user-kl3bv4uw9y 4 месяца назад

    Thats the reason why you show extensions in explorer, or use autocomplete in CMD

  • @devops-sushi5534
    @devops-sushi5534 5 месяцев назад

    Haha i love your brain mash humour :D

  • @angellalo1
    @angellalo1 5 месяцев назад

    Exclene amigo a pesar de estar en otro idioma me ayudaste mucho

  • @vladislavkuba5837
    @vladislavkuba5837 5 месяцев назад

    you safe my life

  • @heheiable
    @heheiable 6 месяцев назад

    Awesome video, congrats!

  • @AbdullahAlMuzaki-wu1fp
    @AbdullahAlMuzaki-wu1fp 6 месяцев назад

    Anw, i saw some link in your diagram image. Can we have that? So we can learn more deep dive

  • @AbdullahAlMuzaki-wu1fp
    @AbdullahAlMuzaki-wu1fp 6 месяцев назад

    Super crystal clear explaination

  • @larryjeff
    @larryjeff 6 месяцев назад

    Ayo bro thanks, took me like 5 minutes with your explanation its straight to the point

  • @epeleg
    @epeleg 6 месяцев назад

    possibly the title is a bit of an exaggeration...

  • @edsonphilippe58
    @edsonphilippe58 7 месяцев назад

    It's not confusing to me since I have watched all of the previous one. I will take time to read the document myself now that you have explained it.

  • @edsonphilippe58
    @edsonphilippe58 7 месяцев назад

    Thank you so much my man. Cleared out so much things for me. The Ajax explanation really solidify my understanding of client. I tried to understand the subject on my own and after watching this video, it really clicked. Nice diagram and easy to follow.

  • @evgeniisharaborin8071
    @evgeniisharaborin8071 7 месяцев назад

    Thank you very much ! It is a great job! where can I download this super informative graph?

  • @edsonphilippe58
    @edsonphilippe58 7 месяцев назад

    Great video.This video close many gap in my understanding. Your explanation with the source material makes it easier for me to go ahead and read it myself.

  • @user-lx1nx2ei8z
    @user-lx1nx2ei8z 7 месяцев назад

    Great video! can I ask why the "Redirection URI" need to be sent in step(D)?

  • @Furgorocho
    @Furgorocho 7 месяцев назад

    Thank you bro!

  • @krishnajoshi364
    @krishnajoshi364 8 месяцев назад

    Great video!!!! Thank you so much for sharing it. Could someone please share the subsequent video links ? Thank you in advance :)

  • @sebasbiker27
    @sebasbiker27 9 месяцев назад

    You are a rockstar my man, thanks for helping.

  • @systemforge
    @systemforge 9 месяцев назад

    OMG.. u r amazing...

  • @Sam_trik_ster
    @Sam_trik_ster 9 месяцев назад

    thanks man!!!!

  • @eduardodavidbriteztindel9841
    @eduardodavidbriteztindel9841 10 месяцев назад

    despues de pasar dos dias buscando solucionar el error encontre tu video y fue el unico que pudo ayudarme, te agradezco un monton

  • @pssa3215
    @pssa3215 11 месяцев назад

    MICROSOFT IS TRASH AND ITS PRODUCTS ARE ALL TRASH TOO

  • @LeenaBora
    @LeenaBora 11 месяцев назад

    Best Series on OAuth. You have cleared all my doubts... Thanks a lot! Looking forward for content on different topics

  • @jamaicanbullet
    @jamaicanbullet Год назад

    I dont comment often but I must come here to commend you for clearing this up. I was banging my head on this. Not all heroes wear capes.

  • @gahsimps540
    @gahsimps540 Год назад

    Thank you!

  • @codytownley5236
    @codytownley5236 Год назад

    Greatly appreciate how you explain and walk through the code! Well done! Subbed

  • @basdfgwe
    @basdfgwe Год назад

    8 min video, but I'm loving it. thanks

  • @basdfgwe
    @basdfgwe Год назад

    Yeah likewise, I've implemented a number of applications using Oauth but I never really understood it. Thanks for putting this together.

  • @yelmoroma
    @yelmoroma Год назад

    Gracias , luego de 3 horas di con tu vídeo y Wualaaah ;)

  • @RiponPublicLibraryWI
    @RiponPublicLibraryWI Год назад

    Running into the same problem but the file names are correct. Used the same files and configuration on 8 Windows 10 PCs, now failing on Windows 11. Any ideas? EDIT: there's a newer version of the ODT setup file, the one we had was not compatible with Windows 11, apparently.

  • @peirdenaasem
    @peirdenaasem Год назад

    Wow man, you have some issues. Good tutorial ;)

  • @tadiwoskebede3798
    @tadiwoskebede3798 Год назад

    thank you!!

  • @Secretsauceeee
    @Secretsauceeee Год назад

    I tried this steps but I'm still getting the same error

  • @abdulwadoodsyed4436
    @abdulwadoodsyed4436 Год назад

    This guy is like if Michael from the office worked in tech.

  • @judeveraturda
    @judeveraturda Год назад

    Where's the import part?

  • @adriandemir7699
    @adriandemir7699 Год назад

    what are those disgusting things bro

  • @navk1000
    @navk1000 Год назад

    Thank You Sir

  • @clipsmoviesbrazil2210
    @clipsmoviesbrazil2210 Год назад

    Thanks, this really helped me!

  • @juliandrios111
    @juliandrios111 Год назад

    Thanks fot the help! Your videos still very helpful

  • @TheGodBrand
    @TheGodBrand Год назад

    3 years later and your videos are amazing 🎉

  • @TheGodBrand
    @TheGodBrand Год назад

    Greatest opening ever 😂

  • @matthewcragg3607
    @matthewcragg3607 Год назад

    Get rid of the little acting bits. They do nothing for the video other than distract. Otherwise the video is superb.

  • @yoklug
    @yoklug Год назад

    Thank you so much. Great tutorial.