User David Arno - Stack Overflowmost recent 30 from stackoverflow.com2009-11-08T18:50:23Zhttp://stackoverflow.com/feeds/user/7122http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/115501/is-ruby-any-good-for-gui-development9Is Ruby any good for GUI development?David Arno2008-09-22T15:26:11Z2009-11-04T06:08:35Z
<p>I am considering creating a GUI-based tool that I want to be cross-platform. I've dismissed Java, as I personally do not like Swing. I'm currently considering C# and using Mono to make it cross-platform. However I'm wondering whether new-fangled cross-platform languages like Ruby can offer me a decent GUI development environment.</p>
http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development29Is Python any good for GUI development?David Arno2008-09-22T15:24:58Z2009-10-20T01:02:45Z
<p>I am considering creating a GUI-based tool that I want to be cross-platform. I've dismissed Java, as I personally do not like Swing. I'm currently considering C# and using Mono to make it cross-platform. However I'm wondering whether new-fangled cross-platform languages like Python can offer me a decent GUI development environment.</p>
http://stackoverflow.com/questions/229643/how-do-i-overcome-the-the-symbolic-link-cannot-be-followed-because-its-type-is-d2How do I overcome the "The symbolic link cannot be followed because its type is disabled." error when getting the target of a symbolic link on Server 2008?David Arno2008-10-23T13:08:42Z2009-10-08T04:19:14Z
<p>Following on from a <a href="http://stackoverflow.com/questions/221417/how-do-i-programmatically-access-the-target-path-of-a-windows-symbolic-link">previous question</a>, I am creating a symbolic link on a Server 2008 from a Vista machine using UNC paths. I can create the link just fine. I can go to the Server 2008 box and double click on the link in explorer to open the target file. What I cannot do though is use FileCreateW to get a handle to the UNC path link (from the Vista box). When I try it, it fails and GetLastError() returns error code 1463 (0x5B7), which is:</p>
<blockquote>
<p>The symbolic link cannot be followed because its type is disabled.</p>
</blockquote>
<p>Can anyone tell me how to enable its "type" in Server 2008 (assuming the error means what it says)?</p>
http://stackoverflow.com/questions/178026/why-is-null-present-in-c-and-java/178052#178052-3Answer by David Arno for Why is "null" present in C# and java?David Arno2008-10-07T11:37:50Z2009-10-01T13:01:27Z<p>Null is an essential requirement of any OO language. Any object variable that hasn't been assigned an object reference has to be null. </p>
http://stackoverflow.com/questions/182258/are-there-any-security-risks-associated-with-me-using-openid-as-the-authenticatio13Are there any security risks associated with me using OpenId as the authentication method on my site?David Arno2008-10-08T11:33:19Z2009-09-18T22:05:02Z
<p>Is OpenId a secure method of authentication users on a website and, if not, what are the security risks associated with OpenId?</p>
http://stackoverflow.com/questions/1308434/in-which-language-did-exceptions-first-appear3In which language did exceptions first appear?David Arno2009-08-20T19:50:44Z2009-08-20T20:35:01Z
<p>I first came across exceptions with ADA 83. As far as I know, the designers of ADA invented the concept of exceptions. Is this true, or did any programming language that came before use exceptions too?</p>
http://stackoverflow.com/questions/258367/standard-way-to-convert-to-short-path-in-net/258382#2583823Answer by David Arno for standard way to convert to short path in .netDavid Arno2008-11-03T11:29:24Z2009-05-13T01:25:51Z<p>If you are prepared to start calling out to Windows API functions, then GetShortPathName() and GetLongPathName() provide this functionality.</p>
<p>See <a href="http://csharparticles.blogspot.com/2005/07/long-and-short-file-name-conversion-in.html" rel="nofollow">http://csharparticles.blogspot.com/2005/07/long-and-short-file-name-conversion-in.html</a></p>
<pre><code> const int MAX_PATH = 255;
[DllImport("kernel32.dll", CharSet = CharSet.Auto)]
public static extern int GetShortPathName(
[MarshalAs(UnmanagedType.LPTStr)]
string path,
[MarshalAs(UnmanagedType.LPTStr)]
StringBuilder shortPath,
int shortPathLength
);
private static string GetShortPath(string path) {
var shortPath = new StringBuilder(MAX_PATH);
GetShortPathName(path, shortPath, MAX_PATH);
return shortPath.ToString();
}
</code></pre>
http://stackoverflow.com/questions/70053/is-there-a-cross-language-tdd-solution2Is there a cross-language TDD solution?David Arno2008-09-16T07:24:25Z2009-05-05T12:26:10Z
<p>I want to write a simple colour management framework in C#, Java and AS3. I only want to write the unit tests once though, rather than recreating the unit tests in JUnit, FlexUnit and say NUnit. </p>
<p>I have in mind the idea of say an xml file that defines manipulations of "instance" and assertions based on the state of "instance" via setup, teardown and a set tests. Then to have a utility that can convert that XML into xUnit code, for an arbitrary number of xUnits. Before I start wasting time developing such a solution though, I want to make sure no similar solution already exists.</p>
http://stackoverflow.com/questions/222457/are-there-established-alternatives-to-isomething-isomethingable-for-interfaces5Are there established alternatives to ISomething/ ISomethingable for interfaces?David Arno2008-10-21T16:11:03Z2009-04-01T14:10:11Z
<p>The .NET standard of prefixing an interface name with an I seems to be becoming widespread and isn't just limited to .NET any more. I have come across a lot of Java code that uses this convention (so it wouldn't surprise me if Java used it before C# did). Also Flex uses it, and so on. The placing of an I at the start of the name smacks of Hungarian notation though and so I'm uncomfortable with using it.</p>
<p>So the question is, is there an alternative way of denoting that Something is an interface, rather than a class and is there any need to denote it like this anyway. Or is it a case its become a standard and so I should just accept it and stop trying to stir up "religious wars" by suggesting it be done differently?</p>
http://stackoverflow.com/questions/191052/what-are-the-rules-on-using-the-stackoverflow-logo18What are the rules on using the stackoverflow logo? [closed]David Arno2008-10-10T12:36:32Z2009-02-24T14:40:25Z
<p>I appreciate this doesn't really belong on stackoverflow, but I can't find the answer in the faq, and it doesn't belong on uservoice either.</p>
<p>I want to use the stackoverflow logo as an image on a blog post about this site. What are the rules on using it? Can I use it in any way? Can I chop the words out and just use the image, or must I keep it intact? </p>
<p>I have added a bounty to this question as I'd like an answer from Jeff on the matter. So if you have good contacts with Jeff, encourage him to answer here and claim your bounty (assuming it works that way ... off to read up on how to award bounties now)</p>
http://stackoverflow.com/questions/478039/are-microsoft-interview-questions-really-effective/478140#47814012Answer by David Arno for Are Microsoft interview questions really effective?David Arno2009-01-25T19:46:40Z2009-01-25T20:12:35Z<p>The problem with such questions is that its difficult to interpret the answers in a meaningful way. For example, as a parent of a child who is nearly five, I'd argue that correct answers to "How would you explain a relational database to a five year old" are things like "I wouldn't" or "I'd tell him it was like his toy box, but inside the computer". A child of that age lacks the ability to concentrate for any longer explanation to work, ie you can't explain a relational database to a five year old. Parents of older children and those who aren't parents probably wouldn't realise this though. </p>
<p>"I wouldn't" could be a surly "I can't be bothered to think about it" answer, or it could be someone telling you what they know is the right answer based on practical experience. So you need - in this case - to know about the interviewees children before you can judge the answer. Needing to know the person before you can ask questions to reveal details of the person is self-defeating.</p>
http://stackoverflow.com/questions/478039/are-microsoft-interview-questions-really-effective/478146#4781463Answer by David Arno for Are Microsoft interview questions really effective?David Arno2009-01-25T19:49:57Z2009-01-25T19:49:57Z<p>The best answer - IMO - to the "Design a bike for blind people" question is an exercise bike rigged up to a fan so that more air is blown in the person's face the faster they peddle.</p>
<p>I've no idea who originally thought up the answer though.</p>
http://stackoverflow.com/questions/477701/what-jvm-can-be-run-under-mac-os-7-5/477745#4777455Answer by David Arno for What JVM can be run under Mac OS 7.5?David Arno2009-01-25T14:22:58Z2009-01-25T14:22:58Z<p>Unless this is a seriously lucrative contract, or you desperately need the money, I'd recommend running away from it as fast as possible. The chances are the client is not only targeting seriously old OS's, but also old hardware. That'll mean you'll have all sorts of problems with performance (for you can bet the entire value of the contract that they want an app with modern features and performance on this ancient kit). It's near guaranteed to end in tears... </p>
http://stackoverflow.com/questions/469887/how-many-classes-should-a-programmer-put-in-one-file/469905#4699053Answer by David Arno for How many classes should a programmer put in one file?David Arno2009-01-22T16:47:41Z2009-01-22T16:47:41Z<p>One class = one file. Always. Apart from when one class = multiple files in C#, or a class contains inner classes etc of course ;)</p>
http://stackoverflow.com/questions/469772/what-is-the-design-motive-behind-extension-methods-in-c/469814#4698141Answer by David Arno for What is the design motive behind extension methods in C#David Arno2009-01-22T16:21:57Z2009-01-22T16:21:57Z<p>It provides multiple inheritance via the back door.</p>
<p>It languages such as C++, which support inheriting from many classes, extension methods aren't required. However multiple inheritance has lots of problems with it, and so modern languages have dropped it. However extension methods are a use-case where multiple inheritance is useful. Rather than re-introduce multiple inheritance though, the C# designers created extension methods (which is a very neat solution to the problem).</p>
http://stackoverflow.com/questions/466116/difference-between-functionname-and-functionname-call-in-javascript/466128#4661288Answer by David Arno for difference between functionName() and functionName.call() in javascriptDavid Arno2009-01-21T17:09:14Z2009-01-21T17:14:12Z<p><a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Objects/Function/call" rel="nofollow"><code>functionName.call()</code></a> takes an object instance as its first parameter. It then runs <code>functionName</code> within the context of that object instance (ie "this" is the specified instance)</p>
http://stackoverflow.com/questions/466081/adapting-to-meet-changing-business-requirements/466102#4661021Answer by David Arno for Adapting to meet changing business requirements?David Arno2009-01-21T17:04:07Z2009-01-21T17:04:07Z<p>Trying to design a generic system that can easily be tailored to changing needs just plain doesn't work. As Mark suggests, the whole agile movement has grown out of a realisation that simple specific code is easier to adapt than generic code, just so long as it is well written and maintainable.</p>
http://stackoverflow.com/questions/466061/recommendations-for-an-html-friendly-richtexteditor-for-flex-air/466088#4660880Answer by David Arno for Recommendations for an HTML-Friendly RichTextEditor for Flex & AIR?David Arno2009-01-21T17:01:09Z2009-01-21T17:01:09Z<p>Take a read of <a href="http://stackoverflow.com/questions/260270/display-html-in-an-actionscript-3-project">http://stackoverflow.com/questions/260270/display-html-in-an-actionscript-3-project</a></p>
<p>It doesn't fully answer your question (as it only addresses <em>rendering</em> HTML in Flash), but it may prove a useful starting point.</p>
<p>Have you considered using one of the existing JavaScript-based rich text editors and embedding it within HTML that is hosted within your flash-based app for example?</p>
http://stackoverflow.com/questions/463511/what-is-continuous-integration/463549#4635494Answer by David Arno for What is continuous integration?David Arno2009-01-20T23:32:30Z2009-01-20T23:32:30Z<p>At its simplest, it is simply a mechanism that rebuilds your project whenever a check in is made into some revision control system (CVS etc). This can be extended though to include running tests, all the way through to generating a CD image, mounting it within VMs, installing the product and running full tests on it.</p>
<p>It has the simple advantage of highlighting when code changes break the system as early as possible. Not only does it detect breaks in the code, it highlights who caused the break. This psychological effect is very effective in encouraging good testing prior to check in!</p>
http://stackoverflow.com/questions/427861/is-there-an-alternative-of-ajax-that-does-not-require-polling-without-sever-side/427896#4278963Answer by David Arno for Is there an alternative of ajax that does not require polling without sever side modifications?David Arno2009-01-09T12:32:08Z2009-01-09T12:32:08Z<p>As Ajax only offers you a client server request model (normally termed pull, rather than push), the only way to get data from the server is via requests. However a common technique to get around this is for the server to only respond when it has new data. So the client makes a request, the server hangs on to that request until something happens and then replies. This gets around the need for frequent polling even when the data hasn't changed as you only need the client send a new request after it gets a response.</p>
<p>Since you are using PHP, one simple method might be to have the PHP code call the sleep command for 200ms at a time between checks for data changes and then return the data to the client when it does change.</p>
<p>EDIT: I would also recommend having a timeout on the request. So if nothing happens for say 2 seconds, a "no change" message is sent back. That way the client knows the server is still alive and processing its request.</p>
http://stackoverflow.com/questions/420510/why-did-the-designers-of-coldfusion-decide-to-index-arrays-from-1-rather-than-0/420548#4205482Answer by David Arno for Why did the designers of Coldfusion decide to index arrays from 1 rather than 0?David Arno2009-01-07T14:46:24Z2009-01-07T14:46:24Z<p>There is no convention on the starting point of an array. Most Basics start at 1 also for example. Some languages let you start the array wherever you like, or allowarray indexes to be enumerations etc (Ada for example). C used the notion of sting at 0 and many languages have followed, but not all do. One reason why they don't is that arrays starting at 1 is far more intuitive.</p>
http://stackoverflow.com/questions/301869/how-to-find-good-looking-font-color-if-background-color-is-known/301897#3018973Answer by David Arno for How to find good looking font color if background color is known?David Arno2008-11-19T13:30:32Z2008-11-19T13:30:32Z<p>Have you tried <a href="http://www.yafla.com/yaflaColor/ColorRGBHSL.aspx" rel="nofollow">yaflacolor</a>? It isn't quite what you are looking for (it doesn't let you set both text and background colour), but it does show complimentary colours and dark and light versions of the colours together. Unless someone comes up with exactly what you need, it might at least help you pick your colours.</p>
http://stackoverflow.com/questions/301839/unittest-how-do-you-organise-your-testing-files/301873#3018734Answer by David Arno for UnitTest how do you organise your testing files?David Arno2008-11-19T13:23:06Z2008-11-19T13:23:06Z<p>Because I tend to do TDD, I have a test class for every class, and group those test classes into a direct one for one matching of test project to real project. Depending on the size of the solution, the test projects either exist in the same solution (if small), or get broken out into separate solutions (if larger)</p>
http://stackoverflow.com/questions/301693/why-didnt-unit-testing-work-out-for-your-project/301712#3017128Answer by David Arno for Why didn't unit testing work out for your project?David Arno2008-11-19T12:12:51Z2008-11-19T12:12:51Z<p>A particularly annoying area of development that is really badly suited to unit testing is the growing trend for frameworks. Unless the framework - eg a MVC solution - comes with mocks, it is ludicrously difficult to unit test code developed to run on to of that framework. I generally just give up on unit testing in such circumstances.</p>
http://stackoverflow.com/questions/300605/scrum-but-with-no-testing-or-documentation/300615#3006152Answer by David Arno for Scrum, but with no testing or documentationDavid Arno2008-11-19T00:02:12Z2008-11-19T00:02:12Z<p>The key to scrum is that a task be identifiable as "done" before it can be classed as done. How does you company assess whether something is done without reviewing documentation and tests?</p>
<p>Perhaps they have an unusual, but valid, way of doing it. Or perhaps they have missed the point of "done tasks". I'd suggest you start by asking them how they measure down and whether it could be improved. Then suggest documentation and testing as the way of improving the process.</p>
http://stackoverflow.com/questions/297116/best-oo-practice-to-adapt-one-type-to-another/297343#2973431Answer by David Arno for Best OO practice to adapt one type to another?David Arno2008-11-17T23:26:48Z2008-11-17T23:26:48Z<p>As as cannot modify the SyndicationItem's constructors, I'd suggest you use the <a href="http://en.wikipedia.org/wiki/Factory_method_pattern" rel="nofollow">factory pattern</a>. Create a SyndicationItemFactory class that has the method CreateSyndicationItem(). This method returns a SyndicationItem object. In this case, you'll only need one version of the method, that will take a ContentEntry object.</p>
<p>When you say you'd like to create multiple ContentEntry objects at once, I'm assuming you have say an array of ContentEntry objects. Another method (say CreateSyndicationItems()) might return an array of SyndicationItems, and take an array of ContentEntry objects as its parameter.</p>
http://stackoverflow.com/questions/295464/developing-confidence-in-ones-skills/295486#2954868Answer by David Arno for Developing confidence in one's skillsDavid Arno2008-11-17T12:34:08Z2008-11-17T12:39:47Z<p>Sounds like you could do with a change of job. This doesn't necessarily mean giving up programming, or changing company though. It sounds like you have been thrown in the deep end and left to fend for yourself, when you need support and guidance in helping you develop your skills.</p>
<p>Talk to your boss about your concerns. Explain both that you feel frustrated over the fact that projects never seem to reach completion, and concerned that your lack of training might be part of the problem. See if you can come up with a plan of mentoring and training to improve your skills and to improve your value to the team.</p>
<p>If your boss is unresponsive, then a change of company - to one with good mentoring and training policies - sounds like a must.</p>
<p>Regarding your concerns over concentration, I'd really not worry unless it is very severe. Everyone should take a 5 minute break from staring at their screen every hour anyway. A time-management course might help you. Alternatively you might just find that your objectives are ill-defined. A task broken down into small, easily tackled, parts is far easier to concentrate on.</p>
http://stackoverflow.com/questions/294562/what-does-a-college-degree-provide-that-experience-doesnt/294569#2945692Answer by David Arno for What does a college degree provide that experience doesn't?David Arno2008-11-16T23:33:20Z2008-11-16T23:33:20Z<p>A college degree will give you something to put on your CV (resume) that will help get it past the HR department into the hands of someone technical.</p>
http://stackoverflow.com/questions/290700/how-can-you-concatenate-two-huge-files-with-very-little-spare-disk-space/290727#2907271Answer by David Arno for How can you concatenate two huge files with very little spare disk space?David Arno2008-11-14T17:01:03Z2008-11-14T17:01:03Z<p>At the risk of sounding flippant, have you considered the option of just getting a bigger disk? It would probably be quicker...</p>
http://stackoverflow.com/questions/290648/how-important-is-it-to-be-able-to-design-and-develop-web-applications/290682#2906821Answer by David Arno for How important is it to be able to design and develop web applications?David Arno2008-11-14T16:38:05Z2008-11-14T16:38:05Z<p>Given your current knowledge, I'd suggest you would benefit very little from learning about PHP, Python or Ruby and their associated web frameworks, unless you wish to move into website development. I'm in no way knocking these technologies, but they probably aren't for you.</p>
<p>There is likely to be a growth in Rich Internet Applications (RIAs) in the coming years though. As a desktop app developer, there'd be no harm in you learning about ASP.NET, Silverlight and/ or Flex. This would enable you to work in the web app field if it does take off in a big way.</p>
http://stackoverflow.com/questions/178026/why-is-null-present-in-c-and-java/178052#178052Comment by David Arno on Why is "null" present in C# and java?David Arno2009-10-11T19:01:56Z2009-10-11T19:01:56ZSo nikie, would you care to explain to this ignorant old fool just what is wrong with my statement?http://stackoverflow.com/questions/1308434/in-which-language-did-exceptions-first-appear/1308523#1308523Comment by David Arno on In which language did exceptions first appear?David Arno2009-08-20T20:37:16Z2009-08-20T20:37:16ZAll folk, please note: this answer was to a related question (in which language did generics first appear) which unfortunately got merged with this one by an over-enthusiastic admin. It's not Pavel's fault it's not an answer to this question, so please do not down-vote him for it.http://stackoverflow.com/questions/1308434/in-which-language-did-exceptions-first-appear/1308435#1308435Comment by David Arno on In which language did exceptions first appear?David Arno2009-08-20T20:32:18Z2009-08-20T20:32:18ZI've changed the question to the one you answered chaos. I tried to just delete it and start again, but even as the question asker, I'm only allowed to vote to delete my own question. This place has changed a lot since I was last here.http://stackoverflow.com/questions/1308434/in-which-language-did-exceptions-first-appearComment by David Arno on In which language did exceptions first appear?David Arno2009-08-20T20:22:44Z2009-08-20T20:22:44Z@Brandon. looks like Marc Gravell did jump to conclusions though. Next time I'll know to phrase the questions differently (and maybe ask them hours apart) to prevent such a mess happening again.
I thought they'd be such simple and uncontroversial questions too. Oh dear :(http://stackoverflow.com/questions/1308434/in-which-language-did-exceptions-first-appearComment by David Arno on In which language did exceptions first appear?David Arno2009-08-20T20:20:45Z2009-08-20T20:20:45ZWhat do you mean you merged the question? I asked TWO different questions! Kindly unmerge them now please and try reading the questions properly before interfering next time.http://stackoverflow.com/questions/1308434/in-which-language-did-exceptions-first-appearComment by David Arno on In which language did exceptions first appear?David Arno2009-08-20T20:14:59Z2009-08-20T20:14:59Z@Brandon Thanks for the explanation. I have plenty of rep thanks and don't really have any need of more, so you regrettably jumped to a false conclusion about my two questions. No harm done though.http://stackoverflow.com/questions/1308434/in-which-language-did-exceptions-first-appearComment by David Arno on In which language did exceptions first appear?David Arno2009-08-20T20:02:52Z2009-08-20T20:02:52ZThat'll be because I cut and pasted the other question, then edited it to this one, rather than retype it. I'm at a loss to understand why you seem to have a problem with that.http://stackoverflow.com/questions/60436/what-is-the-benefit-of-using-only-openid-authentication-on-a-site/173467#173467Comment by David Arno on What is the benefit of using ONLY OpenId authentication on a site?David Arno2009-01-30T08:37:03Z2009-01-30T08:37:03Z@Andrew, can you give some examples of these phishing-resistant credentials please? This is a new one on me and could completely change my view on open ID if they really work. http://stackoverflow.com/questions/478039/are-microsoft-interview-questions-really-effective/478146#478146Comment by David Arno on Are Microsoft interview questions really effective?David Arno2009-01-25T20:45:33Z2009-01-25T20:45:33ZThat was it. Thanks Gulzarhttp://stackoverflow.com/questions/469402/flex3-function-not-returning-string-properly/469775#469775Comment by David Arno on flex3 function not returning String properlyDavid Arno2009-01-22T16:17:21Z2009-01-22T16:17:21ZYou need to expand the code you are showing then. At the moment, it just looks like you are calling the wrong method. We'd need to see the code that calls getNameResults()http://stackoverflow.com/questions/469391/why-do-so-many-developers-still-use-cComment by David Arno on Why do so many developers still use C++?David Arno2009-01-22T15:47:45Z2009-01-22T15:47:45ZI'd recommend deleting the question and then asking it at a different time. Whether such subjective questions get shut depends on who's around at the time.http://stackoverflow.com/questions/468911/why-havent-google-yahoo-etc-created-a-replacement-for-javascriptComment by David Arno on Why haven't Google, Yahoo etc. created a replacement for JavaScript?David Arno2009-01-22T15:35:30Z2009-01-22T15:35:30Z@annakata, I have been in the same position as you before of closing a question, only to have someone "overrule" me by re-opening it. I've respected their view that it is worth having open (or at least I've always tried to respect it). Therefore there is nothing one-sided in my suggestion.http://stackoverflow.com/questions/468911/why-havent-google-yahoo-etc-created-a-replacement-for-javascriptComment by David Arno on Why haven't Google, Yahoo etc. created a replacement for JavaScript?David Arno2009-01-22T15:18:23Z2009-01-22T15:18:23Z@RoBorg, IMO, no it wouldn't. Closing questions should be a consensus. If enough "mods" disagree with the close, there is no consensus and it should stay open.http://stackoverflow.com/questions/468911/why-havent-google-yahoo-etc-created-a-replacement-for-javascriptComment by David Arno on Why haven't Google, Yahoo etc. created a replacement for JavaScript?David Arno2009-01-22T15:17:26Z2009-01-22T15:17:26Z@annakata, what are you whittering on about?http://stackoverflow.com/questions/468911/why-havent-google-yahoo-etc-created-a-replacement-for-javascriptComment by David Arno on Why haven't Google, Yahoo etc. created a replacement for JavaScript?David Arno2009-01-22T14:14:29Z2009-01-22T14:14:29Z@RoBorg, yep that is what I'm saying. If enough people pass a threshold for keeping it open, it should remain open, regardless of how many want it shut.