Andrew

3,679
Reputation
397 views

Registered User

Name Andrew
Member for 1 year
Seen 9 hours ago
Website
Location Central Victoria, Australia
Age 42
Programmer. Photographer. Father of two. Life is good.
Nov
26
answered How to create installer for solaris
Nov
26
answered Providing suggested solutions in error messages
Nov
19
revised C# File I/O Efficiency
tags
Nov
12
awarded  Popular Question
Nov
9
awarded  Enlightened
Nov
9
accepted Adding Up Values From A SQL Query
Nov
8
comment webdesign - jpg or png, which one is the best for web
Your English is fine. No need to apologise.
Nov
8
answered Adding Up Values From A SQL Query
Nov
8
answered Using a class in its constructor C# - Does it smell?
Nov
8
comment Is “34KB” or “34 KB” more correct?
Pretty sure kibis are what I feed my cat. Or is that kibbles?
Nov
7
answered What do you look for in a bug tracker?
Nov
7
comment Why do I get a “constant too large” error?
Quite true. In my defence: my understanding is that Visual C++ defines a long long as 64 bits, and the OP specifically tagged the question as Visual C++.
Nov
7
answered Why do I get a “constant too large” error?
Nov
7
answered How to learn C pointers?
Nov
7
revised Dynamic Memory Allocation in C++
Tags
Nov
7
answered Dynamic Memory Allocation in C++
Nov
6
awarded  Popular Question
Nov
6
answered TFS Basic for Non-Visual Studio Projects
Oct
28
awarded  Popular Question
Oct
26
awarded  Self-Learner
Oct
21
comment With modern OS schedulers, does it still make sense to manually lock processes to specific CPUs/cores?
@joseph, you can. Right click a task, pick "Set affinity...". You get a list of processors and you tick the checkbox next to those that are allowed to run the task in question.
Oct
1
asked JIRA code validation commit hook for ‘git’
Sep
28
comment Outsourcing and Software Engineering
Are you worried about having a job that's then outsourced to someone offshore, or are you looking for a job where you're the outsourcer that takes someone elses job?
Sep
23
revised Creditcard verification with regex?
grammar
Sep
18
revised about C++ pointer
Added semi-colon. :-)
Sep
18
comment about C++ pointer
Well picked, AraK.
Sep
18
answered about C++ pointer
Sep
18
revised about C++ pointer
Fixed formatting.; edited body; added 3 characters in body
Sep
18
answered How can I know whether an instance of a class already exists in memory?
Sep
17
comment Is there a fast way to update many records in SQL?
Like I said -- untested, off the top of my head. :-) Doesn't the 'where' clause implement the join?
Sep
17
answered Is there a fast way to update many records in SQL?
Sep
14
answered Resharper vs. CodeRush
Sep
14
comment Allowing variable length lists in yacc
This makes sense. I'll pursue this...
Sep
14
comment Allowing variable length lists in yacc
Sure; I understand that. But when I strcat(), I'm modifying memory. Which memory, and where? Is this a buffer overflow in the making?
Sep
14
revised Allowing variable length lists in yacc
add summary of overall goal
Sep
14
comment Allowing variable length lists in yacc
What I don't know is what $1 actually represents (ie, memory wise) so I have no idea what I'm strcat'ing to.
Sep
14
asked Allowing variable length lists in yacc
Sep
8
comment Telephone user identification process
This is more of a system integration issue than programming per se. Might be better on superuser.com.
Sep
7
comment C++: Hide base static member
Fixed. Thanks, @strager.
Sep
7
revised C++: Hide base static member
added 1 characters in body
Sep
7
comment Database Design: Circular dependency
You could easily take this one step further and have a PRODUCT_ATTRIBUTES table that lists the attributes associated with a product -- one of which could be 'FLAGSHIP'. This allows for multiple attributes if required.
Sep
7
answered C++: Hide base static member
Sep
4
comment c++ template syntax error
Thanks. Worked perfectly.
Sep
4
asked c++ template syntax error
Aug
30
comment Code Golf: Morse code
Looking forward to a COBOL entry. ;-)
Aug
29
revised What is the best way to perform daily/weekly/monthly backups?
edited tags
Aug
29
comment Finding the Difference between the contents in two Files
It might well be just as easy to shell out to a diff command line if the environment permits.
Aug
26
comment Why is it more costly to discover a defect later in the process?
Hedgehogs and sewerage pipes is without doubt the strangest analogy I have ever heard. Beautiful work. Love it.
Aug
22
comment Inserting encrypted password using RSACryptoServiceProvider class into DB?
Cannot recommend this strongly enough. Never, ever store anything that can get back to the user's password. Always use a hash and compare hashed passwords, not original passwords.
Aug
22
answered Why is my destructor never called?