Martin Brown

3,365
reputation
353 views

Registered User

name Martin Brown
member for 1 year
seen 18 hours ago
website
location London or there abouts
age 33
I'm a .Net contractor
18h
comment How do you calculate the height of a triangle given only the hypotenuse and the ratio of the other two sides?
Looks like something went wrong whith the formular rendering.
Dec
17
answered Ambiguity of function overloading - Integers vs. Doubles
Dec
11
revised Assemblies vs Class Libraries (.NET)
deleted 3 characters in body
Dec
11
answered Assemblies vs Class Libraries (.NET)
Dec
8
comment How can developers get out of the learning “void”?
+1. In my experience writing the program is the easy bit. Knowing what the client needs the program to do is so much harder.
Dec
8
answered Implementing IDisposable in File.Delete method?
Dec
8
answered State Pattern: How the states of an object should transition when they’re involved in complex processes?
Dec
8
comment State Pattern: How the states of an object should transition when they’re involved in complex processes?
@djna: As you describe it, you seem to be missing out the context object. The point of the state pattern is it allows you to transition a live object (the context) from one state to another without copying all the data to a new object. To do this you put the data in the context class and then have that delegate the operations to a state class. This allows you to change the state after object creation. Without the context class, you just have a plain old inheritance hierarchy rather than the state pattern.
Dec
1
accepted primitive types enum - does it exist
Dec
1
answered primitive types enum - does it exist
Nov
30
answered When can a design pattern make your software worse?
Nov
24
comment Secured Client-Side script
"secured client-side" isn't that an oxymoron?
Nov
13
awarded  Notable Question
Nov
11
answered Short contract pay rates for programmers in the uk?
Nov
11
comment Best logging library for .NET?
It is fairly easy to set up TraceSwitch classes that allow different levels of logging in different parts of the application.
Nov
10
comment Old unknown database
Does the application in question come with any dll files? If so what are they called?
Nov
10
comment Old unknown database
There is also reference to BRG in the DB2 help. publib.boulder.ibm.com/infocenter/db2luw/…
Oct
22
comment Add spaces before Capital Letters
Maybe something like this would work: char.IsUpper(text[i]) && (char.IsLower(text[i - 1]) || (char.IsLower(text[i+1]))
Oct
21
accepted Why does Regex.Match return only 1 result?
Oct
21
revised How can I detect condition that causes exception before it happens?
Changed the formatting of the list
Oct
21
accepted How can I detect condition that causes exception before it happens?
Oct
21
revised SQL Server Script to create a new user.
Changed title to something a little more meaningfull; edited title
Oct
19
answered Hosting a long running process in IIS
Oct
19
accepted Multithreading in .NET - implementing a counter in the background
Oct
19
comment What to do with a video wall
Wow! (Some padding to keep stack overflow validation happy)
Oct
19
revised Multithreading in .NET - implementing a counter in the background
added 146 characters in body
Oct
19
answered Multithreading in .NET - implementing a counter in the background
Oct
19
comment C# -calculate download/upload time using network bandwidth
This, I believe, is the technique use by Window's file copy dialog.
Oct
15
revised C# Generic question
added 4 characters in body
Oct
15
revised C# Generic question
Changed title
Oct
14
revised CSharp : Monitor - Wait,Pulse,PulseAll
added 1 characters in body
Oct
13
awarded  Nice Answer
Oct
2
comment Why is there no String.IsNumeric Function in C#
This hasn't stopped MS putting these methods on the Char data type.
Sep
24
answered Is it possible to simulate HTML tag <Label /> in asp:Label ASP.NET Control?
Sep
23
awarded  Yearling
Sep
22
comment Selecting Multiple Files for Upload in Web Page
You probably don't want to upload lots of files in one http request as it tends to become unreliable. After a while, you find you end up hitting various firewall request size limits, timeouts and general network issues. Most of the add-in up loaders will upload each file on a different request, which makes things more reliable and provides better error handling.
Sep
11
comment speeding up sending large batch of emails in c# .net
How many Kilo-bytes is each email?
Sep
7
comment What is the most poorly named application out there?
More of a bad product than a bad name.
Sep
3
comment How do you wait for a Network Stream to have data to read?
If you can't make BeginRead read zero bytes you start having to manage the read buffer between the main loop and the call back. This is totally doable but is not as nice as I would like.
Sep
2
comment How do you wait for a Network Stream to have data to read?
Is it possible to get the BeginRead to read zero bytes?
Sep
1
revised How do you wait for a Network Stream to have data to read?
be -> been
Sep
1
asked How do you wait for a Network Stream to have data to read?
Aug
26
comment What’s a good way of converting 1 or 0 to a boolean value?
Why doesn't Convert.ToBoolean work? It has worked for me for years.
Aug
26
revised Good .NET college project topic?
added 1 characters in body
Aug
26
comment Counting the number of flags set on an enumeration
This only works for flags enums with 32 or less options.
Aug
25
answered How do I write ints out to a text file with the low bits on the right side (Bigendian)
Aug
25
answered How can one simplify network byte-order conversion from a BinaryReader?
Aug
21
comment C# SerialPort - emulate pos keyboard
Another site that looks good is tronisoft.com/cat_rs232adapters.php
Aug
21
comment C# SerialPort - emulate pos keyboard
A male port on your PC?! That is wierd. If you really want to go hard-core on RS-232 you need a break out box like this one uk.rs-online.com/web/search/…
Aug
20
answered C# SerialPort - emulate pos keyboard