Nickolay
Name: Nickolay
Score: 9,271.71
Last Seen: 466 days, 18 hours, 46 minutes ago
Member Since: 8 February, 2009
DotNetShoutout
atom rss
5
Shouts

Optimizing Regex Performance, Part 3 [Ron Petrusha] - BCL Team Blog

published 784 days, 16 hours, 1 minute ago posted by iftekharahmedamitiftekharahmedamit 784 days, 23 hours, 40 minutes ago
Wednesday, March 30, 2011 9:07:17 PM GMT Wednesday, March 30, 2011 1:27:26 PM GMT
Regular expressions in the .NET Framework support a number of grouping constructs, which allow a regular expression pattern to be grouped into one or more subexpressions. Grouping constructs are essential for creating backreferences, as well as for defining a subexpression to which a quantifier is applied. The Performance Impact of Capturing Groups The most commonly used grouping constructs in the .NET Framework regular expression language are (subexpression), which defines a numbered capturing group, a... (more)
category: How To | clicked: 3 | comment | | source: blogs.msdn.com
tags: Performance, Regex
5
Shouts

An Exploration of Dynamic in .NET 4 - Bobby Johnson

published 784 days, 16 hours, 1 minute ago posted by iftekharahmedamitiftekharahmedamit 784 days, 23 hours, 38 minutes ago
Wednesday, March 30, 2011 9:07:17 PM GMT Wednesday, March 30, 2011 1:30:16 PM GMT
In my spare time I have been working on a Simple.Data provider for Sqlite. Simple.Data is a lightweight ORM written by Mark Rendle that leans heavily on dynamic types and metaprogramming techniques to create an api that is the closest to Ruby’s Active Record that I have ever seen in .NET. I have been using this project as a way to explore the new dynamic features introduced into C# and .NET with version 4. I have discovered some interesting things and wanted to share them. Before we dive too deeply into... (more)
category: How To | clicked: 0 | comment | | source: iamnotmyself.com
3
Shouts

TestRail 2.3 Test Management Software Released

published 784 days, 16 hours, 1 minute ago posted by dgpbdgpb 784 days, 23 hours, 37 minutes ago
Wednesday, March 30, 2011 9:07:17 PM GMT Wednesday, March 30, 2011 1:30:29 PM GMT
Gurock Software announced the release of TestRail 2.3, a new version of their web-based test management software. TestRail helps software development teams and QA departments to efficiently manage, track and organize their software testing efforts. TestRail 2.3 comes with major scalability and performance improvements for large teams and introduces new optimized views for test suites and test runs among many other improvements. (more)
category: Agile | clicked: 0 | comment | | source: blog.gurock.com
5
Shouts

TFS Build Service Dependencies - Bryan Group

published 784 days, 16 hours, 1 minute ago posted by iftekharahmedamitiftekharahmedamit 784 days, 23 hours, 36 minutes ago
Wednesday, March 30, 2011 9:07:17 PM GMT Wednesday, March 30, 2011 1:32:23 PM GMT
Anyone who has had to deal with services failing to start (i.e. logon permissions, setting recovery responses [run a program], verifiying dependencies, etc.) knows what a real PITA it can be to track down the culprit of the failure. Having said that I recently had an issue with the "Visual Studio Team Foundation Build Service Host" service. A message box that stated “Cannot start service TFSBuildServiceHost on computer ‘contoso.na.microsoft.net'. (The dependency service or group failed to start)” was pro... (more)
category: How To | clicked: 5 | comment | | source: blogs.msdn.com
tags: TFS
7
Shouts

MVVM Light V4 preview 2 (BL0015) #mvvmlight - Laurent Bugnion

published 790 days, 5 hours, 48 minutes ago posted by iftekharahmedamitiftekharahmedamit 793 days, 11 hours, 4 minutes ago
Friday, March 25, 2011 7:20:06 AM GMT Tuesday, March 22, 2011 2:03:30 AM GMT
Over the past few weeks, I have worked hard on a few new features for MVVM Light V4. Here is a second early preview (consider this pre-alpha if you wish). The features are unit-tested, but I am now looking for feedback and there might be bugs! Bug correction: Messenger.CleanupList is now thread safe This was an annoying bug that is now corrected: In some circumstances, an exception could be thrown when the Messenger’s recipients list was cleaned up (i.e. the “dead” instances were removed). The method is... (more)
category: UX | clicked: 3 | comment | | source: blog.galasoft.ch
tags: MVVM Light Toolkit, MVVM Light V4
7
Shouts

