spoulson

Stories kicked by spoulson

Massive memory leak in ASP.NET? Turn stuff off you don't need!(explodingcoder.com)

submitted by spoulsonspoulson(327) 9 months, 19 days ago

Are you the kind that leaves lights on in your house when nobody's in the room? Yes, I know it's your energy bill. But, what if the bill were cutting into the ever increasing cost of your Internet bill? Wouldn't you turn the light off? ASP.NET gives you lots of layers of functionality, but not every site is going to need each. read more...

add a comment |category: |Views: 2

tags: another

Visual Studio 2010 Service Pack 1 now available(blog.evonet.com.au)

submitted by bartekmbartekm(485) 1 year, 2 months ago

Microsoft has now released Service Pack 1 for Visual Studio 2010 to MSDN subscribers, with the public release due on March 10th. Along with a number of fixes, service Pack also includes the Team Foundation Server Project Server Integration Feature Pack, and the Visual Studio 2010 Load Test Feature Pack. read more...

add a comment |category: |Views: 570

tags: another

SQL Server: The Magical OVER clause (connectsql.blogspot.com)

submitted by lionofdezertlionofdezert(1110) 1 year, 2 months ago

When comes to query writing, I think, I am so lazy ;) and always prefer less code. Recently I found OVER clause so helpful to write my code in more effect and more magical way. read more...

1 comment |category: |Views: 26

tags: another

.NET Reflector is Becoming a Paid-For Product(blogs.microsoft.co.il)

submitted by gilfgilf(2139) 1 year, 3 months ago

Red Gate announced a few days ago that .NET Reflector will become a commercial product from the end of February 2011. read more...

add a comment |category: |Views: 109

tags: another

An open letter to the .NET community(www.red-gate.com)

submitted by grantpalingrantpalin(376) 1 year, 3 months ago

RedGate will start charging for their previously free version of Reflector. read more...

1 comment |category: |Views: 50

tags: another

What if Visual Studio had Achievements?(blog.whiletrue.com)

submitted by bh213bh213(255) 1 year, 4 months ago

Maybe in Visual Studio 2012 with XBox Live integration? read more...

5 comments |category: |Views: 694

tags: another

IQueryable Can Kill Your Dog, Steal Your Wife, Kill Your Will To Live,(www.weirdlover.com)

submitted by evannevann(219) 2 years ago

If you take a quick detour over to StackOverflow, you’ll realize very, very quickly that, when it comes to wholly and full-heartedly screwing up your Linq to SQL statements, the screw-up almost always involves a misunderstanding of the purpose and... read more...

add a comment |category: |Views: 841

tags: another

So You'd Like to Send Some Email (Through Code)(www.codinghorror.com)

submitted by tiernanotiernano(1674) 2 years, 1 month ago

Just because you send an email doesn't mean it will arrive. post about how to make sure your email should get though all the firewalls and spam filters... read more...

add a comment |category: |Views: 31

tags: another

Ten Cool Visual Studio 2010 Features(gregdoesit.com)

submitted by gergely.oroszgergely.orosz(645) 2 years, 1 month ago

The 10 most useful new features in Visual Studio 2010. read more...

add a comment |category: |Views: 2344

tags: another

A Visual Look At The LINQ SelectMany Operator(www.codethinked.com)

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

An inside look at how SelectMany works, along with visuals to help you more easily understand it. read more...

add a comment |category: |Views: 468

tags: another

Composition versus Inheritance(www.lostechies.com)

submitted by ChrisMissalChrisMissal(145) 2 years, 3 months ago

Discusses the benefit of Composition versus Inheritance. Touches on IoC Containers and how they can help you achieve more granular bits of code that make your applications more flexible and easier to maintain. read more...

add a comment |category: |Views: 636

tags: another

Painless Caching, Memoization for .NET(explodingcoder.com)

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

When searching for .NET discussions of I-don't-even-remember, I somehow came across Dustin Campbell's blog post about automatic memoization with C#. I instantly remembered first reading about this topic in Higher Order Perl, which at the time introduced me to this handy technique using the delegate pattern. After looking over Dustin's code, I liked the simplicity of wrapping any delegate with a single method call. This makes for an academic discussion, but I thought this could be much more practical if we abstracted the concept a bit more. read more...

add a comment |category: |Views: 767

tags: another

System.Reactive or the .NET Reactive Extensions (Rx) – Concepts and Fi(amazedsaint.blogspot.com)

submitted by amazedsaintamazedsaint(835) 2 years, 6 months ago

Consider how you handle a simple MouseMove operation in .NET using an event handler. Let us take a step back, and examine this a bit closer - The mouse cursor location’s value is changing over a period of time, and an event notifies you about that. You may see the data we receive from these events as pieces of data that you (the target) receive from a source over a period of time – a sequence. Also, you may instantly notice that the same is happening when you iterate over a collection, probably using a for loop. In that case too, you are receiving values from a source over a period of time. Or, in both cases, the target is receiving the pieces of data from a source over a period of time through some signal.... read more...

add a comment |category: |Views: 52

tags: another

Async without the pain(marcgravell.blogspot.com)

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

Simple solution for generic asynchronous operations. "Why can't we wrap this using functional programming?" read more...

add a comment |category: |Views: 25

tags: another

Why are thread safe collections so hard? (blogs.msdn.com)

submitted by gavinjoycegavinjoyce(25.7k) 3 years, 3 months ago

"Writing a collection which is mutable, thread safe and usable is an extremely difficult process. At least that’s what you’ve likely been told all through your schooling. But then you get out on the web and see a multitude of thread safe lists, maps and queues. If it’s so hard, why are there so many examples?" read more...

1 comment |category: |Views: 335

tags: another

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