User Brian Knoblauch - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T17:57:17Zhttp://stackoverflow.com/feeds/user/15689http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1573988/how-do-i-mix-jvm-based-languages-in-a-single-netbeans-project3How do I mix JVM based languages in a single Netbeans project?Brian Knoblauch2009-10-15T17:46:57Z2009-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#17724700Answer by Brian Knoblauch for Visual Studio (6.0, 2003 & 2008) compatibility with Windows Vista 64-bit (x64)Brian Knoblauch2009-11-20T18:41:45Z2009-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-open0Causes of "Connection with the server was reset" on project open?Brian Knoblauch2009-11-19T19:42:34Z2009-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#17560790Answer by Brian Knoblauch for Require some help with Java..Brian Knoblauch2009-11-18T13:45:47Z2009-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#17419871Answer by Brian Knoblauch for unaligned memory accesses Brian Knoblauch2009-11-16T12:45:23Z2009-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#17077180Answer by Brian Knoblauch for Is File.Exists an expensive operation?Brian Knoblauch2009-11-10T12:49:18Z2009-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#17027751Answer by Brian Knoblauch for View ram in DOSBrian Knoblauch2009-11-09T18:20:08Z2009-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#16884560Answer by Brian Knoblauch for Performance of Sql subqueries\functionsBrian Knoblauch2009-11-06T15:51:22Z2009-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-libraries3Getting Netbeans and Subversion to play together nicely with libraries?Brian Knoblauch2008-11-13T13:12:29Z2009-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#16500800Answer by Brian Knoblauch for Getting Netbeans and Subversion to play together nicely with libraries?Brian Knoblauch2009-10-30T14:21:58Z2009-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#16452120Answer by Brian Knoblauch for What to replace FrontPage with?Brian Knoblauch2009-10-29T17:08:08Z2009-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#16074291Answer by Brian Knoblauch for Word Tearing on x86Brian Knoblauch2009-10-22T14:00:58Z2009-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#16004440Answer by Brian Knoblauch for Learning more about JavaBrian Knoblauch2009-10-21T12:18:57Z2009-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#15563520Answer by Brian Knoblauch for ebook reader for programming books?Brian Knoblauch2009-10-12T19:11:24Z2009-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#2118100Answer by Brian Knoblauch for Do you use Unit Testing in your professional projects?Brian Knoblauch2008-10-17T11:34:10Z2009-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-directory4.Net Process.Start default directory?Brian Knoblauch2008-09-22T13:44:33Z2009-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#15211392Answer by Brian Knoblauch for Java: Converting a double to a StringBrian Knoblauch2009-10-05T16:42:32Z2009-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#14721803Answer by Brian Knoblauch for How fast is the procedure to convert from using big endian to little endian?Brian Knoblauch2009-09-24T14:43:50Z2009-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#13135091Answer by Brian Knoblauch for Is it possible to return multiple items in one call?Brian Knoblauch2009-08-21T18:18:48Z2009-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-1Answer by Brian Knoblauch for Is Rapid Development a moot point in ASP.NET MVC?Brian Knoblauch2009-08-19T17:50:56Z2009-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-solaris0Is there a new library for Java that supports IPv6 on Solaris?Brian Knoblauch2009-08-19T15:46:08Z2009-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#12683160Answer by Brian Knoblauch for Static code on Solaris?Brian Knoblauch2009-08-12T19:48:37Z2009-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#12626211Answer by Brian Knoblauch for Have you ever written an infinite loop that made it into production?Brian Knoblauch2009-08-11T20:08:35Z2009-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#11670722Answer by Brian Knoblauch for Best IDE for Java Web DevelopmentBrian Knoblauch2009-07-22T17:57:35Z2009-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#11033560Answer by Brian Knoblauch for Is anybody using the named boolean operators?Brian Knoblauch2009-07-09T11:48:21Z2009-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#9444300Answer by Brian Knoblauch for copy block of memoryBrian Knoblauch2009-06-03T12:23:31Z2009-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-context0How do I sort by a column name that's reserved in that context?Brian Knoblauch2009-05-27T16:48:13Z2009-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#8029770Answer by Brian Knoblauch for Do you attend user group meetings?Brian Knoblauch2009-04-29T15:44:26Z2009-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#7989970Answer by Brian Knoblauch for How do you crash a JVM?Brian Knoblauch2009-04-28T17:18:43Z2009-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#7989690Answer by Brian Knoblauch for Do you plan to use the Scala programming language and on what project?Brian Knoblauch2009-04-28T17:12:16Z2009-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#1605966Comment by Brian Knoblauch on Poll: What is stopping you from switching (from Java) to Scala ?Brian Knoblauch2009-11-25T18:23:49Z2009-11-25T18:23:49ZI 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-openComment by Brian Knoblauch on Causes of "Connection with the server was reset" on project open?Brian Knoblauch2009-11-23T18:55:25Z2009-11-23T18:55:25Z1.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-openComment by Brian Knoblauch on Causes of "Connection with the server was reset" on project open?Brian Knoblauch2009-11-23T17:35:26Z2009-11-23T17:35:26ZGave 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#1772470Comment by Brian Knoblauch on Visual Studio (6.0, 2003 & 2008) compatibility with Windows Vista 64-bit (x64)Brian Knoblauch2009-11-23T14:06:18Z2009-11-23T14:06:18ZUpdate. VS2003 "sort of supported" now. <a href="http://msdn.microsoft.com/en-us/vstudio/bb188244.aspx" rel="nofollow">msdn.microsoft.com/en-us/vstudio/…</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-whyComment by Brian Knoblauch on What is the worst programming job you ever had and why?Brian Knoblauch2009-11-20T18:30:37Z2009-11-20T18:30:37ZI guess we could debate what "subject and argumentative" 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#1766039Comment by Brian Knoblauch on Causes of "Connection with the server was reset" on project open?Brian Knoblauch2009-11-20T13:27:26Z2009-11-20T13:27:26ZHmmm, 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#1766039Comment by Brian Knoblauch on Causes of "Connection with the server was reset" on project open?Brian Knoblauch2009-11-19T19:51:15Z2009-11-19T19:51:15ZI 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#1757885Comment by Brian Knoblauch on C# - MySQL vs SQL ServerBrian Knoblauch2009-11-18T18:38:17Z2009-11-18T18:38:17ZI'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-objectComment by Brian Knoblauch on What does it mean to clone() an object?Brian Knoblauch2009-11-17T15:35:52Z2009-11-17T15:35:52ZSeems obvious to experienced people, but beginners often struggle with "hey, why'd my object change when I changed this 'other' one". 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#266611Comment by Brian Knoblauch on What's the first program you wrote that you were proud of?Brian Knoblauch2009-11-06T16:07:56Z2009-11-06T16:07:56ZI 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-mainComment by Brian Knoblauch on Why the name main for function main()Brian Knoblauch2009-11-06T15:43:30Z2009-11-06T15:43:30ZIf 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-programmersComment by Brian Knoblauch on Attitudes toward foreign programmersBrian Knoblauch2009-11-05T16:33:06Z2009-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#1650748Comment by Brian Knoblauch on server side db programming: why?Brian Knoblauch2009-10-30T18:24:53Z2009-10-30T18:24:53ZThey (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#389967Comment by Brian Knoblauch on Getting Netbeans and Subversion to play together nicely with libraries?Brian Knoblauch2009-10-30T14:22:41Z2009-10-30T14:22:41ZThis entry now superceded by another answer by me.http://stackoverflow.com/questions/65200/how-do-you-crash-a-jvm/798997#798997Comment by Brian Knoblauch on How do you crash a JVM?Brian Knoblauch2009-10-30T14:18:07Z2009-10-30T14:18:07ZUnfortunately, 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).