James Curran

19,107
Reputation
1325 views

Registered User

Name James Curran
Member for 1 year
Seen 8 hours ago
Website
Location Bloomfield, NJ
Age 47
  • 20+ years as a developer : Assembly, C, C++ and C# (in that order) with sidelines in ASP/VBScript, ASP.Net, JavaScript, Perl, QuickBasic, VisualBasic, plus a few others which I'm not going to mention because if I did someone might ask me to use them again (shutter)
  • Microsoft MVP in VC++ (1994-2004)
  • I also run www.NJTheater.com as a hobby.
  • Full resume & stuff at NovelTheory.com
  • Underused blog at HonestIllusion.com
Nov
19
awarded  Taxonomist
Nov
11
awarded  Great Answer
Nov
10
awarded  Popular Question
Nov
5
asked Removing duplicates from a list with “priority”
Oct
26
awarded  Nice Answer
Oct
2
awarded  Good Answer
Sep
30
awarded  Nice Answer
Sep
19
awarded  Fanatic
Sep
17
awarded  Yearling
Sep
16
accepted Whats the difference between jquery-1.3.2-vsdoc.js & jquery-1.3.2.min-vsdoc.js
Sep
16
awarded  Nice Answer
Sep
7
comment What was the strangest coding standard rule that you were forced to follow?
In the very first C program I worked on, someone had added #define ever (;;) so you could say "for ever {...}"
Sep
5
answered Whats the difference between jquery-1.3.2-vsdoc.js & jquery-1.3.2.min-vsdoc.js
Sep
2
awarded  Popular Question
Sep
1
awarded  Nice Answer
Aug
30
accepted Vacation suggestions for a programmer?
Aug
30
comment What format is this time value in?
That wasn't intended as a format string, merely a (human readable) description.
Aug
29
answered What format is this time value in?
Aug
29
answered Linq or Stored proc - Which should I choose?
Aug
29
answered Castle Nvelocity GetTemplate method won’t work
Aug
28
awarded  Great Answer
Aug
26
accepted How can I fix up this Identity int on my DB table?
Aug
25
accepted Illustration for code presentation
Aug
23
accepted How much logic should you put in the UI class?
Aug
19
awarded  Nice Answer
Aug
19
awarded  Nice Answer
Aug
17
revised LINQ-to-SQL and Extension method in subQuery
added 1 characters in body
Aug
14
awarded  Nice Answer
Aug
12
awarded  Nice Answer
Jul
22
awarded  Popular Question
Jul
11
comment Can i declare member variable as const in class of c++?if yes,how?
That should give you a different error, as you gave declared i, without defining it. You will need a "int X::i;" somewhere.
Jul
11
awarded  
Jul
9
accepted When - and why - should you store data in the Windows Registry?
Jul
7
awarded  Necromancer
Jul
5
awarded  Nice Answer
Jul
3
accepted how to write LINQ to get a single object with an assoicate object instance?
Jul
2
accepted Is there a tool to generate C# classes based off a JSON string?
Jul
2
awarded  Good Answer
Jun
30
comment Is there a tool to generate C# classes based off a JSON string?
Sure --- They all include a assembly which allows access to a database's schema, but if you want to get you input for somewhere else, that's fine. They are all template based, so you'll need a new template.
Jun
30
revised Is there a tool to generate C# classes based off a JSON string?
added 163 characters in body
Jun
30
answered Is there a tool to generate C# classes based off a JSON string?
Jun
30
revised how to write LINQ to get a single object with an assoicate object instance?
added 387 characters in body
Jun
30
answered how to write LINQ to get a single object with an assoicate object instance?
Jun
26
awarded  Enlightened
Jun
26
awarded  Nice Answer
Jun
19
answered What preconceptions did you have about professional programming when you first started your career that later were proven to be wrong?
Jun
19
comment C++ static const variable and destruction
when is the A object being created and destroyed?
Jun
18
revised Right way to conditionally initialize a C++ member variable?
added 982 characters in body; deleted 82 characters in body
Jun
18
comment Right way to conditionally initialize a C++ member variable?
You are creating an unnamed object, and then using the copy-ctor to initialize the member, rather than initializing it directly.
Jun
18
answered Right way to conditionally initialize a C++ member variable?