Mr. Shiny and New

3,766
Reputation
338 views

Registered User

Name Mr. Shiny and New
Member for 1 year
Seen 3 hours ago
Website
Location Toronto
Age 31
I'm a software developer working on a social-networking site. I work mainly in J2EE, SQL, HTML, JavaScript and CSS. My free time is spent raising a daughter.
3h
comment expected ), illegal start of expression
The beauty of using Eclipse (or any decent IDE) is that I didn't have to read the code to find the compilation error. Paste it in, go to the line where the compiler indicates the error, and you can see right away that the brackets aren't lining up because of the matching bracket highlight. Add one brace where indicated, remove the last brace (I guess it was the misplaced one?) and CTRL-SHIFT-F, and you're done. IDEs add so much productivity.
Nov
27
accepted expected ), illegal start of expression
Nov
27
comment expected ), illegal start of expression
@dtsazza: I second your point about sorting out these errors yourself. However I wanted to point out that the curly brace in front of public void actionPerformed is needed because that is a function declaration. addiosamigo was actually missing the closing brace for that opening one.
Nov
27
answered expected ), illegal start of expression
Nov
27
comment expected ), illegal start of expression
Is the formatting of your code in this question anything like the formatting in your file? If so you might try cleaning it up so that the indentation is consistent, that can help you spot errors.
Nov
27
answered How to avoid a SAXParseException using Xerces when HTML file includes mdash?
Nov
27
answered Why is this javascript not working?
Nov
26
accepted Java: Sort an unmodifiable list
Nov
25
answered PNG tranparency help in ie6!!
Nov
25
answered Java: Sort an unmodifiable list
Nov
25
comment Why must delegation to a different constructor happen first in a Java constructor?
@Kip: No problem. I was hoping, when I found this question, to get some good answers but it seems there isn't one.
Nov
24
answered Why must delegation to a different constructor happen first in a Java constructor?
Nov
24
answered java - nullpointer exception
Nov
20
accepted Cached image problem
Nov
19
answered Are addBatch() and executeBatch() thread-safe?
Nov
19
comment Checking a local TCP port is not open in Java
Just a note: If you try to connect to a port and fail, it might be because you are firewalled from connecting to that port. Just because YOU can't connect doesn't mean it's not in use.
Nov
19
answered Cached image problem
Nov
18
awarded  Popular Question
Nov
17
answered Java: Strong Code mobility How to?
Nov
17
answered Prefix “Is” in Method Name for Verification Methods
Nov
13
comment Minifying HTML
@Lance Fisher: In my tests minified JS/CSS was smaller after Gzip than non-minified. However there are potential pitfalls if you minify HTML; I'd say it's not worth doing for existing pages.
Nov
13
comment Which multilingual web design solution is fastest for the user, if this is indeed an issue?
@Shawn: A web server that is part of a high-performance website should prbably be dedicated to that task. So if you have unused RAM that RAM is wasted. The application I maintain has hundreds of MB of cached objects in each application instance.
Nov
13
comment Why is one installation of IE8 (unexpectedly) loading pages from cache, while others are not?
@Chris Marisic: No problem.
Nov
13
accepted Preventing Selection / Copy to Clipboard in Firefox
Nov
13
accepted Which multilingual web design solution is fastest for the user, if this is indeed an issue?
Nov
12
answered Why is one installation of IE8 (unexpectedly) loading pages from cache, while others are not?
Nov
12
answered How to play video (.flv) without showing the loading image for buffering while playing?
Nov
12
comment Which multilingual web design solution is fastest for the user, if this is indeed an issue?
As for static objects in PHP, I'm not sure how that can be done. In Java the application server is typically running for a long time. In PHP that's not the case; individual worker processes come and go. You need some long-running process to keep the data in RAM. Memcached can do this if you can't find a native PHP way. With memcached you first check the cache server for a value, and if it's not there you get it from the primary storage such as a disk.
Nov
12
comment Which multilingual web design solution is fastest for the user, if this is indeed an issue?
Yes, this does use up a lot of RAM, however a server configured for high load will typically have lots of RAM and be dedicated to this one task, so that isn't usually a problem. It's the classic space-time trade-off. Use more RAM to get more speed.
Nov
12
answered copy+paste from eclipse to flash does not work
Nov
12
comment How can you dynamically put different patterns on images in a webpage . .
@oo: Artem is suggesting that you generate the images on the server using ImageMagick, presumably after the user requests a certain combination of text and pattern. This can be done fairly easily with ImageMagick.
Nov
12
answered How to use the cachegrind output to optimize the application
Nov
12
answered HTML table using colSpans not displaying as expected
Nov
12
comment Which multilingual web design solution is fastest for the user, if this is indeed an issue?
@Shawn: I edited my answer to address your points.
Nov
12
revised Which multilingual web design solution is fastest for the user, if this is indeed an issue?
Expanded on points as per original questioner's questions.
Nov
11
comment how to preserve this div in the bottom of the site?
@Proxium: You can put HTML code in by using the back-ticks, or by putting it on its own line and indenting by 4 spaces.
Nov
11
awarded  Cleanup
Nov
11
comment how to preserve this div in the bottom of the site?
Since there are answers I rolled back the edit so that the question is actually showing.
Nov
11
comment how to preserve this div in the bottom of the site?
Seems the asker of the question edited it and removed the question. Do we roll back? or close?
Nov
10
answered Which multilingual web design solution is fastest for the user, if this is indeed an issue?
Nov
9
answered CSS: Do not wrap contents of div
Nov
3
accepted Is there a way to designate multiple image sources in HTML/JavaScript?
Nov
3
comment Parsing query strings in Java
@BalusC: URLDecoder works but it has some failure modes if you are trying to be more lenient in what kind of URL you accept.
Nov
3
comment Parsing query strings in Java
@ChadNC: the third sentence tells you how to parse: read in one byte at a time and convert to chars. The fourth sentence warns you of special chars. Etc. Maybe you didn't read the answer?
Nov
3
comment Parsing query strings in Java
watch out for the character encoding when url-decoding the hex digits.
Nov
3
comment Parsing query strings in Java
This works but does not account for url-encoded keys or values.
Nov
3
comment Implications of not including NULL in a language?
@Imagist: I am not talking about database nulls, I am talking about the no-records-found scenario. For a method that returns a single object, you need some way to indicate that no object can be returned. An exception can do that, but it's very cumbersome to program that way, at least in Java. Maybe your language has some elegant approach that makes it easier. But in my experience null is very useful.
Nov
3
comment Parsing query strings in Java
Don't be too upset. "This doesn't answer the question" is useful to add, IMO.
Nov
3
comment Parsing query strings in Java
HttpServletRequest is part of J2EE which he doesn't have. Also using getParamter() is not really parsing.
Nov
3
answered Parsing query strings in Java