happer

Stories kicked by happer

Tackling Metro Performance Killers(blogs.msdn.com)

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

Dave Tepper, the Program Manager for Windows, shows us how to take care of common performance problems that pop up in Metro-style applications. Some of these performance problems extend to normal web development as well. read more...

add a comment |category: |Views: 87

tags: another

Rx - Join(blogs.microsoft.co.il)

submitted by bnayabnaya(431) 1 month, 22 days ago

this post is an advance one so you haven't yet master the Rx basic practice you might want to start in here. the post will focus on the Join and GroupJoin operators and we will try to get a solid understanding of what does it really means to join multiple data streams. the Rx notion of join is quit different than the join we has used to know in SQL queries. read more...

add a comment |category: |Views: 109

tags: another

Token Based Asynchronous Socket Server On .NET 4(mbrnd.net)

submitted by mabovykinmabovykin(50) 2 months, 7 days ago

An asynchronous token based socket server, which means that server and client will use token exchange as a handshake to confirm that all of the messages were correctly delivered. read more...

add a comment |category: |Views: 121

tags: another

C#/.NET Little Wonders – The DateTimeOffset struct(www.blackrabbitcoder.net)

submitted by BlackRabbitCoderBlackRabbitCoder(661) 2 months, 18 days ago

While the DateTime is a powerful structure for parsing, manipulating, and comparing date-times, it becomes problematic when handling times from different time-zones. The DateTimeOffset is much more portable in that it preserves the offset from UTC. read more...

2 comments |category: |Views: 163

tags: another

INotifyPropertyChanged, The .NET 4.5 Way(danrigby.com)

submitted by CodeM0nkeyCodeM0nkey(96) 2 months, 25 days ago

Included in the .NET 4.5 Beta comes a handy new feature, the CallerMemberName attribute. It is one of three new Caller Information attributes that have been added in this .NET Framework release. With this new functionality we can code such things a logging & tracing routines and INotifyPropertyChanged implementations without having to use string literals, slow reflection code, complex expression tree logic, or code weaving. read more...

1 comment |category: |Views: 467

tags: another

Add a visual Linq expression builder to your app today!(www.codeproject.com)

submitted by dpetersondpeterson(4397) 3 months, 24 days ago

Rabb Moshe Plotkin has created and open-sourced a control for creating Linq queries visually. Using this control, you can give your users the power to query data, rather than writing canned reports or queries. read more...

add a comment |category: |Views: 378

tags: another

New tools for your TDD arsenal(www.beletsky.net)

submitted by dpetersondpeterson(4397) 3 months, 24 days ago

Alexander Beletsky shares a list of sweet new TDD tools to retrofit into your current load-out, including a tool to automatically re-run tests as you make changes to source code, a replacement for Moq, and some awesome fluent assertions. read more...

add a comment |category: |Views: 393

tags: another

Stay out of the JIT's way(www.smelser.net)

submitted by JoeGeekyJoeGeeky(364) 4 months, 11 days ago

This is a nice reminder on how to let the JIT make your code just a little faster. read more...

1 comment |category: |Views: 159

tags: another

.Net's Sort Is Not Secure. Don't Use It. Here's a better one.(zimbry.blogspot.com)

submitted by pwhe23pwhe23(972) 4 months, 21 days ago

.Net's Array.Sort (up to at least version 4.0) has serious weaknesses read more...

1 comment |category: |Views: 561

tags: another

Attaching Continuation Tasks to the UI Thread(www.blackwasp.co.uk)

submitted by BlackWaspBlackWasp(4212) 4 months, 23 days ago

Parallel tasks can be used in Windows Forms and Windows Presentation Foundation applications to run slow processes without blocking the user interface thread. However, this presents a problem, as both systems prevent other threads from updating controls. read more...

2 comments |category: |Views: 95

tags: another

Simple Producer Consumer with Tasks and .Net 4(geekswithblogs.net)

submitted by dpetersondpeterson(4397) 5 months, 21 days ago

Alois Kraus walks us through implementing a producer/consumer pattern using Tasks in .Net 4 read more...

add a comment |category: |Views: 305

tags: another

I, Interface(garymcleanhall.wordpress.com)

submitted by gurhallgurhall(85) 6 months, 10 days ago

The wonderful things that decorating a trivial interface can produce. read more...

2 comments |category: |Views: 706

tags: another

.Net Client profile annoyance, and how to get rid of it(www.bassetassen.com)

submitted by bassetassenbassetassen(50) 6 months, 14 days ago

How to change project templates so it defaults to the full .Net framwork instead of .Net Client Profile read more...

3 comments |category: |Views: 247

tags: another

5 Tips and Techniques for Avoiding Automatic Garbage Collections(www.simple-talk.com)

submitted by dpetersondpeterson(4397) 6 months, 24 days ago

We've seen a few articles lately on ensuring that your memory is properly cleaned up during garbage collection, but today Michael McLaughlin comes in with tips to avoid automatic collection of your objects. Generally speaking, this is for performance reasons. Garbage collection in .Net 4 and earlier happens automatically and blocks program execution, which can be disastrous for certain types of applications (games, real-time analysis, etc). read more...

2 comments |category: |Views: 231

tags: another

Three .NET "tools" that I use every day and you want to know about(dotnet.dzone.com)

submitted by NoldorinNoldorin(829) 6 months, 24 days ago

Dror Helper introduces us to three handy pieces of software that he uses in his daily .NET software development. He explains the utility of these three tools, which many .NET developers may not be aware of. read more...

4 comments |category: |Views: 1032

tags: another

What's new in .Net Framework 4.5(msdn.microsoft.com)

submitted by dpetersondpeterson(4397) 8 months, 12 days ago

MSDN article on what's new in .Net 4.5 read more...

add a comment |category: |Views: 505

tags: another