|
|
DannyDouglass
DannyDouglass
 |
|
Stories kicked by DannyDouglass
|
|
published 1 day, 12 hours ago, submitted by
maartenba
1 day, 16 hours ago
blog.maartenballiauw.be — Earlier this week, Katrien posted an update on the list of Belgian TechDays 2009 speakers. This post featured a summary on all sessions, of which one was titled “Pex – Automated White Box Testing for .NET”. Here’s the abstract:
“Pex is an automated white box testing tool for .NET. Pex systematically tries to cover every reachable branch in a program by monitoring execution traces, and using a constraint solver to produce new test cases with different behavior. Pex can be applied to any existing .NET assembly without any pre-existing test suite. Pex will try to find counterexamples for all assertion statements in the code. Pex can be guided by hand-written parameterized unit tests, which are API usage scenarios with assertions. The result of the analysis is a test suite which can be persisted as unit tests in source code. The generated unit tests integrate with Visual Studio Team Test as well as other test frameworks. By construction, Pex produces small unit test suites with high code and assertion coverage, and reported failures always come with a test case that reproduces the issue. At Microsoft, this technique has proven highly effective in testing even an extremely well-tested component.”
After reading the second sentence in this abstract, I was thinking: “SWEET! Let’s try!”. So here goes…
read more...
add a comment
|
category: Unit Testing | Views: 176
|
|
tags:
Testing, Pex | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 19 days, 16 hours ago, submitted by
simonech
19 days, 18 hours ago
weblogs.asp.net — ScottGu talks about the upcoming Release Candidate of ASP.NET MVC V1 and the features it brings to the table read more...
1 comment
|
category: ASP.NET | Views: 449
|
|
tags:
ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 24 days, 2 hours ago, submitted by
TroyMG
26 days, 15 hours ago
squaredroot.com — Last weekend I had presented a small multiplayer-game built in MVC and jQuery as a sample for a speaking engagement. There isn't much to the "game", as you currently can only move around, but it helps illustrate how easy it is to use jQuery and MVC together to make something interesting. Who knows, maybe the source could kick-start development on your own game? read more...
add a comment
|
category: ASP.NET | Views: 301
|
|
tags:
jQuery, MVC, ReadIt, AJAX, asp.netmvc | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
TroyMG
2 months, 22 days ago
squaredroot.com — For those who, like me, have been following along with each preview push at the CodePlex project, I found a list of changes made between Preview 5 and Beta buried at the bottom of the Release Notes document as well as Microsoft's recommended upgrade path from Preview 5 to Beta. read more...
add a comment
|
category: ASP.NET | Views: 40
|
|
tags:
asp.netmvc, TroyGoode, MVC, ASP.NET, ASPNETMVC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 3 months, 29 days ago, submitted by
TroyMG
4 months, 1 day ago
squaredroot.com — Last weekend I posted a release of the MVC Membership Starter Kit that targets Preview 5 of the ASP.Net MVC framework. There was no packaged release targeting Preview 4 (though if you downloaded the latest source, it worked), so this release essentially packages the changes from both previews. read more...
1 comment
|
category: ASP.NET | Views: 213
|
|
tags:
ASPNETMVC, Membership, Preview5, asp.netmvc, mvc.net | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 5 months, 16 days ago, submitted by
alley
5 months, 17 days ago
chrisvandesteeg.nl — Working on jQuery4mvc preview 4, one of the first things I ofcourse wanted to do was to replace the ASP.NET Ajax library that’s used by the AjaxHelper.
Unfortunately the AjaxHelper itself is sealed, so atm we can’t (easily) change how the AjaxHelper generates its links. So what I did is create a javascript library that uses the same methodnames as the MicrosoftMvcAjax version. read more...
1 comment
|
category: ASP.NET | Views: 263
|
|
tags:
ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 5 months, 23 days ago, submitted by
DannyDouglass
5 months, 23 days ago
dannydouglass.com — My apologies for the delay, but I have (finally) put together the release of my Flickr Gallery for BlogEngine.NET, or any other website for that matter. BlogEngine.NET users should understand this is not a typical "extension" where you drop a .cs file into the App_Code directory. It is a stand-alone section that can be dropped into your BlogEngine.NET instance. You can see an example implementation live on my blog at http://DannyDouglass.com/Photos/. read more...
add a comment
|
category: Open Source | Views: 126
|
|
tags:
FlickrNet, BlogEngine.NET, BlogEngine, OpenSource, Flickr | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 5 months, 24 days ago, submitted by
maartenba
5 months, 24 days ago
weblogs.asp.net — The ASP.NET MVC team is in the final stages of finishing up a new "Preview 4" release that they hope to ship later this week. The Preview 3 release focused on finishing up a lot of the underlying core APIs and extensibility points in ASP.NET MVC. Starting with Preview 4 this week you'll start to see more and more higher level features begin to appear that build on top of the core foundation and add nice productivity.
There are a bunch of new features and capabilities in this new build - so much in fact that I decided I needed two posts to cover them all. This first post will cover the new Caching, Error Handling and Security features in Preview 4, as well as some testing improvements it brings. My next post will cover the new AJAX features being added with this release as well.
read more...
2 comments
|
category: ASP.NET | Views: 244
|
|
tags:
ScottGuthrie, MVC, ASP.NET, ASPNETMVC | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 5 months, 24 days ago, submitted by
CharlieCalvert
5 months, 25 days ago
blogs.msdn.com — This is a second post on the LINQ Set operators, the first being published while LINQ was still in beta. As mentioned in the previous post, there are four LINQ set operators: Union, Intersect, Distinct and Except. Like the other 50 LINQ operators, these methods are designed to allow you to query data which supports the IEnumerable<T> interface. Since all LINQ query expressions, and most LINQ queries, return IEnumerable<T>, these operators are designed to allow you to perform set operations on the results of a LINQ query. In this post I give four highly simplified examples of how to use each of the operators, and then end with a more complex example that shows how the operators might be used in a real world setting. read more...
add a comment
|
category: Linq | Views: 182
|
|
tags:
LINQ | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 5 months, 27 days ago, submitted by
JarrettV
5 months, 28 days ago
jvance.com — Jarrett describes the steps to reproduce a security hole in BlogEngine.NET for deleting and approving comments. He also provides the source code for a quick fix. read more...
4 comments
|
category: ASP.NET | Views: 141
|
|
tags:
ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 5 months, 28 days ago, submitted by
samdnp
5 months, 28 days ago
dotnetperls.com — Article goes beyond the basics and looks at some more detail of StringBuilder in C#, and a benchmark that can help you improve your code that already uses StringBuilder. With graph read more...
3 comments
|
category: C# | Views: 627
|
|
tags:
C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 5 months, 29 days ago, submitted by
TroyMG
5 months, 30 days ago
squaredroot.com — Stephen Walther's latest MVC tip introduced me to the MVC framework's ability to pass server variables into actions as parameters. Unfortunately using this feature is a very bad idea and could jeopardize the security of your application. Take a look at a code sample you might find surprising. read more...
add a comment
|
category: ASP.NET | Views: 202
|
|
tags:
hacking, Security, 3.5, MVC, .net3.5 | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 5 months, 29 days ago, submitted by
Jemm
5 months, 30 days ago
sixrevisions.com — Cheat sheets are helpful to have around because they allow you to quickly remember code syntax and see related concepts visually. Additionally, they’re nice decorative pieces for your office.
In this article, you’ll find 23 excellent, print-ready cheat sheets for HTML/HTML, CSS, and JavaScript (including MooTools and jQuery). read more...
add a comment
|
category: ASP.NET | Views: 435
|
|
tags:
jQuery, CSS, ASP.NET, html | tag it
Everyones tags: | Your tags: | |
|
|
|
|

Sponsored Link: www.carlist.ie
Ads by The Lounge
|