| |
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
9 Articles match "Screencast"
See all articles with
"Screencast"
| The Latest from .NET Mutterings | MORE | | Devweek 2012 Will be back tomorrow so will upload the demos to the website on Tuesday 3rd If you want a refresher on the asynchronous talk we have screencasts on the site that cover some of the aspectsHad a great conference as ever. Thanks to everyone who attended the RSK talks. literally left the conference and went on holiday. DevelopMentor Courses - Monday, April 2, 2012 TPL Dataflow m intending to do a screencast really soon to show this action, but in the mean time try it out for yourself you can download it from hereOne parallel pattern that required some work with base.NET 4 was parallel pipe lines. The CTP release of the Parallel Dataflow extensions, makes this trivial now. DevelopMentor Courses - Thursday, February 10, 2011 | | The Best from .NET Mutterings | MORE | | Devweek 2012 Will be back tomorrow so will upload the demos to the website on Tuesday 3rd If you want a refresher on the asynchronous talk we have screencasts on the site that cover some of the aspectsHad a great conference as ever. Thanks to everyone who attended the RSK talks. literally left the conference and went on holiday. DevelopMentor Courses - Monday, April 2, 2012 TPL Dataflow m intending to do a screencast really soon to show this action, but in the mean time try it out for yourself you can download it from hereOne parallel pattern that required some work with base.NET 4 was parallel pipe lines. The CTP release of the Parallel Dataflow extensions, makes this trivial now. DevelopMentor Courses - Thursday, February 10, 2011 | - EF4 And Repository Pattern
Just released a screencast on one possible way to implement the repository pattern using EF4. You can listen to this screencast or other RSK screencasts hereve been very down on EF over the past year or so, but its nice at last to see it actually starting to be usable. .NET Mutterings - Thursday, March 11, 2010 - Geometric Decomposition Screencast
I’ve posted a new screen cast on the Rock Solid Knowledge screen casts side that provides an example of how to partition a set of data for parallel processing. The screen cast covers a simple way using Parallel.ForEach, and a more efficient version combining the use of Barrier. You can checkout the screen cast and others here .NET Mutterings - Monday, October 5, 2009 - NET 4 Tasks and UI Programming
Just upload a new screencast covering how to marshal results from.NET 4 Tasks back on to the UI thread. One method is to continue to utilise the same API’s from previous versions of.NET thus utilising SynchronizationContext.Post, the Task based API offers an alternative and in some cases more elegant solution using the ContinueWith method .NET Mutterings - Thursday, July 30, 2009 - WARNING.Cancellation support may makes things go slow….
recently recorded a screencast that demonstrated the new Task API including the cancellation support. NET 4 Tasks offers much better support for task cancellation, unlike QueueUserWorkItem tasks can be cancelled before commencing, and the Task library offers a standard way for running tasks to detect and report cancellation. This blog post isn’t so much about the cancellation mechanics but some guidance on how best to use it if you don’t want to change the throughput of your task. The reason being that the cost of detecting cancellation is high in relation to the work being done. .NET Mutterings - Thursday, July 30, 2009 - Short and Long running tasks in.NET 4
You can get to all the Rock Solid Knowledge screen casts via www.rocksolidknowledge.com/screencastsJust added a screen cast on how to create short and long running tasks in.NET 4. .NET Mutterings - Wednesday, June 24, 2009 - NET Screencasts
Just to say Rock Solid Knowledge of which Im one of the founders have now started to produce a series of screen casts on various bits of.NET technology. With Beta 1 of VS2010 just out expect a load more in the not too distant future covering all the new goodness You can checkout the screen casts either via [link] or subscribe via RSS .NET Mutterings - Wednesday, May 20, 2009 %>
76 Articles match "Screencast"
See all articles with
"Screencast"
| The Latest from DevelopMentor | MORE | | Why Choose NoSQL and Document Databases over RDBMS Here is a short screencast which shows you the stark contrast in simplicity between an application using a relational database and one using a document database such as MongoDB, CouchDB, or RavenDB. Filed under: NoSQL Tagged: DevelopMentor , LearningLine , NoSQL , Online courses , Online learning , Screencasts. NoSQL DevelopMentor LearningLine Online courses Online learning Screencasts 'Do you want to know the biggest single reason you should choose document databases over SQL Server, Oracle, or MySQL? Hint: It’s not performance or scalability. Cheers, @mkennedy. Michael C. Kennedy's Weblog - Friday, May 3, 2013 Installing MongoDB on Windows and OS X Filed under: NoSQL Tagged: LearningLine , NoSQL , Open Source , Screencasts. NoSQL LearningLine Open Source Screencasts 'Ready to get started with NoSQL and MongoDB? Here are two 7-minute walkthroughs for installing MongoDB as a Windows service / OS X daemon. These are both excepts from my upcoming online MongoDB course for DevelopMentor. You can take the first 1 1/2 hours for free here: Early access: MongoDB and NoSQL for.NET developers. Windows: OS X: Feedback welcome. cheers. mkennedy. Michael C. Kennedy's Weblog - Thursday, May 2, 2013 Why Does WCF Reject Large Messages By Default? If you suspect you are hitting on of these limits the quickest way normally to diagnose this is to turn on tracing (I recorded a screencast here showing how). 'If you have been working with WCF for a while you may have noticed that, by default, messages over a certain size fail to get processed. The reason for this is that WCF tries to protect the message receiver from getting swamped with messages that will consume huge amounts of memory to process. The thing that controls this is the maxReceivedMessageSize on the binding which defaults to 64Kb. Prior to WCF 4.5 However, in WCF 4.5 DevelopMentor Courses - Monday, April 8, 2013 | -
| The Best from DevelopMentor | MORE | - Screencast: Strongly-Typed Views in ASP.NET MVC
In this screencast I discuss the how to create strongly-typed razor views in ASP.NET MVC. Filed under: Video Tagged: NET , MVC , Screencasts , Video. Video.NET MVC ScreencastsWe look at how Models can be used to pass data (both simple and complex) from controller action methods down to razor views. We also look at the concept of ViewModels which hold aggregate data to pass to views. Finally, we cover some of the tooling for generating views in Visual Studio. Download the code: Kennedy.Mvc.StronglyTypedViews.zip. Michael C. Kennedy's Weblog - Wednesday, October 31, 2012 - Screencast: Refactoring with Partial Views in MVC
In this screencast, I show you how to create maintainable and readable ASP.NET MVC razor views by refactoring them into smaller, reusable blocks with partial views. Filed under: Video Tagged: NET , ASP.NET , MVC , Screencasts , web. Video.NET ASP.NET MVC Screencasts webDownload the code: Refactoring-with-Partial-Views-in-MVC-Kennedy.zip. Michael C. Kennedy's Weblog - Thursday, November 1, 2012 - Screencast – Validating ASP.NET MVC Forms with DataAnnotations
Here’s a new screencast for you MVC guys and gals out there. In this short screencast, I will show you how to leverage ASP.NET MVC’s excellent model binding as well as the DataAnnotations attributes to easily add both server-side and client-side validation for MVC websites. Filed under: Video Tagged: NET , MVC , Screencasts , Video , Visual Studio. Video.NET MVC Screencasts Visual StudioValidating ASP.NET MVC Forms with DataAnnotations. Michael C. Kennedy's Weblog - Friday, January 11, 2013 - Screencast: ViewBag and View Data in ASP.NET MVC
In this screencast I discuss the ViewBag and ViewData properties in ASP.NET MVC. Filed under: Uncategorized , Video Tagged: NET , MVC , Screencasts , Video , Visual Studio. Uncategorized Video.NET MVC Screencasts Visual StudioWe look at how they can be used to pass data (both simple and complex) from controller action methods down to razor views. Download the code: Code-Kennedy.Mvc.ViewBagsAndViewData.zip. Michael C. Kennedy's Weblog - Tuesday, October 30, 2012 - RESTful Web Services with WCF Screencast
I recently got the chance to record a screencast discussing REST-oriented web services in WCF. You can also download the source code of the project built in the screencast. If you're interested in WCF you should definitely check it out because WCF and REST make an awesome combination. WCF-REST-Kennedy-Peepleocity.wmv 35 MB (WMV HD). cover building WCF services using REST princples, the WebGet and WebInvoke attributes, working with the SyndicationFeed & Rss20FeedFormatter classes, and configuration-free WCF hosting in IIS. All content copyright Michael C. Kennedy. %>
| | |