High-speed MVC Development in Visual Studio with CodeRush and DevExpress MVC Extensions - Mark Miller

published 790 days, 5 hours, 48 minutes ago posted by iftekharahmedamitiftekharahmedamit 793 days, 11 hours, 17 minutes ago
Friday, March 25, 2011 7:20:06 AM GMT Tuesday, March 22, 2011 1:51:10 AM GMT
If you saw our Using CodeRush with MVC webinar, Rory and I introduced new templates that make it easy to exploit the MVC Extensions from DevExpress. These templates will likely be integrated into CodeRush 11.1, however you can install and start using them right now (installation instructions appear below)... (more)
category: How To | clicked: 3 | comment | | source: community.devexpress.com
tags: DevExpress, CodeRush, MVC Extension
7
Shouts

Using EntityFramework with ASP.NET MVC 3 - Rob Conery

published 790 days, 5 hours, 48 minutes ago posted by iftekharahmedamitiftekharahmedamit 792 days, 22 hours, 18 minutes ago
Friday, March 25, 2011 7:20:06 AM GMT Tuesday, March 22, 2011 2:49:53 PM GMT
Using EntityFramework with ASP.NET MVC 3 A few people have asked about a comment I made on my last post: I might suggest (in this case) creating an ActionFilter and wrapping the Action in a transaction. It’s transparent, it’s fun… and all the kids are doing it. … and it got me thinking. All of the MSDN samples that I’ve seen which talk about using EF or LinqToSql with ASP.NET MVC almost always show the context being created inside an action or being passed in via a repository. This doesn’t have to ... (more)
category: Web Dev | clicked: 17 | comment | | source: wekeroad.com
tags: ASP.NET MVC 3, ASP.NET MVC, entityframework, MVC, ASP.NET
7
Shouts

Convention Based Localization With ASP.NET MVC - Davy Brion's Blog

published 790 days, 5 hours, 48 minutes ago posted by iftekharahmedamitiftekharahmedamit 793 days, 11 hours, 18 minutes ago
Friday, March 25, 2011 7:20:06 AM GMT Tuesday, March 22, 2011 1:49:45 AM GMT
A feature of ASP.NET MVC that i really like is that when you use the LabelFor extension method in a strongly-typed view, the LabelFor implementation will try to retrieve and use metadata for the property you're creating a label for. For instance: @Html.LabelFor(m => m.SomeProperty) This will generate an HTML label for the SomeProperty property of your model. If you need localized views, you can annotate the property in your model like this: [Display(ResourceType = typeof(Resources), Name = "Res... (more)
category: Web Dev | clicked: 11 | comment | | source: davybrion.com
tags: ASP.NET MVC, Localization, MVC, ASP.NET
7
Shouts

Metro In Motion – Fluid List Animation | Colin Eberhardt's Adventures in WPF

published 790 days, 5 hours, 48 minutes ago posted by FantasticMrFishFantasticMrFish 793 days, 3 hours, 47 minutes ago
Friday, March 25, 2011 7:20:06 AM GMT Tuesday, March 22, 2011 9:21:02 AM GMT
This blog post presents an attached behaviour that gracefully slides the contents of a list into view when used in conjunction with a Pivot control, emulating the Windows Phone 7 email application. The Windows Phone 7 user interface is based on the Metro Design Language, which favours clear typography, content over chrome and simplicity. If you want to see practical applications of the Metro approach to design, I would highly recommend visiting Scott Barnes’ blog over at riagenic. Silverlight for Wi... (more)
category: Metro | clicked: 25 | comment | | source: www.scottlogic.co.uk
tags: Windows Phone 7, metro
7
Shouts

New version of StyleCop released - Tatworth

published 790 days, 5 hours, 48 minutes ago posted by iftekharahmedamitiftekharahmedamit 793 days, 11 hours, 11 minutes ago
Friday, March 25, 2011 7:20:06 AM GMT Tuesday, March 22, 2011 1:56:40 AM GMT
New version of StyleCop released 4.5 Preview was released today. The download is at http://stylecop.codeplex.com/releases/view/62209 I recommend the use of Style Cop to all C# developers. I quote the download page: This release currently contains 89 bug fixes since the 4.4 RTW release and includes 4 new rules. SA1125 - UseShorthandForNullableTypes SA1411 - AttributeConstructorMustNotUseUnnecessaryParenthesis SA1517 - CodeMustNotContainBlankLin... (more)
category: How To | clicked: 1 | comment | | source: geekswithblogs.net
tags: StyleCop
6
Shouts

