User R. Bemrose - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T12:13:55Z http://stackoverflow.com/feeds/user/15880 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1902027/jquery-animate-different-speeds/1902062#1902062 1 Answer by R. Bemrose for jquery .animate different speeds R. Bemrose 2009-12-14T16:50:08Z 2009-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>&lt;script type="text/javascript"&gt; $(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. }); &lt;/script&gt; </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#1901356 0 Answer by R. Bemrose for How long does code last? R. Bemrose 2009-12-14T14:56:05Z 2009-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#1901144 0 Answer by R. Bemrose for how to get Compiler error message? asp.net R. Bemrose 2009-12-14T14:12:10Z 2009-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#1890699 0 Answer by R. Bemrose for Getting a VB6 Application to Work in Windows 7 If You Can't Recompile R. Bemrose 2009-12-11T20:32:07Z 2009-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#1889978 0 Answer by R. Bemrose for PHP syntax error on preg_replace method R. Bemrose 2009-12-11T18:26:17Z 2009-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#1876089 0 Answer by R. Bemrose for ignore files in flight R. Bemrose 2009-12-09T19:04:07Z 2009-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#1876039 0 Answer by R. Bemrose for Why does PHP 5 use __contruct() instead of className() as constructor? R. Bemrose 2009-12-09T18:55:51Z 2009-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#1874468 3 Answer by R. Bemrose for null test versus try catch R. Bemrose 2009-12-09T15:03:40Z 2009-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#1862939 1 Answer by R. Bemrose for Can a readonly field in .NET become null ? R. Bemrose 2009-12-07T21:17:31Z 2009-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#1861914 1 Answer by R. Bemrose for HashMap with StringKey problem? R. Bemrose 2009-12-07T18:23:50Z 2009-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&lt;Foo&gt; set = new HashSet&lt;Foo&gt;(); 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#1861986 0 Answer by R. Bemrose for Access problem in java R. Bemrose 2009-12-07T18:33:24Z 2009-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#1860992 7 Answer by R. Bemrose for How can I lower the spam score of my email message? R. Bemrose 2009-12-07T16:12:55Z 2009-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 &lt;html&gt; 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#1860887 2 Answer by R. Bemrose for Help with basic Java concepts R. Bemrose 2009-12-07T15:55:59Z 2009-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#1860777 2 Answer by R. Bemrose for Java EE for a .NET developer R. Bemrose 2009-12-07T15:41:36Z 2009-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#241163 13 Answer by R. Bemrose for C# .NET: How to check if we're running on battery? R. Bemrose 2008-10-27T19:39:24Z 2009-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#1849016 1 Answer by R. Bemrose for Will Oracle 9i OCI driver work with an Oracle 10g server? R. Bemrose 2009-12-04T19:05:34Z 2009-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#1848949 0 Answer by R. Bemrose for C# - Moving files - to queue or multi-thread R. Bemrose 2009-12-04T18:53:14Z 2009-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#1848801 1 Answer by R. Bemrose for unexpected $end in php R. Bemrose 2009-12-04T18:28:39Z 2009-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#1842949 4 Answer by R. Bemrose for Help to create a generic class to avoid code duplication R. Bemrose 2009-12-03T21:11:26Z 2009-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#1840956 0 Answer by R. Bemrose for Why do I get a 403 forbidden when calling to external IIS based MVC controller returning a JSON result R. Bemrose 2009-12-03T16:09:18Z 2009-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#1840940 1 Answer by R. Bemrose for $_SERVER[REQUEST_URI] in all server environments R. Bemrose 2009-12-03T16:07:27Z 2009-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#1835779 0 Answer by R. Bemrose for jquery see if any boxes checked R. Bemrose 2009-12-02T21:01:41Z 2009-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#1835670 2 Answer by R. Bemrose for It is a bad practice to use Sun's proprietary Java classes? R. Bemrose 2009-12-02T20:43:49Z 2009-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#1827143 3 Answer by R. Bemrose for How to merge this two specific arrays in PHP? R. Bemrose 2009-12-01T16:01:44Z 2009-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#1827039 1 Answer by R. Bemrose for How to add file to a previously committed changeset in Subversion? R. Bemrose 2009-12-01T15:47:08Z 2009-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#1822134 0 Answer by R. Bemrose for C# Creating a log system R. Bemrose 2009-11-30T20:14:40Z 2009-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#1821629 0 Answer by R. Bemrose for CLASSPATH, Java Buld Path (eclipse), and WEB-INF\LIB : what to use, when, and why? R. Bemrose 2009-11-30T18:44:38Z 2009-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#1821324 7 Answer by R. Bemrose for Why do garbage collectors freeze execution? R. Bemrose 2009-11-30T17:54:51Z 2009-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#1820192 1 Answer by R. Bemrose for C#: Do I have to make ArrayList synchronized if multiple threads only read it R. Bemrose 2009-11-30T14:38:36Z 2009-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&lt;T&gt;</code> rather than an <code>ArrayList</code>.</p> http://stackoverflow.com/questions/1800025/whats-limiting-my-php-resources/1800338#1800338 1 Answer by R. Bemrose for What's limiting my PHP resources? R. Bemrose 2009-11-25T22:23:03Z 2009-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#1903304 Comment by R. Bemrose on Php upload file R. Bemrose 2009-12-14T21:13:06Z 2009-12-14T21:13:06Z @Peter Lindqvist: Yes, it's one of my biggest complaints with the &quot;not marked as edited if done within 5 minutes&quot; thing. http://stackoverflow.com/questions/1903252/extract-integer-part-in-string/1903279#1903279 Comment by R. Bemrose on Extract Integer Part in String R. Bemrose 2009-12-14T21:05:47Z 2009-12-14T21:05:47Z or <code>\d</code> 15chars http://stackoverflow.com/questions/1903256/php-upload-file/1903292#1903292 Comment by R. Bemrose on Php upload file R. Bemrose 2009-12-14T20:31:08Z 2009-12-14T20:31:08Z Sorry, but that's wrong: <a href="http://www.php.net/manual/en/features.file-upload.multiple.php" rel="nofollow">php.net/manual/en/&hellip;</a> http://stackoverflow.com/questions/1890599/is-it-possible-to-have-file-exists-and-is-not-readable Comment by R. Bemrose on Is it Possible to have File Exists and is not readable? R. Bemrose 2009-12-11T20:53:45Z 2009-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#1817900 Comment by R. Bemrose on Image Upload -- showing image on web page before hitting Submit R. Bemrose 2009-12-11T20:51:05Z 2009-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#1890424 Comment by R. Bemrose on How to use C#'s ternary operator with two byte values? R. Bemrose 2009-12-11T19:51:48Z 2009-12-11T19:51:48Z I'm actually surprised that it took this long for someone to suggest it. http://stackoverflow.com/questions/1889943/generate-javadoc-directly-from-repository/1890035#1890035 Comment by R. Bemrose on Generate javadoc directly from repository? R. Bemrose 2009-12-11T18:37:03Z 2009-12-11T18:37:03Z 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. http://stackoverflow.com/questions/1888189/java-readers-and-encodings/1888212#1888212 Comment by R. Bemrose on Java: Readers and Encodings R. Bemrose 2009-12-11T14:33:59Z 2009-12-11T14:33:59Z 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 <code>FileInputStream</code>'s constructor signatures. http://stackoverflow.com/questions/214136/why-not-allow-an-external-interface-to-override-hashcode-equals-for-a-hashmap Comment by R. Bemrose on Why not allow an external interface to override hashCode/equals for a HashMap? R. Bemrose 2009-12-09T20:55:22Z 2009-12-09T20:55:22Z &quot;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.&quot; -- 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#1876062 Comment by R. Bemrose on Why are foreign keys more used in theory than in practice? R. Bemrose 2009-12-09T20:46:35Z 2009-12-09T20:46:35Z Are you saying I shouldn't try to <code>SELECT &#42; 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#1875762 Comment by R. Bemrose on Why could an Expression's Body in C#.net not use properties of type int, double or bool? R. Bemrose 2009-12-09T18:23:41Z 2009-12-09T18:23:41Z int, 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#1874468 Comment by R. Bemrose on null test versus try catch R. Bemrose 2009-12-09T15:12:25Z 2009-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-overrriden Comment by R. Bemrose on How to overcome neatly the fact that static attributes can't be overrriden? R. Bemrose 2009-12-08T15:55:13Z 2009-12-08T15:55:13Z I'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#1867764 Comment by R. Bemrose on Can I style a disabled control using CSS or script? R. Bemrose 2009-12-08T15:52:16Z 2009-12-08T15:52:16Z +1 for mentioning readonly controls. http://stackoverflow.com/questions/1861733/can-a-readonly-field-in-net-become-null/1862939#1862939 Comment by R. Bemrose on Can a readonly field in .NET become null ? R. Bemrose 2009-12-07T22:09:25Z 2009-12-07T22:09:25Z In that case, he could store the Dequeued element and check it for null before calling a method on it.