RhythmAddict

Stories kicked by RhythmAddict

Pex For Fun: Pex Automated Unit Test Creation Online(pexforfun.com)

submitted by RhythmAddictRhythmAddict(440) 1 year, 10 months ago

A demo of the Pex Unit Test Generation Tool online read more...

add a comment |category: |Views: 17

tags: another

Better Living Through Callbacks(sanjayuttam.com)

submitted by RhythmAddictRhythmAddict(440) 1 year, 11 months ago

In this article I critique some code (don't worry, it's mine!) and demonstrate how I could have used JavaScript callbacks & optional parameters to make my code a whole lot better. read more...

add a comment |category: |Views: 20

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

Measuring the Performance of Asynchronous Controllers(blog.codeville.net)

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

It's easy enough to start using Asynchronous Controllers with ASP.NET MVC 2.0. But how do you know whether it's giving you any benefits? You might be surprised to learn that, in many default scenarios, you won't get any benefit unless you also make some crucial configuration changes. In this blog post you'll see a simple way to load test your asynchronous controllers, and find a rundown of important configuration options that will dramatically affect their behavior. read more...

add a comment |category: |Views: 212

tags: another

Making Your Code Instantly Readable...(itscodeinhere.com)

submitted by RhythmAddictRhythmAddict(440) 2 years, 4 months ago

Semi-rant/insight on how you can make your code more readable with minimal effort. read more...

add a comment |category: |Views: 16

tags: another

Performance: CSS Data URIs(geekswithblogs.net)

submitted by RhythmAddictRhythmAddict(440) 2 years, 5 months ago

This post briefly explains the concept of CSS Data URIs and how you can get started using them in your applications for a performance gain. read more...

add a comment |category: |Views: 10

tags: another

Error Handling in ASP.NET [2 of 2](geekswithblogs.net)

submitted by RhythmAddictRhythmAddict(440) 2 years, 6 months ago

Part 2 summarizes extending MVC's standard error-handling [for logging, etc.], or rolling your own error-handling logic entirely. read more...

add a comment |category: |Views: 5

tags: another

Error Handling in ASP.NET [1 of 2](geekswithblogs.net)

submitted by RhythmAddictRhythmAddict(440) 2 years, 6 months ago

Part 1 summarizes basic out-of-the-box MVC 1 error handling. read more...

add a comment |category: |Views: 7

tags: another

Get the index of a given item using LINQ [quick-tip](geekswithblogs.net)

submitted by RhythmAddictRhythmAddict(440) 2 years, 7 months ago

How to get the index of an item, using LINQ read more...

add a comment |category: |Views: 43

tags: another

Design Patterns – Using the Builder Pattern in C#(dotnetcube.com)

submitted by dncdudedncdude(1350) 2 years, 8 months ago

The Builder Pattern falls under the category of the Creational Patterns as it controls the instantiation of a class. This pattern is suitable in scenarios in which an object is made up several parts and the constituent parts need to be created in the same order using an algorithm. A real world example is in making a pizza. A pizza is made up of several parts (the crust, cheese and the toppings) that are constructed using an algorithm (bake the crust, add cheese and add the toppings). read more...

add a comment |category: |Views: 410

tags: another

Returning values from your LINQ queries [quick tip](itscodeinhere.com)

submitted by RhythmAddictRhythmAddict(440) 2 years, 8 months ago

Short post on how to return values from your LINQ queries from a method. read more...

add a comment |category: |Views: 12

tags: another

XmlSerializer & XmlSerializerFactory: Mostly sure you aren't insane(geekswithblogs.net)

submitted by RhythmAddictRhythmAddict(440) 2 years, 9 months ago

Something you may not know about XmlSerializer & XmlSerializerFactory...[short and sweet] read more...

add a comment |category: |Views: 40

tags: another

ASP.NET MVC 2 Preview 1 is released!(weblogs.asp.net)

submitted by gpeipmangpeipman(3145) 2 years, 9 months ago

ASP.NET MVC 2 first preview is released to public now and you can download it from Microsoft download site. Here is short overview of technical requirements and main new features of ASP.NET MVC 2 Preview 1. read more...

add a comment |category: |Views: 243

tags: another

How to add "Open with reflector" to your right-click actions(itscodeinhere.com)

submitted by RhythmAddictRhythmAddict(440) 2 years, 10 months ago

A tip for convenience, this post provides instructions on how to easily add "Open with reflector" to your windows explorer right-click menu so you can right-click and open any DLL with reflector. read more...

6 comments |category: |Views: 271

tags: another

Remotely Enabling Remote Desktop from the Command Line(itscodeinhere.com)

submitted by RhythmAddictRhythmAddict(440) 2 years, 11 months ago

How to enable RDP for a remote machine via the command line. read more...

add a comment |category: |Views: 26

tags: another

Open Source ASP.NET Maintenance Mode Module - AM3(raihaniqbal.net)

submitted by PrinceOfDhakaPrinceOfDhaka(390) 2 years, 11 months ago

Web developers at times need to put their web applications in an offline mode so as to prevent visitors from accessing the site while they are updating it. The classic way to do this would be to upload an app_offline.html file to the root of the web application. The limitation of this technique is that even the developer cannot visit the site! A developer might need to ensure if everything is working fine and at the same time prevent other users from accessing the web site. read more...

add a comment |category: |Views: 309

tags: another