RC of Entity Framework 4.1 (which includes EF Code First) - Scott Guthrie's Blog

published 791 days, 14 hours, 22 minutes ago posted by iftekharahmedamitiftekharahmedamit 793 days, 13 hours, 45 minutes ago
Wednesday, March 23, 2011 10:45:35 PM GMT Monday, March 21, 2011 11:22:41 PM GMT
Last week the data team shipped the Release Candidate of Entity Framework 4.1.  You can learn more about it and download it here. EF 4.1 includes the new “EF Code First” option that I’ve blogged about several times in the past.  EF Code First provides a really elegant and clean way to work with data, and enables you to do so without requiring a designer or XML mapping file.  Below are links to some tutorials I’ve written in the past about it:Code First Development with Entity Framework 4.xEF Code First:... (more)
category: Architecture | clicked: 7 | comment | | source: weblogs.asp.net
tags: Entity Framework, Entity Framework 4.1, ef code first, Entity Framework 4
6
Shouts

Save on Computation Heavy Algorithms for Windows Phone 7 and Windows Azure

published 790 days, 5 hours, 48 minutes ago posted by http://tanzim.myopenid.com/http://tanzim.myopenid.com/ 792 days, 19 hours, 20 minutes ago
Friday, March 25, 2011 7:20:06 AM GMT Tuesday, March 22, 2011 5:47:27 PM GMT
Computation heavy algorithms cost more money before optimized. You can feed your server systems enough RAM and CPUs to handle the CPU cycles and memory they require. This is not one of the most recurring investments and generally good for the application it is serving overall. If you are developing Smart Client/Desktop applications, your software can take as much as it can as long as it is running. However, in two cases careful software design can save (saving is earning) obvious money: Windows Phone and... (more)
category: How To | clicked: 1 | comment | | source: tanzimsaqib.com
tags: data structures, Windows Azure, Windows Phone 7, Windows Phone, algorithms complexity, Algorithm
6
Shouts

Firebug 1.7.0 - Firebug Blog

published 790 days, 5 hours, 48 minutes ago posted by iftekharahmedamitiftekharahmedamit 792 days, 57 minutes ago
Friday, March 25, 2011 7:20:06 AM GMT Wednesday, March 23, 2011 12:10:57 PM GMT
After eleven alphas and four betas Firebug Working Group (FWG) is proud to declare victory and release the final Firebug 1.7.0! Of course also Chromebug 1.7.0 is available. This version fixes three bugs reported since the last beta. The main goal of Firebug 1.7 has been full compatibility with Firefox 4 (released tomorrow!). However there are also new features and improvements. They have been all published here on this blog, so see just some highlights.Break notification message redesignOnly show appli... (more)
category: How To | clicked: 1 | comment | | source: blog.getfirebug.com
tags: Firefox 4, Firebug, Firefox
8
Shouts

Visual Studio color schemes – Its time for a makeover

published 788 days, 16 hours, 12 minutes ago posted by http://2leggedspider.wordpress.com/http://2leggedspider.wordpress.com/ 791 days, 18 hours, 45 minutes ago
Saturday, March 26, 2011 8:56:13 PM GMT Wednesday, March 23, 2011 6:23:20 PM GMT
http://studiostyl.es/ is a great website where you can browse for hundreds of color schemes to change the background and text colors of your Visual Studio IDE. It works for both Visual Studio 2008 and 2010. You can also create and submit your own scheme or download and rate schemes submitted by others. (more)
category: Web Dev | clicked: 1 | comment | | source: 2leggedspider.wordpress.com
tags: Tips & Tricks, Visual Studio, color scheme
7
Shouts

Getting specific with the Specification Pattern

published 790 days, 5 hours, 48 minutes ago posted by http://2leggedspider.wordpress.com/http://2leggedspider.wordpress.com/ 791 days, 19 hours, 1 minute ago
Friday, March 25, 2011 7:20:06 AM GMT Wednesday, March 23, 2011 6:06:59 PM GMT
The idea of Specification pattern according to Martin Fowler is to separate the statement of how to match a candidate, from the candidate object that it is matched against. As well as its usefulness in selection, it is also valuable for validation and for building to order. In simple terms it means this pattern helps us to check if an object satisfies certain criteria. Well, we do that all the time in our code don’t we? For instance, we check if the data in an object that we send to a web service or dat... (more)
category: Architecture | clicked: 2 | comment | | source: 2leggedspider.wordpress.com
9
Shouts

