mmyers

22,491
reputation
2975 views

Registered User

name mmyers
member for 1 year
seen 35 mins ago
website
location USA
age
Let's see, an interesting fact about me... Ok, I don't have a blog. That's pretty interesting, isn't it?

Oh, and I don't like filling out forms. Sometimes I just make up stuff to put in them (as a random example, I might say I was born in 1920).


35m
revised Find a new job or go back to old one?
edited tags
1h
revised Hidden Features of Erlang
deleted 24 characters in body; edited tags
1h
revised Where can I find the best online documentations for these languages?
edited tags
1h
revised Online database dumps for the public.
edited tags; edited tags; edited title
1h
revised Ways of producing XML in Java
edited tags
1h
revised Good / Cheap / Fast: Which two?
added 2 characters in body; edited tags
1h
revised What types of solutions are applicable to real-time controller tasks?
edited body; edited tags
1h
revised What’s the most elegant 10-20 line function you’ve seen/written?
added 2 characters in body; edited tags
1h
revised Which music does a programer listen to?
deleted 71 characters in body; edited tags; edited title
1h
revised What is a “lambda” ?
added 4 characters in body; edited tags
1h
revised Is it a good idea to take an MS Cert Exam?
added 1 characters in body; edited tags
1h
revised How to read mentally Lisp/Clojure code
edited body; edited tags
1h
revised Can this query be done without a loop?
improved title and removed unnecessary apology
2h
revised How to do JavaScript object introspection?
linked the links
6h
comment Does the String pool take local variables?
+1 for "(updating) - be right back!"?
6h
answered Does the String pool take local variables?
Dec
11
comment MBA in football management for software engineers
@cherouvim: Think outside your own borders; the U.S. is a country too! (Nothing personal, but I've always wanted to find a reason to say that.)
Dec
11
revised Is it recommended to use the <base> html tag?
deleted 10 characters in body
Dec
11
revised Are there applications that can crunch numbers without an OS
improved readability a bit
Dec
11
revised Converting a string to int in C#
added 9 characters in body; edited tags; edited title
Dec
10
comment What is the purpose of the “salt” when hashing?
Salt makes your hash taste much better, that's why.
Dec
10
comment Java ArrayList not allowing me to add from outside constructor
What we really like to see is the smallest possible amount of code that clearly demonstrates the problem.
Dec
10
revised Java ArrayList not allowing me to add from outside constructor
added 114 characters in body; edited tags; edited title; edited title
Dec
10
comment Java ArrayList not allowing me to add from outside constructor
No need to be condescending to someone because they don't know things that you know.
Dec
10
revised I’m trying to do Ackermann’s Function on IBasic
added 19 characters in body; edited title
Dec
10
comment Switching from Java to .NET from a career change point of view
That's nice of you, but this is not an answer to your question.
Dec
10
comment type* var Vs. type *var - which one is better?
I've also seen :-*, but that doesn't prove anything.
Dec
10
comment which is the BEST way to optimize a web site for faster download and SEO
And enable gzip if possible.
Dec
10
comment javascript for() loop, split(), and array question
The answer is "yes". There's not much else to say.
Dec
10
comment Typing polymorphic values with multiple interfaces in C#
I don't think that was actually his question. I think he was wondering about the List.
Dec
10
revised LINQ statement All checks syntax problem
formatted error (important things were getting stripped out); edited tags
Dec
10
comment Development of Visual Studio IDE
I would expect most IDE developers use their own IDEs to develop (with the possible exception of dynamic language IDEs).
Dec
10
comment Development of Visual Studio IDE
They're using VS 2012 to develop VS 2010 right now.
Dec
10
comment Typing polymorphic values with multiple interfaces in C#
Score a point for Java generics (finally).
Dec
10
comment PHP Newbie… What am I doing wrong?
Gotta love dynamic languages here.
Dec
9
revised Bash Scripting General Questions (conditionals and variable passing)
edited tags; edited title
Dec
9
revised How do I overload the I/O operators C++ (edited again)? Can anyone plz help?
it's not *that* much harder to type...
Dec
9
revised Another Lisp function refinement
added 37 characters in body; edited tags; edited title
Dec
9
revised Searching through an ArrayList
appears to be Java
Dec
9
comment How do you manage to do personal projects outside work?
It's easier for me because if I weren't working on my game, I'd be playing it.
Dec
9
comment Does anyone have experience with gcc’s LTO (C++)?
Link-time optimization?
Dec
9
comment regular expression to parse links from html code
Obligatory link: stackoverflow.com/questions/1732348/…
Dec
9
comment Better way to count things?
I'm not that familiar with the STL, but isn't there any ordered map around?
Dec
9
comment Better way to count things?
Is it required to use a vector? It seems much more logical to simply return the map.
Dec
9
comment Is it possible to change the priority of garbage Collector thread?
Is thread priority really the only reason it might not run?
Dec
8
accepted In Java what do arrays inherit from? Can I do this?
Dec
8
revised Drag a link into a batch file
added 64 characters in body; edited tags; edited title; edited title
Dec
8
comment Which C# compiler errors are undocumented?
@leppie, this question sounds like "What undocumented errors are documented in MSDN?" Maybe you could rephrase it to be clearer about the MSDN part if that's not what you're asking.
Dec
8
comment Set the LSB of Java java.awt.Color RGB components
Yes, how is this different from calling setBlue() on a Color object (assuming RGB space)?
Dec
8
comment Why should I not try to use “this” value after “delete this”?
Are comparisons not included in the word "using"? If they are included, then if (p == NULL) would only be valid if p is, in fact, NULL - a rather strange situation.