The GitHub links referenced are: 1. github.com/Azure-Samples/netaivideoanalyzer 2. github.com/Azure-Samples/netaiTrafficJamAnalyzer
@r1pfake5218 күн бұрын
You can preview the generated code in your project under Dependencies -> Analyzers -> YourSourceGeneratorName but it's a bit buggy, because if you change the code of the source generator, then this will still show the old code until your restart VS, which is very annoying. Also if you use git, it will show a red "ignored" icon, which could be confusing because you think "why is my generator ignored?" but it is actually not related to the generator, just git, so it just means your generator will still run, but the generator files will be ignored by git.
@arnabmondal559623 күн бұрын
This is Logic app tutorial but not Integration per se
@san_lowkeyАй бұрын
When is the book being published?
@mnavidadlares95193 ай бұрын
Thank you for your informative presentation. I was particularly interested in your discussion of GeoBlazor and C#. Could you elaborate on the advantages of this approach compared to using React and Esri JavaScript 4.x? While I understand that React is responsive and can be displayed on mobile devices, I am curious about the specific benefits offered by GeoBlazor and C# in this context
@kaytan_patel4 ай бұрын
This was great presentation.
@5ROC4 ай бұрын
Excellent ! thanks for the demo Carl
@waleedbensumaidea39476 ай бұрын
Thank you so much Sam Nasr for sharing this great show
@ahmadalmasri44168 ай бұрын
rich demo, really appreciate your efforts Steve. thank you guys
@kevinalwell37899 ай бұрын
Awesome session. Thanks Abir!
@maju64069 ай бұрын
Thanks for posting Sam! It was pleasure discussing Copilot with you and the rest of the user group!
@SamNasrMVP9 ай бұрын
Thanks for presenting Abir, welcome back anytime
@robcambr10 ай бұрын
could you share the source code if you still have it? thanks very much!
@aurimasrutkauskas767610 ай бұрын
AMAZING video! Do you have video on how to create your own custom gpt for your own files? Free version and paid?
@jasonsouza1817 Жыл бұрын
Hello
@jcjc5702 Жыл бұрын
Can I come even if Im not in cleveland
@SamNasrMVP Жыл бұрын
Of course, we have attendees from all over the world, literally.
@johannesschmidt8611 Жыл бұрын
Is it possible to copy single elements like a table or some text? All I can do is to copy ALL text at once but not a single item. And there seems to be no option for tables?
@samgomez4600 Жыл бұрын
I'm assuming you are trying to copy content in Document Intelligence Studio? If so, you should be able to select the table and do a regular copy paste. Feel free to reach out directly and we can look at your specific scenario.
@ivcbusinesssystems6613 Жыл бұрын
*Every Microsoft person doesn't seem to realize that in the real world, SSR is intended to be interactive!* Why can't you simply say that SSR is interactive if you use javascript? *SSR is perfect for those of us who don't want to throw away all of our javascript code!* We can get all the interactivity needed with JS!
@peymanebrahimi7756 Жыл бұрын
Great. I learnt something new.
@stonyhillsoftware6775 Жыл бұрын
Great talk! Always important to remember we code to please humans, not compilers, frameworks, etc.
@duprleo1 Жыл бұрын
Had a Great time with the group. !!! Thanks for having me!!!
@gsestream Жыл бұрын
diy ion 3d printer-separator-microscope would be better in all cases
@mister_stadler Жыл бұрын
Anyway, a lot of truth was said here...thanks a lot for sharing, because what is presented in the videocasts is the enchanted world of Alice. This technology will be excellent when it is fully mature. I am using it, but many questions need to be answered before using the technology to its full potential.
@haroldespinoza42342 жыл бұрын
Love the videos!!! Get to the top FAST - *promosm* !
@rezabeha98542 жыл бұрын
Thank you; this is an excellent intro.
@alessandrawhite_2 жыл бұрын
🎉Congrats on a very fine presentation, David!! So this was “that” presentation you were working on in Creative Work Hour? 👏🏼👏🏼👏🏼 I love hearing a bit of your story. Fast action!!
@dave00772 жыл бұрын
Yes! This was my first presentation that was not purely technical. I found (and still find) it difficult to express what helped me 'get good at Azure' in a way that might help others. I barely absorbed enough creativity from CWH to get it done. :)
@dave00772 жыл бұрын
Hi, this is David, thanks for watching this! I'll be working on -removing the filler words from my speaking 🤣 -reading out the chat questions and comments out as I respond to them.
@george66792 жыл бұрын
𝓹𝓻𝓸𝓶𝓸𝓼𝓶
@AleksandarIvanov692 жыл бұрын
Thanks! 😊
@cmucodemonkey2 жыл бұрын
I'm glad this recording turned out. After all the technical difficulties I was a little worried!
@ronaldellison61392 жыл бұрын
þrðmð§m 😘
@persiabudi15553 жыл бұрын
how to use Maui Scrollview orientation = "Both"?
@ankitgupta2oct3 жыл бұрын
Very nice presentation.
@asterioskatsifodimos87193 жыл бұрын
Excellent description of the ACID 2.0 properties, easy to follow and right to the point. Thanks Michael!
@johnnybravohonk69643 жыл бұрын
41:57 - interesting stuff starts here It could be more "pragmatic" - if there would not be explicit dependency on RavenDB client in the tests - if the tests would verify something that is actually possible to break - if we would express validation rules declaratively (with attributes on model or DTOs) - if non-unique name would result in sending 409 (Conflict) since request is actually correct Overall I would argue these tests have little to no ROI anyway, unless you want to accept random contributions. After 10y of development I realized tests (except synthetic/e2e) are usually a code smell for anything except utilities, helpers or calculations.
@amitzohar31073 жыл бұрын
Great video! 2 things: 1. regarding your conversation about the AlbumWithArtistName view and about the fact that the Album class has a Name property that is set to the album's artist name and how this isn't clear to whom is reading this code, well i have a solution. rename the property from Name to ArtistName and define the property's db column name to: "Name". also add a comment that explains what's going on. here's the modified code in the Album class. i've tested it by running the flexible-entity-mapping project and it works great: // getting the artist name of this album using the AlbumWithArtistName view. [Column("Name")] public string ArtistName { get; set; } 2. this is for Chris Woodruff. the DB scripts from the ChinookDatabase github repository don't match the models in the EFCore5Demos github repository. for example the code's models' primary key property is called "Id" while in the db scripts they are called: <the class name>+"Id" (e.g. AlbumId). in addition, the script to create the AlbumWithArtistName view is missing. it would be great if you can update the db scripts or/and the code's models to be in sync, plus add the script for creating the AlbumWithArtistName view. thanks.
@amitzohar31073 жыл бұрын
i would also add that the way that the new AsNoTrackingWithIdentityResolution() method was explained seems wrong to me. its purpose is to not return duplicate objects, even duplicates between related data of different objects. it's best to explain this with an example. we have 2 rows in the Author table and 1 row in the Book table. the 2 authors are that book's authors. the Author class has a list of Books written by that author. when we get the authors and their books using a regular query (with tracking), identity resolution is performed. meaning only 1 book object is created. this is so that if we update the book's details and save changes only it will be changed in the db. when we get the authors and their books using AsNoTracking(): no tracking is made but also no identity resolution. this means 2 book objects are created (one for each author), that contain the same data. so what if we want no tracking but also no duplicates. well this is where AsNoTrackingWithIdentityResolution() comes in. it will not track the returned objects but will remove duplicates. in our example only 1 book object will be created. so what is its disadvantages? it's slightly slower than AsNoTracking(). so when would you use it? when you know that your query will fetch many duplicates between related data of different objects, and it's more important to reduce memory usage than gain speed. example: we want to fetch all the movies and their list of actors without tracking. in such case there will be many different movies that will have the same actor, thus if we'll use AsNoTracking() many duplicate Actor objects will be created. if "Brad Pitt" appeared in 5 fetched movies, then 5 Actor objects will be created with his data. in such case it's best to call AsNoTrackingWithIdentityResolution() so that our app will allocate much less memory. but it depends what is more important to us. speed or memory usage. we can compare the speed and memory usage of using AsNoTracking() and using AsNoTrackingWithIdentityResolution() and decide whether the performance benefits of AsNoTracking() is worth the extra memory our app uses on a case by case basis. for some queries the answer will be yes, and for other queries: no.
@ChrisWoodruff3 жыл бұрын
Thanks and I will get to the updates on the Chinook database scripts. The files are updated for the assets in the restore/ folder. Also thanks for the other feedback.
@cmucodemonkey3 жыл бұрын
Thanks for filling in for me Joe!
@yusuken643 жыл бұрын
thanks for sharing, I missed this meetup
@cmucodemonkey4 жыл бұрын
I used to attend one of the user groups Dave used to run in Southfield, MI. Great talk!
@luisponce35804 жыл бұрын
Great introductory video!
@ronaldthompson52604 жыл бұрын
0:52 activedating.online
@TimoBaader4 жыл бұрын
I coded along and it just says "Connection ID required".... and no source code... nice
@RandallClapper4 жыл бұрын
Hope this helps....github.com/rsclapper/SignalRDemo
@guilhermeborges40974 жыл бұрын
These project are on Github?
@RandallClapper4 жыл бұрын
Yes, sorry for the delay.. Been swamped with work! Here's the repo github.com/rsclapper/SignalRDemo
@brayangarcia25084 жыл бұрын
@@RandallClapper This is great! Do you have any more content related to NET Core Development?
@theoneandonlywoo8464 жыл бұрын
Shame the audio quality is horrendous...
@tinle41095 жыл бұрын
Hi Sam! Would you mind to share your Presentation link? Yes, it is great presentation sir.
@SamNasrMVP5 жыл бұрын
Hi Tin, thanks for your feedback and kind words. The slides and demo are on my GitHub account (github.com/SamNasr/Building-Web-Apps-with-Blazor). Feel free to follow me there so you automatically get updates.
@tinle41095 жыл бұрын
@@SamNasrMVPNasr: I saw there is a 404 error. So here is the link from your GitHub: github.com/SamNasr/Building-Web-Apps-with-Blazor I hope that help Thanks
@davidferreira95985 жыл бұрын
Volume is a little low
@kahmad13 жыл бұрын
Agreed. Audio is very low and there is a lot of noise