| |
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.
|
10 Articles match "How To"
See all articles with
"How To"
| The Latest from .NET Mutterings | MORE | | Software Architecture 2010 Rich and myself will be spending a day talking about how to use various bits of.NET 4 technology to build a MVC, WF and Entity Framework based application. The aim to build the app live, so you really get to see how this tech actually ticks. Myself and other Rock Solid Knowledge guys have had various talks accepted for Software Architecture conference this October in London. Through out the week I’ll be doing stuff on Patterns, and Parallel programming. Hopefully see you there .NET Mutterings - Friday, June 4, 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 Fluent Parallel While During devweek 2009 Oliver introduced me to Fluent Api's, I personally love programs that naturally read, after all programs are read far more often than written. .NET Mutterings - Thursday, August 13, 2009 | | The Best from .NET Mutterings | MORE | | SynchronizationContext assists layering Having just got back from two weeks travelling I was confronted with the need that my oldest daughter needs to learn her times tables for a tester after half term. Being away a lot and the children having loads of after school clubs etc means we often find it hard to find the right moment to practice. So I decided to write an app to help test them on it…Ok so I’m sure there are tons of them out there…but you can’t beat a home grown solution ;-) Seriously there is a couple of areas I am focusing on at the moment, Ramping up for DM’s.NET architecture course. .NET Mutterings - Saturday, October 21, 2006 Software Architecture 2010 Rich and myself will be spending a day talking about how to use various bits of.NET 4 technology to build a MVC, WF and Entity Framework based application. The aim to build the app live, so you really get to see how this tech actually ticks. Myself and other Rock Solid Knowledge guys have had various talks accepted for Software Architecture conference this October in London. Through out the week I’ll be doing stuff on Patterns, and Parallel programming. Hopefully see you there .NET Mutterings - Friday, June 4, 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 | - Fluent Parallel While
During devweek 2009 Oliver introduced me to Fluent Api's, I personally love programs that naturally read, after all programs are read far more often than written. .NET Mutterings - Thursday, August 13, 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 - Short and Long running tasks in.NET 4
Just added a screen cast on how to create short and long running tasks in.NET 4. You can get to all the Rock Solid Knowledge screen casts via www.rocksolidknowledge.com/screencasts .NET Mutterings - Wednesday, June 24, 2009 - Safety Button
This component grew out of a demo I do whilst teaching ENET for DevelopMentor [link] It demonstrates how to extend WinForms controls to add additional functionality. In this case we are extending the standard button, to provide a means to intercept the Click event and prompt the user are they sure they wish to perform the said action, if they decline the registered event handlers of the button event are non the wiser. .NET Mutterings - Monday, July 3, 2006 - ASP.NET Themes
When you design your page you can add an attribute to the @Page tag that states which theme to use when rendering this page, this gives the web site designer some flexibility in that they can change the look and feel of the site with a simple change. The simplest way to do this is with a single global change in the web.config For me though the cool thing about themes is to allow the user of the web site to select the theme they would like to use. As far as I can tell there is no direct support in ASP.NET to do this for you. .NET Mutterings - Monday, July 3, 2006 - Random Sampling extension method
Had reason recently to select a random sample of data from a stream of elements. The amount of samples I needed to take was finite but what was unknown was the number of elements in the input stream. managed to find various implementations of an IEnumerable extension method on the net, but all the ones I found would cache the entire stream before selecting the sample. After a look around I found this blog article that describes how to implement Reservoir sampling without the need to keep all the items. .NET Mutterings - Wednesday, October 1, 2008 - Microsoft's Parallel Framework extensions (Pfx) isn’t always the free lunch its cracked up to be.
I’ve seen numerous demos of Microsoft's Parallel Framework Extensions ( Pfx), and as you would expect they focus on showing how easy it is to make sequential code go faster on multiple cores. Whilst there is no disputing that the code that is run certainly scales as you add new processors, you can’t get away from the fact that a lot of these demos are contrived, heavy use of Thread.SpinWait to simulate lots of computation for each parallel task. The instance of Future has a Value property that you can use to get the result of the parallel task. .NET Mutterings - Wednesday, April 1, 2009 %>
359 Articles match "How To"
See all articles with
"How To"
| The Latest from DevelopMentor | MORE | | Integrating the #WebAPI HttpClient and ApiController in a single test 'In the two previous blog posts I showed how to unit test and ASP.NET WebAPI controller and how to unit test the client side code depending on the HttpClient class. After all testing an ApiController by just calling the methods makes it perfectly possible to call them in such a way that would never be possible using a real HTTP request. So in order to complete out testing we should test the integration of the client and server parts using an integration test. However there we added a custom TestingDelegatingHandler to return a fake result message. Maurice de Bejeir - Monday, May 27, 2013 Maurice de Beijer: Integrating the #WebAPI HttpClient and ApiController in a single test 'In the two previous blog posts I showed how to unit test and ASP.NET WebAPI controller and how to unit test the client side code depending on the HttpClient class. After all testing an ApiController by just calling the methods makes it perfectly possible to call them in such a way that would never be possible using a real HTTP request. So in order to complete out testing we should test the integration of the client and server parts using an integration test. However there we added a custom TestingDelegatingHandler to return a fake result message. The Problem Solver - Monday, May 27, 2013 Unit testing code depending on the ASP.NET WebApi HttpClient 'In a previous post I showed how to unit test an ASP.NET WebAPI Controller. In this case the client application contains the following class to load books from the REST WebAPI controller: 1: public class BooksClient. This class uses the HttpClient to request the data from the service and extracts the books from the body before returning them. If we want to test this class we need to pass in an HttpClient object. This HttpMessageHandler is used as the pipeline to send requests and we can completely replace this with our own implementation. 14: {. Maurice de Bejeir - Monday, May 20, 2013 | -
| The Best from DevelopMentor | MORE | - How to improve a team's velocity?
By way of wrapping up my velocity mini-series ( Two ways to fill and iteration , Filling an iteration too well , and Velocity Targeting and Velocity Inflation ) I’m going to end with some advice on how to improve a team’s velocity. Over time these add up to big improvements. To use economic logic: this is about improving the supply-side. The supply-side argument (largely monetarist) suggests the way to solve unemployment is not to increase demand (Keynes style) but to loosen and liberalise the labour market. But back to software. Allan Kelly's Blog - Thursday, July 1, 2010 - How to rip audio books
So i listen to a lot of audio books, and here's how i create the mp3 of them. Overview we are going to create bite size files about 30 minutes each. link] 4) set your encoding bitrate to 64k & stereo, this is a very high quality audio book. To do this double click a track. then label them, and create the id tags. finally we'll attach a picture. Make sure the book is UNABRIDGED 1) get a ipod - i prefer the nano. link] Ripping 2) download audiograbber & install. link] 3) download lame encoder & install. select the Sectors>Last. And there you go Llewellyn Falco - Sunday, July 6, 2008 - How to build a Development/Test/Demo CA
So I ended up running Windows Cerificate Services which proved to be an easy to use, robust solution. just had to rebuild my Test CA (on Hyper-V) so I thought I'll document the important steps (for self-reference and whoever might be interested). They usually expire on the very day where you have to do an important demo. Now by default there is an entry pointing to the CA's Netbios name. better solution is to create a revocation list once, and store that at a publicly available location. Next you have to publish a CRL. Set it to e.g. five years. www.leastprivilege.com - Thursday, August 14, 2008 - How to get started with Knockout.js
Once you get into doing more client side JavaScript code with business applications and REST services you are going to run into the question of how to construct the client side HTML required to show the data to the users. Using jQuery Assuming most people are going to be using jQuery on the client you might start with some jQuery code to generate HTML. And in all likelihood the actual HTML that needs to be generated will be quite a bit more complex. The next step people tend to take is using templates. click( function () {. $.getJSON( The Problem Solver - Monday, February 6, 2012 - How to discover what font was used
Sometimes you’re working on a website and you get some images with text in them, but no one remembers what fonts was used in the image. No fear! There is a website call “What The Font” that will take your picture and tell you what font was used: [link]. ASP.NET DevelopMentor Courses - Monday, December 26, 2011 %>
| | |