KodefuGuru

Stories kicked by friends of KodefuGuru

Developer Productivity Tools and Visual Studio Extensions(www.mehdi-khalili.com)

submitted by dpetersondpeterson(4397) 5 days, 15 hours ago

Mehdi Khalili shares what's in his toolbox for Visual Studio. It's a curated list of some of the best productivity boosters available. read more...

1 comment |category: |Views: 405

tags: another

C#/.NET Little Wonders: Select() and Where() with Indexes(www.blackrabbitcoder.net)

submitted by BlackRabbitCoderBlackRabbitCoder(661) 9 days, 4 hours ago

We’ve talked about the Select() and Where() LINQ extension methods before. The Select() method lets you project from the source type to a new type, and the Where() method lets you filter the list of items to the ones you are interested in. Most people know of these methods in their simplest form, where they simply take a projection and predicate respectively that operates on just an element. However, there are overloads for both of these methods that take a delegate that operates on both the element and the index of the element. read more...

1 comment |category: |Views: 282

tags: another

Ten features I like about Coffeescript(openmymind.net)

submitted by dpetersondpeterson(4397) 10 days, 15 hours ago

Karl Seguin shares ten features he likes in Coffeescript. A great list for anyone learning Coffeescript, or anyone who isn't yet familiar with Coffeescript. read more...

1 comment |category: |Views: 198

tags: another

Creating Type Aliases in C#(www.blackwasp.co.uk)

submitted by BlackWaspBlackWasp(4212) 11 days, 6 hours ago

The using directive of the C# programming language is often used to create namespace aliases, allowing types with matching names that appear in separate namespaces to be easily accessed. A lesser known use of the directive is to create aliases for types. read more...

2 comments |category: |Views: 265

tags: another

An Introduction to NuGet(codersbarn.com)

submitted by BognitBognit(2125) 16 days, 11 hours ago

Getting started with NuGet can be very confusing because there are really four parts to it with separate downloads. This post is an effort to make it easier to grasp and get started. read more...

add a comment |category: |Views: 2

tags: another

Visual Studio 11 User Interface Updates Coming in RC(blogs.msdn.com)

submitted by tom103tom103(161) 18 days, 6 hours ago

The Visual Studio team has taken into account some of the feedback about the beta, and presents the changes in the user interface of VS 11 RC read more...

1 comment |category: |Views: 253

tags: another

C#/.NET Little Wonders: The Enumerable.Repeat() Static Method(www.blackrabbitcoder.net)

submitted by BlackRabbitCoderBlackRabbitCoder(661) 23 days, 4 hours ago

The Enumerable.Repeat() method performs the simple task of creating a sequence by repeating an element a specific number of times. While this is, in of itself, a trivial need, it can also be used to drive more useful results such as repeating a generator delegate, or creating sequences out of single items. read more...

1 comment |category: |Views: 295

tags: another

Open Tabs to the Right in Visual Studio 2011 Beta(www.codersbarn.com)

submitted by BognitBognit(2125) 28 days, 16 hours ago

I've previously shown how to set this in VS 2010. In the new VS 2011 beta, it's a little harder to find. read more...

add a comment |category: |Views: 2

tags: another

String Matching in LINQ(blogs.telerik.com)

submitted by jnpetrovjnpetrov(95) 1 month, 2 days ago

Performing simple string equality tests is often not enough when application user convenience is key. Often only a fragment of a string is known to the user, or many of them. Sometimes there is a need to search for a fragment in multiple columns. Which options does OpenAccess and LINQ provide to perform string matching? Into which SQL is the LINQ expression translated? read more...

add a comment |category: |Views: 319

tags: another

Lazy Programming for Smarties(blogs.dotnetkicks.com)

submitted by bsenoffbsenoff(1583) 1 month, 6 days ago

As a programmer, I can honestly say that I am lazy. Forget the menial job of repeating tasks… if it takes me an hour to complete an iteration, I would rather spend 3 hours automating the process. You never know when you might need to do it again, and the click of a button is much more satisfying than an hour of processing data. I know I’m not the only one who feels this way either, otherwise Andy Hunt and Dave Thomas wouldn’t have codified the DRY principle in The Pragmatic Programmer…. Don’t Repeat Yourself. read more...

1 comment |category: |Views: 296

tags: another

The Future of ASP.NET Web Forms(www.codersbarn.com)

submitted by BognitBognit(2125) 1 month, 8 days ago

We've all seen the growing popularity of ASP.NET MVC over recent years and the most common reaction is to want to play with it but when it comes time to making the switch, we often experience the "don't move my cheese" syndrome. read more...

add a comment |category: |Views: 17

tags: another

What's new in Razor v2?(vibrantcode.com)

submitted by dpetersondpeterson(4397) 1 month, 15 days ago

Check out some of the new features and changes in the upcoming Razor view engine v2.0. Don't forget the source code is also now available on Codeplex! read more...

1 comment |category: |Views: 621

tags: another

A recipe for Dev to Production with ASP.NET MVC and RavenDB(devdirective.com)

submitted by RobertTheGreyRobertTheGrey(447) 1 month, 24 days ago

Been meaning to spend time looking into a NOSQL solution, but don't have time to do the research? Now is your chance! We've broken it down for you so you can get at this topic from dev to production. So, don't be tentative and let procrastination hold you back. Learn this stuff! You'll be happy you gave it the time it deserves... read more...

2 comments |category: |Views: 243

tags: another

Agile is a Sham(williamedwardscoder.tumblr.com)

submitted by pwhe23pwhe23(972) 1 month, 26 days ago

Agile is a Sham. Thats SCRUM and TDD and all the rest; it is all those new ways of managing development projects and being super-productive and modern and buzzword-compliant; all the sprints, scrums, playing cards crass commercial nonsense. read more...

12 comments |category: |Views: 448

tags: another

5 1/2 Features every C# programmer should lust after(www.mindscapehq.com)

submitted by dpetersondpeterson(4397) 1 month, 28 days ago

Ivan Towlson at Mindscape shares 5 1/2 features in F# that every C# programmer should be drooling over. Particularly interesting are Object Expressions and Partial Applications. read more...

add a comment |category: |Views: 633

tags: another

5 things to learn about ASP.NET MVC 4(devdirective.com)

submitted by RobertTheGreyRobertTheGrey(447) 2 months ago

MVC took 3 versions to become a stable and widely usable web application development framework, but still had you doing many things from the ground up. Version 4 now comes with plenty more in the box and it's looking more and more like a web framework to be reckoned with read more...

2 comments |category: |Views: 665

tags: another