Silicon Valley Code Camp : October 9th and 10th, 2010

Ronn Black

Black Tie Software
About Ronn
Ronn has over 20 years of experience in the computer industry ranging from real-time factory floor applications to real-time stock trading applications and many areas in between.

He has worked for Silicon Valley startups, large financial firms in New York and San Francisco and a few companies that were well over the line of what could be called fringe.
{speaker.firstName} {speaker.lastName}

Speaking Sessions

  • Analyzing Memory Usage and Memory Leaks

    3:30 PM Saturday   Room: 8403
    Many developers spend much of their career blissfully unaware of garbage collection. A lucky few encounter slow performance or encounter an out of memory exception. Those lucky few who have the opportunity to investigate the cause may discover a world overlooked by much of the .Net community. Generally, there is nothing wrong with overlooking this area; after all the garbage collector does a very good job of handling managed memory. However, there are some situations where the programmer is dealing with unmanaged memory or the algorithm creates a great deal of work for the garbage collector causing performance problems. In this session I will discuss several situations that can cause problems for the Garbage collector and how avoid these problems. Lastly I will introduce some tools and techniques for tracking down these problems in an application.

  • Deep Dumpster Diving

    5:00 PM Saturday   Room: 1401
    The .NET garbage collector provides a high-speed memory allocation service and promises to minimize if not eliminate the work associated with managing your applications memory. However, this benefit comes with a cost that is not always easy to quantify. When it is ignored it has the potential to drastically reduce your application performance and in extreme cases introduce memory leaks that can be hard to find.<br/> <br/> In this session I will do an in depth look at .NET memory management and introduce the IDisposable pattern. I will then show some techniques to analyze when this pattern is needed. Lastly I will show some design patterns that can minimize the impact of garbage collection and make your programs more efficient.