Latest popular stories

Upcoming Story

EF 4.3 Code-Based Migrations(blogs.msdn.com)

submitted by dpetersondpeterson(3464) 1 day, 21 hours ago

Entity Framework 4.3 has been released, and the big new feature is migrations for code-first projects. This article is a walkthrough of how to take advantage of the new migration support. read more...

add a comment |category: |Views: 139

tags: another

Dynamic Favicons using HTML5 Local Storage and TinyCon(deanhume.com)

submitted by deanomachinodeanomachino(705) 2 days, 3 hours ago

I was perusing Github the other day and I came across this awesome little JavaScript library. It's called TinyCon and it's a small library for manipulating the favicon in your browser. It adds alert bubbles and changing images pretty similar to the way Gmail does. It's basically a really fun little library that allows you to add a notification bubble to your favicons. I started to play around with the code provided on Github and got up and running in no time. read more...

1 comment |category: |Views: 85

tags: another

NCrunch(geeklyeverafter.blogspot.com)

submitted by brunomarquesbrunomarques(279) 4 days, 12 hours ago

Not so often, but every once in a while a new great development tool comes around. This is one of those times. Meet NCrunch. A TDD tool that will speed up your way of doing unit tests read more...

add a comment |category: |Views: 10

tags: another

Creating a Dynamic Extensible Expando Object(www.west-wind.com)

submitted by dpetersondpeterson(3464) 2 days, 18 hours ago

Rick Strahl takes us on a tour of the wonderful ExpandoObject in C# and shows us how to use it to create extensible objects with ease. read more...

add a comment |category: |Views: 145

tags: another

Dynamic CSS with Razor (part 2)(www.h3mm3.com)

submitted by hemmehemme(164) 3 days, 16 hours ago

In PART ONE we saw how to create a gradient programmatically in order automate a CSS stylesheet using the Razor engine. We started from a base color in the RGB space and converted it to the HSL space. Given its Lightness we could easily build shades and highlights of the starting color. read more...

2 comments |category: |Views: 198

tags: another

Casting just a little faster(www.smelser.net)

submitted by JoeGeekyJoeGeeky(359) 4 days, 14 hours ago

This is a tip for the micro-optimizers in the crowd. Got a tight loop and need a little more performance. This may help. read more...

1 comment |category: |Views: 296

tags: another

C# Needs Seqs(www.kodefuguru.com)

submitted by KodefuGuruKodefuGuru(2589) 4 days, 9 hours ago

A proposition for a new keyword in C# to support IEnumberable<T>. read more...

3 comments |category: |Views: 274

tags: another

Basic Raven DB Indexing and Querying with Lucene(unstructuredthinking.blogspot.com.au)

submitted by guffshemrguffshemr(173) 4 days, 1 hour ago

We've got up and running with Raven DB for our new project, which has been a delight to use from a code perspective, but one of the big gaps for me is figuring out how to do SQL like queries. I'm not too bad at putting a SQL query together as something I do semi-regularly as part of my job, so I thought it shouldn't be too much of a stretch to start pulling some statistics. I was wrong. read more...

add a comment |category: |Views: 85

tags: another

Regular Expressions in CoffeeScript are Awesome!(www.elijahmanor.com)

submitted by elijahmanorelijahmanor(1353) 3 days, 22 hours ago

Let's face it, regular expressions aren't for everyone. It takes a special breed of developer to actually enjoy writing regular expressions. Although I enjoy them, the developer that comes after me may find that they are cryptic and hard to read ... One of the very cool things I like about CoffeeScript is that you can annotate your regular expressions! read more...

1 comment |category: |Views: 138

tags: another

A list of useful link for Team Foundation Server(www.codewrecks.com)

submitted by alkampferalkampfer(1748) 4 days, 2 hours ago

A list of useful link for Team Foundation Server, if you use TFS you probably will find these useful. read more...

add a comment |category: |Views: 151

tags: another

Implementing Undo/Redo with Lambda expressions(tommulgrew.pixelati.com)

submitted by tmulgrewtmulgrew(25) 5 days, 1 hour ago

How to implement multiple levels of Undo (and Redo) in a .NET application using Lambda expressions. read more...

1 comment |category: |Views: 315

tags: another

Why is RAID So Important for Databases?(www.sqlservercurry.com)

submitted by flyingkickflyingkick(326) 5 days, 2 hours ago

A good server design has no, or very few, single points of failure. One of the most common server component that fails, are disks. So data redundancy becomes essential to recoverability. Redundant Array of Independent/Inexpensive Disks (RAID) is a disk system that provides better fault-tolerance by making use of redundancy of disk(s). read more...

1 comment |category: |Views: 135

tags: another

NCrunch, The Incredible TDD Tool!(www.ellogical.com)

submitted by elroydsilvaelroydsilva(90) 5 days, 19 hours ago

A review of the TDD tool 'NCrunch'. read more...

add a comment |category: |Views: 410

tags: another

Running your TeamCity builds from PowerShell for any Git branch(www.laurentkempe.com)

submitted by laurentkempelaurentkempe(307) 5 days, 18 hours ago

I love TeamCity and use it since a while to automate my build/release processes. As human we should never do the work a machine can do, we have certainly better and more interesting things to do. The habit I saw in the different projects I worked for is to create new TeamCity builds for the branches you work on. It take quite some work to do, even with templates… So I came with another way of doing it. It is leverage Git, PowerShell and the possibility to run TeamCity builds by “Accessing Server by HTTP” read more...

add a comment |category: |Views: 78

tags: another

URL–New HTML5 input element(www.dotnetjalps.com)

submitted by jalpeshjalpesh(1176) 8 days, 4 hours ago

In earlier post we have seen how the email input tag work in the browser. HTML5 comes with lots of new goodies and today we are going to see one of another new html5 input types URL. In most of the sites once you fill your contact and personal information it will ask for your URL. Till now there is no specific type for URL and we have to manually validate the URL with the Java Script but now with the HTML5 you don’t have do that. It will automatically validate the URL. For the browsers that are not sup... read more...

add a comment |category: |Views: 8

tags: another

Number- New HTML5 Input type(www.dotnetjalps.com)

submitted by jalpeshjalpesh(1176) 7 days, 18 hours ago

I have been writing few series of new HTML5 input types and this is another post on same series. In this post I am going to explain Number input types. The number type is for numeric values. When you use number input type it will have spinner with up and down arrow and with the help of this you can increase or decrease of value.Attributes of Number Input type: There are four attributes of Number input types.Value : This attribute is used to specify the default value of the input type once its first load... read more...

add a comment |category: |Views: 18

tags: another