DotNetKick.com is an open-source project. Please report any bugs and let us know your great suggestions. Currently running svn revision 637 (rss)

Kick Spy!, Kick Zeitgeist and Kick Widgets

DannyDouglass Subscribe to this feed
DannyDouglass
Profile Kicked Submitted Comments Tags Friends Kicked By Friends Submitted By Friends

Stories kicked by DannyDouglass
16
kicks
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 add a comment | category: | Views: 176
tags: , | tag it

67
kicks
published 19 days, 16 hours ago, submitted by simonech 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...

Add a comment 1 comment | category: | Views: 449
tags: | tag it

20
kicks
published 20 days, 20 hours ago, submitted by Marwan Marwan 21 days, 5 hours ago

blog.madskristensen.dk — Some exiting things have been going on with BlogEngine.NET lately... read more...

Add a comment add a comment | category: | Views: 336
tags: , , | tag it

21
kicks
published 24 days, 2 hours ago, submitted by TroyMG 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 add a comment | category: | Views: 301
tags: , , , , | tag it

3
kicks
submitted by TroyMG 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 add a comment | category: | Views: 40
tags: , , , , | tag it

18
kicks
published 3 months, 29 days ago, submitted by TroyMG 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...

Add a comment 1 comment | category: | Views: 213
tags: , , , , | tag it

35
kicks
published 5 months, 13 days ago, submitted by GOEran GOEran 5 months, 13 days ago

blog.goeran.no — jQuery plugins for the ASP.NET MVC framework read more...

Add a comment 1 comment | category: | Views: 517
tags: , , , , | tag it

20
kicks
published 5 months, 16 days ago, submitted by EtienneTremblay EtienneTremblay 5 months, 16 days ago

blog.lavablast.com — This tutorial shows how to make an horizontal content slider with jQuery and a plugin called jFlow. read more...

Add a comment add a comment | category: | Views: 530
tags: , , , | tag it

19
kicks
published 5 months, 16 days ago, submitted by alley 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...

Add a comment 1 comment | category: | Views: 263
tags: | tag it

12
kicks
published 5 months, 23 days ago, submitted by DannyDouglass 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 add a comment | category: | Views: 126
tags: , , , , | tag it

41
kicks
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...

Add a comment 2 comments | category: | Views: 244
tags: , , , | tag it

15
kicks
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 add a comment | category: | Views: 182
tags: | tag it

11
kicks
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...

Add a comment 4 comments | category: | Views: 141
tags: | tag it

36
kicks
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...

Add a comment 3 comments | category: | Views: 627
tags: | tag it

18
kicks
published 5 months, 29 days ago, submitted by TroyMG 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 add a comment | category: | Views: 202
tags: , , , , | tag it

40
kicks
published 5 months, 29 days ago, submitted by Jemm 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 add a comment | category: | Views: 435
tags: , , , | tag it

 

Sponsored Link: www.carlist.ie

Search:

Ads by The Lounge