RoadWarrior

5,276
Reputation
437 views

Registered User

Name RoadWarrior
Member for 1 year
Seen 23 hours ago
Website
Location London, UK
Age
Senior IT manager and Distinguished Engineer in an investment bank. Currently working as a Commodities Trading domain architect: base, precious, energy.
2d
comment Language features you should never use?
Yup, that's exactly what my last sentence says :-)
Nov
18
awarded  Great Answer
Nov
17
answered VS2005 Web Deployment Project to VS2008 - ASPNET compiler errors
Nov
11
accepted What are some good resources for writing a chess engine?
Nov
11
answered What are the options available to encrypt a SQL Server Express database?
Nov
7
revised A loop until in the stored procedure
Added "php" tag.
Nov
4
comment Commenting try catch statements
We'll have to agree to disagree. I write a lot of comments, and I don't suspect that's going to change in the future.
Nov
3
answered Reset SQL Server execution plan
Nov
2
comment Why no love for SQL?
Well, I've run a business, and it's never 10K versus 1. IMX, it's more akin to 20 unknown for every 100 known (the pareto principle). And some of those 20 owed us a lot of money, which was actually why the actual amount was in dispute. Again, this is the pareto principle.
Nov
2
awarded  Nice Answer
Oct
31
revised What are some good resources for writing a chess engine?
Added some more links.
Oct
29
comment Why no love for SQL?
But management wouldn't see a "close if not certain number" - they would see a wrong number. Maybe that final customer owes a lot of money. Then management would be very unhappy about that wrong number.
Oct
27
answered Most daunting error message?
Oct
27
revised How to get the Form.DesktopBounds from before the window was minimized or maximized
Added links to similar SO questions.
Oct
26
awarded  Nice Question
Oct
23
awarded  Good Answer
Oct
22
comment How can one improve their Architecture skills ?
The title only mentions architecture, but the question mentions architecture and coding.
Oct
21
revised High Order Function Approach for Exceptions in C#
Added link and more detailed explanation.
Oct
21
revised High Order Function Approach for Exceptions in C#
Explained further.
Oct
21
answered High Order Function Approach for Exceptions in C#
Oct
18
answered Where to find small programming contracts (in the UK if possible)?
Oct
18
answered How to understand Business side of Software ?
Oct
17
awarded  Nice Answer
Oct
14
answered Most horrifying line of code you have ever seen?
Oct
7
answered Implementing a Message Bus architecture
Oct
7
asked Message bus design - support implicit ordering of messages?
Oct
6
answered Good book about threading in .Net
Oct
1
accepted Need an overview of non-enterprise databases for .NET
Sep
30
revised AES encryption, what are public and private keys?
Corrected typo.
Sep
30
revised Predicting the length of an encrypted string
Corrected "key" to "block"
Sep
30
comment Predicting the length of an encrypted string
Thanks - I corrected my answer.
Sep
29
answered Predicting the length of an encrypted string
Sep
28
comment Where to put the SQL logic
The performance may not be the same, as SQL Server caches ad-hoc SQL in a different way to stored procedure SQL. See my answer here for more details: stackoverflow.com/questions/274411/…
Sep
27
awarded  Good Answer
Sep
26
accepted Why should I NOT use the GAC?
Sep
25
awarded  Nice Answer
Sep
25
answered Client wants extremely badly designed website
Sep
22
accepted Explicit or implicit execution control statement use
Sep
22
answered Explicit or implicit execution control statement use
Sep
18
accepted how application object is shared to users
Sep
17
answered Methodologies for Change-Proof Development in Agile Environment
Sep
17
comment how application object is shared to users
Please see my answer below.
Sep
17
answered how application object is shared to users
Sep
17
comment how application object is shared to users
Are you talking about the ASP Application object or the ASP.NET HttpApplication class? And what do you mean by "shared to users"?
Sep
17
awarded  Yearling
Sep
15
comment SqlDataAdapter.Fill method slow
It's on a recurring basis, as these are cached results and plans that will gradually accumulate.
Sep
14
awarded  Nice Answer
Sep
14
awarded  Favorite Question
Sep
11
comment Is everything in .NET an object?
I corrected the section on inheritance. The following C# types do NOT derive from System.Object: interfaces, pointers, type parameters.
Sep
11
revised Is everything in .NET an object?
Major correction to the section on inheritance.