recursive

8,476
reputation
430 views

Registered User

name recursive
member for 1 year
seen 43 mins ago
website
location Madison, WI
age 29
I like bikes.
2d
comment Why should exec() and eval() be avoided?
Similar: stackoverflow.com/questions/637421/…
Dec
13
comment LINQ- comparison & updating values
err, probably return obj.GetHashCode();
Dec
13
comment (Ruby on Rails) Page header going as text/javascript, when it is not supposed to
Is it accessible online anywhere? Sounds like it may be a MIME type issue, but I don't have enough info to say.
Dec
13
comment C# *Strange* problem with StopWatch and a foreach loop
What type is options? foreach will create an enumerator that will need to be disposed. The disposal may burn some cpu cycles.
Dec
13
answered LINQ- comparison & updating values
Dec
13
answered C# *Strange* problem with StopWatch and a foreach loop
Dec
11
comment Concept check: any lossless data compression can be “defeated’, right?
Theoretically it's not necessary for anything to be larger. But we can guarantee that there are inputs that are at least as large.
Dec
11
comment How to Sort Arrays in Dictionary?
Databases incur much overhead.
Dec
11
answered Are there problems that cannot be written using tail recursion?
Dec
11
revised Navigating code with keyboard shortcuts
Clarification
Dec
11
answered Which hash function is currently a good choice for passwords?
Dec
10
comment Does Subversion *Really* Require ActivePython?
Where do you see this listed?
Dec
10
comment Great programming quotes
... define knowing
Dec
10
comment CSS List strange behaviour
I fixed the indentation level, but the images are broken.
Dec
10
revised CSS List strange behaviour
indentation
Dec
10
comment Algorithm to swim like a fish in c#
I don't have an answer, but I doubt this question has much to do with artificial intelligence.
Dec
10
comment Classic ADO and Table-Valued Parameters in Stored Procedure
Question asked for classic ADO. I think this is pre-.NET.
Dec
10
comment Is it reasonable to catch an exception based on the message?
I agree. I wouldn't use this approach.
Dec
10
answered Is it reasonable to catch an exception based on the message?
Dec
10
accepted Linq Working with DataContext
Dec
10
answered Linq Working with DataContext
Dec
10
awarded  Yearling
Dec
9
answered PEP8 - 80 Characters - Big Strings
Dec
9
comment Is there a zip-like method in .Net?
Allen: zip() is an expression. Your alternative is a block of code.
Dec
7
answered running a method within another method. python
Dec
7
comment How to create components (labels) on the fly? (or how to create facebook/hotmail-style to add contacts to message)
Then you should probably use a BulletedList control.
Dec
7
awarded  Nice Answer
Dec
7
comment Constant abuse?
I use == instead of .Equals for strings. For maximum readability.
Dec
7
accepted What is the definition of “:=” in vb
Dec
7
answered What is the definition of “:=” in vb
Dec
7
comment Why is this invalid syntax?
If you're learning from examples based on 2.6, you should be using 2.6. It's still available.
Dec
6
awarded  Mortarboard
Nov
30
answered Compiling time of first page load
Nov
25
comment Debuging Classic ASP causes Visual Studio 2008 to Crash - How To Fix?
I didn't realize that it was possible to use any debugger on classic ASP. Whoa.
Nov
25
comment c# switch statement question
I thought that for ints, all branching was constant time regardless of order. I don't have a source, but does anyone know for sure?
Nov
25
answered c# switch statement question
Nov
24
answered SQL with table name as parameter and query longer than 4000 characters
Nov
23
comment In C#, is it possible to cast a List<Child> to List<Parent>?
lextm: not for lists. `List<>`s are neither covariant nor contravariant.
Nov
23
answered Interview question: f(f(n)) == -n
Nov
23
comment Formatting floating point numbers in ASP
Isn't the equality operator = in classic ASP? And how are you using curly brackets?
Nov
23
comment Dateformat with nullable variable
Isn't it {0:d}?
Nov
22
comment vb 2008 Run Grayed Out-on
This really ought to be a comment, not an answer.
Nov
22
comment normalize rotation to be within 360°
Everyone has answered for integers only, but for floats, the problem is less trivial, possibly even interesting.
Nov
22
comment Does Linq Remove The Need For Hibernate?
I don't understand. I haven't use hibernate, but I know linqtosql automatically infers relations from the database schema. You don't have to set them manually.
Nov
22
revised Can someone please explain to me in the most layman terms how to use EventArgs?
added 18 characters in body
Nov
22
comment omit the first 5 rows?
It's not really magic. It's just any number greater than the number of rows in the table.
Nov
22
comment PHP: Variable in a function name
C mindset? Using a hash table? More like the maintainable code mindset.
Nov
22
comment In C#, is it possible to cast a List<Child> to List<Parent>?
If Child inherits from Parent, then you can be 100% certain that the cast will work anyway.
Nov
22
answered In C#, is it possible to cast a List<Child> to List<Parent>?
Nov
22
comment What does this code-snippet do?
This is not true. 7 is a factor of 28, but foo(28) returns true.