setconndevp

Stories submitted by setconndevp

Microsoft Visual Studio Tips and Tricks(channel9.msdn.com)

submitted by setconndevpsetconndevp(233) 4 months, 9 days ago

Learn how to become a Visual Studio coding guru! In this fast-paced session,learn to write code faster than a speeding bullet,leap around large projects in a single bound,and become more powerful than a locomotive with the debugger. We take a wild ride through C# and Visual Basic IDE features in Microsoft Visual Studio 2010 and indispensible out-of-the-box solutions that will help you get your job done better and faster. read more...

add a comment |category: |Views: 15

tags: another

Using RavenDB in Brown-Field ASP.NET MVC projects(www.dotnetcurry.com)

submitted by setconndevpsetconndevp(233) 4 months, 9 days ago

In this article, we will see how RavenDB can be used as Auto-Save cache in an ASP.NET MVC application. We will explore a use case that is typical of brown-field projects (projects involving enhancements to an existing application), where a handy functionality in an ASP.NET MVC application can be achieved by using RavenDB read more...

2 comments |category: |Views: 151

tags: another

jQuery plugins site accidentally deleted - last backup one year old.(blog.jquery.com)

submitted by setconndevpsetconndevp(233) 5 months, 17 days ago

For about a week, instead of hosting several hundred jQuery plugins and several thousand advertisements for laptop batteries, our plugins repository has been serving up a pretty pathetic message about spam and an allusion to some “new submission process.” This happened very suddenly, and we’re sorry to everyone who’s been inconvenienced. read more...

add a comment |category: |Views: 22

tags: another

Why we need even more programming languages(www.infoworld.com)

submitted by setconndevpsetconndevp(233) 5 months, 17 days ago

Upgrading existing, popular languages to support new features is a lot harder than you might think read more...

add a comment |category: |Views: 5

tags: another

CLR Inside Out: Investigating .NET Memory Issues(msdn.microsoft.com)

submitted by setconndevpsetconndevp(233) 5 months, 17 days ago

Uncovering and correcting memory issues in managed applications can be difficult. Memory issues manifest themselves in different ways. For example, you may observe your application's memory usage growing unboundedly, eventually resulting in an Out Of Memory (OOM) exception. (Your application may even throw out-of-memory exceptions when there is plenty of physical memory available. read more...

add a comment |category: |Views: 15

tags: another

Node.cs(ayende.com)

submitted by setconndevpsetconndevp(233) 9 months, 27 days ago

No, the title is not a typo. There is so much noise around Node.js, I thought it would be fun to make a sample of how it would work in C# using the TPL. read more...

add a comment |category: |Views: 24

tags: another

Don’t Worry, Be Lazy(msdn.microsoft.com)

submitted by setconndevpsetconndevp(233) 1 year, 9 months ago

In software development, the term laziness refers to delaying certain expensive activity as long as possible much more than it relates to idleness. Software laziness is still about doing things, but it means that any action will take place only when it’s needed to complete a certain task. In this regard, laziness is an important pattern in software development and can be successfully applied to a variety of scenarios, including design and implementation. read more...

add a comment |category: |Views: 5

tags: another

Windows Phone and the Cloud—an Introduction(msdn.microsoft.com)

submitted by setconndevpsetconndevp(233) 1 year, 9 months ago

See how easy it is to create a Windows Phone 7 app and tie it to a Web service as Ramon Arjona walks you through the creation of a language translation tool. read more...

add a comment |category: |Views: 4

tags: another

Building an AtomPub Server Using WCF Data Services(msdn.microsoft.com)

submitted by setconndevpsetconndevp(233) 1 year, 9 months ago

If you’re not familiar with it, the Open Data Protocol (OData) is a thing of beauty. OData (described in detail at odata.org) builds on the HTTP-based goodness of Atom for publishing data; AtomPub for creating, updating and deleting data; and the Microsoft Entity Data Model (EDM) for defining the types of data. read more...

add a comment |category: |Views: 62

tags: another

Adding an Existing MVC 2 project as a Web Role in Azure(blogs.msdn.com)

submitted by setconndevpsetconndevp(233) 1 year, 10 months ago

This one has bitten me a couple of times (at least) now, so let’s get it down in writing. Although the latest (as of July 20th, 2010) Visual Studio Tools for Azure support adding MVC 2 projects as web roles, you need to remember to set the “Copy... read more...

add a comment |category: |Views: 23

tags: another

How to Delete All Objects From an Entity in the Entity Framework 4(blogs.msdn.com)

submitted by setconndevpsetconndevp(233) 1 year, 10 months ago

In a previous blog entry , I described how happy I was with Code-First Development with Entity Framework 4. It was a good first impression, and then I had to go beyond my initial spike and create a set of integration tests that would actually work... read more...

add a comment |category: |Views: 27

tags: another

Code-First Development with Entity Framework 4–Falling Into the Pit(blogs.msdn.com)

submitted by setconndevpsetconndevp(233) 1 year, 10 months ago

I was excited to see StottGu’s blog regarding Code-First Development with Entity Framework 4. Personally, I don’t learn best by going through a step by step tutorial, however. It’s like learning a song in another language by rote memory. It may sound the same when I parrot it back, but don’t ask me to improvise. So I began to apply the principles in the article to the particular problem I was working on – and applying it in a TDD fashion, which is what this particular functionality was developed for. read more...

add a comment |category: |Views: 11

tags: another

IIS Express – What we know so far…(geekswithblogs.net)

submitted by setconndevpsetconndevp(233) 1 year, 10 months ago

Today Scott Gu announced a new product called IIS Express. Basically, this product gives all the power.. read more...

add a comment |category: |Views: 13

tags: another

Working with Environment Variables in C#(www.dreamincode.net)

submitted by setconndevpsetconndevp(233) 1 year, 11 months ago

Recently I have seen quite a few posts looking for to read & set Environment variables in C#, so I thought it was time for a blog posting going over the ins and outs of this process read more...

add a comment |category: |Views: 12

tags: another

Parallel Programming in .NET 4.0: Using Tasks(blogs.msdn.com)

submitted by setconndevpsetconndevp(233) 1 year, 11 months ago

So far in this series, we have discussed PLINQ and the Parallel class. These allow you to take existing code (LINQ queries, for/foreach loops, etc.) and run it in parallel. In today’s post, let’s examine how you might leverage .NET 4.0 if you are currently doing lower-level parallel programming using the Thread class read more...

add a comment |category: |Views: 25

tags: another

SQL Server Index Intersection/Union(blogs.msdn.com)

submitted by setconndevpsetconndevp(233) 1 year, 11 months ago

The SQL Server optimizer has many algorithms and operators to put together reusable execution plans for queries that you run against a system. read more...

add a comment |category: |Views: 5

tags: another