Keith Nicholas

2,696
Reputation
126 views

Registered User

Name Keith Nicholas
Member for 1 year
Seen 1 hour ago
Website
Location Auckland, New Zealand
Age 38
Software developer for www.compacsort.com
Nov
23
answered Is is better to do const pass by references over non-const pass by references?
Nov
23
asked How to create a empty temporary table from another tables schema?
Nov
20
answered Handling mutable collection keys in C#
Nov
18
answered What is so great about extension methods?
Nov
17
answered Benefits the Win32 API has over .NET
Nov
17
answered From Sys Admin to programmer?
Nov
17
comment advanced string management and completion C#
ahhh, the edit helps.... match from the end finding characters, then use startswith and your string array
Nov
17
answered advanced string management and completion C#
Nov
17
answered Is there any MySQL driver for C/C++ which is not GPLed?
Nov
13
answered While designing ORM, what is the best approach to represent relationship, performance-wise ?
Nov
13
comment entertaining a baby in vb.net
you want to recognise it in a quiet environment or in a noisy environment?
Nov
12
answered What’s your take on the programming language Go?
Nov
12
answered How can I manage a group of derived but otherwise Unrelated Classes.
Nov
12
awarded  Nice Answer
Nov
12
answered When returning a pointer, what to return if it’s not found? C++
Nov
11
answered I need to learn C.
Nov
10
answered How do you track where in your code your business rules are implemented?
Nov
9
answered Generally speaking, Who owns the source code and program developed?
Nov
5
answered C# Array of Buttons.
Nov
5
answered What is best approach on designing this generic abstract class? (Part 3)
Nov
4
answered Utility classes.. Good or Bad?
Oct
30
answered ports on computer and firewall and it’s purpose - 101 question
Oct
28
answered Protecting Ruby Code
Oct
28
answered Is an Amazon Machine Image (AMI) immutable?
Oct
24
awarded  Popular Question
Oct
23
comment IIS 7, Multiple Web Sites, Host Headers, and Wildcard Subdomains
shouldn't this be on server fault?
Oct
23
answered Spring Philosophy
Oct
22
asked How good are the resharper 5.0 nightly builds?
Oct
18
comment How do you copy a set of files to multiple places using Wix?
I'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.
Oct
16
comment Resizing N # of squares to be as big as possible while still fitting into box of X by Y dimensions. (Thumbnails!)
ahhh, yes, just need to scale it to the min fitting scale as the poster below does
Oct
15
answered Resizing N # of squares to be as big as possible while still fitting into box of X by Y dimensions. (Thumbnails!)
Oct
15
answered Visual Studio incremental build: XML documentation file is created too late
Oct
15
answered Add library permanently for all future projects
Oct
15
comment Parser How To in .NET
I 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.
Oct
15
awarded  Popular Question
Oct
15
answered Parser How To in .NET
Oct
14
answered Is putting a function within an if statement efficient? (C++)
Oct
14
answered C vs. Java for game programming
Oct
13
comment How do you copy a set of files to multiple places using Wix?
yeah, 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 them
Oct
13
revised File operations
added 12 characters in body
Oct
13
revised How do you copy a set of files to multiple places using Wix?
added 126 characters in body
Oct
13
asked How do you copy a set of files to multiple places using Wix?
Oct
9
comment fread terminating mid-read at null values. Also reading in garbage past expected data.
how are you inspecting it?
Oct
9
comment My first F# program…
probably better off discussing this on the F# forums
Sep
16
awarded  Yearling
Aug
25
comment What process do you use to recruit programmers?
I 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
Aug
18
accepted Becoming a ninja developer
Aug
16
comment with Watin how do you stop the browser from loading images?
I wanted to do this programmatically.
Aug
13
comment One method shared by several classes
one 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 :)