R. Bemrose

12,272
reputation
606 views

Registered User

name R. Bemrose
member for 1 year
seen 13 mins ago
website
location Mason, MI
age 30
I'm an evil despot with plans to rule the world... Well, OK, I lied. I'm actually a Java programmer for the State of Michigan's Center for Shared Solutions.
4m
comment Php upload file
@Peter Lindqvist: Yes, it's one of my biggest complaints with the "not marked as edited if done within 5 minutes" thing.
11m
comment Extract Integer Part in String
or \d 15chars
46m
comment Php upload file
Sorry, but that's wrong: php.net/manual/en/…
4h
accepted jquery .animate different speeds
4h
revised jquery .animate different speeds
added 298 characters in body
4h
answered jquery .animate different speeds
6h
answered How long does code last?
7h
answered how to get Compiler error message? asp.net
Dec
11
comment Is it Possible to have File Exists and is not readable?
@Al Everett: The obvious answer to that deals with file system permissions.
Dec
11
comment Image Upload — showing image on web page before hitting Submit
@m.u.sheikh: Well, the big one would probably be Internet Explorer. That's just a guess, though.
Dec
11
answered Getting a VB6 Application to Work in Windows 7 If You Can’t Recompile
Dec
11
comment How to use C#’s ternary operator with two byte values?
I'm actually surprised that it took this long for someone to suggest it.
Dec
11
comment Generate javadoc directly from repository?
I'm pretty sure you're right about it checking out the code (or exporting, I haven't checked). I know that's what Hudson does.
Dec
11
answered PHP syntax error on preg_replace method
Dec
11
comment Java: Readers and Encodings
Sadly, FileReader is a convenience class for reading characters in the default encoding from a file, and nothing more. You would THINK it would allow you to select the character set as well, but it doesn't. In fact, you'll notice that the constructor signatures are identical to FileInputStream's constructor signatures.
Dec
9
comment Why not allow an external interface to override hashCode/equals for a HashMap?
"This class makes no guarantees as to the order of the map; in particular, it does not guarantee that the order will remain constant over time." -- HashMap's Javadocs. In other words, HashMap isn't ordered.
Dec
9
comment Why are foreign keys more used in theory than in practice?
Are you saying I shouldn't try to SELECT * FROM book INNER JOIN person ON book.ISBN = person.Phone ?
Dec
9
answered ignore files in flight
Dec
9
answered Why does PHP 5 use __contruct() instead of className() as constructor?
Dec
9
comment Why could an Expression’s Body in C#.net not use properties of type int, double or bool?
int, double and bool should map to the structs System.Int32, System.Double, and System.Boolean respectively.
Dec
9
comment null test versus try catch
@Stefan: I use Java at work, which is probably why I didn't think of the as keyword.
Dec
9
answered null test versus try catch
Dec
8
comment How to overcome neatly the fact that static attributes can’t be overrriden?
I've always found it amazingly odd that static methods are inherited to begin with.
Dec
8
comment Can I style a disabled control using CSS or script?
+1 for mentioning readonly controls.
Dec
7
revised Can a readonly field in .NET become null ?
added 359 characters in body
Dec
7
comment Can a readonly field in .NET become null ?
In that case, he could store the Dequeued element and check it for null before calling a method on it.
Dec
7
comment Compressing content with PHP ob_start() vs Apache Deflate/Gzip?
Although that problem was with Media Player 8, so it might have been fixed by now.
Dec
7
comment Compressing content with PHP ob_start() vs Apache Deflate/Gzip?
+1: I'm not handling nearly the traffic you are, but I too prefer that the server handle it. There is one or two caveats: Certain kinds of sound files should not be compressed, or media players will choke on them. This includes Windows Media Player with mp3 files.
Dec
7
revised Can a readonly field in .NET become null ?
added 253 characters in body; added 2 characters in body; added 71 characters in body
Dec
7
answered Can a readonly field in .NET become null ?
Dec
7
revised HashMap with StringKey problem?
added 188 characters in body
Dec
7
comment HashMap with StringKey problem?
Yeah, I should have mentioned hashCode() since this is a HashSet. Whoops. I kind of assumed that if equals() was implemented, it would just be on name, which is kind of a naive assumption.
Dec
7
answered Access problem in java
Dec
7
answered HashMap with StringKey problem?
Dec
7
comment HashMap with StringKey problem?
@pjp: I've never tried doing that. I always assumed you can't name classes the same as things in java.lang, because everything in java.lang is considered to be in the default namespace.
Dec
7
comment HashMap with StringKey problem?
and equals for String checks the value equality rather than the reference equality, so things should work as expected.
Dec
7
comment Help to create a generic class to avoid code duplication
"PersistenceManager does not appear to work with generic types" I don't think any code by Apache (or Oracle) uses generics. With the possible exception of Apache's collections.
Dec
7
answered How can I lower the spam score of my email message?
Dec
7
answered Help with basic Java concepts
Dec
7
answered Java EE for a .NET developer
Dec
7
comment Code with undefined behavior in C#
@Jeff Yates: The "undefined behavior" link up in the question goes to Wikipedia.
Dec
7
comment how many versions of java are there?
Note that Apache Tomcat is just a servlet container. If you want a full implementation, see Apache Geronimo instead.
Dec
7
comment how many versions of java are there?
"Firstly, the only current version of Java is Java currently at Update 17" <-- I added a 6 to this to make it correct.
Dec
7
revised how many versions of java are there?
Added the missing 6 for the current Java version.
Dec
7
comment Fixing .NET code generation of properties for user controls
_theProperty = new SomeClassIWrote[] { }; This syntax is funky. What's wrong with _theProperty = new SomeClassIWrote[0]; which is what I assume you're trying to accomplish.
Dec
7
comment Why this performance difference? (Exception catching)
@Jon Skeet: Wouldn't it also be slightly faster? (One CPU operation instead of two)
Dec
7
comment Where are the request method constants in the Servlet API?
I poked around a bit in the main Java class library a bit, too... couldn't find them as constants there either, not even in java.net.HttpURLConnection.
Dec
6
awarded  Mortarboard
Dec
4
comment Is there a way to get the number of places after the decimal point in a java double?
Nitpick: If you're using 3.14 in your code, you should consider using Math.PI instead.
Dec
4
comment Best Practices: working with long, multiline strings in PHP?
@powtac: No, because it has to be on a new line to end a heredoc. Specifically, it has to be EOT; with no spaces before it.