Rob

10,890
Reputation
596 views

Registered User

Name Rob
Member for 1 year
Seen yesterday
Website
Location United Kingdom
Age
Rob's law: As the length of a Stack Overflow discussion increases, the probability of someone referencing Jon Skeet draws closer to one. (With apologies to Mike Godwin)

Most people, when they have a problem, think, "I know; I'll use a distributed version control system." Now they have multiple, widespread problems.
Nov
20
comment Java coding practice, runtime exceptions and this scenario
For these two cases, I would suggest throwing an AssertionError instead; it seems to fit better, semantically speaking.
Nov
20
comment PHP query single line from database
MySQL will cast the string to an integer and carry on. The quotes are perfectly fine.
Nov
18
awarded  Nice Answer
Nov
17
comment Why do so many Javascript scripts append random numbers to things? Collision?
@Jim: Yeah, it's all about not having to remember to change things. :)
Nov
16
accepted Why do so many Javascript scripts append random numbers to things? Collision?
Nov
16
comment Why do the major browsers not support HTMLs ACCEPT attribute for input type=”file”?
+1 for usability! Waiting 40 seconds for something to upload only to be told it's not good enough is not the greatest user experience.
Nov
16
comment Best way to get maximum Date value in java?
+1; this will lead to much more readable checking for expiration in the future.
Nov
16
answered Why do so many Javascript scripts append random numbers to things? Collision?
Nov
16
comment Why is Everyone Choosing JSON Over XML for jQuery?
The need to parse items does not equate to an impedence mismatch.
Nov
16
revised Why do the major browsers not support HTMLs ACCEPT attribute for input type=”file”?
typo
Nov
14
comment Why there is no OFFICIAL JavaScript reference?
jQuery wallpapers over the DOM, but doesn't actually replace JavaScript.
Nov
13
accepted When not to Use Integration Tests
Nov
12
answered When not to Use Integration Tests
Nov
12
comment Jar file resource not available ?
Can you confirm the location of the file "Key_1_Silver.gif" relative to "Phone_Dialer.java"?
Nov
12
answered How to store PHP sessions in APC Cache ?
Nov
12
answered MySQL Status Model — Best Implementation?
Nov
12
answered change file extension in php?
Nov
12
answered How to check where Apache is looking for a php.ini file?
Nov
10
awarded  Nice Answer
Nov
10
comment Which java web framework to learn?
-1; no mention which part of Spring
Nov
9
comment Is it bad practice to use default values in a database?
The semantics of NULL are different from 1900/01/01; the former indicates the absence of a value, the latter is a default.
Nov
9
comment What is your “favourite” Java API annoyance?
-1; give a rationale.
Nov
9
comment What is your “favourite” Java API annoyance?
Not an API issue.
Nov
5
accepted In JavaScript, how can I get all radio buttons in the page with a given name?
Nov
5
answered In JavaScript, how can I get all radio buttons in the page with a given name?
Nov
3
comment How do I determine whether a file is in use?
Is this "in use by any other process", or "in use by a specific process", i.e. one you control?
Nov
3
comment Give me an assignment in C
Could you possibly drop that seemingly misinformed attitude about people who haven't "entered a single SO code golf challenge" - just because they haven't participated in a StackOverflow one, doesn't mean they haven't done code golf before, and don't know what it's about. You're being confronted with valid and reasonable criticism - code golf might well teach someone to solve a problem, but it won't necessarily teach them any good, general way to solve larger problems in a target language. If you'd like to contribute further to the discussion, please do so without the logical fallacies.
Nov
3
comment Why aren’t my users seeing the latest updates when I release a new version of our website?
For an even more flexible variation, just appending the Unix last-modified timestamp of the script file to the source attribute, e.g. "script.js?NNNNNNNNNNNNNNNNN" would do it, and it means the cache miss happens whenever the file changes. In production, of course, this will happen when a new release does.
Nov
2
answered What is the different of abstract class and interface in .NET?
Nov
1
comment Which programming language is manageable by an 11 year old kid?
Kodu is pretty awesome, I like it, and I'm a grown man. :)
Nov
1
comment Which approach is best for preventing a SQL injection?
XSS and SQL injection are two orthogonal attack vectors. If you're XSS-sanitising your data prior to insertion into the database, you are doing it wrong - you do not want to damage the canonical data format up front.
Nov
1
comment Script injection - form validation (jquery)
This description is far too vague. When you say, "you use several forms to send data", what do you mean? Do the forms post back to an intermediate script which performs the actual interaction, or is there something downright horrible like direct pass-through to MySQL going on?
Nov
1
comment Can you give an example of stack overflow in C++?
The difference is, in Perl land, it's more likely that you'll blow your stack before Perl does.
Oct
30
answered Writing HTML and CSS
Oct
29
accepted Null object in javascript
Oct
26
comment PNG losses transparency when used as a link.
Which browser(s)? Sample HTML and CSS?
Oct
25
answered Don’t you find it horribly annoying that neat and clean is inefficient?
Oct
25
answered How does sites such as livescore.com work?
Oct
25
comment C++ Class Extension
+1 for "favour composition over inheritance"
Oct
24
revised What database field type do you use for yes/no entries in SQL Buddy?
edited tags
Oct
23
comment Why do I have to use “this” to call an extension method from within the extended class?
You could argue, for example, that extension methods are supposed to support adding additional functionality to existing classes you don't control - if your object relied upon a particular extension method, then it should be built in to the main class definition, rather than rely upon a weak and potentially breakable dependency.
Oct
23
comment What are common file extensions for web programming languages?
Your survey would appear to be highly flawed, purely because [as you have yourself accepted], there are many, many, many web sites which use a URI structure that doesn't expose a file extension, and because the file extension can't be relied upon to be true.
Oct
23
comment Why does the Windows registry exist?
I'd be interested in seeing you justify the claim that a filesystem is a more natural way of doing it.
Oct
23
answered Why does the Windows registry exist?
Oct
23
comment php combining url with variable
Is it really a few milliseconds faster? Frankly, this is precisely where variable interpolation is useful - sure, if you have a string with no variable interpolation in, use single quotes, but this seems like a ridiculous premature optimisation that slightly damages readability.
Oct
23
comment accessing local file from php
Er, well what it "gets you" is your $_FILES array, intact as PHP created it (which was done while the request was being parsed), and not being overwritten by something else, which is what you're doing. The encoding type on the form is necessary to ensure that the uploaded file is actually submitted with the request in the correct manner. From here on, you should be able to access the temporary file through $_FILES['field']['tmp_name'], although as Lachlan points out below, if you want to do anything with it after that script run, you'll need to move it elsewhere.
Oct
22
awarded  Nice Answer
Oct
19
comment How can I add an underscore before each capital letter inside a Java String?
Some people, when confronted with a problem, think, "I know, I'll steal a quote from jwz". Now they have two problems. More seriously though, I don't care how the OP does the splitting; the point I was trying to make was to encourage him/her to break down the problem a little and find solutions to smaller problems. You can farm out the split-at-uppercase to a pack of trained monkeys if you so wish.
Oct
19
answered accessing local file from php
Oct
19
answered Experience with billing systems