User Keith Nicholas - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T04:19:01Zhttp://stackoverflow.com/feeds/user/10431http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1264275/with-watin-how-do-you-stop-the-browser-from-loading-images1with Watin how do you stop the browser from loading images?Keith Nicholas2009-08-12T04:56:27Z2009-12-12T10:00:01Z
<p>Just trying to see if I can stop Watin / IE from loading images so the whole thing goes a lot faster?</p>
http://stackoverflow.com/questions/1869615/how-to-effectively-work-with-devices-over-a-serial-connection/1869660#18696602Answer by Keith Nicholas for How to effectively work with devices over a serial connection?Keith Nicholas2009-12-08T20:35:36Z2009-12-08T20:35:36Z<p>this is the limit of working multi drop serial networks.....there is no magic to it, you can ease some of the pain</p>
<p>Generally the best approach is to put in an abstraction layer where you have a message queue of things you want to send, and each of those have a callback that gets called when it gets a response.</p>
http://stackoverflow.com/questions/69238/what-process-do-you-use-to-recruit-programmers1What process do you use to recruit programmers?Keith Nicholas2008-09-16T03:48:34Z2009-11-30T23:32:33Z
<p>What process do you use to recruit programmers?</p>
<p>we have a multi stage interview process...</p>
<p>Pre interviews... Resume review..... then if they are interesting :-</p>
<p>stage 1: come have a chat, talk about what you have done, discuss the position, dig a bit into they approach software development</p>
<p>stage 2: Coding Test</p>
<p>Stage 3: Generally discuss an offer</p>
<p>Each stage is usually a different day, so we can call it quits at any stage. what we dont have is a phone interview stage. I'm wondering if people find this useful? We basically would like to get to the point of saying "No" quicker so we can evaluate more people.</p>
http://stackoverflow.com/questions/1780695/is-is-better-to-do-const-pass-by-references-over-non-const-pass-by-references/1780760#17807601Answer by Keith Nicholas for Is is better to do const pass by references over non-const pass by references?Keith Nicholas2009-11-23T01:59:48Z2009-11-23T01:59:48Z<p>it also enables that you can do</p>
<p>void x(const std::string& x)</p>
<p>x("hello");</p>
<p>without the const it wouldn't work.</p>
http://stackoverflow.com/questions/1780660/how-to-create-a-empty-temporary-table-from-another-tables-schema1How to create a empty temporary table from another tables schema?Keith Nicholas2009-11-23T01:12:11Z2009-11-23T01:17:33Z
<p>Is there an idiomatic way of doing this?</p>
http://stackoverflow.com/questions/1767804/handling-mutable-collection-keys-in-c/1767861#17678610Answer by Keith Nicholas for Handling mutable collection keys in C#Keith Nicholas2009-11-20T01:59:00Z2009-11-20T01:59:00Z<p>you can also put a callback on Cat so when its Name property changes your collection gets notified</p>
http://stackoverflow.com/questions/1759602/what-is-so-great-about-extension-methods/1759649#17596490Answer by Keith Nicholas for What is so great about extension methods?Keith Nicholas2009-11-18T22:35:22Z2009-11-18T22:35:22Z<p>they are great for automatically mixing in functionality based on Interfaces that a class inherits without that class having to explicitly re implement it.</p>
<p>Linq makes use of this a lot.</p>
<p>Great way to decorate classes with extra functionality. Most effective when applied to an Interface rather than a specific class. Still a good way to extend Framework classes though. </p>
http://stackoverflow.com/questions/1745878/benefits-the-win32-api-has-over-net/1745902#17459022Answer by Keith Nicholas for Benefits the Win32 API has over .NETKeith Nicholas2009-11-17T00:46:11Z2009-11-17T00:46:11Z<p>Win32 - you can create native code tiny executables that <em>just</em> link to what you want.</p>
http://stackoverflow.com/questions/1745792/from-sys-admin-to-programmer/1745820#17458201Answer by Keith Nicholas for From Sys Admin to programmer?Keith Nicholas2009-11-17T00:27:55Z2009-11-17T00:27:55Z<p>If you want to do windows... .NET is a good option.</p>
<p>WPF is a new technology with few developers who are good at it, it would be a point of difference. The market requirement is not huge yet, but its growing.</p>
<p>Also another point of difference is Ux design abilities.</p>
http://stackoverflow.com/questions/1745756/advanced-string-management-and-completion-c/1745776#17457760Answer by Keith Nicholas for advanced string management and completion C#Keith Nicholas2009-11-17T00:19:11Z2009-11-17T00:19:11Z<p>errrr.... </p>
<p>why doesn't "i have got to go, go" turn into "i have got to goodbye, gooodbye"?</p>
<p>and..</p>
<p>"Hello, and good mor" isn't "Hello, and goodbye morning"</p>
http://stackoverflow.com/questions/1745681/is-there-any-mysql-driver-for-c-c-which-is-not-gpled/1745760#17457600Answer by Keith Nicholas for Is there any MySQL driver for C/C++ which is not GPLed?Keith Nicholas2009-11-17T00:16:15Z2009-11-17T00:16:15Z<p>you say mysql is just a fractional part... </p>
<p>Perhaps swap to PostgreSQL?
or SQL Express?</p>
http://stackoverflow.com/questions/1727068/while-designing-orm-what-is-the-best-approach-to-represent-relationship-perform/1727074#17270741Answer by Keith Nicholas for While designing ORM, what is the best approach to represent relationship, performance-wise ?Keith Nicholas2009-11-13T04:06:37Z2009-11-13T04:06:37Z<p>this isn't so much a difference in performance, its actually just one is easier to implement than the other.</p>
http://stackoverflow.com/questions/1712172/whats-your-take-on-the-programming-language-go/1726214#17262140Answer by Keith Nicholas for What's your take on the programming language Go?Keith Nicholas2009-11-12T23:45:38Z2009-11-12T23:45:38Z<p>What would be good is a new native code compiled language that is not C / C++ / D / Pascalish.</p>
<p>Especially for embedded systems.</p>
http://stackoverflow.com/questions/1719358/how-can-i-manage-a-group-of-derived-but-otherwise-unrelated-classes/1719401#17194010Answer by Keith Nicholas for How can I manage a group of derived but otherwise Unrelated Classes.Keith Nicholas2009-11-12T01:57:03Z2009-11-12T01:57:03Z<p>Visitor Pattern. If I understand what you are asking.</p>
<p>Though really need to know more context!</p>
http://stackoverflow.com/questions/1718957/when-returning-a-pointer-what-to-return-if-its-not-found-c/1718992#17189920Answer by Keith Nicholas for When returning a pointer, what to return if it's not found? C++Keith Nicholas2009-11-12T00:13:04Z2009-11-12T00:13:04Z<p>another option you can make use of is returning a NullObject</p>
<p>return Drug::NullDrug;</p>
<p>basically a valid drug object that is considered "NUll" means that if you use it, it won't break.</p>
<p>though generally I'd go with returning 0;</p>
<p>well,</p>
<p>usually, I'd be using smart ptrs.</p>
http://stackoverflow.com/questions/1717815/i-need-to-learn-c/1717854#171785412Answer by Keith Nicholas for I need to learn C.Keith Nicholas2009-11-11T20:30:13Z2009-11-11T20:30:13Z<p>two issues here</p>
<ul>
<li>learning C</li>
<li>embedded systems</li>
</ul>
<p>writing C for embedded systems can be quite different than writing C for systems.</p>
<p>for instance, if you are writing for something like the symbian, you write a style of C that is heavily influenced by the framework/operating system that doesn't look a lot like normal C code.</p>
<p>but, in general, get a book, use the internet.... find a forum specific to the embedded environment you will be using.</p>
http://stackoverflow.com/questions/1711633/how-do-you-track-where-in-your-code-your-business-rules-are-implemented/1711673#17116730Answer by Keith Nicholas for How do you track where in your code your business rules are implemented?Keith Nicholas2009-11-10T22:24:12Z2009-11-10T22:24:12Z<p>first, I wouldn't embed these kinds of rules into the "Stock" object as your code suggests.</p>
<p>There are many approaches to this...</p>
<p>but say this could be captured as MaintainMinimumStockLevelRule and it could be logically grouped into a location (folder / component / whatever) </p>
<p>Then it should be pretty easy to find.</p>
<p>Or you build a rules engine into your software and the rules are configurable :-)</p>
http://stackoverflow.com/questions/1703600/generally-speaking-who-owns-the-source-code-and-program-developed/1703657#17036570Answer by Keith Nicholas for Generally speaking, Who owns the source code and program developed? Keith Nicholas2009-11-09T20:42:45Z2009-11-09T20:42:45Z<p>depends a bit on what country you are living in.</p>
<p>But I think in general whoever is paying for it owns it and has full rights to unless you agree to something different in the contract. However, from what I remember of copyright laws, The Author of the code also has rights to use the code unless they specifically give that right up. </p>
http://stackoverflow.com/questions/1678249/c-array-of-buttons/1678270#16782700Answer by Keith Nicholas for C# Array of Buttons.Keith Nicholas2009-11-05T04:03:45Z2009-11-05T04:03:45Z<p>yes you can, what technology? winforms? asp? wpf?</p>
<p>with winforms many controls gets really ineffiecient and slow</p>
http://stackoverflow.com/questions/1678036/what-is-best-approach-on-designing-this-generic-abstract-class-part-3/1678093#16780930Answer by Keith Nicholas for What is best approach on designing this generic abstract class? (Part 3)Keith Nicholas2009-11-05T03:10:41Z2009-11-05T03:10:41Z<p>this is messy..... I don't think you have clear concepts? something called a list, should be a list not a container for another list? I'm actually unsure what you are trying to abstract. Tenant seems like the wrong thing?</p>
<p>its hard to tell from your example.</p>
<p>but a tenant is really a Person/Entity that has a 'Contract' called a "tennancy"..... I'm not sure about the rest of your question as there isn't enough context</p>
http://stackoverflow.com/questions/1671259/utility-classes-good-or-bad/1671279#16712792Answer by Keith Nicholas for Utility classes.. Good or Bad?Keith Nicholas2009-11-04T01:53:36Z2009-11-04T01:53:36Z<p>Utility classes are ok..... as long as they don't violate design principles. Use them as happily as you'd use the core framework classes.</p>
<p>The classes should be well named and logical. Really they aren't so much "utility" but part of an emerging framwework that the native classes don't provide.</p>
<p>Using things like Extension methods can be useful as well to align functionality onto the "right" class. BUT, they can be a cause of some confusion as the extensions aren't packaged with the class they extend usually, which is not ideal, but, still, can be very useful and produce cleaner code.</p>
http://stackoverflow.com/questions/1647561/ports-on-computer-and-firewall-and-its-purpose-101-question/1647575#16475750Answer by Keith Nicholas for ports on computer and firewall and it's purpose - 101 question Keith Nicholas2009-10-30T01:37:18Z2009-10-30T01:37:18Z<p>ports can be used for anything, but there are conventions of the protocols to expect on certain ports.</p>
<p>and you can use 80 for other functions, some people do that as a simple way of bypassing firewalls...</p>
<p>however, only 1 application can be listening on a port.</p>
http://stackoverflow.com/questions/1640342/protecting-ruby-code/1640361#16403616Answer by Keith Nicholas for Protecting Ruby CodeKeith Nicholas2009-10-28T21:53:13Z2009-10-28T21:53:13Z<p>you can't really protect it, its hard enough protecting native code! and even then that basically fails if someone really wants to copy the software.</p>
<p>basically do very little if anything to secure it, its mostly wasted time and effort</p>
http://stackoverflow.com/questions/1631960/is-an-amazon-machine-image-ami-immutable/1634985#16349851Answer by Keith Nicholas for Is an Amazon Machine Image (AMI) immutable?Keith Nicholas2009-10-28T03:04:48Z2009-10-28T03:04:48Z<p>If your instance stops, everything disappears thats not part of the initial image.</p>
<p>you need to bundle an instance into an image to save your changes. </p>
<p><a href="http://docs.amazonwebservices.com/AWSEC2/latest/DeveloperGuide/index.html?bundling-an-ami-windows.html" rel="nofollow">as per this link</a></p>
<p>to store data you put it on a EBS. </p>
http://stackoverflow.com/questions/1609865/how-good-are-the-resharper-5-0-nightly-builds2How good are the resharper 5.0 nightly builds?Keith Nicholas2009-10-22T20:48:50Z2009-10-24T16:23:52Z
<p>They have pretty low stars....</p>
<p>is it at least equivilent of 4.5? or is it just a pain to use? </p>
<p><a href="http://www.jetbrains.net/confluence/display/ReSharper/ReSharper+5.0+Nightly+Builds" rel="nofollow">http://www.jetbrains.net/confluence/display/ReSharper/ReSharper+5.0+Nightly+Builds</a></p>
http://stackoverflow.com/questions/1610691/spring-philosophy/1610713#16107130Answer by Keith Nicholas for Spring PhilosophyKeith Nicholas2009-10-23T00:03:44Z2009-10-23T00:03:44Z<p>Sometimes callback models are more efficient, especially with anything to do with parsing </p>
<p>if you imagine the hollywood situation, its way more efficient for the "casting agent" to call everyone once they know who they are going to cast (or even not call) rather than having to keep taking calls from every applicant wanting an update.</p>
http://stackoverflow.com/questions/1575589/resizing-n-of-squares-to-be-as-big-as-possible-while-still-fitting-into-box-of/1575712#15757120Answer by Keith Nicholas for Resizing N # of squares to be as big as possible while still fitting into box of X by Y dimensions. (Thumbnails!)Keith Nicholas2009-10-15T23:44:09Z2009-10-15T23:44:09Z<p>you want something more like</p>
<p>n = number of thumbnails
x = one side of a rect
y = the other side
l = length of a side of a thumbnail</p>
<p>l = sqrt( (x * y) / n )</p>
http://stackoverflow.com/questions/1136400/visual-studio-incremental-build-xml-documentation-file-is-created-too-late/1575403#15754030Answer by Keith Nicholas for Visual Studio incremental build: XML documentation file is created too lateKeith Nicholas2009-10-15T22:08:29Z2009-10-15T22:08:29Z<p>Just having this problem myself....</p>
<p>what I found is that the xml file is named a .tmp file, so you can copy this tmp file to where you want, its just a bit of a "messy" work around.</p>
<p>I'm also quite tempted to write myself a command line tool thats called something like :-</p>
<pre><code>WaitForThenCopy <source path> <target path> <milliseconds to wait>
</code></pre>
<p>only problem is it would have to be non blocking and you wouldn't know if it worked or not.</p>
http://stackoverflow.com/questions/1575113/add-library-permanently-for-all-future-projects/1575130#15751300Answer by Keith Nicholas for Add library permanently for all future projectsKeith Nicholas2009-10-15T21:16:16Z2009-10-15T21:16:16Z<p>add it to the GAC?</p>
http://stackoverflow.com/questions/1574723/parser-how-to-in-net/1574727#15747272Answer by Keith Nicholas for Parser How To in .NETKeith Nicholas2009-10-15T20:05:54Z2009-10-15T20:05:54Z<p>ANTLR :)</p>
<p>its a good way to learn about grammers and parsers</p>
http://stackoverflow.com/questions/1745756/advanced-string-management-and-completion-c/1745776#1745776Comment by Keith Nicholas on advanced string management and completion C#Keith Nicholas2009-11-17T00:23:40Z2009-11-17T00:23:40Zahhh, the edit helps.... match from the end finding characters, then use startswith and your string arrayhttp://stackoverflow.com/questions/1727032/entertaining-a-baby-with-vb-netComment by Keith Nicholas on Entertaining a baby with VB.netKeith Nicholas2009-11-13T03:54:40Z2009-11-13T03:54:40Zyou want to recognise it in a quiet environment or in a noisy environment?http://stackoverflow.com/questions/1611218/iis-7-multiple-web-sites-host-headers-and-wildcard-subdomainsComment by Keith Nicholas on IIS 7, Multiple Web Sites, Host Headers, and Wildcard SubdomainsKeith Nicholas2009-10-23T03:28:16Z2009-10-23T03:28:16Zshouldn't this be on server fault?http://stackoverflow.com/questions/1557933/how-do-you-copy-a-set-of-files-to-multiple-places-using-wix/1559643#1559643Comment by Keith Nicholas on How do you copy a set of files to multiple places using Wix?Keith Nicholas2009-10-18T20:14:26Z2009-10-18T20:14:26ZI'll accept this answer as this was what I ended up effectively doing. I don't like the idea of all the duplication so I ended up writing a program that generated the Wix xml for me and handled automatically the duplication. Feels like wix is too raw and a higher level of abstraction is needed to write installers. http://stackoverflow.com/questions/1575589/resizing-n-of-squares-to-be-as-big-as-possible-while-still-fitting-into-box-of/1575712#1575712Comment by Keith Nicholas on Resizing N # of squares to be as big as possible while still fitting into box of X by Y dimensions. (Thumbnails!)Keith Nicholas2009-10-16T00:29:30Z2009-10-16T00:29:30Zahhh, yes, just need to scale it to the min fitting scale as the poster below does
http://stackoverflow.com/questions/1574723/parser-how-to-in-net/1574727#1574727Comment by Keith Nicholas on Parser How To in .NETKeith Nicholas2009-10-15T20:16:31Z2009-10-15T20:16:31ZI think its a good way to start, you kind of get a working knowledge of whats possible in terms of parser and then can dig deeper and build your own if you still want to, perhaps a simple recursive decent parser.http://stackoverflow.com/questions/1557933/how-do-you-copy-a-set-of-files-to-multiple-places-using-wix/1559643#1559643Comment by Keith Nicholas on How do you copy a set of files to multiple places using Wix?Keith Nicholas2009-10-13T20:33:14Z2009-10-13T20:33:14Zyeah, I kindda figured I could do that, but thats painful, it means seperate IDs and GUIDs, etc etc.
The other option is CopyFile it seems, but then you have to handle the uninstall of themhttp://stackoverflow.com/questions/1541676/fread-terminating-mid-read-at-null-values-also-reading-in-garbage-past-expected/1541680#1541680Comment by Keith Nicholas on fread terminating mid-read at null values. Also reading in garbage past expected data.Keith Nicholas2009-10-09T03:54:24Z2009-10-09T03:54:24Zhow are you inspecting it?
http://stackoverflow.com/questions/1541646/my-first-f-programComment by Keith Nicholas on My first F# program...Keith Nicholas2009-10-09T03:32:47Z2009-10-09T03:32:47Zprobably better off discussing this on the F# forumshttp://stackoverflow.com/questions/69238/what-process-do-you-use-to-recruit-programmers/1324960#1324960Comment by Keith Nicholas on What process do you use to recruit programmers?Keith Nicholas2009-08-25T03:07:42Z2009-08-25T03:07:42ZI give people a real computer, and a problem...... I figure if you know how to write software you can solve a simple problem with software. It highlights many weaknesses surprisingly, and you notice a real big difference between different people
http://stackoverflow.com/questions/1264275/with-watin-how-do-you-stop-the-browser-from-loading-images/1276315#1276315Comment by Keith Nicholas on with Watin how do you stop the browser from loading images?Keith Nicholas2009-08-16T22:34:11Z2009-08-16T22:34:11ZI wanted to do this programmatically. http://stackoverflow.com/questions/1270045/one-method-shared-by-several-classesComment by Keith Nicholas on One method shared by several classesKeith Nicholas2009-08-13T06:07:46Z2009-08-13T06:07:46Zone thing to not be afraid of is making small classes. Sometimes people get the feeling a class should hold a bunch of "stuff". But its just "syntax". If its useful, make a class with just one thing in it. Or even nothing in it! There's no rules :)http://stackoverflow.com/questions/379383/finding-gaps-in-sequence-of-numbers/379561#379561Comment by Keith Nicholas on Finding gaps in sequence of numbersKeith Nicholas2008-12-18T22:43:59Z2008-12-18T22:43:59ZI think this should be the accepted answer...not that its complete
http://stackoverflow.com/questions/297085/is-there-a-graphical-test-runner-for-google-test-gtest-for-windows/297660#297660Comment by Keith Nicholas on Is there a graphical test runner for "Google Test" ( gtest ) for windows?Keith Nicholas2008-11-20T20:52:21Z2008-11-20T20:52:21Zam having a crack at doing a visual studio plugin that will run the tests. Bit of a sidetrack project so not sure when it will be done, and the extensibility of visual studio is quite complicated at first it seems!
http://stackoverflow.com/questions/249171/what-is-a-good-design-pattern-in-c-for-classes-that-need-to-reference-other-clas/249180#249180Comment by Keith Nicholas on What is a good design pattern in C# for classes that need to reference other classes?Keith Nicholas2008-10-30T03:15:34Z2008-10-30T03:15:34Zwhich may or may not work depending on the lifetimes of C and W. if C is supposed to die before W, then W really needs a weak reference to C