keithelder

Stories submitted by keithelder

Cleaning Up Your C# Closet, Making Messy C# Code More Readable(keithelder.net)

submitted by keithelderkeithelder(450) 3 years, 5 months ago

Struggling with an existing code base and want to tidy things up? This article gives some great tips on how to do this along with a real world example. The end result is much more readable code that is easier to maintain. read more...

add a comment |category: |Views: 740

tags: another

Running an Agile Team, A Year Later(deepfriedbytes.com)

submitted by keithelderkeithelder(450) 3 years, 7 months ago

Are you holding back on adopting Agile practices? Listen in as Sara Ford, Codeplex Program Manager, explains first hand the benefits of working in an Agile team and why she wouldn't go back to the traditional Microsoft methodology. read more...

add a comment |category: |Views: 484

tags: another

WCF vs ASMX Web Services(keithelder.net)

submitted by keithelderkeithelder(450) 3 years, 7 months ago

Curious as to how ASMX and WCF compare? This post uses a unique analogy to describe the two using planes. read more...

add a comment |category: |Views: 246

tags: another

Balancing Readability and New Syntax Sugar in C# 3.0(keithelder.net)

submitted by keithelderkeithelder(450) 3 years, 7 months ago

For those that are writing in C# 3.0 and using the latest and greatest language features have you actually stepped back to look at some of the code you wrote? Is it easier or harder to read? Is it truly more understandable for someone else to maintain later on or is it just a lot of syntactic noise? Let's explore this with a few samples and see which way comes out on top. read more...

add a comment |category: |Views: 53

tags: another

Deep Fried Bytes: Talking Security with Misfit Geek Joe Stagner(deepfriedbytes.com)

submitted by keithelderkeithelder(450) 3 years, 8 months ago

Joe Stagner discusses security best practices for software developers. Along the way many different ideas and topics came up like comparing a security development expert to a professional prize fighter. Listen as Joe relates how his IT law enforcement background helped him build his vision of keeping the Bad Hackers out of applications and systems. read more...

add a comment |category: |Views: 3

tags: another

Dear Asp.Net Developers: Stop Making Our Technology Look Bad(keithelder.net)

submitted by keithelderkeithelder(450) 3 years, 8 months ago

Have you ever tried to use one browser and one browser only? This article outlines how impossible it can be even in 2008 to do. There are countless public facing Asp.Net web sites that require Internet Explorer. The perception and impact this has on the non Asp.Net community is something developers need to think about. It is an interesting read that provides a lot of insight into the problem and some ways to fix it. read more...

2 comments |category: |Views: 407

tags: another

Deep Fried Bytes: A Practical Look at Silverlight 2 Part Two(deepfriedbytes.com)

submitted by keithelderkeithelder(450) 3 years, 9 months ago

Keith and Woody wrap up their conversation with Shawn Wildermuth about the past, present and future of Silverlight 2 and get into some of the truths about this exciting technology. They expose some "rusty washers" about Siliverlight and discuss lots of interesting things you probably didn't know about the technology. This is another fun episode of Deep Fried Bytes that covers everything from lawn mowing, the Olympics and Silverlight. read more...

add a comment |category: |Views: 10

tags: another

Deep Fried Bytes: A Practical Look at Silverlight 2 Part 1(deepfriedbytes.com)

submitted by keithelderkeithelder(450) 3 years, 9 months ago

Now that Silverlight 2 is at the Olympics and making a big splash, we wanted to explore this fascinating technology more. Microsoft Silverlight 2 is a cross-browser, cross-platform, and cross-device plug-in for delivering the next generation of .NET based media experiences and rich interactive applications for the Web. Keith and Woody sit down with Shawn Wildermuth about the past, present and future of Silverlight 2 and get into some of the truths about this exciting technology. read more...

add a comment |category: |Views: 1

tags: another

Developing with Windows Server 2008 VMWare Virtual Machines(keithelder.net)

submitted by keithelderkeithelder(450) 3 years, 10 months ago

For awhile now I have been enjoying the freedom of developing with virtual machines. The biggest advantage it has given me is the freedom to run any host operating system I want (Windows, Linux or Mac). This article describes how to setup Windows Server 2008 for development using VMWare and includes lots of tips no matter which host OS you run. read more...

add a comment |category: |Views: 22

tags: another

How To Not Screw Up Your Application Object Model(keithelder.net)

submitted by keithelderkeithelder(450) 4 years ago

As object oriented programming (OOP) developers we've always been taught and trained to think in object models and object graphs. The problem is when applied to applications those object models break down. Here's a look at why and how to avoid this common problem. read more...

add a comment |category: |Views: 2

tags: another

Exposing a WCF Service With Multiple Bindings and Endpoints(keithelder.net)

submitted by keithelderkeithelder(450) 4 years, 4 months ago

Windows Communication Foundation supports multiple bindings that allows developers to expose their services in a variety of ways. What this means is a developer can create a service once and then expose it to support net.tcp:// or http:// and various versions of http:// (Soap1.1, Soap1.2, WS*, JSON, etc). This can be useful if a service crosses boundaries between intranet and extranet applications for example. This article walks through the steps to configure a service to support multiple bindings with Visual Studio 2008 and the .Net 3.5 framework. For those that want to jump directly to the sample solution it can be found at the end of this article. read more...

add a comment |category: |Views: 50

tags: another