dotnetdelivered

Stories kicked by dotnetdelivered

Singularity Source Code Released to CodePlex(coderjournal.com)

submitted by zigamorphzigamorph(3319) 4 years, 2 months ago

Microsoft has released source code from the Singularity research project onto Codeplex under an academic, non-commercial license. “The Singularity Research Development Kit is based on the Microsoft Research Singularity project. It includes source code, build tools, test suites, design notes, and other background materials. The Singularity RDK is for academic non-commercial use only and is governed by this license.” read more...

1 comment |category: |Views: 7

tags: another

What Does It Take To Become A Grandmaster Developer?(moserware.com)

submitted by moserwaremoserware(1665) 4 years, 2 months ago

Provides an analogy between chess grandmasters and software developers including some C# examples. read more...

5 comments |category: |Views: 19

tags: another

Parallel Extensions to the .NET Framework(vsj.co.uk)

submitted by simonebsimoneb(5450) 4 years, 2 months ago

Interesting article by Daniel Moth about the Parallel Extensions. read more...

add a comment |category: |Views: 28

tags: another

Seeing the Future in ParallelFX(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 4 years, 2 months ago

Showing off Futures in ParallelFX and how they can be used for running and synchronizing many tasks that have results. read more...

add a comment |category: |Views: 10

tags: another

Using BlogEngine.net as a general purpose CMS part I(blog.spontaneouspublicity.com)

submitted by HoolieManHoolieMan(1715) 4 years, 2 months ago

In this series of posts, I will show how I converted a small website from just standard .aspx pages into a site where all pages are editable by Windows Live Writer and via an online interface. In Part I of this series I will just set some background on how I am approaching the creation of this lightweight CMS. read more...

add a comment |category: |Views: 398

tags: another

LINQ Gymnastics: Creating A Predictive Query With LINQ(blog.wekeroad.com)

submitted by adminjewadminjew(1490) 4 years, 2 months ago

The Code I wrote about this before, but the best way to approach a difficult query is to cut it up into pieces. It really helps in this case, since what we’re doing is statistical and therefore may seem simple, but isn’t really. So let’s break it out: * We need to know all the Orders that our Product was part of * We need all of the Products that were part of those Orders, omitting the one we just bought * We need to roll these up by the SUM of the quantity of the products bought, and order them in descending order * We need to take the top 5 of this SUM, and query the Products table for the related Products read more...

add a comment |category: |Views: 5

tags: another

Just Do it! Parallel.Do in ParallelFX(codethinked.com)

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

An example of how to use Parallel.Do in order to efficiently sort items and also how to use Parallel.Do and IParallelEnumerable to Parallelize long running processes. read more...

add a comment |category: |Views: 203

tags: another

C# .NET Gmail Tools(code.msdn.microsoft.com)

submitted by JozefSevcikJozefSevcik(1880) 4 years, 3 months ago

Gmail class library for getting gmail atom feeds and for sending emails through gmail. read more...

add a comment |category: |Views: 215

tags: another

Richard Feynman, the Challenger, and Software Engineering(duartes.org)

submitted by gustavodgustavod(775) 4 years, 3 months ago

When Richard Feynman investigated the Challenger disaster, he issued a brilliant report with many insights into the nature of engineering. These apply directly to modern software development. Not sure if this one is on topic - it's about general software engineering. read more...

4 comments |category: |Views: 31

tags: another

Congrats! Scott Guthrie, corporate vice president(microsoft.com)

submitted by wisemxwisemx(8074) 4 years, 3 months ago

Scott Guthrie, corporate vice president, .NET Developer Platform. Previously general manager, Guthrie will continue to oversee several development teams responsible for delivering Microsoft Visual Studio developer tools and Microsoft .NET Framework technologies for building client and Web applications. read more...

5 comments |category: |Views: 5

tags: another

Minify your CSS through Regex(weblogs.asp.net)

submitted by zowenszowens(988) 4 years, 3 months ago

Decreace the size of your CSS stylesheet through a few simple and easy Regex replacements. read more...

1 comment |category: |Views: 150

tags: another