User Brian Knoblauch - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T17:57:17Z http://stackoverflow.com/feeds/user/15689 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1573988/how-do-i-mix-jvm-based-languages-in-a-single-netbeans-project 3 How do I mix JVM based languages in a single Netbeans project? Brian Knoblauch 2009-10-15T17:46:57Z 2009-11-26T16:06:17Z <p>For example, is it possible to have Scala, Java, and Clojure source all compile/build together properly inside the same project? Or, do I have to do them as separate project libraries then used by whatever I pick as the "master" project?</p> <p>If neither of those, how's everyone else doing it?</p> http://stackoverflow.com/questions/209229/visual-studio-6-0-2003-2008-compatibility-with-windows-vista-64-bit-x64/1772470#1772470 0 Answer by Brian Knoblauch for Visual Studio (6.0, 2003 & 2008) compatibility with Windows Vista 64-bit (x64) Brian Knoblauch 2009-11-20T18:41:45Z 2009-11-20T18:41:45Z <p>2005 works fine and MS officially supports 6.0, so you should be good on both of those. Unfortunately, 2003 is unsupported by MS, and so far I've ben unable to get it to properly install and run on Vista x64. :-(</p> http://stackoverflow.com/questions/1766005/causes-of-connection-with-the-server-was-reset-on-project-open 0 Causes of "Connection with the server was reset" on project open? Brian Knoblauch 2009-11-19T19:42:34Z 2009-11-19T21:05:50Z <p>I've got an old VS2003 project that needs to be updated. Porting it forward to newer versions of .Net is way beyond the scope of the update. I fired up an old XP box and loaded up VS2003, but am unable to open the project.</p> <p>I receive a "The Web server reported the following error when attempting to create or open the Web project location at the following URL: '<a href="http://localhost/project" rel="nofollow">http://localhost/project</a>'. 'The conneciton with the server was reset'.</p> <p>OK, I'd pulled a copy out of the repository and tried to open it from the VS Projects folder. We'll try sharing the drive on the web site (looks like it was just dumped, rather than deployed, as the .sln is there). Same error trying to open from there. Makes sense, it's looking at localhost. OK, extract a copy into my wwwroot/project locally. Same error. Tried twiddling options for the local IIS, no go.</p> <p>Now, I've done this before in the past and I remember that I had struggled a little getting old projects to open in VS, but I don't remember it being this bad. I'm out of ideas on this one. What am I missing here?</p> http://stackoverflow.com/questions/1756044/require-some-help-with-java/1756079#1756079 0 Answer by Brian Knoblauch for Require some help with Java.. Brian Knoblauch 2009-11-18T13:45:47Z 2009-11-18T13:45:47Z <p>I'm not quite sure exactly what your asking or what you mean by "limit" <em>exactly</em>, but I'm guessing (based on how I expect the mod operator to work) that perhaps you're off by one? Perhaps ">=" instead of ">" is what you're looking for?</p> http://stackoverflow.com/questions/375259/unaligned-memory-accesses/1741987#1741987 1 Answer by Brian Knoblauch for unaligned memory accesses Brian Knoblauch 2009-11-16T12:45:23Z 2009-11-16T12:45:23Z <p>Do the SIMD instructions you're using require aligned access? Usually I find it's fast enough to (when hardware supports it), specify the largest load possible even if unaligned and let the hardware sort it out. Of course, not all instructions and processors support unaligned access like that.</p> http://stackoverflow.com/questions/1707569/is-file-exists-an-expensive-operation/1707718#1707718 0 Answer by Brian Knoblauch for Is File.Exists an expensive operation? Brian Knoblauch 2009-11-10T12:49:18Z 2009-11-10T12:49:18Z <p>Locking no. Slow, depends on what you're comparing it to. It's fairly cheap as far as I/O goes, but I/O is generally slow overall compared to other operations. So, if you must use it, it won't hurt too bad. However, I'd try not to call it more times than is truly necessary! :-)</p> http://stackoverflow.com/questions/1702752/view-ram-in-dos/1702775#1702775 1 Answer by Brian Knoblauch for View ram in DOS Brian Knoblauch 2009-11-09T18:20:08Z 2009-11-09T18:20:08Z <p>Use the DOS debug command. I found a decent overview at: <a href="http://mirror.href.com/thestarman/asm/debug/debug.htm" rel="nofollow">http://mirror.href.com/thestarman/asm/debug/debug.htm</a></p> http://stackoverflow.com/questions/1688164/performance-of-sql-subqueries-functions/1688456#1688456 0 Answer by Brian Knoblauch for Performance of Sql subqueries\functions Brian Knoblauch 2009-11-06T15:51:22Z 2009-11-06T15:51:22Z <p>One thing to keep in mind is to avoid "NOT" if at all possible. "NOT" is non-sargable, it won't be able to take full advantages of indexing. At first glance, I don't see a way to rewrite it to avoid the NOT expressions though. FWIW, YMMV. :-)</p> http://stackoverflow.com/questions/286873/getting-netbeans-and-subversion-to-play-together-nicely-with-libraries 3 Getting Netbeans and Subversion to play together nicely with libraries? Brian Knoblauch 2008-11-13T13:12:29Z 2009-10-30T14:21:58Z <p>I'm having a difficult time figuring out how to add a .jar/library to a Netbeans project in such a way that I can get it committed to the repository.</p> <p>The typical way to add a library (per the Netbeans documents I've already gone through) ends up with it just being local to me. Anyone who checks out my project ends up missing my required library.</p> <p>Inserting it manually and trying to work around Netbeans results in Netbeans hanging while trying to scan the project...</p> <p>So, how can I tell Netbeans to pick up a jar as a library and include it in my project in such a way that Subversion will be able to handle it?</p> http://stackoverflow.com/questions/286873/getting-netbeans-and-subversion-to-play-together-nicely-with-libraries/1650080#1650080 0 Answer by Brian Knoblauch for Getting Netbeans and Subversion to play together nicely with libraries? Brian Knoblauch 2009-10-30T14:21:58Z 2009-10-30T14:21:58Z <p>OK, the working solution that I've now moved to is to extract the class files out of the jars and dump them into the Source Packages area. Then it all gets committed to the repository and also avoids having to deal with handling a separate "lib" directory in the deployment phase.</p> <p>This solution does everything I'm looking for, yet I feel real dirty about doing it this way. It just seems horribly broken and wrong... :-)</p> http://stackoverflow.com/questions/1645192/what-to-replace-frontpage-with/1645212#1645212 0 Answer by Brian Knoblauch for What to replace FrontPage with? Brian Knoblauch 2009-10-29T17:08:08Z 2009-10-30T11:54:11Z <p>Microsoft Visual Web Developer Express perhaps? <a href="http://www.microsoft.com/express/vwd/" rel="nofollow">http://www.microsoft.com/express/vwd/</a></p> <p>Works well, and it's free!</p> http://stackoverflow.com/questions/1607378/word-tearing-on-x86/1607429#1607429 1 Answer by Brian Knoblauch for Word Tearing on x86 Brian Knoblauch 2009-10-22T14:00:58Z 2009-10-22T14:00:58Z <p>I might be missing something, but I don't foresee any issues. x86 architecture writes only what it needs, it doesn't do any writing outside the specified values. Cache-snooping handles the cache issues.</p> http://stackoverflow.com/questions/1599861/learning-more-about-java/1600444#1600444 0 Answer by Brian Knoblauch for Learning more about Java Brian Knoblauch 2009-10-21T12:18:57Z 2009-10-21T12:18:57Z <p>You don't have to save all the learning for your own time. There are likely opportunities to learn and improve while coding at work. Try to find ways to make your work coding more interesting and efficient.</p> <p>Not all programmers go home from work and keep programming. Even those of us that would like to, aren't able. Outside of work, I don't have more than a couple minutes at a time to call my own and that's not enough to do any coding.</p> http://stackoverflow.com/questions/1556283/ebook-reader-for-programming-books/1556352#1556352 0 Answer by Brian Knoblauch for ebook reader for programming books? Brian Knoblauch 2009-10-12T19:11:24Z 2009-10-12T19:11:24Z <p>Very subjective. Nothing I've used yet has been good enough for me.</p> http://stackoverflow.com/questions/211751/do-you-use-unit-testing-in-your-professional-projects/211810#211810 0 Answer by Brian Knoblauch for Do you use Unit Testing in your professional projects? Brian Knoblauch 2008-10-17T11:34:10Z 2009-10-11T18:47:26Z <p>I'm interested in doing it, but not sure how to start doing it with the large projects I end up joining part way through... Haven't been involved in a real fresh start of a project since back in 1996!</p> http://stackoverflow.com/questions/114928/net-process-start-default-directory 4 .Net Process.Start default directory? Brian Knoblauch 2008-09-22T13:44:33Z 2009-10-09T14:15:04Z <p>I'm firing off a java app from inside of a C# .Net console app. Works fine for the case where the java app doesn't care what the "default" directory is, but fails for a Java app that only searches the current directory for support files.</p> <p>Is there a process parameter that can be set to specify the default directory that a process is started in?</p> http://stackoverflow.com/questions/1521122/java-converting-a-double-to-a-string/1521139#1521139 2 Answer by Brian Knoblauch for Java: Converting a double to a String Brian Knoblauch 2009-10-05T16:42:32Z 2009-10-05T16:42:32Z <p>Look into "DecimalFormat". It lets you format the output pretty much however you want!</p> http://stackoverflow.com/questions/1472172/how-fast-is-the-procedure-to-convert-from-using-big-endian-to-little-endian/1472180#1472180 3 Answer by Brian Knoblauch for How fast is the procedure to convert from using big endian to little endian? Brian Knoblauch 2009-09-24T14:43:50Z 2009-09-24T14:43:50Z <p>Very fast. It's a single machine language opcode on most architectures. Even on ancient hardware it would execute in only 2-3 clock cycles.</p> http://stackoverflow.com/questions/1313492/is-it-possible-to-return-multiple-items-in-one-call/1313509#1313509 1 Answer by Brian Knoblauch for Is it possible to return multiple items in one call? Brian Knoblauch 2009-08-21T18:18:48Z 2009-08-21T18:18:48Z <p>You could return an array or a list of GRects. Or, perhaps supply an empty array or list that the method could fill.</p> http://stackoverflow.com/questions/1301538/is-rapid-development-a-moot-point-in-asp-net-mvc/1301552#1301552 -1 Answer by Brian Knoblauch for Is Rapid Development a moot point in ASP.NET MVC? Brian Knoblauch 2009-08-19T17:50:56Z 2009-08-19T18:09:48Z <p>Well, I've never considered Visual Studio as a RAD platform. Faster than PHP, sure. Comparable to Netbeans/Eclipse. Not even close to a true RAD platform though (oh Delphi, how I miss thee!).</p> http://stackoverflow.com/questions/1300864/is-there-a-new-library-for-java-that-supports-ipv6-on-solaris 0 Is there a new library for Java that supports IPv6 on Solaris? Brian Knoblauch 2009-08-19T15:46:08Z 2009-08-19T17:04:38Z <p>I'm doing the following to lookup an Internet address. It fails specifically on Solaris machines that have IPv6 nameservers in the resolv.conf. Works fine on Windows machines that have IPv6 nameservers and on IPv4 only Solaris machines. From the error returned it appears that the Java "getAttributes" line is failing internally (somewhere deep) with a parsing problem when presented with an IPv6 nameserver. My question is, "is there a way to do this better that works properly on Solaris when IPv6 is in use?"</p> <pre><code>InetAddress localhost=InetAddress.getLocalHost(); ipAddress=localhost.getHostAddress(); env.put("java.naming.factory.initial", "com.sun.jndi.dns.DnsContextFactory"); DirContext ictx = new InitialDirContext(env); Attributes attrs=ictx.getAttributes("blah.test.fakedomain", new String[] { "A" }); </code></pre> http://stackoverflow.com/questions/1268092/static-code-on-solaris/1268316#1268316 0 Answer by Brian Knoblauch for Static code on Solaris? Brian Knoblauch 2009-08-12T19:48:37Z 2009-08-12T19:48:37Z <p>Can't say I've ever gone looking for them, but did you check the "additional options" (or whatever they call it) CD/DVD? I remember it had other random "missing" things...</p> http://stackoverflow.com/questions/404640/have-you-ever-written-an-infinite-loop-that-made-it-into-production/1262621#1262621 1 Answer by Brian Knoblauch for Have you ever written an infinite loop that made it into production? Brian Knoblauch 2009-08-11T20:08:35Z 2009-08-11T20:08:35Z <p>Yes, on purpose, as part of a system shutdown routine. Clear interrupts and do a tight loop until user pushes hardware reset or powers the machine off.</p> http://stackoverflow.com/questions/1166855/best-ide-for-java-web-development/1167072#1167072 2 Answer by Brian Knoblauch for Best IDE for Java Web Development Brian Knoblauch 2009-07-22T17:57:35Z 2009-07-22T17:57:35Z <p>I'm with you, Netbeans is currently the best. I'm an ex-Eclipse user.</p> http://stackoverflow.com/questions/1103313/is-anybody-using-the-named-boolean-operators/1103356#1103356 0 Answer by Brian Knoblauch for Is anybody using the named boolean operators? Brian Knoblauch 2009-07-09T11:48:21Z 2009-07-09T11:48:21Z <p>I like the idea, but don't use them. I'm so used to the old way that it provides no advantage to me doing it either way. Same holds true for the rest of our group, however, I do have concerns that we might want to switch to help avoid future programmers from stumbling over the old symbols.</p> http://stackoverflow.com/questions/944302/copy-block-of-memory/944430#944430 0 Answer by Brian Knoblauch for copy block of memory Brian Knoblauch 2009-06-03T12:23:31Z 2009-06-03T12:23:31Z <p>REP MOVSD in assembly perhaps? Hard to say without more information on exactly what you're trying to copy... Or, you can reprogram the DMA controller to do it too, but it'll actually end up being slower than just using the processor. :-)</p> http://stackoverflow.com/questions/916825/how-do-i-sort-by-a-column-name-thats-reserved-in-that-context 0 How do I sort by a column name that's reserved in that context? Brian Knoblauch 2009-05-27T16:48:13Z 2009-05-27T19:18:38Z <p>I'm working with a legacy database with columns such as "item" and "desc" (for description).</p> <p>Obviously, there's issues when trying to do an ordered select such as:</p> <pre><code>SELECT item, desc FROM blah ORDER BY desc </code></pre> <p>The intent is to do an ascending sort of column "desc", but SQL server gets confused since desc is also a modifier for order by... How do I escape the field name so that it work appropriately? Do I have to select a second copy of that column as a different name to use in the order by?</p> http://stackoverflow.com/questions/802906/do-you-attend-user-group-meetings/802977#802977 0 Answer by Brian Knoblauch for Do you attend user group meetings? Brian Knoblauch 2009-04-29T15:44:26Z 2009-04-29T15:44:26Z <p>No. I'd really like to, but I have very little time available and they're never in a place and at a time that I can make it.</p> http://stackoverflow.com/questions/65200/how-do-you-crash-a-jvm/798997#798997 0 Answer by Brian Knoblauch for How do you crash a JVM? Brian Knoblauch 2009-04-28T17:18:43Z 2009-04-28T17:18:43Z <p>I'm doing it now, but not entirely sure how... :-) JVM (and my app) sometimes just completely disappear. No errors thrown, nothing logged. Goes from working to not running at all instantly with no warning.</p> http://stackoverflow.com/questions/647827/do-you-plan-to-use-the-scala-programming-language-and-on-what-project/798969#798969 0 Answer by Brian Knoblauch for Do you plan to use the Scala programming language and on what project? Brian Knoblauch 2009-04-28T17:12:16Z 2009-04-28T17:12:16Z <p>I've played around with it some, but haven't found a good fit in our software (internal use business process stuff). I could see it possibly being a good fit with the scientific community though.</p> http://stackoverflow.com/questions/1383320/poll-what-is-stopping-you-from-switching-from-java-to-scala/1605966#1605966 Comment by Brian Knoblauch on Poll: What is stopping you from switching (from Java) to Scala ? Brian Knoblauch 2009-11-25T18:23:49Z 2009-11-25T18:23:49Z I don't buy this argument. The same problem exists with .Net and it's quite popular. I've moved 1.0 code to 1.1, 1.1 to 2.0, and even 3.0 back down to 2.0 and really stupid, basic stuff that you'd think would never change, does between versions. http://stackoverflow.com/questions/1766005/causes-of-connection-with-the-server-was-reset-on-project-open Comment by Brian Knoblauch on Causes of "Connection with the server was reset" on project open? Brian Knoblauch 2009-11-23T18:55:25Z 2009-11-23T18:55:25Z 1.1/1.0 bug is a Vista thing. Found a website to get around it and I'm now in business. mfeingold's response didn't solve my problem, but helped me think about it more. So, +1, but not accepting it in case someone eventually comes along with a complete solution. http://stackoverflow.com/questions/1766005/causes-of-connection-with-the-server-was-reset-on-project-open Comment by Brian Knoblauch on Causes of "Connection with the server was reset" on project open? Brian Knoblauch 2009-11-23T17:35:26Z 2009-11-23T17:35:26Z Gave up on trying to get VS2003 working on that machine. Installed on another one and have made it much further along. Actually sees the app and opens it, but claims that only 1.0 is supported and it's a 1.1 app. Application Pool clearly shows 1.1, yet it's claiming it's a 1.0 App Pool. Confused. http://stackoverflow.com/questions/209229/visual-studio-6-0-2003-2008-compatibility-with-windows-vista-64-bit-x64/1772470#1772470 Comment by Brian Knoblauch on Visual Studio (6.0, 2003 & 2008) compatibility with Windows Vista 64-bit (x64) Brian Knoblauch 2009-11-23T14:06:18Z 2009-11-23T14:06:18Z Update. VS2003 &quot;sort of supported&quot; now. <a href="http://msdn.microsoft.com/en-us/vstudio/bb188244.aspx" rel="nofollow">msdn.microsoft.com/en-us/vstudio/&hellip;</a> I'm trying to load it right now. Ended up having to skip the FPSE dependency as unable to figure out how to install that one Vista. http://stackoverflow.com/questions/1772340/what-is-the-worst-programming-job-you-ever-had-and-why Comment by Brian Knoblauch on What is the worst programming job you ever had and why? Brian Knoblauch 2009-11-20T18:30:37Z 2009-11-20T18:30:37Z I guess we could debate what &quot;subject and argumentative&quot; actually translates to amongst a group of computer nerds. :-) http://stackoverflow.com/questions/1766005/causes-of-connection-with-the-server-was-reset-on-project-open/1766039#1766039 Comment by Brian Knoblauch on Causes of "Connection with the server was reset" on project open? Brian Knoblauch 2009-11-20T13:27:26Z 2009-11-20T13:27:26Z Hmmm, it was already created. Did a remove and a create, no change. Blew everything away, brought in a fresh copy, still same problem. Any other ideas? Looks like all the right services are running. http://stackoverflow.com/questions/1766005/causes-of-connection-with-the-server-was-reset-on-project-open/1766039#1766039 Comment by Brian Knoblauch on Causes of "Connection with the server was reset" on project open? Brian Knoblauch 2009-11-19T19:51:15Z 2009-11-19T19:51:15Z I suspected that as I recall having to do that on a 2008 server, but I can't find an option for that on my IIS on XP. Must be there, but I'm just not seeing it? http://stackoverflow.com/questions/1757820/c-mysql-vs-sql-server/1757885#1757885 Comment by Brian Knoblauch on C# - MySQL vs SQL Server Brian Knoblauch 2009-11-18T18:38:17Z 2009-11-18T18:38:17Z I'll add that mySQL can be faster for simpler queries. Another option is PostGreSQL, it's in between the 2. It can be scaled to Enterprise sizes just like (some say better than) MS SQL server. Doesn't cost a bazillion dollars like SQL Server can (very much use dependent anyways). http://stackoverflow.com/questions/1749581/what-does-it-mean-to-clone-an-object Comment by Brian Knoblauch on What does it mean to clone() an object? Brian Knoblauch 2009-11-17T15:35:52Z 2009-11-17T15:35:52Z Seems obvious to experienced people, but beginners often struggle with &quot;hey, why'd my object change when I changed this 'other' one&quot;. The realization that names are basically gussied up pointers comes slowly (and understanding cloning greatly speeds that process). http://stackoverflow.com/questions/266569/whats-the-first-program-you-wrote-that-you-were-proud-of/266611#266611 Comment by Brian Knoblauch on What's the first program you wrote that you were proud of? Brian Knoblauch 2009-11-06T16:07:56Z 2009-11-06T16:07:56Z I did one of those in i386 assembly back in the day. I got divide by zero errors whenever objects crashed. :-) http://stackoverflow.com/questions/1688338/why-the-name-main-for-function-main Comment by Brian Knoblauch on Why the name main for function main() Brian Knoblauch 2009-11-06T15:43:30Z 2009-11-06T15:43:30Z If you don't like it, feel free to develop your own language with identical syntax except for the main function. :-) http://stackoverflow.com/questions/1675342/attitudes-toward-foreign-programmers Comment by Brian Knoblauch on Attitudes toward foreign programmers Brian Knoblauch 2009-11-05T16:33:06Z 2009-11-05T16:33:06Z @JasonTrue AIIIIEEE! Please let's not promote turning community wiki into the wasteland of things that are borderline on/off-topic! That's what the close/reopen process is for! http://stackoverflow.com/questions/1650721/server-side-db-programming-why/1650748#1650748 Comment by Brian Knoblauch on server side db programming: why? Brian Knoblauch 2009-10-30T18:24:53Z 2009-10-30T18:24:53Z They (triggers, sprocs) have their place, but one must be very careful as it can VERY easily and quickly turn into WORN (Write Once Read Never) code. I like to think of it similar to threading. Lots of people do it, but do it wrong. It takes a truly exceptional person to do it RIGHT. http://stackoverflow.com/questions/286873/getting-netbeans-and-subversion-to-play-together-nicely-with-libraries/389967#389967 Comment by Brian Knoblauch on Getting Netbeans and Subversion to play together nicely with libraries? Brian Knoblauch 2009-10-30T14:22:41Z 2009-10-30T14:22:41Z This entry now superceded by another answer by me. http://stackoverflow.com/questions/65200/how-do-you-crash-a-jvm/798997#798997 Comment by Brian Knoblauch on How do you crash a JVM? Brian Knoblauch 2009-10-30T14:18:07Z 2009-10-30T14:18:07Z Unfortunately, it's on multiple machines that otherwise run just fine. It's only this one particular app that does it (and it's not memory or processor intensive).