impa
Name: impa
Score: 18,567.98
Last Seen: 357 days, 3 hours, 54 minutes ago
Member Since: 7 February, 2009
DotNetShoutout
atom rss
4
Shouts

Programmatically determine the server information using .net

published 953 days, 15 hours, 39 minutes ago posted by http://quachnguyen.myopenid.com/http://quachnguyen.myopenid.com/ 955 days, 13 hours, 30 minutes ago
Sunday, October 10, 2010 1:30:39 PM GMT Friday, October 08, 2010 3:40:30 PM GMT
In this blog, I will give you a snippet code which can get the Window information using .net. using System; using System.Management;   namespace CS {     class Program     {         static void Main()         {             ObjectQuery oq = new ObjectQuery("SELECT * FROM Win32_OperatingSystem");             ManagementObjectSearcher query = new ManagementObjectSearcher(oq);             ManagementObjectCollection queryCollection = query.Get();             foreach (ManagementObject m... (more)
category: Smart Client | clicked: 0 | comment | | source: code2code.info
6
Shouts

NHibernate 3 and Autofac, can go together? (part 2) - Context is King

published 953 days, 15 hours, 39 minutes ago posted by thangchungthangchung 957 days, 12 hours, 29 minutes ago
Sunday, October 10, 2010 1:30:39 PM GMT Wednesday, October 06, 2010 4:41:28 PM GMT
In part 1, I introduced about NHibernate and domain model for News Management System. And today, I will continue to show you about Autofac and how to make Autofac can understand all core instances of NHIbernate. If you do not read part 1, please read it at here. The time went very quickly, so we will start jumping into Autofac now. All source code are placed in my github at hereIntroduce about Autofac Autofac is an IoC container for Microsoft .NET. It manages the dependencies between classes so that... (more)
category: Architecture | clicked: 3 | comment | | source: weblogs.asp.net
tags: .NET, ASP.NET
6
Shouts

MVC2 Unit Testing, Populating ModelState

published 953 days, 15 hours, 39 minutes ago posted by tduponttdupont 955 days, 7 hours, 53 minutes ago
Sunday, October 10, 2010 1:30:39 PM GMT Friday, October 08, 2010 9:16:48 PM GMT
When trying to unit test an MVC2 controller action that used the ModelState, I quickly learned that the ModelState is not populated when just newing up a Controller and calling one of its public methods. This can be solved by adding an 'AddValidationErrors' extension method to the ModelStateDictionary. (more)
category: Web Dev | clicked: 3 | comment | | source: community.codesmithtools.com
tags: MVC2, unit testing, ModelState
7
Shouts

It’s not a Baby Boom, It’s a Microsoft Product Boom!

published 953 days, 15 hours, 39 minutes ago posted by shayfriedmanshayfriedman 956 days, 12 hours, 44 minutes ago
Sunday, October 10, 2010 1:30:39 PM GMT Thursday, October 07, 2010 4:26:23 PM GMT
The last few months were a bit hectic if you stayed tuned to announcements coming from Microsoft regarding new products. 10 new releases in 6 months! This posts provides a short introduction to each new release along with links for further reading. (more)
category: How To | clicked: 0 | 1 comment | | source: www.ironshay.com
tags: .NET
5
Shouts

Executing WMI Queries

published 953 days, 15 hours, 39 minutes ago posted by BlackWaspBlackWasp 954 days, 18 hours, 53 minutes ago
Sunday, October 10, 2010 1:30:39 PM GMT Saturday, October 09, 2010 10:16:37 AM GMT
Windows Management Instrumentation provides a number of services that allow gathering of information about the operating system, software and hardware of a machine. Using WQL, this information can be retrieved using familiar, text-based queries. (more)
category: How To | clicked: 2 | comment | | source: www.blackwasp.co.uk
tags: .NET, C#, WMI
7
Shouts

Get Started with Ninject 2.0 in C# Programming

published 953 days, 15 hours, 39 minutes ago posted by sonukapoorsonukapoor 955 days, 15 hours, 5 minutes ago
Sunday, October 10, 2010 1:30:39 PM GMT Friday, October 08, 2010 2:05:16 PM GMT
This article will serve as an elementary tutorial to help you quickly get started with the lightweight and open sourced dependency injector for .NET applications - Ninject. (more)
category: Architecture | clicked: 2 | comment | | source: dotnetslackers.com
tags: C#, Ninject 2
6
Shouts

There's no substitute for customer feedback! Improving Windows Phone 7 application performance now a bit easier with LowProfileImageLoader and DeferredLoadListBox updates - David Anson

published 953 days, 15 hours, 39 minutes ago posted by jantujantu 956 days, 15 hours, 14 minutes ago
Sunday, October 10, 2010 1:30:39 PM GMT Thursday, October 07, 2010 1:56:30 PM GMT
Windows Phone 7 applications run on hardware that's considerably less powerful than what drives typical desktop and laptop machines. Therefore, tuning phone applications for optimum performance is an important task - and a challenging one! To help other developers, I previously coded and blogged about two classes: LowProfileImageLoader (pushes much of the cost of loading images off the UI thread) and DeferredLoadListBox (improves the scrolling experience for long lists). These two classes can be used ind... (more)
category: Metro | clicked: 0 | 1 comment | | source: blogs.msdn.com
tags: Silverlight, Windows Phone
8
Shouts

Andrew Brust Gets All BI On Us - DotNetRocks - Show #599

published 954 days, 14 hours, 50 minutes ago posted by jantujantu 957 days, 15 hours, 29 minutes ago
Saturday, October 09, 2010 2:20:14 PM GMT Wednesday, October 06, 2010 1:40:50 PM GMT
Andrew Brust joins Carl and Richard on the .NET Rocks Live Weekend to talk a little Business Intelligence. The conversation also jumps to Windows Phone 7, Google Android and the Apple iPad. Andrew BrustAndrew J. Brust is the Chief of New Technology at 26 New York, a Microsoft Gold Certified Partner, where he works on strategy, evangelism and business development. Andrew has worked closely with Microsoft technologies since the early 90s and has worked in software development since the mid 80s. Andrew serv... (more)
category: Podcast | clicked: 1 | comment | | source: www.dotnetrocks.com
tags: DotNetRocks
8
Shouts

Introduction to .NET 4.0 Workflow Services

published 954 days, 14 hours, 50 minutes ago posted by sonukapoorsonukapoor 957 days, 13 hours, 55 minutes ago
Saturday, October 09, 2010 2:20:14 PM GMT Wednesday, October 06, 2010 3:14:45 PM GMT
In this article we will explore into one of the major features introduced in .Net 4.0, Workflow Services. Workflow Services let you define services where service operations are defined using workflow activities. (more)
category: Architecture | clicked: 3 | comment | | source: dotnetslackers.com
tags: Workflow 4.0
7
Shouts

NuPack Package Manager

published 953 days, 15 hours, 39 minutes ago posted by http://agafonovslava.blogspot.com/http://agafonovslava.blogspot.com/ 956 days, 19 hours, 23 minutes ago
Sunday, October 10, 2010 1:30:39 PM GMT Thursday, October 07, 2010 9:47:18 AM GMT
We think NuPack will be a fundamental component of the .NET stack going forward.  It will encourage more .NET developers to use open-source libraries.  Having a standard package manager integrated into millions of copies of Visual Studio will hopefully also encourage the creation of more open source projects with .NET. NuPack is a free open source package manager that makes it easy for you to find, install, and use .NET libraries in your projects. It works with all .NET project types ... (more)
category: Screencast | clicked: 0 | 1 comment | | source: blog.agafonov.net.ua
tags: nupack, Package Manager
4
Shouts

The Perils of the Parallel For

published 956 days, 14 hours, 33 minutes ago posted by mikeukmikeuk 956 days, 20 hours, 4 minutes ago
Thursday, October 07, 2010 2:36:58 PM GMT Thursday, October 07, 2010 9:06:30 AM GMT
Making parallel code easier to use is an important development but making it easier also means you can use it without realising what you are getting into. Unless we can find a way of making parallel code both easy and safe you are still going to have to take care - even with the easy-to-use Parallel For. (more)
category: How To | clicked: 0 | comment | | source: www.i-programmer.info
tags: Parallel For
8
Shouts

Introducing NuPack: the smart way to bring bits into your projects - Angle Bracket Percent

published 955 days, 11 hours, 7 minutes ago posted by rajuraju 956 days, 20 hours, 54 minutes ago
Friday, October 08, 2010 6:03:29 PM GMT Thursday, October 07, 2010 8:16:28 AM GMT
I’m thrilled to announce that the secret project we’ve been working on for the last few months is no longer a secret! It’s called NuPack, and you can download it from here. Make sure you also read ScottGu’s post about it. So what the heck is NuPack? In short, it’s an Open Source package manager that lets you import libraries into your .NET applications with much less effort than what you’re used to. Note that NuPack is not a Microsoft project, but an Outercurve Foundation project (previously Codeple... (more)
category: How To | clicked: 0 | comment | | source: blogs.msdn.com
tags: .NET, nupack, Microsoft
6
Shouts

S-OOB + W7 = ? - Rudi Grobler in the Cloud

published 954 days, 14 hours, 50 minutes ago posted by http://rudigrobler.myopenid.com/http://rudigrobler.myopenid.com/ 956 days, 20 hours, 18 minutes ago
Saturday, October 09, 2010 2:20:14 PM GMT Thursday, October 07, 2010 8:52:15 AM GMT
This article demos how to configure windows so that you can execute a silverlight out of browser app by just clicking on it! (more)
category: Metro | clicked: 0 | comment | | source: www.rudigrobler.net
tags: Silverlight, OOB
8
Shouts

How to raise event for a mocked call. - Mehfuz's WebLog

published 954 days, 14 hours, 50 minutes ago posted by http://mehfuzh.myopenid.com/http://mehfuzh.myopenid.com/ 956 days, 21 hours, 27 minutes ago
Saturday, October 09, 2010 2:20:14 PM GMT Thursday, October 07, 2010 7:43:27 AM GMT
Wednesday, October 06, 2010 5:01 PM mehfuzh How to raise event for a mocked call. Recently, while i was working with a support issue , i found this interesting piece of test code that i would like to share here. This is actually written by Stefan Lieser (clean code developer from Germany forwarded to me by Jan from Telerik Germany). As the title states,  it is to mock a specific event for an expected call.   Now Stefan wants to raise an event from WebCli... (more)
category: Agile | clicked: 1 | comment | | source: weblogs.asp.net
tags: C#, JustMock
4
Shouts

Remove Duplicate Words in C#

published 956 days, 14 hours, 33 minutes ago posted by dotnetsparkdotnetspark 957 days, 6 hours, 27 minutes ago
Thursday, October 07, 2010 2:36:58 PM GMT Wednesday, October 06, 2010 10:43:27 PM GMT
In order to remove duplicate words from any string or data which can simplify your algorithm or improve performance. Using a Dictionary instance we can remove duplicate words from a string in C#. Following is a sample input and result (more)
category: How To | clicked: 0 | comment | | source: www.dotnetspark.com
tags: C#, DotNetSpark
4
Shouts

Remove duplicate items from Generic List using C#

published 956 days, 14 hours, 33 minutes ago posted by dotnetsparkdotnetspark 957 days, 6 hours, 29 minutes ago
Thursday, October 07, 2010 2:36:58 PM GMT Wednesday, October 06, 2010 10:41:05 PM GMT
Most of times we use extensions like IList, IEnumerable, etc. which comes with .NET Framework 3.5. Other day when I was using these generic list with my custom class, I came across one of its shortcoming. Like it offers methods like Select(), Where() and GroupBy() which takes something called lambda as parameters. A few query operators, such as Distinct(), do not take lambdas as parameters. As a result, they are easy to call. (more)
category: How To | clicked: 2 | comment | | source: www.dotnetspark.com
tags: List(T), C#, List, DotNetSpark, C# .NET
9
Shouts

Introducing NuPack Package Management for .NET Another piece of the Web Stack - Scott Hanselman

published 954 days, 14 hours, 50 minutes ago posted by jantujantu 956 days, 22 hours, 8 minutes ago
Saturday, October 09, 2010 2:20:14 PM GMT Thursday, October 07, 2010 7:02:31 AM GMT
Microsoft's been filling out the Web Stack with more and more right-sized LEGO pieces lately, and today ScottGu announced the developer preview of NuPack. It's a piece of the stack that's been notably missing for years and after using it for a while now, I'm not sure how I lived without it. NuPack is a package management system for .NET. The goal of NuPack is to make the process of incorporating third party libraries into your solutions as simple as possible. Package Management itself is not a new con... (more)
category: Web Dev | clicked: 0 | comment | | source: www.hanselman.com
tags: ASP.NET MVC 3 Beta, ASP .NET
10
Shouts

Announcing NuPack, ASP.NET MVC 3 Beta, and WebMatrix Beta 2 - ScottGu's Blog

published 955 days, 11 hours, 7 minutes ago posted by rajuraju 956 days, 20 hours, 31 minutes ago
Friday, October 08, 2010 6:03:29 PM GMT Thursday, October 07, 2010 8:39:19 AM GMT
I’m excited to announce the beta release of several projects today. Two of these releases - ASP.NET MVC 3 Beta and WebMatrix Beta 2 - are evolutions of projects we first previewed this summer.  The third – NuPack - is a new project that I’m particularly excited about.NuPack – Open Source Package Manager for .NET NuPack is a free open source package manager that makes it easy for you to find, install, and use .NET libraries in your projects. It works with all .NET project types (including, but not limit... (more)
category: Web Dev | clicked: 0 | comment | | source: weblogs.asp.net
tags: .NET, Visual Studio, Community News, MVC, ASP.NET
7
Shouts

Razor Syntax Highlighter for MVC 3 Beta

published 954 days, 14 hours, 50 minutes ago posted by http://morder.myopenid.com/http://morder.myopenid.com/ 957 days, 11 minutes ago
Saturday, October 09, 2010 2:20:14 PM GMT Thursday, October 07, 2010 4:58:45 AM GMT
All new Razor Syntax Highlighter available for MVC 3 Beta. Please update as the new razor syntax introduces some breaking changes. We've also added syntax error support! (more)
category: Architecture | clicked: 1 | comment | | source: buildstarted.com
tags: MVC3, C#, Razor
6
Shouts

Homework Will Never Be The Same

published 954 days, 14 hours, 50 minutes ago posted by KodefuGuruKodefuGuru 957 days, 7 hours, 20 minutes ago
Saturday, October 09, 2010 2:20:14 PM GMT Wednesday, October 06, 2010 9:50:12 PM GMT
I found tutorials for Microsoft Math 3.0 on Microsoft Downloads and felt compelled to view one. What I discovered was one of the coolest graphing programs I’ve ever witnessed. You just enter an equation into it, and it will graph it for you. Back on the worksheet tab, it not only solves equations, it will tell you how to solve them step by step! This makes me tempted to go dig up my calculus books for problems that were tough to solve, and see how Microsoft Math handles it. This thing has so man... (more)
category: How To | clicked: 0 | comment | | source: www.kodefuguru.com
tags: graphing, math, Microsoft Math
Previous 1 2 3 4 5 6 7 8 9 10 ... 124 125 Next