Greg

935
reputation
113 views

Registered User

name Greg
member for 1 year
seen 3 hours ago
website
location USA
age
I'm a C# programmer with some Java experience who tinkers with Python.
1d
comment Visual Studio 2008 SP1 30” Monitor
This explaination does make sense. Some graphics cards accelerate the primary monitor but not the secondary. Try switching the two monitors - try making the other monitor primary and try swapping the video plugins. 
Dec
18
comment How do closures work behind the scenes? (C#)
Inspect the code in question with Reflector to see an example of this
Dec
18
comment Problem with jQuery - error when trying to find 2 tags
Is this code being run after the DOM is loaded?
Dec
14
answered Please Recommend me a better C# tutorial
Dec
14
comment Test for equality to the default value
Thank you, Marc! Your explanation is wonderful
Dec
13
comment Test for equality to the default value
Are you saying that EqualityComparer<T>.Default.Equals has better performance than Object.Equals, or that it would give a correct value in some case that Object.Equals wouldn't?
Dec
13
comment Detect leaving a buried element - Jquery
Those are some slick ways to show captions!
Dec
13
comment Detect leaving a buried element - Jquery
I'm glad it was that simple!
Dec
13
accepted Detect leaving a buried element - Jquery
Dec
13
answered Detect leaving a buried element - Jquery
Dec
13
comment Test for equality to the default value
I knew it should be simple. Thank you.
Dec
13
asked Test for equality to the default value
Dec
12
revised Controlling when the Static Constructor is called
included resolution
Dec
11
comment Controlling when the Static Constructor is called
I won't argue about the smell, but it would still be interesting to know about ways to get the constructor called sooner.
Dec
11
asked Controlling when the Static Constructor is called
Dec
10
comment Is it possible to refactor this extension method?
Using generics allows the method to exclude value types. Note the where T : class
Dec
7
comment What would be a reliable way to get fractional value from a number?
Elegant solution. I just tried this and it worked.
Dec
6
awarded  Civic Duty
Dec
2
comment Is Enterprise Library 4.1 supported for Windows 7?
Are you having trouble actually installing it or using it?
Dec
2
answered Is Enterprise Library 4.1 supported for Windows 7?
Dec
2
comment Why does the “in” icon on my web page appear in the wrong place in IE8, but not firefox or chrome?
It seems that "in" only appears in the wrong spot in IE8 if you are viewing the page with compatibility mode turned on.
Dec
1
revised What is faster or preferred: IEnumerable<>.ToArray() or .ToList()?
edited tags
Dec
1
revised What is faster or preferred: IEnumerable<>.ToArray() or .ToList()?
added 189 characters in body
Dec
1
revised What is faster or preferred: IEnumerable<>.ToArray() or .ToList()?
added 261 characters in body; added 69 characters in body
Dec
1
comment What is faster or preferred: IEnumerable<>.ToArray() or .ToList()?
@Yaakov: Something will have to Count the size of the collection. By counting yourself, you only have to iterate over the collection once. If the collection is converted into an array of list, the collection must be interated at least twice (once for the conversion, and once for the foreach loop.
Dec
1
answered What is faster or preferred: IEnumerable<>.ToArray() or .ToList()?
Dec
1
accepted C#: Generic types that have a constructor?
Nov
30
comment C#: Generic types that have a constructor?
Does this significantly differ from using Activator.CreateInstance()? If I understand correctly, neither has compile-time support, and both throw a run-time error if the expected constructor doesn't exist.
Nov
30
revised Gambas - How can I create radio (mutually exclusive) menu?
edited tags
Nov
30
revised C#: Generic types that have a constructor?
added 26 characters in body
Nov
30
comment C#: Generic types that have a constructor?
Very clever approach!
Nov
30
revised C#: Generic types that have a constructor?
added 125 characters in body
Nov
30
answered C#: Generic types that have a constructor?
Nov
30
comment Linking to Wikipedia abstracts (the way Google Earth does it)
FYI - Broken link
Nov
25
comment What is the best way to thread work in c#?
What is the best way to thread work in c#? Carefully
Nov
24
comment Generic method with Action<T> parameter
+1 for explaining why instead of just rewriting the code.
Nov
24
comment In c# 3.0, is it possible to add implicit operators to the string class?
Even if it was allowed, an implicit conversion from string to int would be something out of a nightmare. Implicit conversions are typically only done when converting to types don't involve any loss of information (ex: int -> long).
Nov
24
answered In c# 3.0, is it possible to add implicit operators to the string class?
Nov
24
comment In c# 3.0, is it possible to add implicit operators to the string class?
There is no C# 3.5, I think you mean C# 3 under .NET 3.5
Nov
24
comment Quitting Fasthosts and Need a Managed Email Provider
Not programming related.
Nov
24
revised If I search for my companies domain on google, it returns a different domain. It might be our fault. help
added 118 characters in body
Nov
24
answered If I search for my companies domain on google, it returns a different domain. It might be our fault. help
Nov
21
revised Javascript or php, which to choose with regard to security, complexity and speed?
edited tags
Nov
20
answered Paypal recurring payments
Nov
20
comment Is there really a performance hit when catching exceptions
I've found that having the debugger attached to my C# programs can vastly change the results of benchmarking. I assume C programs can be subject to the same effect, so I hope you ran your benchmark with the debugger off.
Nov
20
comment How to increase and more importantly project my credibility as a good developer?
Correct spelling helps.
Nov
20
accepted Question mark in JavaScript
Nov
20
comment Question mark in JavaScript
Ok, ok... now I'm using an ambiguous pronoun, happy? :)
Nov
20
revised Question mark in JavaScript
added 6 characters in body
Nov
20
comment Question mark in JavaScript
This is one of those questions that is really hard to find the answer to using a search engine.