User John Ferguson - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T10:04:05Z http://stackoverflow.com/feeds/user/8312 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/757862/font-and-font-size-unit-for-smartphones/758216#758216 0 Answer by John Ferguson for Font and font size unit for Smartphones John Ferguson 2009-04-16T22:01:33Z 2009-04-16T22:01:33Z <p>If you are mostly displaying lots of text for the user to read, do as Ben S wrote. Either the browser will be preset with good sizes for medium/large/small/etc, or the user will have his own preferences. Only override the user's preferences with good reason.</p> <p>One good reason to override a user's general browser preferences would be if you are creating an interface to a web application. In that case use the biggest font size that is functional. Do you have a way to ask your users? Either use the server logs and tune for the most popular devices (you can probably send a different stylesheet for each), or ask for feedback.</p> <p>Looking at the CSS spec, the pt unit looks promising, just be sure the browsers you are targeting use it correctly. In other words, test it out on the target device(s) themselves.</p> http://stackoverflow.com/questions/419959/language-for-non-programmers-to-start-learning-programming/420280#420280 0 Answer by John Ferguson for Language for non-programmers to start learning programming John Ferguson 2009-01-07T13:21:50Z 2009-01-07T13:21:50Z <p>Aw, no love for Perl :,(</p> <p>There is no 'one true beginner language'. All the answers here are probably pretty good (apart from C on its own). If you had to pick only one though, Python might be most useful since it is popular as a real development language, has some syntax similarities with C and has interactivity for those who like that sort of thing.</p> <p>That doesn't mean you can't learn more than one language at a time. If the course centres on C then you can do some simple C tutorials while spending most of your time on a more beginner-friendly language. Or do a different course.</p> http://stackoverflow.com/questions/415673/what-first-game-did-you-program-and-did-it-make-you-a-better-developer/415755#415755 3 Answer by John Ferguson for What first game did you program, and did it make you a better developer? John Ferguson 2009-01-06T07:53:07Z 2009-01-06T07:53:07Z <p>I did a really simple minesweeper in Perl. It has many of the features of the Microsoft classic, except the display is an ASCII-grid in the terminal and just uses print statements (doesn't even use curses) and the stdin - you have to type in commands, like c,1,1. It is only 10x10 with 10 mines, but it does use object orientation and recursion and has run without modification on both Windows and OS X.</p> http://stackoverflow.com/questions/402517/is-there-a-better-way-to-test-for-an-integer-in-c-than-double-tryparse/402614#402614 1 Answer by John Ferguson for Is there a better way to test for an integer in C# than Double.TryParse? John Ferguson 2008-12-31T09:40:36Z 2008-12-31T09:40:36Z <p>I just fired up Visual Studio Express (both 2005 and 2008). The Intellisense says that the return value of Double.TryParse() is a bool. The following worked for me under limited testing...</p> <pre><code>double res; // you must be under very resource-constrained // conditions if you can't just declare a double // and forget about it if (Double.TryParse(textBox1.Text, out res)) { label1.Text = "it's a number"; } else { label1.Text = "not a number"; } </code></pre> http://stackoverflow.com/questions/400256/how-can-i-draw-a-box-using-css-like-the-answer-box-in-stackoverflow/400430#400430 0 Answer by John Ferguson for How can i draw a box using css like the answer box in stackoverflow? John Ferguson 2008-12-30T14:44:04Z 2008-12-30T14:44:04Z <p>this page: <a href="http://www.w3.org/TR/CSS2/box.html" rel="nofollow">http://www.w3.org/TR/CSS2/box.html</a></p> <p>was the first page found by doing a Google search for "css box"</p> http://stackoverflow.com/questions/371651/english-error-messages-in-german-visual-studio-2008-asp-net/371742#371742 1 Answer by John Ferguson for English Error Messages in German Visual Studio 2008 / ASP.NET John Ferguson 2008-12-16T16:01:40Z 2008-12-17T13:29:30Z <p>Check your system-wide language preferences - 'Regional and Language Options' in WinXP Control Panel. I have found when using VS that my keyboard would go from UK to US mode or even French because the SHIFT + ALT + F10 keystroke is used by VS for showing some context menus and it is also used by Windows as the keystroke for changing system language.</p> <p>UPDATE: Check your system-wide language preferences. If necessary install a language pack, though I can't find any on MS Download Center. Otherwise install an English language verison. I am about to download VS 2008 C# Express and I have the option of English, Chinese, French, German, etc.</p> http://stackoverflow.com/questions/249612/what-is-required-knowledge-when-applying-for-an-entry-level-or-junior-programmer/249653#249653 2 Answer by John Ferguson for What is required knowledge when applying for an entry level or junior programmer position? (think "first job") John Ferguson 2008-10-30T09:24:27Z 2008-10-30T09:24:27Z <p>Don't beat yourself up. You may not have experience of the latest and greatest, but there may be other places that aren't like <a href="http://www.imdb.com/title/tt0151804/" rel="nofollow" title="Office Space on IMDb">Initech</a> that would appreciate the skills you have now. I'd say that even irrelevant experience can be useful, since any workplace experience is better than none. Just try not to bad-mouth your current employer when the interviewer asks why you want to work for a new company.</p> <p>Plus, you show you want to learn, that's always good. I'd imagine a good interviewer will ask what books you're reading (or have read recently) and you can truthfully say you are reading two good ones right now.</p> <p>If you have time, as a personal project try to produce some software that shows what you are learning to an interviewer. I just wish I had time and the ideas.</p> http://stackoverflow.com/questions/236416/whats-a-good-way-to-train-employees-on-how-to-use-the-software-youve-just-creat/236432#236432 1 Answer by John Ferguson for What's a good way to train employees on how to use the software you've just created? John Ferguson 2008-10-25T13:51:12Z 2008-10-25T13:51:12Z <p>I'll be looking into something like this too in the next few months. </p> <p>In your case, hopefully the UI has already undergone user acceptance testing. You say you work in a small company. Is it possible to get the least tech-savvy person there to try it out? In fact, get them to try it out without any guidance from yourself except for questions they ask. Document the questions and make sure your user-guide answers them.</p> <p>The main thing for me would be logic and consistency. If the app's workflow relates logically to the task it has been designed to accomplish and the UI is consistent you should be OK.</p> http://stackoverflow.com/questions/228673/spell-checker-icon/228768#228768 1 Answer by John Ferguson for Spell Checker Icon John Ferguson 2008-10-23T06:51:17Z 2008-10-23T06:51:17Z <p>Drawing your own icon is not difficult either. Do a web search with terms like: create your own windows icon. There's an <a href="http://graphicssoft.about.com/od/iconeditorswindows/Icon_Cursor_Editors_for_Windows.htm" rel="nofollow" title="About.com list of icon tools">about.com</a> page with a big list of tools for drawing your own icons.</p> http://stackoverflow.com/questions/204646/how-to-validate-that-a-string-doesnt-contain-html-using-c/204666#204666 0 Answer by John Ferguson for How to validate that a string doesn't contain HTML using C# John Ferguson 2008-10-15T13:18:46Z 2008-10-15T13:18:46Z <p>Ben, your solution may be heavyweight, but have you tried it? Does it work?</p> http://stackoverflow.com/questions/196924/how-to-ensure-user-submit-only-english-text/197064#197064 3 Answer by John Ferguson for How to ensure user submit only english text John Ferguson 2008-10-13T09:05:29Z 2008-10-13T09:05:29Z <p>You are already doing NLP, if your module doesn't understand what language the text was then either the module doesn't work or the input was not in the correct language.</p> http://stackoverflow.com/questions/179319/what-language-or-rad-ide-do-you-recommend-for-building-shareware/179370#179370 3 Answer by John Ferguson for What language or RAD IDE do you recommend for building shareware? John Ferguson 2008-10-07T16:46:36Z 2008-10-07T16:46:36Z <p>I don't know if Delphi's dead, it's just been bought by Embarcadero. The real momemtum has been behind C# on .NET with Visual Studio though. The basic versions are cheaper and Borland really dropped the ball on Delphi 8 (<em>shudder</em>). If you don't mind learning Pascal, the Turbo Explorer is probably good to try out because it's free.</p> <p>I'm not sure why you're not crazy about .NET's VM - I presume you mean the CLR. It's pretty good and I'm sure no worse than Java. It comes with Windows and updates are handled by Windows Update.</p> <p>I wish you all the best and hope you make some money.</p> http://stackoverflow.com/questions/167827/i-work-in-scm-build-how-do-i-tell-non-programmers-what-i-do/167992#167992 1 Answer by John Ferguson for I work in SCM/build. How do I tell non-programmers what I do? John Ferguson 2008-10-03T17:30:28Z 2008-10-03T17:30:28Z <p>Surprising they know what a software developer does!</p> <p>Anwyay, this sounds like a challenge for Haiku enthusiasts:</p> <p>in 5-7-5 (I'm lazy when doing english haiku and my seasonal reference is flakey - try a 3-5-3 if you like)</p> <pre><code>from many good parts: one programme on your PC; lose track, get winter </code></pre> <p>(hmm, 13 words)</p> http://stackoverflow.com/questions/156438/what-does-it-mean-for-a-c-function-to-be-inline/156486#156486 0 Answer by John Ferguson for What Does It Mean For a C++ Function To Be Inline? John Ferguson 2008-10-01T06:42:02Z 2008-10-01T09:09:37Z <p>Calling a function imposes a certain performance penalty for the CPU over just having a linear stream of instructions. The CPU's registers have to be written to another location, etc. Obviously the benefits of having functions usually outweigh the performance penalty. But, where performance will be an issue, for example the fabled 'inner loop' function or some other bottleneck, the compiler can insert the machine code for the function into the main stream of execution instead of going through the CPU's tax for calling a function.</p> http://stackoverflow.com/questions/156650/does-the-last-element-in-a-loop-deserve-a-separate-treatment/156801#156801 0 Answer by John Ferguson for Does the last element in a loop deserve a separate treatment? John Ferguson 2008-10-01T09:06:22Z 2008-10-01T09:06:22Z <p>The special case should be done outside the loop if it is only to be performed once.</p> <p>However, there may be an index or some other variable(s) that are just easier to keep inside the loop due to scoping. There may also be a contextual reason for keeping all the operations on the datastructure together inside the loop control structure, though I think that is a weak argument on its own.</p> http://stackoverflow.com/questions/156443/what-opensource-projects-do-you-support-or-what-keeps-you-from-supporting-projec/156720#156720 0 Answer by John Ferguson for What opensource projects do you support, or what keeps you from supporting projects? John Ferguson 2008-10-01T08:36:25Z 2008-10-01T08:36:25Z <p>I gave some money to the NeoOffice people when I started to see messages on their website suggesting donations (I only visit when I need a patch, which is just about every time I start NeoOffice). Unfortunately it seems very few others have given money because their message suggesting donations is getting more prominent. I would give more if I used it more often, but I prefer iWork.</p> http://stackoverflow.com/questions/154752/whats-a-good-alternative-to-windows-search-for-files-and-folders/154863#154863 3 Answer by John Ferguson for What's a good alternative to Windows' "Search for Files and Folders"? John Ferguson 2008-09-30T20:22:51Z 2008-09-30T20:22:51Z <p>Copernic Desktop Search is good. Same functionality as Google desktop search, but some people don't like the way GDS phones home. Unfortunately there was an app it didn't play nice with on my work machine, so I had to uninstall it.</p> http://stackoverflow.com/questions/148298/how-to-check-for-equals-0-i-or-i-0/148545#148545 1 Answer by John Ferguson for How to check for equals? (0 == i) or (i == 0) John Ferguson 2008-09-29T12:56:36Z 2008-09-29T12:56:36Z <p>Obviously Niklaus Wirth foresaw this problem.</p> http://stackoverflow.com/questions/15841/visual-studio-color-theme/148032#148032 0 Answer by John Ferguson for Visual Studio color theme John Ferguson 2008-09-29T09:07:39Z 2008-09-29T09:07:39Z <p>Modified Vibrant Jedi (basically orange on black with blue namespaces/classnames) with Droid Sans Mono. In Delphi I started off with the standard white, but tried Twilight when I thought the white was giving me eyestrain. I now much prefer dark or low contrast themes.</p> http://stackoverflow.com/questions/131793/i-cant-include-a-version-number-in-this-old-delphi-project-i-inherited-how-do-i 1 I can't include a version number in this old Delphi project I inherited. How do I fix it? John Ferguson 2008-09-25T06:57:10Z 2008-09-25T10:05:21Z <p>I have an old Delphi codebase I have to maintain, lots of DLLs, some older than others. In some of these DLLs there is no version information in the Project Options dialog. The controls for adding a version are greyed out and I can't even add a version number by manually editing the .DOF file. How can I include a version number in these projects?</p> http://stackoverflow.com/questions/131793/i-cant-include-a-version-number-in-this-old-delphi-project-i-inherited-how-do-i/131826#131826 5 Answer by John Ferguson for I can't include a version number in this old Delphi project I inherited. How do I fix it? John Ferguson 2008-09-25T07:05:36Z 2008-09-25T07:05:36Z <p>Check if the default .RES file exists in the project source location. Delphi includes the version number of the project in a .res file with the same name as the .dpr file. If the .RES file does not exist, the simplest way to recreate it is to add the {$R *.RES} compiler directive to the .DPR file, immediately after the uses clause.</p> <pre><code>library foolib; uses foo in 'foo.pas', baz in 'baz.pas'; {$R *.RES} exports foofunc name 'foofunc'; end; </code></pre> <p>As soon as you add the {$R *.RES} compiler directive Delphi will tell you it has recreated the foolib.res resource file.</p> http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/120747#120747 113 Answer by John Ferguson for What are Code Smells? What is the best way to correct them? John Ferguson 2008-09-23T12:42:51Z 2008-09-23T12:42:51Z <h2>Magic numbers</h2> <p>If code has lots of numbers all the way through it will be a pain to change them and you may miss something. Those numbers might be documented or commented, but comments and code can very easily get out of sync with each other. When you next read the code will you remember what the number means or why it was chosen?</p> <p>Fix this by replacing the numbers with constants that have meaningful names. But don't make the names too long. It's up to you whether to import these constants from another file or limit them to the immediate scope.</p> <p>Similarly for excessive amounts of string literals in the code, either use well-named constants or read them from a resource file. This can also aid internationalisation/translation efforts.</p> http://stackoverflow.com/questions/111140/how-does-nunit-work/111197#111197 1 Answer by John Ferguson for How does nunit work? John Ferguson 2008-09-21T15:14:17Z 2008-09-21T15:14:17Z <p>I use it at work, but I'm not an expert. Here's a link to the NUnit documentation: <a href="http://www.nunit.org/index.php?p=getStarted&amp;r=2.4.8" rel="nofollow">http://www.nunit.org/index.php?p=getStarted&amp;r=2.4.8</a></p> http://stackoverflow.com/questions/109620/what-are-the-bigger-hurdles-to-overcome-migrating-from-winforms-to-wpf/109764#109764 1 Answer by John Ferguson for What are the bigger hurdles to overcome migrating from Winforms to WPF? John Ferguson 2008-09-20T23:28:53Z 2008-09-20T23:28:53Z <p>The Microsoft Learning website has a useful introduction, which I believe is available free if you have a Microsoft Passport account <a href="https://www.microsoftelearning.com/eLearning/courseDetail.aspx?courseId=85488" rel="nofollow">https://www.microsoftelearning.com/eLearning/courseDetail.aspx?courseId=85488</a></p> http://stackoverflow.com/questions/96879/advice-to-improve-programmer-communication-skills/97099#97099 12 Answer by John Ferguson for Advice to improve programmer communication skills John Ferguson 2008-09-18T21:20:16Z 2008-09-18T21:20:16Z <p>Breathing.</p> <p>Seriously. Many people talk too quickly, or get flustered when they can't explain something the way they want to. Talking too quickly or becoming a little flustered can make your breathing shallow or erratic. Perhaps not so much as to alarm your listener, but enough to lower the amount of oxygen getting to your brain and reinforcing your sense of stress. By slowing down a little you not only give yourself more time to prepare your words, but also more time to let the listener take in what you are telling them. Thus they understand better and if necessary can ask better follow-up questions.</p> http://stackoverflow.com/questions/96898/what-is-the-hardest-technical-question-you-have-had-to-answer-in-an-interview/96993#96993 0 Answer by John Ferguson for What is the hardest technical question you have had to answer in an interview? John Ferguson 2008-09-18T21:08:24Z 2008-09-18T21:08:24Z <p>I was in an interview for a programming job this year where I asked more technical questions than the interviewers (mostly Joel test questions).</p> <p>The other interview was not necessarily IQ-heavy, but did involve doing a little Delphi GUI code verbally. Not even a whiteboard.</p> http://stackoverflow.com/questions/4689/recommended-fonts-for-programming/96433#96433 1 Answer by John Ferguson for Recommended Fonts for Programming? John Ferguson 2008-09-18T20:14:46Z 2008-09-18T20:14:46Z <p>Don't forget the colours!</p> <p>For some reason Delphi 7 in Twilight does not render Droid Sans Mono well, but in Visual Studio with an orange on black theme it is excellent. Deja Vu Sans Mono is the best all rounder. I use it almost everywhere. Consolas would be excellent apart from its ugly Q glyph. </p> <p>One other thing I have found since I entered the world of work is that even though I have great eyesight I like to keep my code font around 12 or 13pt size both to reduce eye strain and to make sure I can't put too much text on screen. It's sort of an incentive to keep code blocks vertically short.</p> <p>I note that this edit box does not respect my browser's default monospaced font. It's giving me Monaco (I'm on OSX). Monaco is horrible. It's glyphs have poorly angled elements and it's capitals are not well proportioned.</p> <p>Oh, and it almost doesn't matter on Windows because your font will not look right anyway. /me dons flame retardent suit</p> http://stackoverflow.com/questions/82611/is-there-textmate-like-editor-for-windows/82666#82666 2 Answer by John Ferguson for Is there TextMate-like editor for Windows? John Ferguson 2008-09-17T12:38:41Z 2008-09-17T12:38:41Z <p>JEdit is Java-based, so it is cross platform. It is as slow as your JRE and ugly, but has some good features and addons are available.</p> <p>I have found myself using Notepad++ a lot on Windows.</p> http://stackoverflow.com/questions/435714/if-i-deploy-my-web-application-to-windows-azure-do-i-need-a-traditional-host/435724#435724 Comment by John Ferguson on If I deploy my web application to Windows Azure, do I need a traditional host? John Ferguson 2009-01-12T15:47:26Z 2009-01-12T15:47:26Z Stackoverflow may be production software with ads, but it is still beta itself. Then again, ASP.NET MVC was probably pretty stable. Jeff used to work for Vertigo and they had pretty close relations with MS. http://stackoverflow.com/questions/419959/language-for-non-programmers-to-start-learning-programming/419988#419988 Comment by John Ferguson on Language for non-programmers to start learning programming John Ferguson 2009-01-07T13:01:03Z 2009-01-07T13:01:03Z going from C# to C would be painful. Might be better to start straight in with simple stuff in C. http://stackoverflow.com/questions/413490/what-is-the-point-of-www-in-web-urls/413494#413494 Comment by John Ferguson on what is the point of www in web urls? John Ferguson 2009-01-05T15:57:09Z 2009-01-05T15:57:09Z just to add info, yes the name can be anything and the www was used historically to differentiate from servers on the same domain providing mail/ftp/etc. I type it where needed :) Nowadays many people even expect www to be there, even if it isn't http://stackoverflow.com/questions/336442/visual-studio-2010-wishlist/336479#336479 Comment by John Ferguson on Visual studio 2010 Wishlist John Ferguson 2008-12-03T09:59:37Z 2008-12-03T09:59:37Z When I was doing my final year project at university my tutor said 6 (which was then current) was good, but it just a bloated version of 4 :) http://stackoverflow.com/questions/304876/annoying-or-idiotic-naming-conventions/304902#304902 Comment by John Ferguson on Annoying or idiotic naming conventions? John Ferguson 2008-11-20T12:31:17Z 2008-11-20T12:31:17Z Larry Wall prefers _ in Perl because he says its easier for non-English speakers. I use _ in Perl and camelCase in C# partly as a mental switch. If I see _, it's likely Perl, if I see camelCase, it's likely C#. http://stackoverflow.com/questions/283805/how-do-they-draw-the-charts-graphs-on-stackoverflow/283809#283809 Comment by John Ferguson on How do they draw the charts/graphs on stackoverflow? John Ferguson 2008-11-12T12:45:10Z 2008-11-12T12:45:10Z I was going to suggest SVG, but flot looks amazing. http://stackoverflow.com/questions/253251/what-to-put-at-the-top-of-source-files-in-large-projects/253287#253287 Comment by John Ferguson on What to put at the top of source files in large projects? John Ferguson 2008-10-31T14:15:47Z 2008-10-31T14:15:47Z if it was slashdot I might give it +5 (funny) http://stackoverflow.com/questions/249612/what-is-required-knowledge-when-applying-for-an-entry-level-or-junior-programmer/249653#249653 Comment by John Ferguson on What is required knowledge when applying for an entry level or junior programmer position? (think "first job") John Ferguson 2008-10-30T09:36:12Z 2008-10-30T09:36:12Z AgentConundrum, you sound just like me, but have four times the reputation! http://stackoverflow.com/questions/246000/send-key-for-right-arrow/246004#246004 Comment by John Ferguson on send key for right arrow John Ferguson 2008-10-29T07:51:58Z 2008-10-29T07:51:58Z A link to the actual Google search would be even better <a href="http://www.google.com/search?client=opera&amp;rls=en-GB&amp;q=what+is+the+syntax+for+the+sendkey+for+rightarrow+in+.net&amp;ie=utf-8&amp;oe=utf-8" rel="nofollow">google.com/search?client=opera&amp;rls=en-GB&amp;&hellip;</a> And this page comes first! http://stackoverflow.com/questions/243858/why-are-there-voting-limits-in-stackoverflow/243870#243870 Comment by John Ferguson on Why are there voting limits in Stackoverflow? John Ferguson 2008-10-28T16:25:50Z 2008-10-28T16:25:50Z yeah, but it's the electoral college that counts and only some of the state electors are legally bound to vote according to the popular vote :) http://stackoverflow.com/questions/235957/are-you-an-agile-pragmatic-developer-in-a-waterfall-organization/235973#235973 Comment by John Ferguson on Are you an agile/pragmatic developer in a waterfall organization? John Ferguson 2008-10-25T09:18:51Z 2008-10-25T09:18:51Z sounds like your organisation does agile wrong http://stackoverflow.com/questions/221534/intranet-vs-internet-web-application-considerations/221626#221626 Comment by John Ferguson on Intranet Vs Internet Web application considerations John Ferguson 2008-10-21T12:15:27Z 2008-10-21T12:15:27Z you beat me. Don't forget to support Opera! http://stackoverflow.com/questions/218300/what-can-a-software-engineer-do-to-cross-train/218344#218344 Comment by John Ferguson on What can a software engineer do to cross-train? John Ferguson 2008-10-20T13:41:10Z 2008-10-20T13:41:10Z I think you missed a step before having kids :) http://stackoverflow.com/questions/23375/anyone-programming-in-visual-foxpro-out-there/64447#64447 Comment by John Ferguson on Anyone programming in Visual Foxpro out there? John Ferguson 2008-10-19T16:10:59Z 2008-10-19T16:10:59Z you pay for experts exchange? They give out their answers free if you scroll down far enough. http://stackoverflow.com/questions/211260/how-can-i-extract-and-save-text-using-perl/211282#211282 Comment by John Ferguson on How can I extract and save text using Perl? John Ferguson 2008-10-17T09:00:23Z 2008-10-17T09:00:23Z perl golf has its place, but I'd rather people put readable code into production.