Mike Daniels

907
reputation
176 views

Registered User

name Mike Daniels
member for 8 months
seen 11 hours ago
website
location US
age 25
Recent CS graduate just started at a really cool first job. I am fairly proficient with Java and trying to get more familiar with C++. I'm interested in graphics, game development, and artificial intelligence.
11h
comment How to get the details using telnet API
Are you actually looking for information about web servers?
Dec
10
comment What is the purpose of the “salt” when hashing?
All that does is increase the time needed to generate the rainbow table. Once I have the table, a lookup of hash(salt + hash(salt + password)) is no slower than a lookup of hash(salt + password).
Dec
10
comment What is the purpose of the “salt” when hashing?
@StrixVaria: How would re-concatenating the salt and re-hashing be any different than simply concatenating the salt multiple times? I don't think this would lend you any extra security.
Dec
10
answered What is the purpose of the “salt” when hashing?
Dec
9
comment Eclipse RCP: Only one Job runs at a time?
Will the job manager still enforce scheduling rules for jobs that are finishing asynchronously? I would hope that it does (and I assume this is what calling done() helps accomplish) but I'd like to be sure.
Dec
9
asked Eclipse RCP: Only one Job runs at a time?
Dec
8
accepted What does AtomicReference.compareAndSet() use for determination?
Dec
8
answered What does AtomicReference.compareAndSet() use for determination?
Dec
7
comment circle-circle collision problem
Look at your previous questions on your profile. You'll see check marks next to each answer. Click the check mark for the answer you want to accept as the best, most helpful one.
Dec
7
answered How to prevent newline/line break within a <form></form>?
Dec
6
awarded  Mortarboard
Nov
10
answered calling the user attention outside of app
Nov
8
awarded  Great Answer
Oct
22
comment Why Does This Improve Performance?
The last index is the one where the data would be sequentially ordered, not the first.
Oct
22
comment Why Does This Improve Performance?
See here: stackoverflow.com/questions/997212/…
Oct
7
answered What is the correct way to write HTML using Javascript?
Oct
7
comment Is it Possible to Force a Login Depending on the IP Address?
He is looking to ALLOW robots and DENY others. This will not help.
Sep
28
comment How do you cope with work-related mood swings?
Sounds like your workplace sucks. Quit.
Sep
24
comment A Good and SIMPLE Measure of Randomness
Possible starting point: en.wikipedia.org/wiki/Randomness_tests
Sep
23
answered Which word do you use to describe a JSON-like object?
Sep
18
answered Why aren’t Floating-Point Decimal numbers hardware accelerated like Floating-Point Binary numbers?
Sep
18
comment Does it make sense to permanently delete versions from a VCS as part of a normal development process?
Fortunately, because of the way ClearCase merges work, removing the "source" version of a merge doesn't mangle the versions following the destination version of a merge.
Sep
18
comment What common algorithms are used for C’s rand()?
@Aaron: If that were the case, it wouldn't be a very good random number generator. What you'd have in that case is sampling without replacement.
Sep
18
revised Does it make sense to permanently delete versions from a VCS as part of a normal development process?
Clarification.
Sep
18
asked Does it make sense to permanently delete versions from a VCS as part of a normal development process?
Sep
18
revised Decrypting and Encrypting Java String
edited tags
Sep
17
comment What technique in functional programming is difficult to learn but useful afterwards?
@reinier: Looks like tail recursion to me. With many compilers, you've only created an infinite loop!
Sep
15
comment Is there a programmatic way to check stack corruption
If this is purely for debugging purposes, there must be a better way than rolling your own solution. If this is for PRODUCTION purposes, you'd be better off fixing the cause instead of trying to detect the symptom.
Sep
15
answered What to ask/do when attending a conference full of our target users
Sep
15
comment How do scripting languages use sockets?
You'd run your Python (or whatever) program just like any other program. If you're talking about what happens when there's a web server like Apache involved, the web server itself invokes your script.
Sep
15
awarded  
Sep
14
accepted Odds of 1st, 2nd, 3rd place
Sep
14
answered Odds of 1st, 2nd, 3rd place
Sep
9
comment JVM instruction set CPU cycles & byte size
There are multiple JVMs that run on Windows, so a simple benchmark of "a Windows machine" wouldn't be adequate. Such a benchmark would only give you information about a particular JVM in that environment.
Sep
8
comment Fibonacci Code Golf
Half the people who've commented so far have apparently never seen any other code golf question and really don't "get it". Try clicking the code-golf tag and see what we're all talking about.
Sep
8
comment Should I make all my java code threadsafe ?
+1. Additionally, thread-safety generally comes with a performance penalty. I generally try to document classes that are thread-unsafe when they're sharing a package with other classes that ARE largely thread-safe, so that the exceptions to the norm are obvious.
Sep
7
awarded  Organizer
Sep
6
comment parsing and editing html in php
You, sir, are a mind reader.
Sep
5
answered How is the == operator implemented in Java?
Sep
4
comment Is wrapping code into a function that doesn’t need to be, bad in PHP?
StackOverflow is not 4chan.
Sep
4
comment C#, how to handle constant tables
He wants to look up values in a multidimensional table. There is no way you could use enumerations for this.
Sep
4
comment Optimizing points distance to sphere test.
Exactly. Compare the square of the distance to the center point with the square of the radius.
Sep
1
comment Continuous Horizontal scrolling Javascript
Not much of a web developer, are you, Sai Sherlekar?
Aug
30
answered In java Can objects be created with both static memory allocation and dynamic memory allocation?
Aug
26
comment Read joystick from Flash
Gamepads are not rare.
Aug
25
comment C# - writing method blocks…
You can use the return keyword in void methods to return immediately.
Aug
21
comment C#: Is this field assignment safe?
This is nice. I am pretty sure Java's compilers don't do any such thing, and it's based only on the ordering.
Aug
11
comment Most common checked and unchecked Java Exceptions?
I think you mean IllegalArgumentException.
Aug
11
awarded  Guru
Aug
11
answered Will using goto cause memory leaks?