sportsminded

Stories kicked by sportsminded

You're Doing It Wrong(codinghorror.com)

submitted by spoulsonspoulson(327) 3 years, 3 months ago

Templating tends to break down because it forces you to treat code and markup as two different and fundamentally incompatible things. We spend all our time awkwardly switching between markup-land and code-land using escape sequences. They're always fighting each other -- and us. read more...

add a comment |category: |Views: 373

tags: another

Infinite Lists With C# Yield(codethinked.com)

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

What we are about to talk about here may seem like a purely academic exercise, but hopefully I will convince you that this isn’t exactly the case. There are several situations in real-world applications where infinite lists can appears if only we were to think about them in the right way. read more...

1 comment |category: |Views: 451

tags: another

An Interview With Kevin Kline About SQL In A Nutshell Third Edition(blogs.lessthandot.com)

submitted by dnk2007dnk2007(765) 3 years, 3 months ago

An Interview With Kevin Kline About SQL In A Nutshell Third Edition. SQL In A Nutshell covers MySQL, PostgreSQL, Oracle and SQL server read more...

add a comment |category: |Views: 99

tags: another

Using C# "Yield" for Readability and Performance(ytechie.com)

submitted by SuperJasonSuperJason(2740) 3 years, 3 months ago

I must have read about “yield” a dozen times. Only recently have I began to understand what it does, and the real power that comes along with it. I’m going to show you some examples of where it can make your code more readable, and potentially more efficient. read more...

add a comment |category: |Views: 818

tags: another

Understanding Safe Database Synchronization(weblogs.asp.net)

submitted by joycscjoycsc(1597) 3 years, 3 months ago

Data or content synchronization is one of the classic problems in software world. It becomes very trivial point while working on software production, where production data and schema needs to be synchronized with live data and schema. Having some basic conceptual complexity, developers often get afraid to use any automated tool considering the risk factors to lose of data or content. Having a clear specific idea on content synchronization will greatly help to reduce lots of confusion and fear. read more...

2 comments |category: |Views: 303

tags: another

Download SQL Server 2008 System Views Poster - PDF - A Wall Poster(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 3 years, 3 months ago

Microsoft has published SQL Server 2008 System Views Poster. This poster should be must have poster for any SQL Server Developer. I have this poster on my wall. The Microsoft SQL Server 2008 System Views Map shows the key system views included in SQL Server 2008, and the relationships between them. The map is similar to the Microsoft SQL Server 2005 version and includes updates for the new and updated the Microsoft SQL Server 2008 features such as resource governor, extended events, full-text search, and others. This is must have poster for every Database Developer and Database Administrator. read more...

1 comment |category: |Views: 841

tags: another

Creating a better Wrapper using AOP(stupiddumbguy.blogspot.com)

submitted by bbcookbbcook(335) 3 years, 3 months ago

If you've ever had to adapt third-party objects to your object model, here's a technique that you can use to skip the grunt work of building those wrapper classes. read more...

1 comment |category: |Views: 351

tags: another

WPF XAML Data Binding Cheat Sheet(nbdtech.com)

submitted by CryogenicCryogenic(75) 3 years, 3 months ago

One of the best things about WPF is the advanced data binding support, the Binding class that is used to create data bindings has many interesting and useful options. And I never remember the more advanced options when I’m writing XAML. So I wrote a very detailed “cheat sheet” for the WPF Binding class ... read more...

add a comment |category: |Views: 500

tags: another

A .NET Open Source Project Retrospective: Json.NET(james.newtonking.com)

submitted by JamesNKJamesNK(3020) 3 years, 3 months ago

A look inside the development of a .NET open source project. What went right and what went wrong and lessons learnt along the way. read more...

add a comment |category: |Views: 294

tags: another

Simple jQuery Delete Link For ASP.NET MVC(haacked.com)

submitted by leedumondleedumond(2144) 3 years, 3 months ago

Any time you allow a GET request to modify data, you’re asking for trouble. The reason that delete operations deserve special attention is that it’s the most common case where you would use a link to change information. If you are using jQuery, one simple way to turn any link into a POST link read more...

add a comment |category: |Views: 381

tags: another

Form validation with ASP.NET MVC release candidate(blog.maartenballiauw.be)

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

Last week, the ASP.NET MVC framework release candidate was released (check ScottGu’s post). Apart from some great new tooling support, form validation has never been easier. Here’s a quick introduction. read more...

4 comments |category: |Views: 514

tags: another

Action, Func, Predicate - what's going on?(blogs.vertigo.com)

submitted by brandewinderbrandewinder(530) 3 years, 3 months ago

This post covers Action<T>, Func<T>, Predicate<T> and shows them in action. These delegates are generalization (abstractions?) over some common method signatures and you might find them very handy. Besides making LINQ possible, they should help you stop writing your own custom delegates and replace them with these generic ones. read more...

1 comment |category: |Views: 1757

tags: another

What’s New For MVC Tools in the ASP.NET MVC 1.0 Release Candidate (blogs.msdn.com)

submitted by leedumondleedumond(2144) 3 years, 3 months ago

The ASP.NET MVC 1.0 Release Candidate (RC) is finally out, and we wanted to give returning MVC users as well as new MVC users an overview of what the tooling in Visual Studio provides. read more...

add a comment |category: |Views: 359

tags: another

ASP.NET MVC 1.0 Release Candidate Now Available(weblogs.asp.net)

submitted by sharplifesharplife(4570) 3 years, 3 months ago

Finally Scott Guthrie announced ASP.NET MVC 1.0 RC. Check it out. read more...

2 comments |category: |Views: 239

tags: another

Top Visual Studio Add-ins(web2asp.net)

submitted by sedgeysedgey(1728) 3 years, 4 months ago

I am often asked what my favourite development tools are, so I thought I’d write down a few that I use and why. I have split this list in 2 as some of these are add-ons for visual studio and others are just standalone applications here are the VS Add-ins. read more...

add a comment |category: |Views: 1402

tags: another

Replacing the default view engine in MVC w/ Spark(dimecasts.net)

submitted by LordLord(3737) 3 years, 4 months ago

DimeCast - Replacing the default view engine in MVC w/ Spark read more...

add a comment |category: |Views: 216

tags: another