| |
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.
|
16 Articles match "How To"
See all articles with
"How To"
| The Latest from The Blomsma Code | MORE | | Mark Blomsma: Upcoming Events First Windows Azure and second How to get free/cheap Microsoft software. March 18, SDN Event (Zeist, The Netherlands): A bunch of topics ranging from Delphi for iOS to Windows Azure to SOLID principles. Here are some events in which I’m involved or which are being organized by friends: February 25, Maine Developer Network (Augusta, Maine): Two topics in this meeting: First What’s New in Entity Framework 5 and second Using NuGet and creating packages. More on: [link]. February 26, Bangor Area.NET Developer (Bangor, Maine): Two topics in this meeting. More on: [link]. DevelopMentor Courses - Saturday, February 16, 2013 Mark Blomsma: Creating ASP.NET membership and authentication tables in SQL Server (Aspnet_regsql.exe) Since I seem to have a hard time remembering the name of the tool I’d figure I’d write a little blurp on my blog to act as a reminder ). You can run it without parameters to have it help you in via wizard mode, or apply the right parameters and do it commando-style. And if you want to enable the ASP.NET Web Administration Tool on a test or production server, then this forum post [link] tells you how to do that Aspnet_regsql.exe is a command line tool. See [link] for available parameters. DevelopMentor Courses - Tuesday, January 29, 2013 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 | | The Best from The Blomsma Code | MORE | | 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 Reading Excel files in a WCF service using OleDB requires 32bit process My development machine is running Windows 7 64bit and my service was deployed to IIS. kept running into a problem with opening the OleDb connection to the Excel file: “Error: Microsoft.Jet.OLEDB.4.0' After changing my ASP.NET processes to run in 32bit everything ran just fine. This KB article shows how to change ASP.NET to 32bit: [link]. I’ve been doing a little work on a WCF service that reads an Excel file. provider is not registered on the local machine.”. Turns out that Office Jet provider will only run in 32bit. The Blomsma Code - Wednesday, March 10, 2010 This Thursday in Bangor, ME: The Dueling BAND Joes - jQuery and SQL XML I won’t be able to make it, but just to remind everyone else :-). As developers Jeff is somewhat conservative and well thought out in his approach, while Greg tends to "wing it" and doesn't enjoy having to write test plans and documentation. However, instead of their differences making it impossible for them to work together, they see how they provide ideas and tools to each other. They are excited to bring their minds together and show how differences can work in your favor for really neat solutions. The Blomsma Code - Wednesday, October 28, 2009 | - Repairing Outlook 2007.pst file
Read this KB article to find out how to do it. Tip to Microsoft: Why not register this file as an “Repair” option to a.pst file, allowing me to right-click and fix my broken.pst file? I just had a little scare with Outlook. After installing VSTO 2010 beta 2 64bit on my system my Calendar folder was suddenly corrupt. Luckily there is an excellent (free) way of repairing a broken.pst file. It’s just a little hidden. The Blomsma Code - Monday, March 29, 2010 - LINQ: Convert list to a dictionary of lists
Suppose I have a list of time cards from multiple employees, but I want to group them into dictionary, based on the Social Security Number (SSN) of the employee. Here is an example of how to convert a list of items into a dictionary of lists: Dictionary. dict; dict = ( from timecard in listOfTimeCards. group timecard by timecard.SSN ).ToDictionary( ToDictionary( x => x.Key, x => x.ToList() ); C# LINQ DevelopMentor Courses - Monday, July 11, 2011 - Mark Blomsma: Upcoming Events
First Windows Azure and second How to get free/cheap Microsoft software. March 18, SDN Event (Zeist, The Netherlands): A bunch of topics ranging from Delphi for iOS to Windows Azure to SOLID principles. Here are some events in which I’m involved or which are being organized by friends: February 25, Maine Developer Network (Augusta, Maine): Two topics in this meeting: First What’s New in Entity Framework 5 and second Using NuGet and creating packages. More on: [link]. February 26, Bangor Area.NET Developer (Bangor, Maine): Two topics in this meeting. More on: [link]. DevelopMentor Courses - Saturday, February 16, 2013 - Mark Blomsma: Creating ASP.NET membership and authentication tables in SQL Server (Aspnet_regsql.exe)
Since I seem to have a hard time remembering the name of the tool I’d figure I’d write a little blurp on my blog to act as a reminder ). You can run it without parameters to have it help you in via wizard mode, or apply the right parameters and do it commando-style. And if you want to enable the ASP.NET Web Administration Tool on a test or production server, then this forum post [link] tells you how to do that Aspnet_regsql.exe is a command line tool. See [link] for available parameters. DevelopMentor Courses - Tuesday, January 29, 2013 - Visual Studio 2010: Debugging a x86 WCF service on a x64 machine
In order to use that assembly I need to compile the service as a x86 service. No problem, but now when I want to test or add a service reference to this WCF service I ran into the problem that WcfSvcHost and WcfTestClient both will run a x64 because I’m running Windows 7 x64. How to solve this? found the answer in the forums and adapted the answer for my specific problem: 1.Copy WcfSvcHost.exe and WcfTestClient.exe from C:program files (x86)Microsoft Visual Studio 10.0Common7IDE to a local directory. Keep a backup copy of this file, of course. DevelopMentor Courses - Wednesday, October 5, 2011 - This Thursday in Bangor, ME: The Dueling BAND Joes - jQuery and SQL XML
I won’t be able to make it, but just to remind everyone else :-). As developers Jeff is somewhat conservative and well thought out in his approach, while Greg tends to "wing it" and doesn't enjoy having to write test plans and documentation. However, instead of their differences making it impossible for them to work together, they see how they provide ideas and tools to each other. They are excited to bring their minds together and show how differences can work in your favor for really neat solutions. The Blomsma Code - Wednesday, October 28, 2009 - Reading Excel files in a WCF service using OleDB requires 32bit process
My development machine is running Windows 7 64bit and my service was deployed to IIS. kept running into a problem with opening the OleDb connection to the Excel file: “Error: Microsoft.Jet.OLEDB.4.0' After changing my ASP.NET processes to run in 32bit everything ran just fine. This KB article shows how to change ASP.NET to 32bit: [link]. I’ve been doing a little work on a WCF service that reads an Excel file. provider is not registered on the local machine.”. Turns out that Office Jet provider will only run in 32bit. The Blomsma Code - Wednesday, March 10, 2010 %>
355 Articles match "How To"
See all articles with
"How To"
| The Latest from DevelopMentor | MORE | | 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: {. The Problem Solver - Monday, May 20, 2013 Using repeating elements in #AngularJS 'Index: Getting started with AngularJS Creating an AngularJS Controller The AngularJS $scope is not the MVC Model Using repeating elements in #AngularJS In the previous posts I showed how to get started with AngularJS and use some of the basic AngularJS directives to data bind. In these examples I uses a really simple single element to bind to. However in lots of business cases you really need to display a list of repeating elements. Fortunately this is really easy to do. Take a look at the simple list of people below. 2: 3: $scope.people = [. The Problem Solver - Friday, May 10, 2013 A Roundup of MongoDB Management Tools Back in the early days, there really were no management tools analogous to RDBMS tools (e.g. It’s time to look around and see what management / monitoring tooling is around these days for MongoDB. There are many different options to choose depending on your platform and use-cases. Key features : Complete (albeit command-line only) access to MongoDB. So you should take the time to learn it properly. Especially since you’ll need to know most of the features to take advantage of Robomongo above anyway. SQL Server Management Studio ). Michael C. Kennedy's Weblog - Monday, April 22, 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 data bind to collections using Knockout.js
I showed to to get started with the awesome Knockout.js In this post I am going to show how easy it is to load a collection of items from a REST service and data bind to the complete collection. To data bind to collections of data Knockout supports the foreach data binding. In the example below I am using an html to display a list of books. The has the data binding attribute so its contents are going to be repeated for each item in the collection being used, books in this case. and controlling updates using Knockout.js Title. The Problem Solver - Wednesday, February 15, 2012 %>
| | |