User ColinYounger - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T06:01:55Z http://stackoverflow.com/feeds/user/1223 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/18326/tcl-development-debug-environment 0 TCL development: debug environment ColinYounger 2008-08-20T16:32:15Z 2009-10-20T17:17:11Z <p>I like a bit of TiVo hacking in spare time - TiVo uses a Linux variant and <a href="http://wiki.tcl.tk/299" rel="nofollow">TCL</a>. I'd like to write TCL scripts on my Windows laptop, test them and then FTP them over to my TiVo.</p> <p>Can I have a recommendation for a TCL debugging environment for Windows, please?</p> http://stackoverflow.com/questions/212531/is-while-true-break-end-while-a-good-design 7 Is WHILE TRUE...BREAK...END WHILE a good design? ColinYounger 2008-10-17T15:01:14Z 2009-09-11T02:24:04Z <p>I've been looking at some code recently where the author used something similar to this (pseudo-code):</p> <pre><code>WHILE TRUE OpenAFile IF Failed BREAK ENDIF DoSomething IF NOT OK BREAK ENDIF ...etc... BREAK END WHILE </code></pre> <p>Arguments for using this design was speed (due to 'fall through' routines) and readability (no nasty indenting of multiple IFs).</p> <p>Arguments against has been that it's nothing but a nasty GOTO.</p> <p>My question: Is this a good design pattern?</p> <p>EDIT: NOTE! The example above isn't intended to 'do' anything, just demonstrate the code style.</p> http://stackoverflow.com/questions/287474/sql-whats-the-difference-between-having-and-where 5 SQL: What's the difference between HAVING and WHERE? ColinYounger 2008-11-13T16:46:11Z 2009-08-06T01:55:46Z <p>I must be googling in the wrong way or I'm having a stupid moment in time.</p> <p>What's the difference between <code>HAVING</code> and <code>WHERE</code> in an <code>SQL SELECT</code> statement?</p> <p>EDIT: I've marked Steven's answer as the correct one as it contained the key bit of information on the link:</p> <blockquote> <p>When <code>GROUP BY</code> is not used, <code>HAVING</code> behaves like a <code>WHERE</code> clause</p> </blockquote> <p>The situation I had seen the <code>WHERE</code> in did not have <code>GROUP BY</code> and is where my confusion started. Of course, until you know this you can't specify it in the question.</p> <p>Many thanks for all the answers which were very enlightening.</p> http://stackoverflow.com/questions/9856/using-vm-to-get-around-vpn-restrictions 2 Using VM to get around VPN restrictions ColinYounger 2008-08-13T14:06:24Z 2009-07-16T19:46:21Z <p>One major problem I have is corporate IT policy (Oh, I'm not alone then? :) ) </p> <p>Specifically that if I'm off-site using a VPN connection, I cannot link to anything outside that VPN connection. </p> <p>So my local printer at home is off-limits unless I disconnect - a simplistic example of the hampering. I've been pondering whether a VM machine (or two) could circumvent that by fooling the VPN connected session into thinking another VM session is on the corporate network when it's actually local.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/56704/what-jobs-to-give-to-an-intern 27 What jobs to give to an intern? ColinYounger 2008-09-11T14:37:28Z 2009-05-03T18:00:25Z <p>Interns typically get given the mundane jobs - bit of filing, some simple bugfixes, a 'no use' project or CD\DVD duplication for example.</p> <p>If you were (or are) an Intern, what would you want from your internship? If you're responsible for an Intern, what measures have you taken to make the internship a really valuable one - both for the company and the Intern?</p> http://stackoverflow.com/questions/777346/calling-a-soap-method-with-php-for-a-specific-service/777377#777377 0 Answer by ColinYounger for Calling a SOAP method with PHP for a specific service. ColinYounger 2009-04-22T14:06:09Z 2009-04-22T14:06:09Z <p>You are not wrong, IMO. There must be other SOAP calls to derive the information you need. Have you looked at <a href="https://cwi.rezexchange.com:9991/Service.asmx?op=CwiListRateTypes" rel="nofollow">List Rate Types</a>? What about the list of methods <a href="https://cwi.rezexchange.com:9991/" rel="nofollow">here</a>?</p> http://stackoverflow.com/questions/424680/trying-to-find-a-simple-way-to-do-upload-only-modified-files-through-ftp/424729#424729 1 Answer by ColinYounger for Trying to find a simple way to do upload only modified files through FTP. ColinYounger 2009-01-08T15:43:41Z 2009-01-08T16:34:30Z <p>(Waiting for the comment on the main question to be answered before expanding)</p> <p>The strategy would be:</p> <ol> <li>Find the files changed using dates, times, archive bits or hashes (depending on OS)</li> <li>Using this list, generate a FTP script PUTting those files</li> <li>Run the FTP script.</li> </ol> http://stackoverflow.com/questions/407756/internationalization-in-the-database/407814#407814 0 Answer by ColinYounger for Internationalization in the database ColinYounger 2009-01-02T19:34:34Z 2009-01-02T19:34:34Z <p><a href="http://stackoverflow.com/questions/407756/internationalization-in-the-database#407767">@hova</a> covers the technicalities, but something you might want to consider is support of a system showing a language you don't understand.</p> <p>One way to cope with this is to have English as the default language, and a user setting that switches into a different language. That way your support users can log in and see the system in a natural way (assuming English as their first language), and your actual users can see the system in their first language. IMO, the data should always be 'natural' - in the language of the users.</p> <p>Which raises another interesting point - should your system allow multiple languages for cross-border installations? In my experience, for user interface yes, but for data, no. To take a trivial example of address formatting, a letter to a French third party from a Swiss system should still have a Swiss-format address instead of a French one, as it has to go through the Swiss postal system first.</p> http://stackoverflow.com/questions/30094/table-scan-vs-add-index-which-is-quicker 4 Table Scan vs. Add Index - which is quicker? ColinYounger 2008-08-27T13:30:20Z 2008-10-28T09:20:25Z <p>I have a table with many millions of rows. I need to find all the rows with a specific column value. That column is not in an index, so a table scan results.</p> <p>But would it be quicker to add an index with the column at the head (prime key following), do the query, then drop the index?</p> <p>I can't add an index permanently as the user is nominating what column they're looking for.</p> http://stackoverflow.com/questions/16317/creating-test-data-in-a-database 11 Creating test data in a database ColinYounger 2008-08-19T14:47:58Z 2008-10-25T06:16:28Z <p>I'm aware of some of the test data generators out there, but most seem to just fill name and address style databases [feel free to correct me].</p> <p>We have a large integrated and normalised application - e.g. invoices have part numbers linked to stocking tables, customer numbers linked to customer tables, change logs linked to audit information, etc which are obviously difficult to fill randomly. Currently we obfuscate real life data to get test data (but not very well).</p> <p>What tools\methods do you use to create large volumes of data to test with?</p> http://stackoverflow.com/questions/230171/what-is-your-definition-of-a-entry-level-junior-mid-senior-developer/230229#230229 25 Answer by ColinYounger for What is your definition of a Entry Level/Junior/Mid/Senior Developer? ColinYounger 2008-10-23T15:38:16Z 2008-10-23T15:48:17Z <p>We have similar gradings:</p> <h2>Entry Level:</h2> <p>Straight out of education or off the street; shows programming ability, but lacks language\business experience. Someone we want to spend money and time on to train up. Much input needed to this person.</p> <h2>Junior:</h2> <p>Has some business experience and knows the development language, but maybe not the arena we're working in. Needs more experience and training. Can work on small developments by themselves, but need supervision and guidance.</p> <h2>Mid-level:</h2> <p>Knows the business arena and has good knowledge of the development language. Can work on small developments unsupervised, larger developments with guidance and be part of a team for large developments. Requires code reviews and training to get to next level.</p> <h2>Senior:</h2> <p>Someone who knows a wide range of the business arena or is a specialist in an area. Expert in language. Can work on most levels of code unsupervised and requires minimal guidance. Can guide lower grades. Interested in furthering product and practices as well as 'doing the job'. Uses initiative.</p> <p>We then have two further grades:</p> <h2>Team Leader:</h2> <p>For those wanting to branch out into management and leave the coal-face behind. </p> <h2>Architect:</h2> <p>For those wanting more freedom and control, but still be developing and\or involved with the direction of the product at a technical level.</p> <p>To progress up the grades requires experience mainly. </p> <h2>Entry->Junior</h2> <p>Must develop small packages to the correct standards. Must be able to demonstrate some knowledge of the business arena. Basically, they must show willing to learn and ability to learn. Usually 1-2 years.</p> <h2>Junior->Mid-level</h2> <p>Must be able to demonstrate that they code to standard most of the time and can work on larger pieces of development. Must show good abilities in the business arena (i.e. by working with internal\external customers). Usually 1-3 years. Sometimes forever.</p> <h2>Mid-Level->Senior</h2> <p>This one is the difficult one - the person must show command of the language, be able to develop larger projects, deal with customers and be starting to guide others. In simple terms, this person is showing signs of being a guru. Senior level is an elite status.</p> <h2>Senior onwards</h2> <p>This tends to be a co-operative move from both the person and the business. They must show willingness to move on and tackle new areas. Many do not get to this - they're happy being a guru.</p> http://stackoverflow.com/questions/226431/is-donation-supported-free-software-a-viable-business-model/226471#226471 2 Answer by ColinYounger for Is donation-supported free software a viable business model? ColinYounger 2008-10-22T16:02:09Z 2008-10-22T16:02:09Z <p>It depends on your target audience. If you are producing something which is likely to be used by hobbyists, then your model may have some merit; I've always paid for software at home that is useful. But you won't make money.</p> <p>If you're aiming at other businesses, it's wrong:</p> <ol> <li>The software won't seem 'professional' to some because it's shareware.</li> <li>There's no incentive to pay when it's being used already.</li> </ol> <p>Especially in today's climate - people are not going to give money away if they don't have to.</p> http://stackoverflow.com/questions/213493/good-file-management-software/213514#213514 1 Answer by ColinYounger for Good file management software ColinYounger 2008-10-17T19:21:50Z 2008-10-17T19:21:50Z <p>Wouldn't something like a source control system be useful? <a href="http://subversion.tigris.org/" rel="nofollow">SVN</a> for example? admittedly binary files are a problem here, but if you're using a basic format you could convert to rtf or the new document standards used by Office 2007\OpenOffice. </p> <p>It's worth noting that SharePoint and other variants are used widely for a reason; they do what you need.</p> http://stackoverflow.com/questions/212310/when-does-a-project-not-require-an-application-architect/212366#212366 0 Answer by ColinYounger for When does a project not require an application architect? ColinYounger 2008-10-17T14:25:02Z 2008-10-17T14:25:02Z <p>In the place where I work, we have architects for a large project. The architects are if you like 'the voice of sanity' and bridge the gap between a business analyst style role ('This is what we believe the industry requires') and the senior developers ('this is how it can work'). They provide a consistent view of how the software should develop - the bigger picture, if you like.</p> <p>Developers move around - especially the good ones - and getting consistency on a project is key, in my opinion. The architects specialise on an area of the project (large project, remember) and don't move around, so they develop a great understanding of what is to be achieved and how we should get there.</p> <p>They also provide a 'smoothing curve' to the flip-flop situations you get with the changing business needs and the natural resistance of developers to change already baked processes.</p> <p>Even open-source projects have what I'd call an architect - the central people in the project usually have a vision of what is being built and how it should be. The collaborators are providing ideas and pushing boundaries, but there is someone who vetoes a change if it doesn't fit.</p> http://stackoverflow.com/questions/188133/calculating-revenue-per-user/188150#188150 0 Answer by ColinYounger for Calculating Revenue Per User ColinYounger 2008-10-09T16:48:53Z 2008-10-09T16:48:53Z <p>Why not get a log of the unique users who have used the web service per month and divide monthly income by that amount?</p> <p>Then total that over the periods you need to report on.</p> http://stackoverflow.com/questions/143971/when-should-tags-be-preferred-over-branching-and-vice-versa-in-cvs/188077#188077 0 Answer by ColinYounger for When should TAGs be preferred over BRANCHING and vice versa (in CVS)? ColinYounger 2008-10-09T16:30:41Z 2008-10-09T16:30:41Z <p>Apropos other replies,</p> <p>We use tags for minor point releases and branches for releases. So for example,</p> <pre><code>v1.0 &lt;-- Branch v1.0.1 &lt;-- Tag v1.0.2 &lt;-- Tag v1.1 &lt;-- Branch v1.1.1 &lt;-- Tag v1.1.2 &lt;-- Tag v1.2 &lt;-- Branch v1.2.1 &lt;-- Tag v1.2.2 &lt;-- Tag v1.3 &lt;-- Branch v1.3.1 &lt;-- Tag v1.3.2 &lt;-- Tag v1.4 &lt;-- Branch v1.4.1 &lt;-- Tag v1.4.2 &lt;-- Tag v1.5 &lt;-- Branch v1.5.1 &lt;-- Tag v1.5.2 &lt;-- Tag </code></pre> <p>To use a Microsoft analogy, a Branch is a release of Windows (95, XP, Vista, etc) and a tag is a service pack.</p> http://stackoverflow.com/questions/187960/what-are-some-good-resources-on-datamining/187992#187992 2 Answer by ColinYounger for What are some good resources on DataMining? ColinYounger 2008-10-09T16:11:49Z 2008-10-09T16:11:49Z <p>There's an excellent Google Tech Talk called <a href="http://video.google.co.uk/videosearch?q=%22Statistical+Aspects+of+Data+Mining#" rel="nofollow">The Statistical Aspects of Data Mining</a>, which I followed. Even bought the book associated with it!</p> http://stackoverflow.com/questions/183469/how-do-you-reward-yourself-when-youve-overcome-a-monster-task/183475#183475 5 Answer by ColinYounger for How do you reward yourself when you've overcome a monster task ColinYounger 2008-10-08T15:49:36Z 2008-10-08T15:49:36Z <p>In my place of work, it's usually another monster task!</p> http://stackoverflow.com/questions/81591/how-can-i-set-triggers-for-sendmail/81619#81619 0 Answer by ColinYounger for How can I set triggers for sendmail? ColinYounger 2008-09-17T09:58:37Z 2008-10-06T16:41:27Z <p>We handle this by having a cron process running on the mail server which watches the inbox directory and scans any new messages (files) every 10 minutes or so.</p> <p>When the process finds an email of interest, it fires the information off to another process which then reacts to the new message (and, in our case, removes the message from the inbox).</p> <p>--edit--</p> <p>Finding the email inbox depends on your implementation - check the 'manual' your version of sendmail for details - we direct incoming email to a special directory or have parameters to work out the inbox details. I don't feel it would be useful to be more specific as the answer to 'where is the inbox' is 'it depends'.</p> <p>As for the pattern to search for - we decode the email message (a text file) into a DOM that we can manipulate. For example, we can then look for specific words in property 'subject'.</p> http://stackoverflow.com/questions/163229/code-examples-foo-bar/163295#163295 13 Answer by ColinYounger for Code examples Foo Bar ColinYounger 2008-10-02T16:21:44Z 2008-10-02T16:21:44Z <p>The <a href="http://www.ccil.org/jargon/jargon_28.html#TAG1136" rel="nofollow">New Hacker's Dictionary</a> has a very good entry on this - and I consider it to be a better resource for this kind of thing that Wikipedia:</p> <blockquote> <p>metasyntactic variable /n./</p> <p>A name used in examples and understood to stand for whatever thing is under discussion, or any random member of a class of things under discussion. The word foo is the canonical example. To avoid confusion, hackers never (well, hardly ever) use `foo' or other words like it as permanent names for anything. In filenames, a common convention is that any filename beginning with a metasyntactic-variable name is a scratch file that may be deleted at any time.</p> <p>To some extent, the list of one's preferred metasyntactic variables is a cultural signature. They occur both in series (used for related groups of variables or objects) and as singletons. Here are a few common signatures:</p> <p>foo, bar, baz, quux, quuux, quuuux...:<br /> MIT/Stanford usage, now found everywhere (thanks largely to early versions of this lexicon!). At MIT (but not at Stanford), baz dropped out of use for a while in the 1970s and '80s. A common recent mutation of this sequence inserts qux before quux. </p> <p>bazola, ztesch:<br /> Stanford (from mid-'70s on). </p> <p>foo, bar, thud, grunt:<br /> This series was popular at CMU. Other CMU-associated variables include gorp. </p> <p>foo, bar, fum:<br /> This series is reported to be common at XEROX PARC. </p> <p>fred, barney:<br /> See the entry for fred. These tend to be Britishisms. </p> <p>corge, grault, flarp:<br /> Popular at Rutgers University and among GOSMACS hackers. </p> <p>zxc, spqr, wombat:<br /> Cambridge University (England). </p> <p>shme<br /> Berkeley, GeoWorks, Ingres. Pronounced /shme/ with a short /e/. </p> <p>snork<br /> Brown University, early 1970s. </p> <p>foo, bar, zot<br /> Helsinki University of Technology, Finland. </p> <p>blarg, wibble<br /> New Zealand.</p> <p>toto, titi, tata, tutu<br /> France. </p> <p>pippo, pluto, paperino<br /> Italy. Pippo /pee'po/ and Paperino /pa-per-ee'-no/ are the Italian names for Goofy and Donald Duck. </p> <p>aap, noot, mies<br /> The Netherlands. These are the first words a child used to learn to spell on a Dutch spelling board. </p> <p>Of all these, only <code>foo' and </code>bar' are universal (and baz nearly so). The compounds foobar and `foobaz' also enjoy very wide currency.</p> <p>Some jargon terms are also used as metasyntactic names; barf and mumble, for example. See also Commonwealth Hackish for discussion of numerous metasyntactic variables found in Great Britain and the Commonwealth.</p> </blockquote> http://stackoverflow.com/questions/163232/bug-number-comments/163259#163259 3 Answer by ColinYounger for Bug number comments ColinYounger 2008-10-02T16:14:53Z 2008-10-02T16:14:53Z <p>Imagine you have a new bug that you track down to the change in revision 12345. You look at the logs and it immediately tells you that Bug 1024 was the reason the change was made.</p> <p>You can then go and look at 1024 to see what, why and when before making a new fix - the 'one to rule them all'.</p> <p>If the bug number isn't in the commit message, you have to then search for the bug that a commit fixed - and that might be several (if the bug gets reported more than once).</p> http://stackoverflow.com/questions/162960/is-there-a-source-control-system-that-allows-tracking-of-file-name-changes/162998#162998 7 Answer by ColinYounger for Is there a source-control system that allows tracking of file name changes? ColinYounger 2008-10-02T15:25:29Z 2008-10-02T15:32:06Z <p>The <a href="http://www.cvsnt.org/manual/html/Moving-files.html" rel="nofollow">online CVS manual</a> has some detail on how to do this:</p> <blockquote> <p>The normal way to move a file is to issue a cvs rename command.</p> <pre><code>$ cvs rename old new $ cvs commit -m "Renamed old to new" </code></pre> <p>This is the simplest way to move a file. It is not error prone, and it preserves the history of what was done. CVSNT clients can retrieve the original name by checking out an older version of the repository.</p> </blockquote> <p>This feature is only supported on CVSNT servers 2.0.55 and later.</p> http://stackoverflow.com/questions/140012/checking-unix-script-ftp-return-codes/140071#140071 2 Answer by ColinYounger for Checking Unix script ftp return codes. ColinYounger 2008-09-26T15:03:41Z 2008-09-26T15:03:41Z <p>The FTP command does not return anything other than zero on most implementations that I've come across.</p> <p>It's much better to process the three digit codes in the log - and if you're sending a binary file, you can check that bytes sent was correct.</p> <p>The three digit codes are called 'series codes' and a list can be found <a href="http://www.ftpplanet.com/ftpresources/ftp_codes.htm" rel="nofollow">here</a></p> http://stackoverflow.com/questions/133418/what-is-an-orthogonal-index/140021#140021 0 Answer by ColinYounger for What is an orthogonal index? ColinYounger 2008-09-26T14:55:02Z 2008-09-26T14:55:02Z <p>I might be answering my own question here, but feel free to jump in with your own thoughts.</p> <p>Javier's answer (+1) led me on to think that maybe the point here is that having more than one unique index could be a bad thing if the items in that index are completely unrelated.</p> <p>In other words, you're increasing the chances of real data being impossible to store because of a secondary indexes uniqueness constraints. It would also potentially introduce artificial constraints on the data that shouldn't necessarily be there.</p> http://stackoverflow.com/questions/133418/what-is-an-orthogonal-index 5 What is an orthogonal index? ColinYounger 2008-09-25T13:42:34Z 2008-09-26T14:55:02Z <p>A table in my area of responsibility of our product has been criticised as having more than one orthogonal index.</p> <p>What is an orthogonal index?<br /> Why is it bad?<br /> How can the situation be avoided?</p> <p>--Update--<br /> The back-end database engine isn't necessarily relevant here as our application is database-agnostic. But if it helps, Oracle is one possibility.</p> <p>The table in question isn't used for financial analysis.</p> http://stackoverflow.com/questions/133721/move-a-file-in-cvs-without-resetting-the-revision-number/133741#133741 1 Answer by ColinYounger for Move a file in CVS without resetting the revision number. ColinYounger 2008-09-25T14:36:07Z 2008-09-25T14:36:07Z <p>The <a href="http://www.cvsnt.org/manual/html/Moving-files.html" rel="nofollow">online CVS manual</a> has some detail on how to do this:</p> <blockquote> <p>The normal way to move a file is to issue a cvs rename command.</p> <p>$ cvs rename old new<br /> $ cvs commit -m "Renamed old to new"</p> <p>This is the simplest way to move a file. It is not error prone, and it preserves the history of what was done. CVSNT clients can retrieve the original name by checking out an older version of the repository.</p> <p>This feature is only supported on CVSNT servers 2.0.55 and later.</p> </blockquote> http://stackoverflow.com/questions/133567/good-examples-of-uk-postcode-lookup-flow/133582#133582 0 Answer by ColinYounger for Good examples of UK postcode lookup flow ColinYounger 2008-09-25T14:14:19Z 2008-09-25T14:14:19Z <p>What's wrong with the simple house number\name and postcode prompt?</p> <p>Perhaps you could say how your current lookup works and why it's felt to need redesign.</p> http://stackoverflow.com/questions/107382/c-regex-index-in-matching-string-where-the-match-failed/107528#107528 0 Answer by ColinYounger for C# Regex index in matching string where the match failed ColinYounger 2008-09-20T07:36:31Z 2008-09-20T07:36:31Z <p>I don't believe it's possible, but I am intrigued why you would want it.</p> http://stackoverflow.com/questions/82653/is-there-any-list-of-blog-engines-written-in-django/82717#82717 3 Answer by ColinYounger for Is there any list of blog engines, written in Django? ColinYounger 2008-09-17T12:43:37Z 2008-09-20T07:29:14Z <p>James Bennett has an <a href="http://www.b-list.org/weblog/2007/nov/29/django-blog" rel="nofollow">interesting take</a> on this question:</p> <blockquote> <p>“where can I find a good Django-powered blogging application” is probably at the top of the frequently-asked questions list both on django-users and in the IRC; part of this is simply that, right now, there is no “definitive” Django blogging application; there are a bunch of them available if you go looking, but you’re not likely to get anyone to recommend one of them as “the” Django blogging app (unless the person doing the recommending happens to be the author of one of them). </p> </blockquote> <p>The <a href="http://www.b-list.org/weblog/2007/nov/29/django-blog" rel="nofollow">blog entry</a> also has a list.</p> http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/73196#73196 35 Answer by ColinYounger for What development book made the most impact on you as a developer? ColinYounger 2008-09-16T14:52:39Z 2008-09-16T14:52:39Z <p>As a team lead, <a href="http://rads.stackoverflow.com/amzn/click/0932633439" rel="nofollow">PeopleWare</a> was invaluable on helping my fellow developers.</p> <p><img src="http://www.joelonsoftware.com/books/pictures/Peopleware.gif" alt="alt text" /></p> http://stackoverflow.com/questions/230171/what-is-your-definition-of-a-entry-level-junior-mid-senior-developer/230229#230229 Comment by ColinYounger on What is your definition of a Entry Level/Junior/Mid/Senior Developer? ColinYounger 2009-07-06T06:53:07Z 2009-07-06T06:53:07Z 'Customers' can be internal as well as external. http://stackoverflow.com/questions/226282/what-are-the-most-hardcore-optimisations-youve-seen Comment by ColinYounger on What are the most hardcore optimisations you've seen? ColinYounger 2008-10-22T15:45:48Z 2008-10-22T15:45:48Z Those links are great - I've not seem them before. +1 http://stackoverflow.com/questions/212531/is-while-true-break-end-while-a-good-design/212542#212542 Comment by ColinYounger on Is WHILE TRUE...BREAK...END WHILE a good design? ColinYounger 2008-10-17T15:04:50Z 2008-10-17T15:04:50Z What if your code standards say that you should only have one RETURN in a function? http://stackoverflow.com/questions/187960/what-are-some-good-resources-on-datamining/187992#187992 Comment by ColinYounger on What are some good resources on DataMining? ColinYounger 2008-10-09T16:15:45Z 2008-10-09T16:15:45Z It's a good primer on the statistical modelling that goes behind data mining, which helped me loads. http://stackoverflow.com/questions/162762/ora-12154-error Comment by ColinYounger on Ora 12154 error ColinYounger 2008-10-02T16:53:51Z 2008-10-02T16:53:51Z Please post a question about programming, not an Oracle support question. http://stackoverflow.com/questions/103316/in-bash-environmental-variables-not-tab-expanding-correctly Comment by ColinYounger on In bash, environmental variables not tab-expanding correctly ColinYounger 2008-09-19T16:22:47Z 2008-09-19T16:22:47Z Scripting IS programming! http://stackoverflow.com/questions/93716/windows-form-with-resizing-frame-and-no-title-bar Comment by ColinYounger on Windows Form with Resizing Frame and no Title Bar? ColinYounger 2008-09-18T15:43:55Z 2008-09-18T15:43:55Z In what environment...? http://stackoverflow.com/questions/59264/reading-recommendations-for-microsoft-sql-server Comment by ColinYounger on Reading recommendations for: Microsoft SQL Server ColinYounger 2008-09-12T15:29:59Z 2008-09-12T15:29:59Z This wouldn't be a troll for more rep, would it...? http://stackoverflow.com/questions/56798/converting-scripts-from-ksh-to-bash Comment by ColinYounger on Converting scripts from ksh to bash. ColinYounger 2008-09-11T15:07:57Z 2008-09-11T15:07:57Z Have you tried running a ksh script in bash? What happened? http://stackoverflow.com/questions/54578/how-to-capture-output-of-pnputil-exe-e/54584#54584 Comment by ColinYounger on How to capture output of "pnputil.exe -e" ColinYounger 2008-09-10T16:29:56Z 2008-09-10T16:29:56Z Nope - tried that myself.