Scott A. Lawrence

1,135
Reputation
197 views

Registered User

Name Scott A. Lawrence
Member for 1 year
Seen yesterday
Website
Location Wheaton, MD
Age 35

I'm a senior software engineer for Sphere of Influence-Government, Inc., an agile software development consultancy in northern Virginia. I blog here: http://scottlaw.knot.org/blog/ on technology and other interests.

In addition to software developer, I've been an analyst, project manager, DBA, and team lead for previous employers.

I studied computer science (undergrad) and business (MBA) at the University of Maryland-College Park.

Nov
2
asked Visual Studio test runner is seeking assembly configuration files in Visual Studio common directory. How do I fix this?
Oct
20
answered WPF: how to use 2 converters in 1 binding?
Oct
15
answered Financing and starting a software development business
Oct
15
comment What could be the next evolution after OOP?
@Martin Spamer - We've used it in production systems I've worked on going back to 2006--and that's just on the .NET side. The techniques are use to a larger degree than you assert.
Oct
14
answered What could be the next evolution after OOP?
Oct
7
answered Svcutil.exe MSBuild Task
Oct
7
comment What is the best logging solution for a C# .NET 3.5 project
@codeflunky - Does your approach really save that much work over configuring log4net to configure SmtpAppender and EventLogAppender?
Oct
7
comment What is the best logging solution for a C# .NET 3.5 project
Enterprise Library is a reasonable choice if you're using other parts of it already. If logging was all you wanted though, I think log4net is faster than its Enterprise Library counterpart.
Oct
7
comment What is the best logging solution for a C# .NET 3.5 project
@Richard E - Given a choice between sitting silently and causing the actual application to fail, I think the log4net team made the right choice for how log4net behaves at run-time. Configuration could be easier though.
Oct
7
comment What do you do to construct a software’s user interface ?
@JeffH - You're welcome. You've come up with an excellent answer.
Oct
7
comment When developing Visual Studio add-ins, what testing options are there beyond manual testing?
So if I'm understanding your answer correctly, would this mean that the logic which does the actual work should be as separate as possible from the Connect.cs contents that Visual Studio generates automatically?
Oct
7
comment What do you do to construct a software’s user interface ?
@Nathan Long - I've played with Balsamiq a bit and like the tool a lot. If I had to design interfaces more regularly, I would definitely buy it for myself. @HLGEM - Amen to your point. Few things are worse than an interface that appears to be working, especially if a lot of shortcuts were taken for demo purposes.
Oct
7
comment What do you do to construct a software’s user interface ?
+1 for the answer because the first two points are on target. On the agile point though, the end result of those practices tends to be that you get an app with an unsatisfying user experience more quickly than with a waterfall methodology. Beginning each iteration with sketches of how a feature might look as it's used is key to avoiding the "get mediocre user experience faster" result.
Oct
7
answered What do you do to construct a software’s user interface ?
Oct
7
asked When developing Visual Studio add-ins, what testing options are there beyond manual testing?
Oct
2
revised Arguments against zip files as source control
deleted 4 characters in body
Sep
29
awarded  Tumbleweed
Sep
25
revised SQL Server - Database Design - Best Practices
edited tags
Sep
25
comment Does desktop development matter?
Without a tool like Expression Blend, doing some of the more complex things that are possible with WPF can be quite challenging.
Sep
25
answered Which is the BEST first job an IT entrant can have?
Sep
24
comment Business Logic in Database versus Code?
T-SQL and other SQL variants can be hard to read, but I would consider them declarative instead of procedural--cursors being one exception.
Sep
23
answered Pros and cons of building apps with proprietary database systems
Sep
23
revised When to use a new exception type
deleted 7 characters in body
Sep
21
comment Visual Studio does not break with exception assistant, but just stops the process
I hope you get an answer. I've encountered something that sounds like your situation in getting a Visual Studio macro to work. I'm trying to add banners to source code files the way it's done in this question: stackoverflow.com/questions/415101/…
Sep
21
comment Need Visual Studio macro to add banner to all C# files
How well does this work for files that have designers, like WinForms?
Aug
29
awarded  Yearling
Aug
26
answered DbUnit.NET Alternatives
Aug
26
answered Arguments against zip files as source control
Aug
26
comment How to resolve “Only one project can be specified” error from <msbuild> task in CruiseControl.NET
MSBuild definitely doesn't like spaces at all. I encountered the same error you did when testing property overrides for certain targets in my build file. Once I eliminated spaces from the paths, everything worked.
Aug
26
comment What contents should a professional programmer’s website have?
Udi, whether the site is unique and well-written is up to you. The platform (wordpress, movabletype, etc) is less important than the content you add.
Aug
24
comment Generating random strings with T-SQL
When I tried this select, I got the following error message from SQL Server Management Studio Express: Msg 8116, Level 16, State 1, Line 1 Argument data type float is invalid for argument 2 of hashbytes function.
Aug
24
answered Generating random strings with T-SQL
Aug
24
asked Generating random strings with T-SQL
Aug
12
revised How to require commit messages in VisualSVN server?
edited tags
Aug
6
awarded  Popular Question
Aug
5
comment Why are empty catch blocks a bad idea?
@R. Bemrose, thanks for the info. I'm not a Java guy, so I wasn't aware of the checked exceptions feature. I don't think C# has them.
Aug
5
comment Why are empty catch blocks a bad idea?
But if you know a particular type of exception is being thrown, it seems like you might have enough information to write your logic in a way that avoids the use of try-catch to deal with the situation.
Aug
5
comment Why are empty catch blocks a bad idea?
I referred to log4net as one of those instances before I saw your answer.
Aug
5
answered Why are empty catch blocks a bad idea?
Jul
27
answered Basic SVN Usage
Jul
20
answered TFS, VS2008: How to deal with external assemblies
Jun
15
comment Stuck trying to migrate two tables from one DB to another DB
I hope the cursor solution works out. I'll probably end up trying to do a non-cursor one anyway, just to see if it can be done.
Jun
15
comment Stuck trying to migrate two tables from one DB to another DB
I'm not sure a cursor is required for this. A combination of user-defined functions and the UPDATE...FROM construct supported by T-SQL might do the trick. If you don't get an acceptable answer by noon Eastern time, I'll try to mock something up during lunch.
Jun
15
answered Stuck trying to migrate two tables from one DB to another DB
Jun
7
accepted Debugging assembly load issue
Jun
4
answered Debugging assembly load issue