Wow. Easily the most complete demo of anything I’ve seen. Really love the way all of it came together. Definitely checking out this code. Thank you, thank you, thank you.
@thechrisgate3 жыл бұрын
Please put like the most complete demo of anything of all time !
@toddschavey67363 жыл бұрын
Another use of signalr I have used in a Blazor application is updating progress bars and status on the client for a long running process the user started. Something like what TurboTax does as it analyzes your tax data and shows animations and progress as goes thru various steps.
@stevehoff Жыл бұрын
This has been the main use case that I've found signalr to be great for.
@Erril_Ferndal Жыл бұрын
Exactly right, Blazor is a game-changer. 👍
@toddschavey67363 жыл бұрын
+1. Something to try next time: show the demo app first...then the code walk thru...
@toxic-tuning11 ай бұрын
Tried compiling the project from github. Doesn't see. To display anything after the loading screen
@mister_stadler Жыл бұрын
Thanks guys!
@bradygaster3 жыл бұрын
But it's still chat. :)
@MadeByGPS3 жыл бұрын
Fantastic video! Exactly what I needed :D
@naunihalsidhu2 жыл бұрын
David, What is the guidance on using Azure Managed SignalR Service with Blazor Wasm, would there be any benefit of using it with Blazor WASM Hosted Project ?
@MerrionGT63 жыл бұрын
Brilliant demo
@mtranchi3 жыл бұрын
hey hoss, thank you for this demo and the github. Good stuff, hope to see you on the Community Standups (CS) more often. And, to all the various CS's, imho, part of why this episode rocks is also the lack of questions that interrupt the flow from the presenter's mind to my mind. i understand the idea of being responsive to questions, but sometimes it's ridiculous: Recently watched a CS where the presenter had set up an hour's presentation and only got about 15 minutes of it done. And he prolly wasted 4 minutes of that 15 spinning his mind back up to where he was in order to continue. Me, i'm a dim bulb, could barely get back on his train of thought with him. like i said, i understand the idea of being responsive to questions. but there's got to be a better way. I mean, in in-person presentations, questions are most often saved for the end right? i most often watch ASP.NET CS, and i notice that often someone else in the chat will answer one's question, or Jon Galloway will answer it in the chat. However... youtube and twitch aren't really the ideal forum for CS presentations imo. The "chat" is just a... stream of consciousness of the viewers right? Like, no organization, just a time-stamped stream. You guys are Microsoft, unlimited resources (compared to most of us), surely you could set up something specific for all these CS's you publish. specifically, sure, have the chat stream, but have a separate questions stream too. You could get fancy then. Ideas off the top of my head: Questions could get upvoted, meaning a "good" question, i.e. a question a lot of people want to know the answer to, would bubble to the top. Another idea is that, for the questions that don't get answered during the live stream, you could automatically move them from the questions stream into the comments section (kinda like youtube both has "chat" and afterwards, "comments") after the stream so that others who watch it later can be given an opportunity to answer. i could get way more into what i'd like to see, but this is already a way too long comment. Overall though, love the community standups!! You guys rock!! And, thank you for all these great presentations :)
@davidpine73 жыл бұрын
Hi friend, this actually was a pre-recorded - to avoid questions. It's not a live show. We have different kinds of shows, for example the community standups are meant to be live and allow for answering questions live. With that said, this was an intentional non-live show. Does that make sense?
@mtranchi3 жыл бұрын
@@davidpine7 Ah. Chose the wrong vid to post this on. Still though, when the live shows have presenters on who've put together an hour long presentation, imo, there's gotta be a more unobtrusive way to handle the questions.
@sharafudeen47343 жыл бұрын
Wow.. great! Can I use for commercial purposes? :)
@davidpine73 жыл бұрын
It's open source, - MIT license
@danagle98772 жыл бұрын
Apparently the code at that github location is no longer good. There are features in the code not mentioned here (specifically TranslationService) which break the code. :( Other than that issue this seems cool.
@kamolhasanov92753 жыл бұрын
Thank for you. very nice
@aslanamca82253 жыл бұрын
Nice
@FluffyBearInSpace3 жыл бұрын
Shame of the javascript Interop
Жыл бұрын
Nice demo. But I don't get why this call is possible: _hubConnection.OnMessageReceived(OnMessageReceivedAsync) How can _hubConnection (and the compiler) know about interface IChatClient and is that call equivalent to: _hubConnection.On(OnMessageReceivedAsync)?