Mithrax

606
Reputation
142 views

Registered User

name Mithrax
member for 8 months
seen Dec 4 at 20:24
website
location
age
Dec
3
comment How do I $.post an array with jQuery so I can use the array in my PHP file?
Wow, that worked. I wasn't expecting that. Thanks gnarf.
Dec
3
asked How do I $.post an array with jQuery so I can use the array in my PHP file?
Dec
3
comment How do I convert the items of an LI into a json object using jquery?
How would you do it without a plugin?
Dec
3
asked How do I convert the items of an LI into a json object using jquery?
Dec
2
revised How can I convert the result of this postgres db query into json to return to my jquery call?
added 2 characters in body
Dec
2
comment How can I convert the result of this postgres db query into json to return to my jquery call?
@SLaks, the bureaucracy surrounding our Universities IT department is stifling. It definitely wont happen in time for the competition.
Dec
2
asked How can I convert the result of this postgres db query into json to return to my jquery call?
Nov
14
comment Replace placeholders with text - C ?
This is a good answer too. Reminds me of my Compiler homework using finite automata.
Oct
14
comment When do you want to use pointers vs values in C++?
@GMan, tried to clear it up so you could understand it ;).
Oct
14
revised When do you want to use pointers vs values in C++?
added 33 characters in body
Oct
14
comment When do you want to use pointers vs values in C++?
@GMan, I made one comparison between them as I found pointers to be similar to Java's Reference Variables. I then stated that I understood the behavior behind the 2 C++ methods of variable creation and the only question I wanted answered was when it was appropriate to use a particular one.
Oct
13
comment When do you want to use pointers vs values in C++?
@John Millikin, thank you for clearing up my post, you got my intention correct. I still sometimes stumble over C++ nomenclature.
Oct
13
comment When do you want to use pointers vs values in C++?
What do you call "Reference Objects", so I know the proper terminology? I didn't know so I just made something up.
Oct
13
asked When do you want to use pointers vs values in C++?
Oct
9
awarded  Teacher
Oct
9
answered How to find the Number of CPU Cores via .NET/C#?
Oct
9
asked How would you use the MVC pattern with Winforms when it comes to using ListViews?
Oct
9
asked How can I modify the backtracking algorithm so it can run on “and/or” graphs?
Sep
10
asked How can I continuously QueueUserWorkItems but without queuing them all at once?
Sep
10
asked How can I have many threads that need to know the next ID to process and then increment that number safely?
Sep
9
comment Could someone explain the math behind how this cube-rotating script works?
@Peter Parker, interesting. What do you think needs to be done to resolve the issue in the above script? Divide by z-coord like you suggested or?
Sep
9
revised How can I query rankings for the users in my DB, but only consider the latest entry for each user?
added 4 characters in body
Sep
9
asked How can I query rankings for the users in my DB, but only consider the latest entry for each user?
Sep
9
comment When scraping a lot of stats from a webpage, how often should I insert the collected results in my DB?
I'm using MSSQL, so I'm not sure how that will effect things.
Sep
9
comment When scraping a lot of stats from a webpage, how often should I insert the collected results in my DB?
I'm gathering statistics by visiting profile pages of a niche gaming website. I've gotten permission, as I plan to create a ladder ranking based on certain aspects of the users data each week.
Sep
9
asked When scraping a lot of stats from a webpage, how often should I insert the collected results in my DB?
Sep
8
asked How can I implement the unification algorithm in a language like Java or C#?
Sep
2
comment Should I use a generic ArrayList in Java even though it doesn’t provide any performance benefit?
@oxbow_lakes, it seems you simply saw "performance" and "java generics" and ignored the C# reference in the question. The OP stated that he wondered why Java programmers used generics other than type-safety in Java because they dont have a performance improvement like C# does over its non-generic counterparts (by keeping the type information and not performing casts). Granted, type-safety is still reason enough to use them but you seemed of mis-understood the question.
Sep
2
comment Should I use a generic ArrayList in Java even though it doesn’t provide any performance benefit?
@oxbow_lakes, It isn't just collections of primitives that there is a performance difference. You were most likely downvoted because you stated that generics "have nothing to do with performance" in bold, when this isn't true of C# generics, which was the OPs point. And we aren't talking microseconds of performance, we are talking at least a 2x speed up when doing many operations. Not having the autoboxing / unboxing is huge.
Jul
26
awarded  Popular Question