User R. Bemrose - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T12:13:55Zhttp://stackoverflow.com/feeds/user/15880http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1902027/jquery-animate-different-speeds/1902062#19020621Answer by R. Bemrose for jquery .animate different speedsR. Bemrose2009-12-14T16:50:08Z2009-12-14T16:57:39Z<p>You need to use the two argument form of animate, with <code>queue:false</code> in the options array (on the first animation):</p>
<pre><code><script type="text/javascript">
$(document).ready(function(){
$(".topFrameAnim").css("opacity", "0.0")
.animate({
marginLeft: "0",
}, { queue: false, duration: 500 )
.animate({
opacity: "1",
}, 1000 ); // Need this effect to be applied at the same time, at a different speed.
});
</script>
</code></pre>
<p>Note: It's .animate here to reduce the number of selectors used. Since you're selecting the same objects, it's better to reuse the existing object.</p>
http://stackoverflow.com/questions/1900529/how-long-does-code-last/1901356#19013560Answer by R. Bemrose for How long does code last?R. Bemrose2009-12-14T14:56:05Z2009-12-14T14:56:05Z<p>The question isn't "How long does code last?" but rather "How long will things in my code affect an application?"</p>
<p>Even if your code is replaced, it's possible that it will get replaced with code that does the exact same thing. To some extent, this is the direct cause of the Y2K problem. More to the point, it <strong>is</strong> the direct cause of the <a href="http://en.wikipedia.org/wiki/Year%5F2038%5Fproblem" rel="nofollow">Y2038 problem</a>.</p>
http://stackoverflow.com/questions/1901087/how-to-get-compiler-error-message-asp-net/1901144#19011440Answer by R. Bemrose for how to get Compiler error message? asp.netR. Bemrose2009-12-14T14:12:10Z2009-12-14T14:12:10Z<p>Disclaimer: I do very little with ASP.NET type stuff.</p>
<p><a href="http://code.google.com/p/elmah/" rel="nofollow">ELMAH</a> might help you a bit. It's an error logger for ASP.NET projects.</p>
http://stackoverflow.com/questions/1890695/getting-a-vb6-application-to-work-in-windows-7-if-you-cant-recompile/1890699#18906990Answer by R. Bemrose for Getting a VB6 Application to Work in Windows 7 If You Can't RecompileR. Bemrose2009-12-11T20:32:07Z2009-12-11T20:32:07Z<p>This may be a silly question, but have you tried running it in compatibility mode?</p>
http://stackoverflow.com/questions/1889889/php-syntax-error-on-pregreplace-method/1889978#18899780Answer by R. Bemrose for PHP syntax error on preg_replace methodR. Bemrose2009-12-11T18:26:17Z2009-12-11T18:26:17Z<blockquote>
<p>To avoid this, I've wrote a little
part of code that change the href url
portion with tha same url but with "+"
in place of " "</p>
</blockquote>
<p>Why not use <a href="http://php.net/urlencode" rel="nofollow"><code>urlencode</code></a> on the contents of the tag?</p>
<p>Note that urlencode should only be used for query parameters; actual directory components should use <a href="http://us3.php.net/manual/en/function.rawurlencode.php" rel="nofollow"><code>rawurlencode</code></a>, as HTTP itself doesn't use + instead of spaces.</p>
http://stackoverflow.com/questions/1875857/ignore-files-in-flight/1876089#18760890Answer by R. Bemrose for ignore files in flightR. Bemrose2009-12-09T19:04:07Z2009-12-09T19:04:07Z<p>Carra's answer gave me an idea.</p>
<p>If you have access to the program that copies the files to this directory, modify it so that it:</p>
<ol>
<li>Writes files to a temporary directory on the same disk.</li>
<li>Move the files to the appropriate folder after they're finished writing to disk.</li>
</ol>
<p>On the same filesystem, a move operation just updates the directory entries rather than changing the file's physical location on disk. Which means that it's extremely fast.</p>
http://stackoverflow.com/questions/1526957/why-does-php-5-use-contruct-instead-of-classname-as-constructor/1876039#18760390Answer by R. Bemrose for Why does PHP 5 use __contruct() instead of className() as constructor?R. Bemrose2009-12-09T18:55:51Z2009-12-09T18:55:51Z<p>Old question, but I'll bite since no one has actually answered the actual question yet.</p>
<p>function className() is a <a href="http://www.php.net/manual/en/oop4.constructor.php" rel="nofollow">PHP4-style constructor</a>.</p>
<p>function __construct() is a <a href="http://www.php.net/manual/en/language.oop5.decon.php" rel="nofollow">PHP5-style constructor</a>.</p>
<p>You should use the latter because the former is deprecated and may be removed from the language.</p>
<p>Also, the former may or may not ignore various PHP5 OO concepts, such as the public/private visibility operators. Not that you'd want to make the constructor private if you weren't using the Singleton or Factory patterns.</p>
http://stackoverflow.com/questions/1874433/null-test-versus-try-catch/1874468#18744683Answer by R. Bemrose for null test versus try catchR. Bemrose2009-12-09T15:03:40Z2009-12-09T15:03:40Z<p>I would think that this would be the fastest route:</p>
<pre><code>Dude x = (Dude)Session["xxxx"] ?? new Dude();
</code></pre>
<p>The <a href="http://msdn.microsoft.com/en-us/library/ms173224.aspx" rel="nofollow">?? operator</a> is a shortcut for null checking when you want to assign a specific value if it is null.</p>
<p>Anyway, Exceptions end up not only creating a new object, but having the generate a stack trace, which slows things down.</p>
http://stackoverflow.com/questions/1861733/can-a-readonly-field-in-net-become-null/1862939#18629391Answer by R. Bemrose for Can a readonly field in .NET become null ?R. Bemrose2009-12-07T21:17:31Z2009-12-07T22:14:25Z<p>Are you absolutely sure that <code>HashPrefs.Contains</code> is throwing the NPE? I would think <code>SomeQueue.Dequeue().SomeMethodCalledFromAnotherThread()</code> would be the more likely candidate... because chances are the constructor and Add operations haven't finished yet when you try to Dequeue the element.</p>
<p>In fact, it might not be a bad idea to check <a href="http://msdn.microsoft.com/en-us/library/bb909392.aspx" rel="nofollow"><code>SomeQueue.Count</code></a>* before Dequeueing an element.</p>
<p>Edit:
Or even better, null check before calling SomeMethodCalledFromAnotherThread, assuming that your other thread is checking the queue in a loop... because if it's not, <code>lock</code> the queue prior to the Add and Dequeue operations.</p>
<pre><code>MyClass mine = SomeQueue.Dequeue();
if (null != mine)
mine.SomeMethodCalledFromAnotherThread();
</code></pre>
<p>*An extension method added in .NET 3.5.</p>
http://stackoverflow.com/questions/1861658/hashmap-with-stringkey-problem/1861914#18619141Answer by R. Bemrose for HashMap with StringKey problem?R. Bemrose2009-12-07T18:23:50Z2009-12-07T18:40:15Z<p>Hmmm... if Foo implements <code>equals()</code> so that it only checks name, you could always do something like this:</p>
<pre><code>Set<Foo> set = new HashSet<Foo>();
for (Foo bar: this.FooList)
{
if (!set.add(bar)) {
bar.doSomething();
}
}
</code></pre>
<p>Which works because <code>set.add(bar)</code> will run <code>bar.equals</code> against every element already in the set, and return false if any of them are equal.</p>
<p>Edit: Since this is a HashSet, you should also implement <code>hashCode()</code>. Heck, you should always implement <code>hashCode()</code> if you're overriding <code>equals</code> anyway.</p>
http://stackoverflow.com/questions/1861762/access-problem-in-java/1861986#18619860Answer by R. Bemrose for Access problem in javaR. Bemrose2009-12-07T18:33:24Z2009-12-07T18:33:24Z<p>Well, if it has public access to its properties (be they getters or public variables), you could create a copy constructor:</p>
<pre><code>public FooWrapper(Foo inDelegate) {
this.property1 = inDelegate.getProperty1();
this.property2 = inDelegate.getProperty2();
// for every property
}
</code></pre>
<p>If the properties are objects... great, even better, because then any changes you make will show up when accessed through the original object, too! (That is, until you replace one of those objects, which you have to for immutable classes like String.)</p>
http://stackoverflow.com/questions/1860937/how-can-i-lower-the-spam-score-of-my-email-message/1860992#18609927Answer by R. Bemrose for How can I lower the spam score of my email message?R. Bemrose2009-12-07T16:12:55Z2009-12-07T16:12:55Z<p>It's already telling you what to do, but I'll spell it out for you:</p>
<ol>
<li>Include more text or less images.</li>
<li>Nothing you can do here if you want HTML. It's not weighted on the default SpamAssassin install anyway, though.</li>
<li>Add in a text version of the content in addition to the HTML version.</li>
<li>Add in the missing <html> tag</li>
<li>Set up reverse DNS for your outgoing mail server's IP.</li>
</ol>
<p>Steps 3 and 4 are probably the most important to do. 1 is out of your control (marketing is in control of that). 5 would help, but it's rated fairly low.</p>
http://stackoverflow.com/questions/1860658/help-with-basic-java-concepts/1860887#18608872Answer by R. Bemrose for Help with basic Java conceptsR. Bemrose2009-12-07T15:55:59Z2009-12-07T15:55:59Z<p>A formal parameter is one that is in a method signature.</p>
<p>Does that help any?</p>
http://stackoverflow.com/questions/1860475/java-ee-for-a-net-developer/1860777#18607772Answer by R. Bemrose for Java EE for a .NET developerR. Bemrose2009-12-07T15:41:36Z2009-12-07T15:41:36Z<p>I'm surprised no one mentioned this year, but the <a href="http://java.sun.com/javaee/5/docs/api/" rel="nofollow">J2EE 5 API docs</a> are separate from the <a href="http://java.sun.com/javase/6/docs/api/index.html" rel="nofollow">JDK 6 API docs</a>.</p>
<p><a href="http://java.sun.com/javaee/5/docs/firstcup/doc/toc.html" rel="nofollow">Your First Cup: An Introduction to the Java EE Platform</a> may also be useful.</p>
http://stackoverflow.com/questions/241142/c-net-how-to-check-if-were-running-on-battery/241163#24116313Answer by R. Bemrose for C# .NET: How to check if we're running on battery?R. Bemrose2008-10-27T19:39:24Z2009-12-05T23:26:12Z<p>I believe you can check <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.systeminformation.powerstatus%28VS.80%29.aspx" rel="nofollow">SystemInformation.PowerStatus</a> to see if it's on battery or not.</p>
<pre><code>Boolean isRunningOnBattery =
(System.Windows.Forms.SystemInformation.PowerStatus.PowerLineStatus ==
PowerLineStatus.Offline);
</code></pre>
<p>Edit: In addition to the above, there's also a System.Windows.Forms.<a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.powerstatus%28VS.80%29.aspx" rel="nofollow">PowerStatus</a> class. One of its methods is <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.powerstatus.powerlinestatus%28VS.80%29.aspx" rel="nofollow">PowerLineStatus</a>, which will equal PowerLineStatus.Online if it's on AC Power.</p>
http://stackoverflow.com/questions/1848985/will-oracle-9i-oci-driver-work-with-an-oracle-10g-server/1849016#18490161Answer by R. Bemrose for Will Oracle 9i OCI driver work with an Oracle 10g server?R. Bemrose2009-12-04T19:05:34Z2009-12-04T19:05:34Z<p>I believe an Oracle 9i driver will work with both 10g and 11g (I know for a fact the Java ones do).</p>
<p>However, your best bet would be to set up a test server/VM with Oracle 10g on it, and test it.</p>
http://stackoverflow.com/questions/1848920/c-moving-files-to-queue-or-multi-thread/1848949#18489490Answer by R. Bemrose for C# - Moving files - to queue or multi-threadR. Bemrose2009-12-04T18:53:14Z2009-12-04T18:53:14Z<p>If you're moving things between just two computers, the network is going to be the bottleneck, so you may want to queue these operations.</p>
<p>Likewise, on the same machine, the I/O is going to be the bottleneck, so you'd want to queue there, too.</p>
http://stackoverflow.com/questions/1848777/unexpected-end-in-php/1848801#18488011Answer by R. Bemrose for unexpected $end in phpR. Bemrose2009-12-04T18:28:39Z2009-12-04T18:28:39Z<p><code>@$_POST</code> should just be <code>$_POST</code></p>
http://stackoverflow.com/questions/1842849/help-to-create-a-generic-class-to-avoid-code-duplication/1842949#18429494Answer by R. Bemrose for Help to create a generic class to avoid code duplicationR. Bemrose2009-12-03T21:11:26Z2009-12-03T21:11:26Z<p>This may not be the easiest way to do things, but I can't help but think it would make the most sense in the long run.</p>
<p>Create an interface</p>
<pre><code>// This is a terrible name, I know
public interface Identifier {
// Assumes ID was an int
public int getId();
// Maybe have setId, too
}
</code></pre>
<p>And in each of your classes, implement the interface and its method</p>
<pre><code>public class Person implements Identifier {
public int getId() {
//Implementation details here
}
}
</code></pre>
<p>and finally, your delete method:</p>
<pre><code>public void deleteRecord(Identifier s) {
PersistenceManager pm = PMF.get().getPersistenceManager();
try {
Identifier p = pm.getObjectById(s.getClass(), s.getId());
pm.deletePersistent(p);
} finally {
pm.close();
}
}
</code></pre>
<p>Note: I haven't completely tested this... Specifically, I haven't tested whether pm.deletePersistent(p) works with <a href="http://db.apache.org/jdo/api20/apidocs/javax/jdo/PersistenceManager.html#deletePersistent%28java.lang.Object%29" rel="nofollow">PersistenceManager</a>.</p>
http://stackoverflow.com/questions/1840926/why-do-i-get-a-403-forbidden-when-calling-to-external-iis-based-mvc-controller-re/1840956#18409560Answer by R. Bemrose for Why do I get a 403 forbidden when calling to external IIS based MVC controller returning a JSON resultR. Bemrose2009-12-03T16:09:18Z2009-12-03T16:22:43Z<p>You get that error because browsers implement a <a href="http://en.wikipedia.org/wiki/Same%5Forigin%5Fpolicy" rel="nofollow">Same Origin Policy</a> that blocks AJAX requests to other domains.</p>
<p>You can create a local AJAX class to proxy the external AJAX request on behalf of the user, using a .NET <a href="http://msdn.microsoft.com/en-us/library/system.net.webrequest.aspx?PHPSESSID=lm71lj7i6gj5fjtebtb2srl4n3" rel="nofollow">WebRequest</a>. Note that WebRequest has no constructor and uses a factory method <code>WebRequest.create(Uri)</code> instead.</p>
http://stackoverflow.com/questions/1840929/serverrequesturi-in-all-server-environments/1840940#18409401Answer by R. Bemrose for $_SERVER[REQUEST_URI] in all server environmentsR. Bemrose2009-12-03T16:07:27Z2009-12-03T16:07:27Z<p>It's supposed to.</p>
<p>I haven't done any empirical testing on it, but from the PHP <a href="http://php.net/manual/en/reserved.variables.server.php" rel="nofollow">manual page for $_SERVER</a>:</p>
<blockquote>
<p>'REQUEST_URI'<br>
The URI which was given in order to access this page; for instance,
'/index.html'.</p>
</blockquote>
http://stackoverflow.com/questions/1835755/jquery-see-if-any-boxes-checked/1835779#18357790Answer by R. Bemrose for jquery see if any boxes checkedR. Bemrose2009-12-02T21:01:41Z2009-12-02T21:01:41Z<p>The <a href="http://docs.jquery.com/Selectors/checked" rel="nofollow">checked selector</a> will select all checkboxes.</p>
<pre><code>// Selector for all checked checkboxes.
var checkboxes = $("input:checked");
</code></pre>
<p>If you just want to know if any of them are checked, or how many, check the length of the selector. If it's > 0, at least one checkbox is selected. However, if you only want one box checked at a time, consider using a radio button instead (which also uses the checked selector).</p>
<pre><code>var count = $("input:checked").length;
</code></pre>
http://stackoverflow.com/questions/1834826/it-is-a-bad-practice-to-use-suns-proprietary-java-classes/1835670#18356702Answer by R. Bemrose for It is a bad practice to use Sun's proprietary Java classes?R. Bemrose2009-12-02T20:43:49Z2009-12-02T20:50:28Z<p>The <a href="http://java.sun.com/javase/6/docs/index.html" rel="nofollow">JDK 6 Documentation</a> includes a link titled <a href="http://java.sun.com/products/jdk/faq/faq-sun-packages.html" rel="nofollow">Note About <code>sun.*</code> Packages</a>. This is a document from the Java 1.2 docs, so references to <code>sun.*</code> should be treated as if they said <code>com.sun.*</code></p>
<p>The most important points from it are:</p>
<blockquote>
<p>The classes that Sun includes with the
Java 2 SDK, Standard Edition, fall
into package groups <code>java.*</code>, <code>javax.*</code>,
<code>org.*</code> and <code>sun.*</code>. All but the <code>sun.*</code>
packages are a standard part of the
Java platform and will be supported
into the future. In general, packages
such as <code>sun.*</code>, that are outside of the
Java platform, can be different across
OS platforms (Solaris, Windows, Linux,
Macintosh, etc.) and can change at any
time without notice with SDK versions
(1.2, 1.2.1, 1.2.3, etc). Programs
that contain direct calls to the <code>sun.*</code>
packages are not 100% Pure Java.</p>
</blockquote>
<p>and </p>
<blockquote>
<p>Each company that implements the Java
platform will do so in their own
private way. The classes in <code>sun.*</code> are
present in the SDK to support the Sun
implementation of the Java platform:
the <code>sun.*</code> classes are what make the
Java platform classes work "under the
covers" for the Sun Java 2 SDK. These
classes will not in general be present
on another vendor's Java platform. If
your Java program asks for a class
"sun.package.Foo" by name, it may fail
with ClassNotFoundError, and you will
have lost a major advantage of
developing in Java.</p>
</blockquote>
http://stackoverflow.com/questions/1826851/how-to-merge-this-two-specific-arrays-in-php/1827143#18271433Answer by R. Bemrose for How to merge this two specific arrays in PHP?R. Bemrose2009-12-01T16:01:44Z2009-12-01T16:01:44Z<p>I don't have PHP here to test, but isn't it just:</p>
<pre><code>$array2 = $array['apples'];
array_merge($array2, $array['oranges']);
</code></pre>
<p>Granted, this is now in <code>$array2</code> rather than <code>$array</code>...</p>
http://stackoverflow.com/questions/1827017/how-to-add-file-to-a-previously-committed-changeset-in-subversion/1827039#18270391Answer by R. Bemrose for How to add file to a previously committed changeset in Subversion?R. Bemrose2009-12-01T15:47:08Z2009-12-01T15:47:08Z<p>Well, the easiest way would be to check out (or <a href="http://svnbook.red-bean.com/en/1.5/svn.branchmerge.switchwc.html" rel="nofollow">switch to</a>) that branch/tag, add the file, and commit a new revision.</p>
<p>As for adding it to a previous changeset... it's probably possible, but generally a bad idea.</p>
http://stackoverflow.com/questions/1561555/c-creating-a-log-system/1822134#18221340Answer by R. Bemrose for C# Creating a log systemR. Bemrose2009-11-30T20:14:40Z2009-11-30T20:20:49Z<p>If you're dealing with ASP.NET, <a href="http://code.google.com/p/elmah/" rel="nofollow">ELMAH</a> is another good logging tool. It's apparently what Microsoft's Scott Hanselman <a href="http://www.hanselman.com/blog/ELMAHErrorLoggingModulesAndHandlersForASPNETAndMVCToo.aspx" rel="nofollow">uses</a>.</p>
<p>It <em>does</em> need some <a href="http://stackoverflow.com/questions/766610/how-to-get-elmah-to-work-with-asp-net-mvc-handleerror-attribute/779961#779961">additional code</a> to get it to work with ASP.NET MVC's HandleError attribute, though.</p>
http://stackoverflow.com/questions/1821571/classpath-java-buld-path-eclipse-and-web-inf-lib-what-to-use-when-and-why/1821629#18216290Answer by R. Bemrose for CLASSPATH, Java Buld Path (eclipse), and WEB-INF\LIB : what to use, when, and why?R. Bemrose2009-11-30T18:44:38Z2009-11-30T18:44:38Z<p>If you're dealing with web applications, /WEB-INF/lib is the portable place to put JARs. This is where <s>web servers</s> servlet containers expect to find an application's jar files.</p>
http://stackoverflow.com/questions/1821300/why-do-garbage-collectors-freeze-execution/1821324#18213247Answer by R. Bemrose for Why do garbage collectors freeze execution?R. Bemrose2009-11-30T17:54:51Z2009-11-30T17:54:51Z<p>In addition to what Kico Lobo said, Garbage Collectors can also move things around in memory.</p>
<p>Therefore, they don't just have to block threads that write to memory, but also threads that read from memory.</p>
<p>Which is every thread.</p>
http://stackoverflow.com/questions/1819968/c-do-i-have-to-make-arraylist-synchronized-if-multiple-threads-only-read-it/1820192#18201921Answer by R. Bemrose for C#: Do I have to make ArrayList synchronized if multiple threads only read itR. Bemrose2009-11-30T14:38:36Z2009-11-30T14:38:36Z<p>No, but consider wrapping it in a <a href="http://msdn.microsoft.com/en-us/library/ms132474.aspx" rel="nofollow"><code>ReadOnlyCollection</code></a> to make sure none of the threads can modify it.</p>
<p>Edit: However, to do this, you'd need to make the list a <code>List<T></code> rather than an <code>ArrayList</code>.</p>
http://stackoverflow.com/questions/1800025/whats-limiting-my-php-resources/1800338#18003381Answer by R. Bemrose for What's limiting my PHP resources?R. Bemrose2009-11-25T22:23:03Z2009-11-25T22:23:03Z<p>My first instinct is to guess that PHP is reading a different php.ini.</p>
<p>In Debian (and most likely Ubuntu), each version of PHP (cli, cgi, and apache) has its own copy of php.ini.</p>
http://stackoverflow.com/questions/1903256/php-upload-file/1903304#1903304Comment by R. Bemrose on Php upload fileR. Bemrose2009-12-14T21:13:06Z2009-12-14T21:13:06Z@Peter Lindqvist: Yes, it's one of my biggest complaints with the "not marked as edited if done within 5 minutes" thing.http://stackoverflow.com/questions/1903252/extract-integer-part-in-string/1903279#1903279Comment by R. Bemrose on Extract Integer Part in StringR. Bemrose2009-12-14T21:05:47Z2009-12-14T21:05:47Zor <code>\d</code> 15charshttp://stackoverflow.com/questions/1903256/php-upload-file/1903292#1903292Comment by R. Bemrose on Php upload fileR. Bemrose2009-12-14T20:31:08Z2009-12-14T20:31:08ZSorry, but that's wrong: <a href="http://www.php.net/manual/en/features.file-upload.multiple.php" rel="nofollow">php.net/manual/en/…</a>http://stackoverflow.com/questions/1890599/is-it-possible-to-have-file-exists-and-is-not-readableComment by R. Bemrose on Is it Possible to have File Exists and is not readable?R. Bemrose2009-12-11T20:53:45Z2009-12-11T20:53:45Z@Al Everett: The obvious answer to that deals with file system permissions.http://stackoverflow.com/questions/1816849/image-upload-showing-image-on-web-page-before-hitting-submit/1817900#1817900Comment by R. Bemrose on Image Upload -- showing image on web page before hitting SubmitR. Bemrose2009-12-11T20:51:05Z2009-12-11T20:51:05Z@m.u.sheikh: Well, the big one would probably be Internet Explorer. That's just a guess, though.http://stackoverflow.com/questions/1890390/how-to-use-cs-ternary-operator-with-two-byte-values/1890424#1890424Comment by R. Bemrose on How to use C#'s ternary operator with two byte values?R. Bemrose2009-12-11T19:51:48Z2009-12-11T19:51:48ZI'm actually surprised that it took this long for someone to suggest it.http://stackoverflow.com/questions/1889943/generate-javadoc-directly-from-repository/1890035#1890035Comment by R. Bemrose on Generate javadoc directly from repository?R. Bemrose2009-12-11T18:37:03Z2009-12-11T18:37:03ZI'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.http://stackoverflow.com/questions/1888189/java-readers-and-encodings/1888212#1888212Comment by R. Bemrose on Java: Readers and EncodingsR. Bemrose2009-12-11T14:33:59Z2009-12-11T14:33:59ZSadly, 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 <code>FileInputStream</code>'s constructor signatures.http://stackoverflow.com/questions/214136/why-not-allow-an-external-interface-to-override-hashcode-equals-for-a-hashmapComment by R. Bemrose on Why not allow an external interface to override hashCode/equals for a HashMap?R. Bemrose2009-12-09T20:55:22Z2009-12-09T20:55:22Z"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.http://stackoverflow.com/questions/1876013/why-are-foreign-keys-more-used-in-theory-than-in-practice/1876062#1876062Comment by R. Bemrose on Why are foreign keys more used in theory than in practice?R. Bemrose2009-12-09T20:46:35Z2009-12-09T20:46:35ZAre you saying I shouldn't try to <code>SELECT * FROM book INNER JOIN person ON book.ISBN = person.Phone</code> ?http://stackoverflow.com/questions/1875720/why-could-an-expressions-body-in-c-net-not-use-properties-of-type-int-double-o/1875762#1875762Comment by R. Bemrose on Why could an Expression's Body in C#.net not use properties of type int, double or bool?R. Bemrose2009-12-09T18:23:41Z2009-12-09T18:23:41Zint, double and bool should map to the structs System.Int32, System.Double, and System.Boolean respectively.http://stackoverflow.com/questions/1874433/null-test-versus-try-catch/1874468#1874468Comment by R. Bemrose on null test versus try catchR. Bemrose2009-12-09T15:12:25Z2009-12-09T15:12:25Z@Stefan: I use Java at work, which is probably why I didn't think of the <code>as</code> keyword.http://stackoverflow.com/questions/1867798/how-to-overcome-neatly-the-fact-that-static-attributes-cant-be-overrridenComment by R. Bemrose on How to overcome neatly the fact that static attributes can't be overrriden?R. Bemrose2009-12-08T15:55:13Z2009-12-08T15:55:13ZI've always found it amazingly odd that static methods are inherited to begin with.http://stackoverflow.com/questions/1867743/can-i-style-a-disabled-control-using-css-or-script/1867764#1867764Comment by R. Bemrose on Can I style a disabled control using CSS or script?R. Bemrose2009-12-08T15:52:16Z2009-12-08T15:52:16Z+1 for mentioning readonly controls.http://stackoverflow.com/questions/1861733/can-a-readonly-field-in-net-become-null/1862939#1862939Comment by R. Bemrose on Can a readonly field in .NET become null ?R. Bemrose2009-12-07T22:09:25Z2009-12-07T22:09:25ZIn that case, he could store the Dequeued element and check it for null before calling a method on it.