stusmith

2,683
reputation
538 views

Registered User

name stusmith
member for 1 year
seen 27 mins ago
website
location GB
age 32
I'm primarily a .NET developer, slowly moving from desktop application development to web development. I'm trying to teach myself graphic design in my spare time.
1d
comment Is it ever OK to go out for lunch and never come back (as a programmer)?
Here in the UK, a verbal contract is just a binding as a written one (albeit easier to dispute due to lack of evidence). You will have given verbal acceptance I assume. Both employers and employees have statutary rights (meaning that even if no contract is signed, but a verbal agreement is reached, both parties are bound by certain obligations).
2d
comment What’s your favorite “programmer ignorance” pet peeve?
Also: testing for invalid situations, and just giving up. If a parameter shouldn't null, it's best to fail (gracefully if possible), rather than just "if(foo==null)return;". Diagnosing a silent "app isn't crashing but isn't working in this particular area" becomes a nightmare.
2d
comment What’s your favorite “programmer ignorance” pet peeve?
Ditto people who say "C-Pound" and "Lin-Q". Sigh.
2d
awarded  Citizen Patrol
Dec
11
answered I need some tool to view Http Request.
Dec
10
revised .Net Component for JavaScript Obfuscation?
Fixed spelling of "obfuscation"
Nov
24
awarded  Nice Answer
Nov
24
comment Can doubles be used to represent a 64 bit number without loss of precision
Even the impractical solution might not work - for instance a signalling NaN (SNaN) value might trigger an exception if handled within Lua (no idea if that's true - but it might).
Nov
24
comment In C is “i+=1;” atomic?
Not sure if I'm being thick, but how can you even assume this is a memory operation? "i" could be in a register, surely? (Unless we're assuming volatile).
Nov
24
answered Can doubles be used to represent a 64 bit number without loss of precision
Nov
19
comment The Jquery displays $20.099999999999998 instead of $20.1
It's a floating point problem, nothing to do with JavaScript. 1/10 can't be represented in a fixed number of binary digits, in the same way 1/3 can't be represented with a fixed number of decimal digits.
Nov
19
comment Common reasons for bugs in release version not present in debug mode
Agreed, it's a good question. So many subtleties involved, and they bite you in the behind at the worst possible moment (i.e. when you no longer have full debug support to solve the problem, by definition).
Nov
19
revised Common reasons for bugs in release version not present in debug mode
Fixed typo.
Nov
19
answered Common reasons for bugs in release version not present in debug mode
Nov
17
answered How can code in a “try…catch” block throw an unhandled exception?
Nov
17
comment How can code in a “try…catch” block throw an unhandled exception?
What language/framework are you using?
Nov
17
comment What’s the best API you’ve ever used?
Although, when things go wrong, debugging is a nightmare. Some of the binding syntax is a little obscure too.
Nov
16
comment Array more Efficient than Dictionary
You can save some time and just use System.Globalization.DateTimeFormatInfo.CurrentInfo.MonthNames.
Nov
16
awarded  Enlightened
Nov
13
answered Finding ASP.NET source code
Nov
11
answered How can you dynamically put different patterns on images in a webpage . .
Nov
8
comment Force break on any exception thrown in program
It's a real shame this isn't the default behaviour.
Nov
5
revised Homework question in C++
edited tags
Nov
4
comment How to (kindly) ask your users to upgrade from IE6?
I would disagree with your statement "90% of my IE6-using visitors are in the the mums and dads category" - most home users will have updates applied automatically. I would say that 90% of IE6 users are corporate. Obviously, we're both guessing here though...
Oct
28
comment Odd performance degradation in application…
I'll second the use of the Memory Profiler. It lets you take snapshots and compare them - so you can take a snapshot on one iteration, take another on the next one, and diff them - you can see exactly what is growing between common iterations of your app.
Oct
27
comment Why is there a conflict between variables and functions of the same name in JScript?
JavaScript becomes a lot easier to understand if you stop using the "function foo() {...}" syntax, and start using the "var foo = function() {...}" form. Suddenly the fact that functions are objects that you reference in the same way as anything becomes clear, and opens up lambda-style coding.
Oct
26
answered Programmatically inspect .NET code
Oct
16
comment Are There Any Significant Changes in Localization Features Between VS2005/.NET 2.0, and VS2008/.NET 3.5?
Unfortunately, much as I might want to move to .NET 4, that's probably too new. Many thanks for the info however.
Oct
16
asked Are There Any Significant Changes in Localization Features Between VS2005/.NET 2.0, and VS2008/.NET 3.5?
Oct
13
accepted How to argue that if we could solve the halting problem, then we could solve busy beaver?
Oct
13
answered How to argue that if we could solve the halting problem, then we could solve busy beaver?
Oct
8
answered Your favourite algorithm and the lesson it taught you.
Oct
8
awarded  
Oct
3
answered What is the one programming skill you have always wanted to master but haven’t had time?
Oct
2
answered C#: Linq style “For Each”
Oct
1
answered ASP.NET Image Resizing
Oct
1
accepted Linq caching data values - major concurrency problem?
Sep
30
answered Linq caching data values - major concurrency problem?
Sep
28
comment Would you trust mono as a platform to build an startup?
Not sure... I guess I assumed that it didn't... but that just underlines the point: don't assume, find out, and find out early.
Sep
28
comment Would you trust mono as a platform to build an startup?
I probably ought to qualify my points - I think Mono is an amazing piece of development, and I think MonoDevelop /will/ be amazing in the future. I hope no-one thought I was bashing it!
Sep
28
answered Would you trust mono as a platform to build an startup?
Sep
22
comment $.ajax and webmethod/pagemethods.
I would suggest using a generic handler (.ASHX) rather than trying to get a web-page (.ASPX) to return JSON data.
Sep
18
revised How do I flag a function as being deprecated in an iPhone Objective C header file?
Spelling fix.
Sep
16
answered Firefox engine library
Sep
16
awarded  Yearling
Sep
15
comment convert byte[] to string
There's really no such this as a string without an encoding: joelonsoftware.com/articles/Unicode.html/… Remember ASCII is still an encoding!
Sep
14
revised Array of IDs - how to select with JQuery?
Made variable name a little clearer.
Sep
14
answered Array of IDs - how to select with JQuery?
Sep
7
awarded  Notable Question
Sep
4
comment jquery reduce the adoption of Silverlight?
Agreed, but I think it's one of those features like CSS rounded corners - it's not full-on control of styling - but it is just enough to give you what you want 90% of the time. Obviously, until most browsers support it, it's not so useful... but it's nice competition for IE.