jadedgeek

Stories kicked by jadedgeek

How to test your multi-threaded code (part 3 of 3)?(blog.decarufel.net)

submitted by decarufedecarufe(959) 3 years ago

In the last post we learned how to find and fix a simple multi-thread problem. Now we will see a more complex scenario and see how CHESS wil find the solution. read more...

add a comment |category: |Views: 166

tags: another

YUI Compressor for Visual Studio(blog.lavablast.com)

submitted by EtienneTremblayEtienneTremblay(5008) 3 years ago

Add a custom tool in visual studio for YUI Compressor. read more...

add a comment |category: |Views: 619

tags: another

Creating Your First MVC ViewEngine(coderjournal.com)

submitted by zigamorphzigamorph(3319) 3 years ago

A question that I have been hearing a lot lately is: How do I change the view location in MVC? But what they really mean to say is: How do I create a new ViewEngine that uses the view locations of my choosing? It is actually very simple to do, and once you see it, I think you will agree with my assessment. The first thing we are going to do to create our custom ViewEngine, is define the paths that we want to use for our master pages, view pages, and shared pages. I have taken the liberty to define the following paths, you can customize them however you wish: read more...

add a comment |category: |Views: 325

tags: another

How to test your multi-threaded code (part 2 of 3)?(blog.decarufel.net)

submitted by decarufedecarufe(959) 3 years ago

Previously we saw how to build a test to find a multi-thread bug our your code. Now we will look at how to reproduce debug and fix it. read more...

add a comment |category: |Views: 211

tags: another

Integrate FxCop with Visual Studio(vkreynin.wordpress.com)

submitted by vkreyninvkreynin(1424) 3 years ago

Step by step how to integrate FxCop with Visual Studio. read more...

add a comment |category: |Views: 560

tags: another

Free T4 Editor for your ASP.NET MVC T4 Templates available(tangibleengineering.blogspot.com)

submitted by fischetmfischetm(260) 3 years ago

Found on tangible blog, that the new tangible T4 Editor 1.4 FREE EDITION now includes full Intelli-Sense support for MVC Host and related namespaces used in ASP.NET MVC 1.0 RTM T4 Templates. In addition it provides a nice highlighting for ASP.NET and T4 Code. Seems like anyone can now edit MVC T4 Templates with full comfort without investing a penny. Awesome! read more...

add a comment |category: |Views: 570

tags: another

Future of Business Intelligence and Databases(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 3 years ago

The term business intelligence (BI) was coined by Howard Dresner in the early 1990s. He defined Business Intelligence as “a set of concepts and methodologies to improve decision making in business through use of facts and fact-based systems.” In a time when data warehousing was considered leading-edge he created the vision that led to the development of business intelligence, as it is known today. The once visionary BI is now commonplace and in near future a momentous transformation is about to take place. BI is all set to bring information democracy where end users across an organization will be able to view information related to their segment. Further, with the rising consumer expectations there will be demand for capability requirements of BI as well. read more...

add a comment |category: |Views: 353

tags: another

Learning the Observer Pattern(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years ago

Taking a look at how we can use the Observer Pattern in our application. The Observer pattern allows you to define a one-to-many relationship inside your application where the parent object (the one) has the ability to notify the child objects (the many) of any state change. You can utilize this pattern to make sure that a set of objects are keep in order when there behavior needs to change based on the state of your application. read more...

add a comment |category: |Views: 374

tags: another

ASP.NET MVC – Poll Time - Kazi Manzur Rashid's Blog(weblogs.asp.net)

submitted by mithumithu(570) 3 years ago

Justin Etheredge recently wrote about the RAD support that he would like to see in ASP.NET MVC and I do agree with him very much (as a side note, I highly recommend his blog you should subscribe). I am also planning to create some reusable UI components for ASP.NET MVC and I need your feedback prior starting it. read more...

add a comment |category: |Views: 242

tags: another

More ASP.NET MVC Best Practices(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 3 years ago

In this post, I’ll share some of the best practices and guidelines which I have come across while developing ASP.NET MVC web applications. I will not cover all best practices that are available, instead add some specific things that have not been mentioned in any blog post out there. Existing best practices can be found on Kazi Manzur Rashid’s blog and Simone Chiaretta’s blog. read more...

add a comment |category: |Views: 1837

tags: another

Linq-to-SQL vs Linq-to-Entities : Revisited(naspinski.net)

submitted by naspinskinaspinski(610) 3 years ago

After 2 months of nothing but L2E, I feel I can give a decent comparison. Linq-to-Entities is fully capable and can do almost everything Linq-to-SQL can do, it just takes a bit more code some times; the almost is for multiple database utilization. L2E is a great ORM, but many of us were spoiled with L2S, so it is now up to Microsoft to live up to the expectations that they put out for us with this framework that they are deprecating. I hope and assume it will become a superior ORM, but that is in Microsoft's hands now; for the time being, it is not. read more...

add a comment |category: |Views: 684

tags: another

How to test your multi-threaded code (part 1 of 3)?(blog.decarufel.net)

submitted by decarufedecarufe(959) 3 years ago

CHESS is the answer. At least this is what we have best right now. read more...

add a comment |category: |Views: 480

tags: another

Using jQuery Validation in ASP.NET Master Pages(dotnetcurry.com)

submitted by samsertsamsert(2159) 3 years ago

jQuery has a Validation plug-in which is full of features and is quite flexible. However the name mangling in ASP.NET Master Pages presents interesting challenges in using this plug-in and I could not find a working solution on the net. In this article, I will demonstrate how to use the jQuery Validation plug-in with Master Pages read more...

add a comment |category: |Views: 536

tags: another

Testing MVC Routes(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years ago

Taking a look at how you can test your routes in an MVC application. We will start the process of creating new functionality for our application in this episode by showing how to create the tests for the routes first by using MvcContrib project. In the next episode we will continue creating our routes to make the tests pass. read more...

add a comment |category: |Views: 181

tags: another

Adding Default Assemblies, Namespaces and Control Prefixes in Config(west-wind.com)

submitted by johnsheehanjohnsheehan(4785) 3 years ago

The fact that you can assign namespace and assemblies in your web.config file is one of the most underused features of ASP.NET read more...

add a comment |category: |Views: 190

tags: another

ASP.NET MVC Tip: Turn on compile-time View Checking(devermind.com)

submitted by pluggypluggy(284) 3 years ago

I like the compiler to catch as many errors as possible before I start debugging or release my application. This also applies to code nuggets in ASP.NET MVC views, especially since these are not unit-testable. This article shows how to enable compile-time View checking for ASP.NET MVC projects. read more...

add a comment |category: |Views: 310

tags: another