Continuous Web.config security analysis with WCSA and TeamCity

published 785 days, 23 hours, 50 minutes ago posted by http://troyhunt.myopenid.com/http://troyhunt.myopenid.com/ 792 days, 4 hours, 21 minutes ago
Tuesday, March 29, 2011 1:17:51 PM GMT Wednesday, March 23, 2011 8:47:17 AM GMT
Ah, automation. Any time I find myself doing the same thing more than once, I get the inclination to bundle it all up into something that can begin happening with a single click. Or even better, with no clicks. Recently I’ve begun using the Web.Config Security Analyser. This little beauty let’s you feed in a Web.config then it comes back and tells you everything you’ve done wrong in the world of security configuration. Since the Web.config tends to change a bit over time and poses a potentially serious... (more)
category: Web Dev | clicked: 4 | 2 comments | | source: www.troyhunt.com
tags: Security, web.config, TeamCity
7
Shouts

Attaching an External DataSource in LightSwitch Application

published 788 days, 16 hours, 12 minutes ago posted by http://www.kunal-chowdhury.com/http://www.kunal-chowdhury.com/ 791 days, 18 hours, 45 minutes ago
Saturday, March 26, 2011 8:56:13 PM GMT Wednesday, March 23, 2011 6:23:18 PM GMT
You might know that, LightSwitch is now in Beta 2 stage. Microsoft released it few days ago. I have a series of Tutorial on LightSwitch Beta 1 where we discussed on creating database tables using the LightSwitch table designer. In this tutorial, we will discuss how to attach an existing database table available in your SQL server database. This was also available in Beta 1 release. This time we will discuss with the latest version. Read the full post and at the end leave your feedback. (more)
category: Metro | clicked: 0 | comment | | source: www.kunal-chowdhury.com
tags: LightSwitch Beta 2, LightSwitch
10
Shouts

Using EF 4.1 Code First to support multiple database vendors

published 785 days, 22 hours, 14 minutes ago posted by http://vistadb.myopenid.com/http://vistadb.myopenid.com/ 792 days, 8 hours, 5 minutes ago
Tuesday, March 29, 2011 2:53:38 PM GMT Wednesday, March 23, 2011 5:02:59 AM GMT
With the release of the Entity Framework 4.1 I was interested to see how well the code first aspect works with multiple database vendors.  Could you use the code first modeling to change the database through a connection string?  I thought it might be worth a quick sample app to find out. I have an identical database in both SQL CE 4 and VistaDB 4.1.  Since they both have ADO.Net providers for the Entity Framework I decided to use them for this test... (more)
category: Data | clicked: 22 | comment | | source: infinitecodex.com
tags: VistaDB, Entity Framework 4.1, SQL compact 4
8
Shouts

What is your developer's position?Oleg Smirnov

published 790 days, 5 hours, 48 minutes ago posted by slo2olsslo2ols 792 days, 4 hours, 14 minutes ago
Friday, March 25, 2011 7:20:06 AM GMT Wednesday, March 23, 2011 8:54:18 AM GMT
"I seek Senior Developer position" - something like this begins Objective section in most CVs. The point is not that a company is looking for a developer precisely on such position and that the developer appreciated not only themselves but also other developers of this company, when he wrote his CV. In today post we will describe how to make this assessment developers and recruiters. (more)
category: Agile | clicked: 1 | comment | | source: osmirnov.net
tags: jobs, developers, cv
8
Shouts

Customizing Orchard shapes

published 788 days, 16 hours, 12 minutes ago posted by pszmydpszmyd 791 days, 20 hours, 46 minutes ago
Saturday, March 26, 2011 8:56:13 PM GMT Wednesday, March 23, 2011 4:21:41 PM GMT
Shapes are the basic building blocks of Orchard UI. They can be easily created and further reused by just putting an appropriate .cshtml file in your module /Views folder. This is nicely described here and here. But what if you’d want to arm your shape with some more fancy logic (eg. let them contain other shapes/objects, make them auto-wrapped with some Html tags, allow fine-grained overriding and such)? (more)
category: Web Dev | clicked: 12 | comment | | source: www.szmyd.com.pl
tags: ASP.NET MVC 3, ASP.NET MVC, Orchard CMS, Orchard, ASP.NET
Previous 1 2 ... 6 7 8 9 10 11 12 13 14 15 ... 54 55 Next