chris

3,360
reputation
260 views

Registered User

name chris
member for 1 year
seen 11 hours ago
website
location Toronto
age 41
I'm the sole developer for a publishing house, doing on-line courses and exams. We have a web designer, who typically does layouts and courses, but I do anything that involves programming logic. Typical projects involve SQL Server, IIS, Visual Studio (C#) and of course, javascript.
14h
revised is var x = new Stuff(); x.DoStuff(); faster than new Stuff().DoStuff(); ?
grammar naziing
1d
comment Keeping track of refinements made to page using ASPX (Breadcrumb trail)?
Try something like: Basement > Washer, Dryer | Kitchen > Dishwasher | Bedroom > Magic Fingers Bed
1d
answered Keeping track of refinements made to page using ASPX (Breadcrumb trail)?
Dec
11
comment What to Learn??
I'm really not trying to snark here, but it's critically important to know how to construct a sentence without spelling and grammar errors. One error relegates your résumé to the circular file.
Dec
11
comment Solving second degree simultaneous equation
What are you trying to solve for?
Dec
11
comment Comparing SQL Table to itself (Self-join)
Try the first query with this data: INSERT INTO TEST ( id, test1, test2 ) VALUES ( 1, 'C', 'B' ) INSERT INTO TEST ( id, test1, test2 ) VALUES ( 2, 'B', 'C' ) That should give you both rows.
Dec
9
answered ASP.Net Control vs HTML Control Performance
Dec
9
answered Calculate the DEPTH of a binary search tree?
Dec
9
comment Data Structure Interview Question
It's a dumb question, in that not enough information is given to reach the "right" answer. My answer is String, as you've told me nothing about what the data is or how it is used or how it might be modified. You want to find 15 Quickly? Here it is --> 15. O(1) lookup.
Dec
7
comment Unit test helper methods?
Original Poster expressed a desire to test those methods individually. "...test the helper methods too as if one of them fail the public method that calls it will also fail - but this way we can identify why it failed."
Dec
7
answered Unit test helper methods?
Dec
2
revised Clickable URL in a Winform Message Box?
corektd speling
Nov
30
answered Running a query in Page Load a bad idea?
Nov
30
revised Running a query in Page Load a bad idea?
added 110 characters in body
Nov
30
comment Running a query in Page Load a bad idea?
That's a really important requirement. How about posting a question asking how to do that? Someone may have implemented this already, and have a really good idea for it.
Nov
30
answered Running a query in Page Load a bad idea?
Nov
30
revised Any language counts?
edited tags
Nov
30
answered Running a query in Page Load a bad idea?
Nov
29
answered How to Access Class from a Different Class?
Nov
23
answered C# -Four Patterns in Asynchronous execution
Nov
21
answered .NET strings and reference type parameters
Nov
19
comment If C# is type safe why is this possible without casting?
sorry, was thinking c, not c#, have corrected.
Nov
19
answered If C# is type safe why is this possible without casting?
Nov
18
answered What’s your most controversial programming opinion?
Nov
18
comment What’s your most controversial programming opinion?
As someone who occasionally has to program for Sharepoint, I will state that you second opinion is not controversial at all.
Nov
18
comment SQL “Join” on null values
Are the tables joined on the null values? You're going to get a pretty large result set if that is the case. For example, if there are 10 nulls in T1, and 10 nulls in T2 then you'll get 100 rows. Surely you can join on another populated field, and just select ... Where T1.SomeCol is null and T2.SomeCol is null
Nov
17
comment Great programming quotes
That's fantastic.
Nov
13
answered Can a Type Derive from Itself?
Nov
13
comment Users asking for denormalized database
While this isn't the best answer here, I'm voting it up for expressing a potential solution clearly and concisely.
Nov
6
answered Why the name main for function main()
Nov
6
answered Why the name main for function main()
Oct
20
revised C# interface vs class access
added "reference" for correctness, added another line.
Oct
20
answered C# interface vs class access
Oct
20
awarded  Nice Answer
Oct
2
answered NET: Best Practices/guidelines for dividing namespaces between files?
Oct
2
comment What is the coolest/most fun area to learn as a c# programmer?
annakata: At the time, it was a nice abstraction. A button is a button and fires certain events. To a programmer, this means that buttons can be wired up exactly the same way, whether you're programming for a browser or for a window. Granted, the implementation leaves something to be desired, and it doesn't allow for the rich UI that came later. Nevertheless, it was a pretty cool idea at the time.
Oct
1
answered What is the coolest/most fun area to learn as a c# programmer?
Oct
1
comment Binding a dropdown
The Autopostback will cause a page refresh, and the databinding should automagically take control. You don't need to write any code, just configure the properties in the designer.
Oct
1
answered Binding a dropdown
Sep
25
comment How to create custom action for an object ?
You need to extend EventListener as in interface PercentChangeListener extends EventListener
Sep
24
comment Where should I put miscellaneous functions in a .NET project?
I generally hate extension methods. They break class and library encapsulation of functionality. Who am I to "fix" the .net library? Now someone runs across some method in my code myString.Whargarble(). Where do they find that method? I think myString = MyCompany.StringUtils.Whargarble(myString) is a more clear statement of what's going on.
Sep
20
awarded  Yearling
Aug
31
comment Should I learn Assembly programming?
I'd say that you'd have to read a heck of a lot more than just Aristotle to understand Eco. That guy draws on the entire canon of western thought -- plus some.
Aug
21
answered String.Format Question
Aug
17
answered How can I correctly prefix a word with “a” and “an”?
Aug
7
answered What’s wrong with this ASP connection string?
Aug
7
awarded  Nice Answer
Jul
29
answered textboxes reads empty string (””) when i press submit button!
Jul
28
comment Common programming mistakes for .NET developers to avoid?
I think everyone has made this mistake at least once.
Jul
27
revised Is perfect bug-free software an impossible ideal?
added 354 characters in body