User David Turner - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T22:46:46Zhttp://stackoverflow.com/feeds/user/10171http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/67518/multiple-tabs-in-windows-vista-and-gvim2Multiple tabs in windows vista and gvimDavid Turner2008-09-15T22:09:39Z2009-11-13T07:06:44Z
<p>Hi all, </p>
<p>I am trying to get the "Edit with Vim" my Right click context menu to
work, so that each new file I open opens in a new tab in a single instance
of vim. </p>
<p>Currently, using Regedit I have set </p>
<p><code>
\HKEY-LOCAL-MACHINE\SOFTWARE\Vim\Gvim\path = "C:\Programs\Vim \vim72\gvim.exe" -p --remote-tab-silent "%*"
</code></p>
<p>The registry key is of type REG_SZ</p>
<p>This almost works... Currently it opens the file in a new tab, but it also opens another tab (which is the active tab) the tab is labeled \W\S\ --literal and the file seems to be trying to open the following file. </p>
<p><code>
C:\Windows\System32--literal
</code></p>
<p>I think the problem is around the "%*" - I tried changing that to "%1", but if i do that I get an extra tab called %1. </p>
<p>Vim version 7.2 (although I saw the same behaviour on 7.1)
Windows vista home premium</p>
<p>Thanks for any help. </p>
<p>David. </p>
http://stackoverflow.com/questions/253492/static-nested-class-in-java-why8Static nested class in Java, why?David Turner2008-10-31T13:36:51Z2009-10-01T16:55:15Z
<p>Hi All,</p>
<p>I was looking at the Java code for LinkedList and noticed that it made use of a static nested class Entry.</p>
<pre><code>public class LinkedList<E> ... {
...
private static class Entry<E> { ... }
}
</code></pre>
<p>What is the reason for using a static nested class, rather than an normal inner class?</p>
<p>The only reason I could think of, was so that Entry doesn't have access to instance variables, so from an OOP point of view it has better encapsulation. </p>
<p>But I thought there might be other reasons, maybe performance. Anyone have any thoughts?</p>
<p>Note. I hope I have got my terms correct, I would have called it a static inner class, but I think this is wrong: <a href="http://java.sun.com/docs/books/tutorial/java/javaOO/nested.html" rel="nofollow">http://java.sun.com/docs/books/tutorial/java/javaOO/nested.html</a></p>
http://stackoverflow.com/questions/1193061/bessel-library-function-in-java0Bessel library function in JavaDavid Turner2009-07-28T09:49:17Z2009-07-28T10:09:32Z
<p>Hello everyone,</p>
<p>I'm looking for a bessel function in Java that matches the Excel function BESSELI, description provided:</p>
<p><hr /></p>
<p><em>Returns the modified Bessel function, which is equivalent to the Bessel function evaluated for purely imaginary arguments.</em></p>
<p><em>Syntax</em>
<em>BESSELI(x,n)</em></p>
<p><em>X is the value at which to evaluate the function.</em></p>
<p><em>N is the order of the Bessel function. If n is not an integer, it is truncated.</em></p>
<p><hr /></p>
<p>I have found things that look close, but there are many different types of bessel function...</p>
<p>My other option is to try and derive an approximation but that sounds quite tough. Can anyone give me any good advice on how to represent that excel function in Java?</p>
<p>cheers,</p>
<p>David.</p>
http://stackoverflow.com/questions/901504/creating-dynamic-data-entry-forms0Creating dynamic data entry formsDavid Turner2009-05-23T13:06:49Z2009-05-23T18:58:04Z
<p>Hi,</p>
<p>I have a small project where I would like to generate dynamic data entry forms with a little bit of logic behind them.</p>
<p>A simple use case might be
a Football resulting form, so you have a button for a goalscorer, and when clicked the user will be prompted for a player. The form will then send a message (probably to a webservice, but maybe a JMS queue) with the event data. eg Barcelona, Goal, Henry.</p>
<p>Then I want to create a similar form for tennis...</p>
<p>My idea was that I would create a webservice, where you define business logic. (events, components, actions you take etc.) Initially I thought I would send the sport definition from the webservice in xml. Then write an app to parse the xml and dynamically create the data entry screen.</p>
<p>I was initially thinking of writing a webservice and returning a xml data. (which will look awful) the rendering technology could then be flex/ flash and be a thin client.</p>
<p>Then I thought it would just as easy to create the forms as a java app using the swing application framework and that was the way to go.</p>
<p>Then I thought, well, rather than write a xml schema to describe the java forms, can I just serialise a java class and send that across the wire.</p>
<p>Once on that path, I am now wondering if should just a java framework, and the dynamic forms become class that are called by reflection.</p>
<p>I would love feedback on the above approaches, and how people on stackoverflow would solve this problem.</p>
<p>thanks</p>
<p>David.</p>
http://stackoverflow.com/questions/746782/accessing-an-excel-resource-in-another-c-project1Accessing an excel resource in another c# projectDavid Turner2009-04-14T08:49:19Z2009-04-14T09:48:21Z
<p>Hi,</p>
<p>I am using c# (visual studio 2008) to try and access business logic in an excel spreadsheet.</p>
<p>I have the following class.. (feel free to criticise if I am doing this wrong - I am java developer normally - this is my first c# application.)</p>
<pre><code>public class SpreadSheetClass
{
// apologies for any typo's code written in place, not copied from an IDE...
//
public DataTable DoIt()
{
DataTable result;
String sConnection = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=MySpreadsheet.xls;Extended Properties=Excel 8.0;";
OleDbConnection connection = new OleDbConnection(sConnection);
try
{
connection.Open();
OleDbCommand oleDbcCommand = new OleDbCommand("SELECT * FROM SELECTION", connection);
OleDbDataAdapter dataAdapter = new OleDbDataAdapter();
dataAdapter.SelectCommand = oleDbcCommand;
result = new DataTable();
dataAdapter.Fill(result);
}
finally
{
connection.Close();
}
return result;
}
}
</code></pre>
<p>I added the spreadsheet to the project using Add -> Existing Item -> then selecting the .xls file. I then edited the properties of the file to say it was an embedded resource, and to copy it always to the output directory. </p>
<p>I can access the spreadsheet fine from within the project.</p>
<p>However, I want to run the DoIt method from outside of the project, eg from a Test Project, I get the following exception:</p>
<p>"Test method TestProject1.UnitTest1.TestMethod1 threw exception: System.Data.OleDb.OleDbException: The Microsoft Jet database engine could not find the object 'SELECTION'. Make sure the object exists and that you spell its name and the path name correctly.."</p>
<p>I am sure that my problem is to do with calling a class that accesses a resource from another project.</p>
<p>Help!</p>
http://stackoverflow.com/questions/207939/python-module-that-implements-ftps2Python module that implements ftpsDavid Turner2008-10-16T09:33:39Z2009-02-26T14:53:07Z
<p>Hi People,</p>
<p>I was wondering if anybody could point me towards a free ftps module for python.</p>
<p>I am a complete newbie to python, but this is something I need for a work project. I need an ftps client to connect to a 3rd party ftps server.</p>
<p>thanks,</p>
<p>David.</p>
http://stackoverflow.com/questions/101100/csv-api-for-java9csv api for javaDavid Turner2008-09-19T11:01:12Z2008-10-14T17:38:22Z
<p>Hi everyone,</p>
<p>Can anyone recommend a simple API that will allow me to use read a csv input file, do some simple transformations, and then write it.</p>
<p>A quick google has found <a href="http://flatpack.sourceforge.net/" rel="nofollow">http://flatpack.sourceforge.net/</a> which looks promising.</p>
<p>I just wanted to check what others are using before I couple myself to this api.</p>
<p>thanks,</p>
<p>David.</p>
http://stackoverflow.com/questions/190597/how-to-go-about-mocking-a-class-with-final-methods/197066#197066-1Answer by David Turner for How to go about mocking a class with final methods?David Turner2008-10-13T09:05:38Z2008-10-13T09:20:58Z<p>Hi,</p>
<p>The following code will also allow you to do it. I am not saying that this is good practice, but it is an interesting use (abuse?) of anonymous classes.</p>
<pre><code>public class Jobber {
public final String foo() {
return fooFactory() ;
}
String fooFactory() {
return "jobber" ;
}
public static void main(String[] args) {
Jobber jobber = new Jobber() { String fooFactory() { return "prefix " + super.fooFactory() ;} } ;
System.out.println(jobber.foo() );
}
}
</code></pre>
http://stackoverflow.com/questions/186964/java-core-api-anti-patterns-what-is-wrong/187012#18701212Answer by David Turner for Java core API anti-Patterns. What is wrong?David Turner2008-10-09T12:22:06Z2008-10-09T12:22:06Z<p>Stack extends Vector! insanity.</p>
<p>if I am using a stack object I expect users to be able to push and pop, and err, thats about it. </p>
<p>The java Stack also has all the vector functionality like get and set.</p>
<p>A Stack class that had a vector member variable, and only exposes the methods that a stack should have is how this should have been done, imho. This is a great example of where Composition is more appropriate than inheritance.</p>
<p>Josh Bloch's excellent Effective Java book is a great book to read, and he points out several flaws in the Java API very eloquently. He has obviously thought long and hard around the subject, seeing as he was one of the Java architects.</p>
http://stackoverflow.com/questions/173880/multiple-instances-of-a-java-web-application-sharing-a-resource0Multiple instances of a java web application sharing a resourceDavid Turner2008-10-06T11:04:02Z2008-10-06T12:15:01Z
<p>Hi All,</p>
<p>I have a web service, that takes an input xml message, transforms it, and then forwards it to another web service.</p>
<p>The application is deployed to two web logic app servers for performance, and resilience reasons.</p>
<p>I would like a single website monitoring page that allows two things</p>
<ul>
<li><p>ability to stop/ start forwarding of messages</p></li>
<li><p>ability to monitor throughput of number of messages in the last hour etc. Number of different senders into the webservice etc.</p></li>
</ul>
<p>I was wondering what the best way to implement this was.</p>
<p>My current idea is to have an in memory database (eg Debry or HSQL) replicating data to share the information between the two (or more) instances of my application that are running in different instances of the app server. I imagine I would have to setup some sort of master/ slave configuration.</p>
<p>I would love a link to an article that discusses how to solve this problem.</p>
<p>(Note, this is a simple spring application using spring MVC)</p>
<p>thanks,</p>
<p>David.</p>
http://stackoverflow.com/questions/149583/viewing-repository-information-from-within-eclipse-when-code-was-checked-out-usi1Viewing repository information from within Eclipse, when code was checked out using svn tortoiseDavid Turner2008-09-29T16:49:20Z2008-09-30T19:48:38Z
<p>Hi all,</p>
<p>I am using svn tortoise to checkout a maven project from a repository, I then open eclispe, and use the m2eclipse plugin to import a maven project. The maven projeect comes in okay, and I can build it fine.</p>
<p>The problem is that eclipse using subversive, isn't marking files/ resources as being in source control (even though I seem to have all the relevant .svn directories.)</p>
<p>I get the same behaviour if I try and check the code in using
-> import -> check out Maven Projects from SCM. ie the project imports okay, but the files aren't linked in to teh svn repository in eclipse.</p>
<p>Are there any suggestions as to how I might proceed, as I find the tortoise svn checkin process pretty painful.</p>
<p>thanks in advance.</p>
<p>David</p>
http://stackoverflow.com/questions/102284/programming-task-for-mentoring-interviewing-developers3Programming task for mentoring/ interviewing developersDavid Turner2008-09-19T14:30:35Z2008-09-19T14:46:27Z
<p>Hi,</p>
<p>I was wondering what programming exercises people thought would make good training exercises to get junior developers up to speed.</p>
<p>In the past I have used a DAG (directed acyclic graph) as a programming exercise, as I find this is a really good way to introduce new developers to test first development, OOP and collections.</p>
<p>(This also works as really good interview test)</p>
<p>However, my current crop of junior programmers are coming to the end of the DAG now, but have found the process interesting and would like to continue.</p>
<p>I think it would be nice to choose an exercise that required 2 or 3 simple design patterns, but any/ all ideas are welcome.</p>
<p>I will be doing the exercise in Java, but I think an interesting programming problem would be language agnostic.</p>
<p>cheers,</p>
<p>David.</p>
http://stackoverflow.com/questions/98220/what-is-your-favorite-hot-key-in-eclipse/98286#982860Answer by David Turner for What is your favorite hot-key in Eclipse?David Turner2008-09-19T00:19:53Z2008-09-19T00:19:53Z<p>CTRL-ALT-UP/DOWN ARROW to copy the line or selection is pretty cool. And one I miss in Netbeans, so if anyone knows the equivalent...</p>
http://stackoverflow.com/questions/80919/what-are-your-weakness-points/81058#810586Answer by David Turner for What are your weakness points?David Turner2008-09-17T08:17:41Z2008-09-19T00:17:26Z<p>IMHO, it's a stupid question to ask in an interview. I have done a lot of interviews as the interviewer and I would never ask that question.</p>
<p>I think I would push it back to the interviewer and say I don't understand why you are asking this question, what answers are you hoping to get that show a candidate is good or bad. If they pushed me to answer the question, I would refuse and end the interview myself - I really don't want to work for a company who don't know how to interview properly. </p>
<p>One thing you should remember when doing interviews, if you are a strong candidate, then you have power as well, and not every job you get offered is worth taking.</p>
<p>My final advice would be don't give an honest answer to this question, or even a weakness into a strength type answer. eg my biggest weakness is I work too hard. I have read about interviewers who would fail anyone who gave a negative answer. If you must answer the question, then I would use humour - eg My biggest weakness is Cadbury's mini-eggs. And then use silence, don't say any more, I think most interviewers will move on.</p>
<p><hr /></p>
<p>In response to the comment, (I don't have enough rep to reply in the comments- sorry). I am absolutely <strong>not</strong> suggesting you lie to an interviewer, I would never do that. </p>
<p>I just don't accept that an interviewer has the right to ask me any question. So for example, if they asked me about my sexuality or religion, I would push back to them, and ask them the relevance of the question.</p>
<p>Having done a lot of interviews, and read around the subject, I think that this question is a particularly weak one, and I would challenge the interviewer to justify asking it. If they can explain why they ask it, perhaps I would answer it.</p>
<p>I think my answer shows more honesty than most of the "my only weakness is I will never leave the office until all my work is done" type answers.</p>
http://stackoverflow.com/questions/87999/voice-recognition-software-for-developers/88564#885642Answer by David Turner for Voice Recognition Software For DevelopersDavid Turner2008-09-17T23:07:44Z2008-09-17T23:07:44Z<p>I know I am little bit off-topic here, and know nothing about voice recognition software; however, you might find it useful to investigate changing your keyboard to the Dvorak layout, which I have heard is a lot kinder on the wrists.</p>
<p><a href="http://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard" rel="nofollow">http://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard</a></p>
http://stackoverflow.com/questions/88339/which-is-better-shipping-a-buggy-feature-or-not-shipping-the-feature-at-all/88444#884440Answer by David Turner for Which is better: shipping a buggy feature or not shipping the feature at all?David Turner2008-09-17T22:43:03Z2008-09-17T22:43:03Z<p>I would not expect coders to deliver known problems into test let alone to release to a customer.</p>
<p>Mind you, I believe in zero tolerance of bugs. Interestingly I find that it is usually developers/ testers who are keenest to remove all bugs - it is often the project manager and/ or customer who are willing to accept bugs.</p>
<p>If you must release the code, then document every feature/ bug that you are aware of, and commit to fixing each one.</p>
<p>Why don't you post more information about the limitations of the platform you are working on, and perhaps some of the clever folk here can help get your bug list down.</p>
http://stackoverflow.com/questions/85099/what-criteria-should-be-used-to-judge-and-compare-java-applications/85215#852152Answer by David Turner for What criteria should be used to judge and compare Java applications?David Turner2008-09-17T16:47:44Z2008-09-17T16:47:44Z<p>I think the answer depends upon what Java Programming Challenge was.</p>
<p>If all the projects are trying to solve a similar problem, can you automate testing, and do some sort of comparison based upon performance?</p>
<p>If the projects have to conform to an API, are there some automated tests you could run against each project, whoever passes most wins.</p>
<p>If it was an open ended challenge, then you should be able to just pick whichever is coolest. Get all the projects put on a website, and see which gets the most hits.... Sounds a bit like a geek-factor without the 0898 numbers.</p>
<p>I would guess a fair, but time consuming test would be for you to sit and code review the projects.</p>
<p>Whether it was an open or closed challenge, there are certain tools you could run against the codebase to measure code quality. eg JDepends, Clover (unit test coverage) etc. however these are quite subjective. </p>
http://stackoverflow.com/questions/72183/any-good-interview-questions-to-ask-prospective-junior-java-developers/78391#783911Answer by David Turner for Any good interview questions to ask prospective Junior java developers?David Turner2008-09-16T23:38:11Z2008-09-16T23:38:11Z<p>The best (only?) way to get an idea of someones ability to program is to sit down with them and program with them. If you are too busy to do this, ask some of the developers the candidate will be working with to do it. Better still is to get them to pair with several different developers.</p>
<p>Ideally choose a problem that has a recursive element to it. That is usually a good test of a programmers aptitude, or rather, if they can't do recursion, they would fail the interview if I was testing them. </p>
<p>Let the candidate type, and work with them to solve the problem. Test driven development works well, especially if they haven't done it before, as it will take them out of their comfort zone.</p>
<p>You can learn a lot by how many shortcut keys they know in eclipse/ netbeans etc.</p>
<p>No single question is going to tell you yes or no. You might get a kick-arse c# or C++ developer who would fail 'simple' java questions, but is a far better programmer than the java candidates - java ain't that hard to pick up, good, intelligent programmers are...</p>
http://stackoverflow.com/questions/67518/multiple-tabs-in-windows-vista-and-gvim/78234#782341Answer by David Turner for Multiple tabs in windows vista and gvimDavid Turner2008-09-16T23:10:57Z2008-09-16T23:10:57Z<p>I found the answer... The link to cream gave me some additional areas to search around.</p>
<p>from <a href="http://genotrance.wordpress.com/2008/02/04/my-vim-customization/" rel="nofollow">http://genotrance.wordpress.com/2008/02/04/my-vim-customization/</a> there is a vim.reg registry file that contains the following</p>
<p><code>
Windows Registry Editor Version 5.00</p>
<p>[HKEY_CLASSES_ROOT*\shell\Edit with Vim]
@=""</p>
<p>[HKEY_CLASSES_ROOT*\shell\Edit with Vim\command]
@="\"C:\Programs\vim\vim72\gvim.exe\" -p --remote-tab-silent \"%1\" \"%*\""</p>
<p>[HKEY_CLASSES_ROOT\Applications\gvim.exe\shell\open\command]
@="\"C:\Programs\vim\vim72\gvim.exe\" -p --remote-tab-silent \"%1\" \"%*\""
</code></p>
<p>this gives me the behaviour I want.</p>
<p>So I guess my original plan of editing the HKEY_LOCAL_MACHINE was just wrong.</p>
<p>Would also be nice to know what exactly what the "%1" and "%*" mean/ refer to.</p>
<p>Now... should I edit my original question, to show that I was starting off in the wrong registry area?</p>
<p>cheers,</p>
<p>david.</p>
http://stackoverflow.com/questions/1193061/bessel-library-function-in-java/1193117#1193117Comment by David Turner on Bessel library function in JavaDavid Turner2009-07-28T10:18:43Z2009-07-28T10:18:43ZJust looking at the source code now... looks promising. thanks.http://stackoverflow.com/questions/1193061/bessel-library-function-in-java/1193089#1193089Comment by David Turner on Bessel library function in JavaDavid Turner2009-07-28T09:55:46Z2009-07-28T09:55:46ZI am currently trying to move away from excel models for various reasons (including performance) but thanks for your suggestion.http://stackoverflow.com/questions/327350/what-are-some-good-resources-for-learning-grails/327354#327354Comment by David Turner on What are some good resources for learning Grails?David Turner2009-01-26T16:24:34Z2009-01-26T16:24:34ZThis book has now moved onto edition 2. Would be nice to link to that when (if?) it is available...http://stackoverflow.com/questions/322715/when-to-use-linkedlist-over-arraylist/323889#323889Comment by David Turner on When to use LinkedList<> over ArrayList<>?David Turner2008-11-27T17:50:43Z2008-11-27T17:50:43ZSorry. marked you down. LinkedList doesn't suck. There are situations where LinkedList is the correct class to use. I agree that there aren't many situations where it is better than an arraylist, but they do exist. Educate people who do silly things!http://stackoverflow.com/questions/190597/how-to-go-about-mocking-a-class-with-final-methods/197066#197066Comment by David Turner on How to go about mocking a class with final methods?David Turner2008-10-13T12:28:41Z2008-10-13T12:28:41Zmmmn. seems harsh to mark this down without giving a reason. I guess I shouldn't take these things personally.
There is an interesting article which discusses this strategy of testing objects here... <a href="http://www.ibm.com/developerworks/library/j-mocktest.html" rel="nofollow">ibm.com/developerworks/library/…</a>http://stackoverflow.com/questions/80919/what-are-your-weakness-points/81058#81058Comment by David Turner on What are your weakness points?David Turner2008-09-18T12:27:17Z2008-09-18T12:27:17ZI would be very interested in reading that research, do you have any links or references?