Jason

11,903
Reputation
723 views

Registered User

Name Jason
Member for 11 months
Seen 28 mins ago
Website
Location
Age 31
27m
comment DateTime How To
See my answer below.
27m
revised DateTime How To
added 85 characters in body
37m
comment DateTime How To
What do you mean by format?
37m
answered DateTime How To
1h
answered Trim all whitespace in an array
6h
comment Formatting a text file, how to update the file after I finished parsing it?
@Roman: Potentially, yes. But for reasonably sized files it's short, simple and to the point. KISS.
6h
accepted Centering a String against another string
7h
comment Formatting a text file, how to update the file after I finished parsing it?
Accept more answers. You don't work for free and neither do we.
7h
answered Formatting a text file, how to update the file after I finished parsing it?
7h
comment regex to replace all occurances text, uppercase first character in a file using c#
Huh? What do you mean?
7h
answered regex to replace all occurances text, uppercase first character in a file using c#
12h
revised Where can I report .Net Framework bug ?
added 66 characters in body
12h
revised Where can I report .Net Framework bug ?
deleted 128 characters in body
12h
comment Where can I report .Net Framework bug ?
You have misunderstood the meaning of Enumerable.Except. Enumerable.Except produces the set difference of two enumerations (of the same type). So the result of new int[] { 2, 2, 3, 3, 4, 4 }.Except(new int[] { 3 }) is the sequence {2, 4}. This is by definition of Enumerable.Except. As another example, the result of new int[] { 2, 2 }.Except(new int[] { }) is { 2 }, not {2, 2}. There is no a bug here.
1d
revised What is the best algorithm for checking if a number is prime?
added 318 characters in body; added 248 characters in body
1d
answered What is the best algorithm for checking if a number is prime?
1d
revised Extracting strings in .NET
added 485 characters in body; added 54 characters in body; added 2 characters in body
1d
answered Extracting strings in .NET
1d
comment What does the following javascript code do?
You should seriously consider accepting answers to your questions.
1d
revised What does the following javascript code do?
edited title
1d
comment Centering a String against another string
He said center strings, not center visual representations of strings (text). (I concur with the obvious statement that his requirements are vague and unclear.)
1d
comment Centering a String against another string
This will center visual representations of string (text) in a window, but is not necessarily the problem that he was trying to solve.
1d
revised Centering a String against another string
added 441 characters in body; added 192 characters in body; added 33 characters in body
1d
answered Centering a String against another string
1d
comment Safely iterate an array that can be changed in another thread
You should start by defining what you mean by "safely iterate."
1d
comment Fast keyword lookup
Worst case it's O(m log n) where m is the maximum word length and n is the number of keywords.
1d
revised Fast keyword lookup
deleted 26 characters in body
1d
comment Fast keyword lookup
Do not use a regex like that. It's not the right tool for the job and maintaining a hard-coded regex string like that would be a nightmare.
2d
comment Help with a C# conditional statement dealing with Strings
@Xencor: Even more, if he can he should rewrite the code to something clearer (see Guffa's suggestion).
2d
answered How to identify LINQable parts in pre-.NET 3.5 code?
2d
comment Help with a C# conditional statement dealing with Strings
This did not improve the readability nor the maintainability of the code.
2d
revised Fast keyword lookup
edited title
2d
revised Fast keyword lookup
added 765 characters in body; added 331 characters in body
2d
answered Fast keyword lookup
2d
comment Fast keyword lookup
@Simon Righarts: You might want to rethink that last statement about searching a sorted array.
2d
comment Sort order of C# for each loop
@Matthijs Wessels: You read it correctly but Jon's point is that it shouldn't be considered gospel on the topic.
2d
comment Fast keyword lookup
This is the correct answer. Where he persists the data is effectively irrelevant. The correct question is what is the best in-memory data structure for fast lookups? An array is fine if it's sorted so that binary search can be used (so now we're O(log n) where n is the number of keywords). If this isn't fast enough (after profiling!) a trie could be considered.
2d
comment Fast keyword lookup
A B*-tree is good if he's doing on-the-fly insertions and deletions, but for a static list a sorted array is fine. The complexity of a B*-tree provides no advantage over a sorted array.
2d
comment Fast keyword lookup
@Kevin Pang: The first hit is irrelevant.
2d
comment Fast keyword lookup
Not if it's cached locally after an initial retrieval (on startup) from the database.
2d
comment Fast keyword lookup
@program10: Marel K is right. Especially if it's once per month; that is far too frequent to be even remotely considered for being embedded in the source code.
2d
comment Do value types (Integer, Decimal, Boolean, etc…) inherit from Object?
@Downvoter: Really? You have some explaining to do before I whip you boy.
2d
revised Do value types (Integer, Decimal, Boolean, etc…) inherit from Object?
added 194 characters in body
2d
answered Do value types (Integer, Decimal, Boolean, etc…) inherit from Object?
2d
comment Is there a O(n) algorithm to build a max-heap?
That's not clear to me. I think inserts in a Fibonacci heap are amortized O(1) and so building is amortized O(n).
2d
answered How to deserialze a binary file
2d
revised Difference between big-O notation and big-O estimate
added 728 characters in body; added 370 characters in body
2d
answered Difference between big-O notation and big-O estimate
Nov
24
comment Improving the performance of C code…
Right, but it's known as such.
Nov
24
comment Improving the performance of C code…
Since when is improving algorithms, profiling before you optimize, etc. reasonable? If that were true, we wouldn't have to work so hard to convince people to do these things.