Jason S
|
Registered User
|
|
|
9h |
answered | Need HELP in converting MySQL to MySQLI in my PHP script? |
|
13h |
answered | How to make sure I’m using the “server” JVM? |
|
1d |
comment |
What does this obfuscated Perl code do? ??? doesn't look like a regex to me |
|
1d |
comment |
Concatenating Variable Names in C? sure, but now you've written code that is valid C but not valid C++, something that is rather rare. |
|
1d |
asked | non-jquery javascript cross-browser livesearch/autocomplete |
|
2d |
comment |
What’s the limit to the number of members you can have in a java enum? try inserting some newlines and see if the error still occurs... |
|
2d |
comment |
What’s the limit to the number of members you can have in a java enum? ALABAMA, ALASKA, ARIZONA, ARKANSAS, CALIFORNIA, COLORADO, CONNECTICUT.... |
|
2d |
comment |
Are there any good reasons NOT to use jQuery instead of plain old JavaScript? 'sick' in that sense is not common usage, i thought you meant 'slick' |
|
2d |
comment |
How much thread-safety is too much? @lukem00: looping in this manner is a standard methodology for lock-free algorithms |
|
2d |
revised |
MySQL database structure: more columns or more rows? spelling |
|
Nov 30 |
comment |
best way to determine lower/uppercase in PHP? cletus: why'd you delete? I was just about to upvote your answer. |
|
Nov 30 |
comment |
best way to determine lower/uppercase in PHP? sweet -- thanks! |
|
Nov 30 |
comment |
Why are professors or schools picking Java over C++ to teach to students? please convert to community wiki |
|
Nov 30 |
asked | best way to determine lower/uppercase in PHP? |
|
Nov 29 |
comment |
Is there a use case for creating threads without synchronization and locks? in the webserver case, there may be dozens of concurrent requests going on simultaneously. Handling them each to completion, one at a time, subtracts from the server's responsiveness. Even if the server's processing is quick, there's still the bottleneck of I/O: a server in Seattle may be waiting for a slow computer in Tallahassee to say what it wants. It's possible to write a server that manages non-blocking I/O concurrently without delegating to threads -- e.g. with select() -- but it would basically require the same kind of bookkeeping that the system kernel knows how to do anyway. |
|
Nov 29 |
comment |
Is there a use case for creating threads without synchronization and locks? when you do a load of laundry, do you sit and wait while the washing machine does its thing, or do you use your time to do other things and let the washing machine signal you when it's done? If you find yourself writing a program that has to wait for something, when it could be making progress with something else, that's probably a good case for using a thread. (but please note i'm not an expert on the subject) |
|
Nov 29 |
revised |
Is there a use case for creating threads without synchronization and locks? added 440 characters in body; added 34 characters in body; added 51 characters in body |
|
Nov 29 |
answered | Is there a use case for creating threads without synchronization and locks? |
|
Nov 29 |
comment |
MySQL forbids me to make my colleague look like a moron - or how MySQL forgets table names in an order by statement in a select union Suggest you change the title. It's funny but not helpful to users searching for serious info. |
|
Nov 28 |
comment |
Algorithm for logarithmically converting a number to a percentage some suggestions here: (a) translate percentages to numbers, e.g. "50%" = 0.5, "100%" = 1.0 -- you can always get back to percentages by multiplying by 100. (b) as Stanislav has pointed out, if you mean "asymptotically" rather than "logarithmically", please edit your question accordingly. (c) Please state the input range for your function clearly. Is it 0 to infinity, or -infinity to +infinity? We are having trouble understanding what it is that you want. |
|
Nov 28 |
comment |
Algorithm for logarithmically converting a number to a percentage @Jed: the "this makes no sense" was referring to Brent's comment, not your answer. Didn't mean to criticize your answer. |
|
Nov 28 |
comment |
Algorithm for logarithmically converting a number to a percentage assuming the desired behavior for y=f(x) is (a) f(0)=0, (b) f(1)=0.5, and (c) lim x->infinity f(x) = 1, I nominate this answer as the best simple answer. I was trying to think of a function involving just add/subtract/multiply/divide that would work but had a brain cramp. |
|
Nov 28 |
comment |
Algorithm for logarithmically converting a number to a percentage @Brent: this makes no sense. please reword your question to accurately say what it is you want. The above graph approaches 1 at x=1. You mention in your question you want y to approach 1 as x approaches infinity, and you want y = 0.5 when x = 1. |
|
Nov 28 |
comment |
Algorithm for logarithmically converting a number to a percentage @cobbal: what software are you using? neat graphs! |
|
Nov 28 |
answered | Algorithm for logarithmically converting a number to a percentage |
|
Nov 28 |
comment |
Is it worth switching to IBM Jikes (java) compiler "ant", not "ants" |
|
Nov 28 |
comment |
cms for picture management website? UGH -- Drupal requires tinkering, whether you're doing coding or not. It's not aimed at plug-and-play users, I don't know of any CMS that is. |
|
Nov 28 |
comment |
How find a variable value in MOD expression? from nowhere? "6": see the answer, 2^6 is a particular solution of the equation. "10": again, see the answer, the cycle repeats every 10 powers of 2. |
|
Nov 28 |
comment |
How find a variable value in MOD expression? "belongs on mathoverflow" : no way! You post something like this and it will get closed before you can say "Abelian group" -- mathoverflow is for mathematician discussion for people who are already very familiar with mathematical topics. |
|
Nov 27 |
accepted | How can i get around the same origin policy? |
|
Nov 27 |
answered | How can i get around the same origin policy? |
|
Nov 26 |
revised |
Java BigInteger prime numbers added 108 characters in body |
|
Nov 26 |
comment |
Java BigInteger prime numbers the math is willing, but the fleshing out is weak |
|
Nov 26 |
comment |
Java BigInteger prime numbers doh, i'm having a bad day :-) |
|
Nov 26 |
revised |
Java BigInteger prime numbers added 64 characters in body; added 4 characters in body; added 36 characters in body |
|
Nov 26 |
revised |
Java BigInteger prime numbers deleted 12 characters in body; edited body |
|
Nov 26 |
comment |
Java BigInteger prime numbers thanks, i forgot about that |
|
Nov 26 |
revised |
Java BigInteger prime numbers added 619 characters in body; added 7 characters in body; deleted 22 characters in body |
|
Nov 26 |
answered | Java BigInteger prime numbers |
|
Nov 26 |
comment |
accessing an object array item, java "class names must be capitalized" -- not true -- it's a convention, along with making variable names start with a lowercase letter, that makes it easy to distinguish the two. |
|
Nov 25 |
comment |
Closures in Java - syntax differences between the three major proposals? +1 -- I had thought (along with everyone else :-) that JDK7 closures were dead... |
|
Nov 25 |
comment |
Closures in Java - syntax differences between the three major proposals? I was going to post myself but you beat me to it. :-) |
|
Nov 25 |
comment |
C++ programming question looks like gf beat me to the punch. :-) |
|
Nov 25 |
comment |
C++ programming question use verbose mode, here, i'll give you a hand... |
|
Nov 24 |
comment |
In C is “i+=1;” atomic? is that really in the C standard? (or just one of the standard libraries) |
|
Nov 24 |
revised |
How do I get the latest updated revision via SVN? added 318 characters in body |
|
Nov 24 |
accepted | How do I get the latest updated revision via SVN? |
|
Nov 24 |
answered | How do I get the latest updated revision via SVN? |
|
Nov 24 |
answered | In C is “i+=1;” atomic? |
|
Nov 24 |
awarded | ● Popular Question |
