User Angus Glashier - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T12:19:52Zhttp://stackoverflow.com/feeds/user/35063http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/301693/why-didnt-unit-testing-work-out-for-your-project/502155#502155-1Answer by Angus Glashier for Why didn't unit testing work out for your project?Angus Glashier2009-02-02T04:03:00Z2009-02-02T04:03:00Z<p>Every programmer has to ask themseleves the question: is there any bug that could be caught by unit testing that couldn't be caught just as easily by simply <em>using the bloody software</em>?!</p>
<p>Every hour you spend writing tests is an hour you could have spent <strong>fixing bugs</strong>.</p>
http://stackoverflow.com/questions/426712/have-you-ever-bought-a-commercial-implementation-of-a-programming-language-for-pe/426902#4269023Answer by Angus Glashier for Have you ever bought a commercial implementation of a programming language for personal programming projects?Angus Glashier2009-01-09T02:49:47Z2009-01-09T02:49:47Z<p>I just bought CodeGear RAD Studio 2009.</p>
http://stackoverflow.com/questions/421965/anyone-else-find-naming-classes-and-methods-one-of-the-most-difficult-part-in-pro/423185#4231851Answer by Angus Glashier for Anyone else find naming classes and methods one of the most difficult part in programming?Angus Glashier2009-01-08T03:44:26Z2009-01-08T03:44:26Z<p>There is only one sensible name for that class:</p>
<pre><code>HelpRequest
</code></pre>
<p>Don't let the implementation details distract you from the meaning.</p>
http://stackoverflow.com/questions/270724/delphi-2009-generics-compilation-problem/270789#2707893Answer by Angus Glashier for Delphi 2009 generics compilation problemAngus Glashier2008-11-06T23:37:58Z2008-11-06T23:37:58Z<p>You can't use operators with untyped generics. See <a href="https://forums.codegear.com/message.jspa?messageID=26273" rel="nofollow">here</a> for a discussion.</p>
<p>It compiles if you change it to:</p>
<pre><code>TPrimaryKey<T: class> = class(TObject)
</code></pre>
http://stackoverflow.com/questions/268718/how-to-explain-to-people-how-difficult-your-project-is/268840#2688401Answer by Angus Glashier for how to explain to people how difficult your project isAngus Glashier2008-11-06T14:20:41Z2008-11-06T14:20:41Z<p>Do the best job you can to get it working in the time you have. If it doesn't work, tell them what you're going to do to fix it. If they have any professional respect for you, that should be enough for them.</p>
http://stackoverflow.com/questions/268562/technology-venture/268758#2687581Answer by Angus Glashier for Technology VentureAngus Glashier2008-11-06T13:51:52Z2008-11-06T13:51:52Z<p>Pick a programming tool, any programming tool. There are lots of them but you have to start somewhere. Buy and read a book that teaches you how to use that one tool; pick the one with the nicest cover art if you like.</p>
<p>Then try and create a very simple version of your idea. It will suck because you won't know what you're doing but that doesn't matter because at least you'll have <em>something</em> to work with.</p>
<p>You <em>can</em> teach yourself how to do this. It's a hard slog, but if you don't have the money to hire professional programmers to do it for you what choice do you have?</p>
http://stackoverflow.com/questions/268424/when-and-why-should-you-store-data-in-the-windows-registry/268677#2686774Answer by Angus Glashier for When - and why - should you store data in the Windows Registry?Angus Glashier2008-11-06T13:28:20Z2008-11-06T13:28:20Z<p>Is the world going to end if you store a few window positions and a list of most recently used items in the Windows registry? It's worked okay for me so far.</p>
<p>HKEY-CURRENT-USER is a great place to store trivial user data in small quantities. That's what it's for. It seems silly not to use for its intended purpose just because others have abused it.</p>
http://stackoverflow.com/questions/262013/delphi-2009-ok-or-buggy/268632#2686321Answer by Angus Glashier for Delphi 2009? Ok or buggy?Angus Glashier2008-11-06T13:11:19Z2008-11-06T13:11:19Z<p>Delphi 2009 has worked find for me so far. As others have already mentioned, it doesn't crash or anything dramatic.</p>
<p>It's worth the upgrade just for the new generics stuff. It's about time we got this in Delphi Win32 land. Having said that, some of the standard templates are a little raw. I've had problems with access violation in TObjectStack.</p>
http://stackoverflow.com/questions/485120/will-emacs-make-me-a-better-programmer/485291#485291Comment by Angus Glashier on Will emacs make me a better programmer?Angus Glashier2009-01-28T01:18:44Z2009-01-28T01:18:44ZYeah, emacs is great if you want to spend lots of time screwing around with adding things to emacs instead of doing your job. I already have a hobby, thanks.http://stackoverflow.com/questions/422539/energy-efficient-application-development/423121#423121Comment by Angus Glashier on Energy efficient application developmentAngus Glashier2009-01-08T09:17:39Z2009-01-08T09:17:39ZAnd remember to always use hybrid-electric computers instead of those gas-guzzling internal combustion PCs.