dengar007

Stories kicked by dengar007

Behavior Driven Development (BDD) with SpecFlow and ASP.NET MVC(blog.stevensanderson.com)

submitted by desmonddesmond(2014) 2 years, 2 months ago

How does BDD compare with TDD, and how can you use BDD-style tools such as Cucumber and SpecFlow with ASP.NET MVC? Steve Sanderson considers the options, and provides an example of combining ASP.NET MVC 2, SpecFlow, and WatiN. read more...

1 comment |category: |Views: 556

tags: another

60+ .Net libraries every developer should know about(blog.webdistortion.com)

submitted by squiggssquiggs(585) 2 years, 3 months ago

Every good developer knows never to re-invent the wheel, especially if there is software out there that has been tested by others, and has an established track record. As a developer using the .NET framework I’ve found some of these libraries invaluable, so I’m sharing them for some of the other dev’s out there with a brief outline of how to use. read more...

2 comments |category: |Views: 2605

tags: another

Bundler Part 2 - ASP.NET Integration(www.codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 2 years, 3 months ago

A look at the Bundler Framework and how it could be integrated in with ASP.NET and ASP.NET MVC in order automate the process of minifying and combining JavaScript files. read more...

add a comment |category: |Views: 31

tags: another

BlockingCollection and IProducerConsumerCollection(www.codethinked.com)

submitted by mosessaurmosessaur(5424) 2 years, 3 months ago

BlockingCollection is an incredibly easy way to have a few threads producing data and have numerous other threads picking up and processing that same data. read more...

add a comment |category: |Views: 293

tags: another

ASP.NET MVC security checklist(codevanced.net)

submitted by andreisterandreister(140) 2 years, 3 months ago

ASP.NET security checklist from a "think-like-a-hacker" perspective: steps one might want to go through once development is done. read more...

add a comment |category: |Views: 602

tags: another

Reporting in NoSQL(blog.wekeroad.com)

submitted by johnsheehanjohnsheehan(4785) 2 years, 3 months ago

One question that comes up a lot in conversation, however, is “dude what about reporting – you can’t do that with NoSQL very well now can ya?” and the answer is “yes, correct. You can’t”. As with all things programming: right tool for the right job. read more...

add a comment |category: |Views: 311

tags: another

ASP.NET MVC 2 RC 2 Released(haacked.com)

submitted by johnsheehanjohnsheehan(4785) 2 years, 3 months ago

After receiving feedback from our last release candidate back in December, we decided it would be prudent to have one more release candidate that incorporated the feedback. You can read the release notes for everything that changed, there’s not a whole lot. read more...

add a comment |category: |Views: 227

tags: another

.NET 4.0 and System.Collections.Concurrent.ConcurrentQueue(www.codethinked.com)

submitted by pitadev_ajpitadev_aj(300) 2 years, 3 months ago

The ConcurrentQueue is a simple (in use, not in construction!) and yet very powerful addition to your parallel programming toolset. If you need thread-safe FIFO operations, then you can throw your locks away and start using the ConcurrentQueue today. read more...

add a comment |category: |Views: 279

tags: another

Windows Azure Drive (aka X-Drive)(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 2 years, 3 months ago

With today’s release of the Windows Azure Tools and SDK version 1.1, also the Windows Azure Drive feature has been released. Announced at last year’s PDC as X-Drive, which has nothing to do with a well-known German car manufacturer, this new feature enables a Windows Azure application to use existing NTFS APIs to access a durable drive. This allows the Windows Azure application to mount a page blob as a drive letter, such as X:, and enables easily migration of existing NTFS applications to the cloud. This blog post will describe the necessary steps to create and/or mount a virtual hard disk on a Windows Azure role instance. read more...

2 comments |category: |Views: 238

tags: another

BlogEngine.NET 1.6 Released(nyveldt.com)

submitted by razorantrazorant(530) 2 years, 3 months ago

This evening, the BlogEngine.NET team released version 1.6.... read more...

add a comment |category: |Views: 12

tags: another

.NET 4.0 and System.Collections.Concurrent.ConcurrentStack(www.codethinked.com)

submitted by pitadev_ajpitadev_aj(300) 2 years, 3 months ago

The ConcurrentStack is an excellent new tool in our parallel programming toolset which allows us to get the LIFO behavior we want, all without having to worry about locking. read more...

add a comment |category: |Views: 270

tags: another

Gherkin style specification testing in .NET(ryanlanciaux.com)

submitted by dengar007dengar007(3084) 2 years, 3 months ago

Behavior Driven Development is something that has interested me for quite awhile. I have constantly tried to write my tests as clear and concise as possible but once I saw Cucumber for Ruby that became the new standard for what I was trying to achieve in .NET. This is where SpecFlow comes in. read more...

add a comment |category: |Views: 361

tags: another

Validating a variable length list, ASP.NET MVC 2-style(blog.stevensanderson.com)

submitted by glennenglennen(310) 2 years, 3 months ago

Steve Anderson follow up article on how to validate a variable elgnth list in MVC 2. read more...

1 comment |category: |Views: 254

tags: another

Did you know about db4o - a brilliant object oriented database?(www.hieu.co.uk)

submitted by gerpxgerpx(509) 2 years, 3 months ago

Forget about XML for small and middle sized apps. Use simple, straight forward OO persistence (db4o it's all objects!) read more...

1 comment |category: |Views: 619

tags: another

.NET 4.0 and System.Collections.Concurrent.ConcurrentBag(www.codethinked.com)

submitted by pitadev_ajpitadev_aj(300) 2 years, 3 months ago

Another in-depth look at a new namespace in .NET 4.0 and how it can help with multithreading. read more...

1 comment |category: |Views: 386

tags: another

Translating routes (ASP.NET MVC and Webforms)(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 2 years, 4 months ago

For one of the first blog posts of the new year, I thought about doing something cool. And being someone working with ASP.NET MVC, I thought about a cool thing related to that: let’s do something with routes! Since System.Web.Routing is not limited to ASP.NET MVC, this post will also play nice with ASP.NET Webforms. But what’s the cool thing? How about… translating route values? read more...

1 comment |category: |Views: 251

tags: another