User caskey - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T17:06:13Zhttp://stackoverflow.com/feeds/user/114986http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1358412/is-there-a-good-interactive-3d-graph-library-out-there/1369469#1369469-1Answer by caskey for Is there a good interactive 3D graph library out there?caskey2009-09-02T18:47:12Z2009-09-02T18:47:12Z<p>The Eclipse Graphics Editing Framework / GEF</p>
<p><a href="http://www.eclipse.org/gef/" rel="nofollow">http://www.eclipse.org/gef/</a></p>
<p>Unfortunately designed for building graph-oriented guis inside of eclipse. Some ruminations have been made on externalizing the library.</p>
http://stackoverflow.com/questions/1358412/is-there-a-good-interactive-3d-graph-library-out-there/1369451#1369451-1Answer by caskey for Is there a good interactive 3D graph library out there?caskey2009-09-02T18:44:30Z2009-09-02T18:44:30Z<p>TouchGraph</p>
<p><a href="http://sourceforge.net/projects/touchgraph/" rel="nofollow">http://sourceforge.net/projects/touchgraph/</a></p>
http://stackoverflow.com/questions/1197863/possible-to-calculate-closest-locations-via-lat-long-in-better-than-on-time/1197926#11979262Answer by caskey for Possible to calculate closest locations via lat/long in better than O(n) time?caskey2009-07-29T03:34:09Z2009-07-29T03:34:09Z<p>If the data set being searched is static, e.g., the coordinates of all gas stations in the US, then a proper index (BSP) would allow for efficient searching. Postgres has had good support since the mid 90's for 2-dimensional indexed data so you can do just this sort of query.</p>
http://stackoverflow.com/questions/1180974/proxypass-proxyreverse-vs-ajp/1181049#11810491Answer by caskey for ProxyPass, ProxyReverse vs AJPcaskey2009-07-25T02:47:02Z2009-07-25T02:47:02Z<p>Do it like this:</p>
<p>in the apache config:</p>
<pre><code><Location /foo>
ProxyPass ajp://localhost:8009/foo
ProxyPassReverse ajp://localhost:8009/foo
</Location>
</code></pre>
<p>And then in your server.xml:</p>
<pre><code><Connector port="8009"
enableLookups="false" secure="true" URIEncoding="UTF-8"
tomcatAuthentication="false"
protocol="AJP/1.3" />
</code></pre>
<p>That should pass everything through. The AJP protocol passes the info, but http: doesn't.</p>
<p>You may not want secure="true", I use that because SSL is handled at the apache layer and I need tomcat to know that the connection should be considered a secure one.</p>
http://stackoverflow.com/questions/1180849/signed-angle-in-3d-vectors/1180960#11809600Answer by caskey for Signed Angle in 3D Vectorscaskey2009-07-25T01:57:48Z2009-07-25T01:57:48Z<p>Unfortunately not using the computation above. One way would be to do a projection of the camera vector onto a D-1 surface tangent to the sphere then examine the resulting vector to see which way it is pointing.</p>
http://stackoverflow.com/questions/1168325/programming-languages-complexity/1168372#11683722Answer by caskey for Programming languages complexitycaskey2009-07-22T21:31:07Z2009-07-23T13:35:36Z<p>The best measure I've seen of a language is the probability that a random string will be a valid program. Perl is a language that ranks high on this scale, Ada ranks rather low.</p>
<p>What this metric <em>means</em> is another issue entirely.</p>
http://stackoverflow.com/questions/1168283/how-to-go-about-catching-database-and-software-version-mismatch-on-deployed-appli/1168400#11684001Answer by caskey for How to go about catching database and software version mismatch on deployed application?caskey2009-07-22T21:36:19Z2009-07-22T21:36:19Z<p>The use case of a person having the app open for so long that a new, incompatible rollout of the app occurs and the database schema (or interpretation) is modified in a structurally compatible, but semantically incompatible way seems pretty narrow.</p>
<p>Having a schemaInfo table with and having two tuples, one with the current schema version and another with the last compatible version is going to catch the vast majority of cases while not overly complicating your application.</p>
<p>Checking on every write would be a horrible mess, if you're really concerned about the scenario, have a timer go off every hour or two that checks the table version and pops up a dialog warning the user to get a new version.</p>
<p>Even better you could simply bounce the DB forcing all existing sessions to disconnect once you've finished a schema change.</p>
http://stackoverflow.com/questions/1168317/check-status-of-one-port-on-remote-host/1168378#11683780Answer by caskey for check status of one port on remote hostcaskey2009-07-22T21:32:05Z2009-07-22T21:32:05Z<p>nc or 'netcat' also has a scan mode which may be of use.</p>
http://stackoverflow.com/questions/1168345/why-does-this-and-super-have-to-be-the-first-statement-in-a-constructor/1168365#1168365-2Answer by caskey for Why does this() and super() have to be the first statement in a constructor?caskey2009-07-22T21:29:26Z2009-07-22T21:29:26Z<pre><code>class A {
private final int x;
public A(int x_) { x = x_; }
public getX() { return x; }
}
class B extends A {
private int y = getX();
public B {
System.out.println("What is this:" + y);
super(10);
}
}
</code></pre>
http://stackoverflow.com/questions/1167942/why-does-perls-filecopy-silently-fail-on-windows-2008/1167986#11679868Answer by caskey for Why does Perl's File::Copy silently fail on Windows 2008?caskey2009-07-22T20:17:13Z2009-07-22T20:23:38Z<p>From the <a href="http://search.cpan.org/perldoc?File::Copy" rel="nofollow">documentation</a>:</p>
<blockquote>
<p>
<h3>
RETURN
</h3>
<p>
All functions return 1 on success, 0 on failure. $! will be set
if an error was encountered.
</p>
</blockquote>
<p>The example fails silently because nothing is checking what $! is on failure. Try this:</p>
<pre><code>move($from, $to) || die "Failed to move files: $!";
</code></pre>
http://stackoverflow.com/questions/1160925/sharedbuffer-20mb-can-not-start-database/1161117#11611172Answer by caskey for Shared_buffer > 20mb can not start database?caskey2009-07-21T19:06:31Z2009-07-21T19:06:31Z<p>I imagine you are reaching the limit of shared memory regions.</p>
<p>Check /proc/sys/kernel/shmall and /proc/sys/kernel/shmmax.</p>
<p>More info here:
<a href="http://www.redhat.com/docs/manuals/database/RHDB-7.1.3-Manual/admin_user/kernel-resources.html" rel="nofollow">http://www.redhat.com/docs/manuals/database/RHDB-7.1.3-Manual/admin_user/kernel-resources.html</a></p>
http://stackoverflow.com/questions/1161045/test-to-see-if-a-socket-is-open-in-linux/1161090#11610902Answer by caskey for Test to see if a socket is open in linuxcaskey2009-07-21T19:02:41Z2009-07-21T19:02:41Z<p>How about a loop where you read the commands:</p>
<pre><code>setup_socket();
while(1)
{
listen();
newfile_descriptor = accept();
int command
command = read(newfile_descriptor,&command,sizeof(int));
while(command) {
switch(command)
{
...
}
// get next command, or figure out closed connection
command = read(newfile_descriptor,&command,sizeof(int));
}
}
</code></pre>
http://stackoverflow.com/questions/1161059/problems-of-measuring-programmer-productivity/1161080#11610802Answer by caskey for Problems of Measuring Programmer Productivity...caskey2009-07-21T18:59:48Z2009-07-21T18:59:48Z<p>The right measure is the accuracy of delivery vs. prediction. If you say that you will deliver X features by Y date at Z cost, the <em>variance</em> of actual X, Y, Z is what measures your quality as a programmer.</p>
<p>Whenever you make a commitment to someone, write it down, then go back and look at how accurate your commitments and estimates are. Refine your process to make them as realistic as possible.</p>
http://stackoverflow.com/questions/1160963/how-to-enumerate-all-ip-addresses-attached-to-a-machine-in-posix-c/1161018#11610185Answer by caskey for How to enumerate all IP addresses attached to a machine, in POSIX C?caskey2009-07-21T18:50:45Z2009-07-21T18:56:34Z<p>This can only be done in an operating system dependent fashion. You could try parsing the output of 'iptables', but the <em>right</em> answer for linux is to use ioctl.</p>
<blockquote>
<pre><code>SIOCGIFCONF takes a struct ifconf *. The ifc_buf field points to a
buffer of length ifc_len bytes, into which the kernel writes a list of
type struct ifreq [].
</code></pre>
</blockquote>
<p>The struct ifreq is documented in linux/if.h:</p>
<pre><code>struct ifreq
{
#define IFHWADDRLEN 6
union
{
char ifrn_name[IFNAMSIZ]; /* if name, e.g. "en0" */
} ifr_ifrn;
union {
struct sockaddr ifru_addr;
struct sockaddr ifru_dstaddr;
struct sockaddr ifru_broadaddr;
struct sockaddr ifru_netmask;
struct sockaddr ifru_hwaddr;
short ifru_flags;
int ifru_ivalue;
int ifru_mtu;
struct ifmap ifru_map;
char ifru_slave[IFNAMSIZ]; /* Just fits the size */
char ifru_newname[IFNAMSIZ];
void * ifru_data;
struct if_settings ifru_settings;
} ifr_ifru;
};
</code></pre>
<p>As you can see, it contains the address information you desire.</p>
http://stackoverflow.com/questions/1160757/chain-locking-via-lock/1160895#11608951Answer by caskey for Chain Locking via Lockcaskey2009-07-21T18:29:50Z2009-07-21T18:29:50Z<p>Any situation where you have a series of critical sections which are mutually independent, but you wish to execute in order would be appropriate.</p>
<p>Think of this like a burrito bar, you have a queue of consumers, and four or so workers on the other side. You don't want any consumers to skip ahead of others, nor do you want any of the workers to serve more than one consumer at a time. You could create queues between each server, however you know that the pipeline is strictly sequential, and sometimes that abstraction isn't the best representation in code.</p>
<p>HOWEVER, you may have exceptional handling where you want to be able to acquire one of the stages of the pipeline. E.g., the cashier at the end. If someone comes in for a gift-card, they could skip the queue and go straight to the cashier. This model reduces average wait times/latency, while providing the necessary locks and sequencing guarantees for other workers.</p>
<p>As with anything in computing, there are many ways to achieve the same effect, however the cognitive distance between the domain model and the implementation model impacts code clarity. Therefore if you have an application where you want to ensure that you don't release one resource before you have acquired the next in the sequence, a lock chain is a convenient solution.</p>
<p>Finally, don't forget that the synchronized capability of java is strictly nested, you can only release a lock in the order you acquired it. Not ideal if you have long complicated pipelines.</p>
http://stackoverflow.com/questions/1140233/oreilly-safari-books-alternatives/1140249#11402492Answer by caskey for O'Reilly Safari Books Alternatives?caskey2009-07-16T20:56:29Z2009-07-16T20:56:29Z<p>I also have the full library and yes it is expensive, but as dragthor says, it's worth every penny. As for cheaper, if you are an ACM member, and you get the digital library, it includes some safari access as well. But you may find moving from the full library to the bookshelf version very, um, hampering.</p>
http://stackoverflow.com/questions/1140225/java-output-a-file-to-the-screen/1140241#11402411Answer by caskey for Java output a file to the screencaskey2009-07-16T20:54:48Z2009-07-16T20:54:48Z<p>You need to create a 'download' servlet which writes the file to the response output stream with correct mime types. You can not reliably do this from within a .jsp file.</p>
<p>We usually do it with a 'download servlet' which we set the servletmapping to /downloads, then append path info to identify the asset to serve. The servlet verifies the request is valid, sets the mime header then delivers the file to the output stream. It's straightforward, but keep the J2EE javadocs handy while doing it.</p>
http://stackoverflow.com/questions/1095741/general-purpose-build-tool-with-good-java-support/1095779#10957791Answer by caskey for General purpose build tool with good Java support?caskey2009-07-08T01:55:22Z2009-07-08T01:55:22Z<p>I recommend Hudson as a general build management solution. You configure jobs and we point it at our revision control system to watch for checkins. It has strong java support, but can run any job as the build process, including chaining of jobs together.</p>
http://stackoverflow.com/questions/1072455/how-do-i-get-millis-since-midnight-utc-in-c/1072480#10724801Answer by caskey for How do I get millis since midnight UTC in C? caskey2009-07-02T04:26:27Z2009-07-02T04:26:27Z<p>You use gettimeofday(2) which is defined in POSIX.1 and BSD.</p>
<p>It returns seconds and microseconds as defined in struct timeval from sys/time.h.</p>
http://stackoverflow.com/questions/1071456/sequence-combinations/1071466#10714660Answer by caskey for Sequence combinationscaskey2009-07-01T21:24:41Z2009-07-01T21:24:41Z<p>6 raised to the 4th power</p>
<p>6 choices * 6 choices * 6 choices * 6 choices</p>
http://stackoverflow.com/questions/1067226/c-multi-line-macro-do-while0-vs-scope-block/1067238#106723811Answer by caskey for C multi-line macro: do/while(0) vs scope blockcaskey2009-07-01T04:11:14Z2009-07-01T04:11:14Z<p>Answer found in google's first hit:
<a href="http://bytes.com/groups/c/219859-do-while-0-macro-substitutions" rel="nofollow">http://bytes.com/groups/c/219859-do-while-0-macro-substitutions</a></p>
<p>Andrey Tarasevich:</p>
<p>The whole idea of using 'do/while' version is to make a macro which will
expand into a regular statement, not into a compound statement. This is
done in order to make the use of function-style macros uniform with the
use of ordinary functions in all contexts.</p>
<p>Consider the following code sketch</p>
<pre><code>if (<condition>)
foo(a);
else
bar(a);
</code></pre>
<p>where 'foo' and 'bar' are ordinary functions. Now imagine that you'd
like to replace function 'foo' with a macro of the above nature</p>
<pre><code>if (<condition>)
CALL_FUNCS(a);
else
bar(a);
</code></pre>
<p>Now, if your macro is defined in accordance with the second approach
(just '{' and '}') the code will no longer compile, because the 'true'
branch of 'i' is now represented by a compound statement. And when you
put a ';' after this compound statement, you finished the whole 'if'
statement, thus orphaning the 'else' branch (hence the compilation error).</p>
<p>One way to correct this problem is to remember not to put ';' after
macro "invocations"</p>
<pre><code>if (<condition>)
CALL_FUNCS(a)
else
bar(a);
</code></pre>
<p>This will compile and work as expected, but this is not uniform. The
more elegant solution is to make sure that macro expand into a regular
statement, not into a compound one. One way to achieve that is to define
the macro as follows</p>
<pre><code>#define CALL_FUNCS(x) \
do { \
func1(x); \
func2(x); \
func3(x); \
} while (0)
</code></pre>
<p>Now this code</p>
<pre><code>if (<condition>)
CALL_FUNCS(a);
else
bar(a);
</code></pre>
<p>will compile without any problems.</p>
<p>However, note the small but important difference between my definition
of 'CALL_FUNCS' and the first version in your message. I didn't put a
';' after '} while (0)'. Putting a ';' at the end of that definition
would immediately defeat the entire point of using 'do/while' and make
that macro pretty much equivalent to the compound-statement version.</p>
<p>I don't know why the author of the code you quoted in your original
message put this ';' after 'while (0)'. In this form both variants are
equivalent. The whole idea behind using 'do/while' version is not to
include this final ';' into the macro (for the reasons that I explained
above).</p>
http://stackoverflow.com/questions/1066749/open-source-distributed-computing-cloud-computing-frameworks/1066813#10668130Answer by caskey for Open source distributed computing/cloud computing frameworkscaskey2009-07-01T00:43:45Z2009-07-01T00:43:45Z<p>Depends on if you want to run the machines or let others run your workers. I don't know o f the latter, but Hadoop and map-reduce would be a way to do the former.</p>
http://stackoverflow.com/questions/1065503/how-do-you-determine-if-a-file-is-html-from-the-url/1065516#10655167Answer by caskey for How do you determine if a file is html from the URL?caskey2009-06-30T19:23:18Z2009-06-30T19:23:18Z<p>You can not. There is nothing wrong with serving up html files with urls that end in .jpeg, or .gif or even .mp3. The only way to know is to fetch the url and view the Content-Type header to see if it is text/html (but that isn't even 100% accurate because of poorly configured web servers).</p>
http://stackoverflow.com/questions/1060088/source-control-repository-per-client-or-per-application/1060105#10601058Answer by caskey for Source Control Repository - Per Client or Per Application?caskey2009-06-29T19:40:54Z2009-06-29T19:40:54Z<p>You need to be able to deliver the full source control repo to the customer as it is probably their work product (e.g., work-for-hire). I recommend using one repo per customer. I had them all in one area //depot/clients/CorpA, //depot/clients/cust-b, etc.</p>
<p>Made it easy for me to burn a CD with their project at the end of a contract, and by deleting the entire tree I could provide reliable assurance that I had destroyed all my copies of their IP.</p>
http://stackoverflow.com/questions/1060052/java-lang-internalerror-location-with-invalid-code-index-what/1060089#10600891Answer by caskey for java.lang.InternalError: Location with invalid code index... What?caskey2009-06-29T19:38:27Z2009-06-29T19:38:27Z<p>Does the JRE used by your emulator match the JDK version you built the code with? Since this is an internal error, either a mismatch has occurred, data corruption (e.g., the JPDA injection), or an actual bug in the JRE.</p>
<p>From the looks of the error, the failure is in trying to find the code line that matches up with the exception. If you turn off JPDA debugging, or run it outside of netbeans, do you get the error?</p>
http://stackoverflow.com/questions/1034230/why-does-maven-javadoc-fail-with-error-cannot-read-options/1034272#10342720Answer by caskey for Why does Maven javadoc fail with error "cannot read options"?caskey2009-06-23T18:21:57Z2009-06-23T18:21:57Z<p>I believe the problem is that the javadoc command is being run without any parameters. I ran into this in one of my multi-module projects where it was trying to javadoc a non-java module. (The javadoc was being requested by the parent, pom.)</p>
<p>Does the module in question have javadocs to be made? We finally moved to maven 2.1.0 and I haven't seen the problem reoccur.</p>
<p>Are your other team members also using maven 2.0.8?</p>
http://stackoverflow.com/questions/1033912/how-can-i-detect-hung-processes-in-linux-using-c/1033954#10339543Answer by caskey for How can I detect hung processes in Linux using C?caskey2009-06-23T17:22:07Z2009-06-23T17:22:07Z<p>Under linux the way to do this is by examining the contents of /proc/[PID]/* a good one-stop location would be /proc/*/status. Its first two lines are:</p>
<p>Name: [program name]
State: R (running)</p>
<p>Of course, detecting hung processes is an entirely separate issue.</p>
<p>/proc/<em>/stat is a more machine-readable format of the same info as /proc/</em>/status, and is, in fact, what the ps(1) command reads to produce its output.</p>
http://stackoverflow.com/questions/1015836/separating-objects-and-source-with-a-makefile/1015861#10158610Answer by caskey for Separating objects and source with a makefilecaskey2009-06-19T00:19:23Z2009-06-19T01:08:59Z<p>POSIX make doesn't support constructs like?</p>
<pre><code> objs/%.o : src/%.c
${CC} ${CFLAGS} -c $< -o $@
</code></pre>
<p>Forgot the question mark at the end, hope that makes my comment more clear.</p>
http://stackoverflow.com/questions/1015740/java-how-to-launch-systems-registered-application-for-a-url/1015756#10157560Answer by caskey for Java: How to launch system's registered application for a URLcaskey2009-06-18T23:43:27Z2009-06-18T23:43:27Z<p>Windows it's "start [URI]", OSX it's "open [URI]", Linux has no equivalent as it all depends upon their window manager.</p>
<p>As for whether itms:// opens iTunes, that all depends on their configuration.</p>
<p>Ivan's answer appears much better than mine.</p>
http://stackoverflow.com/questions/1015736/how-can-one-simulate-a-web-browser-or-just-the-flash-plugin-to-load-test-a-flas/1015748#10157482Answer by caskey for How can one simulate a web browser, or just the Flash plugin, to load-test a Flash-based web-application?caskey2009-06-18T23:41:56Z2009-06-18T23:41:56Z<p>All the server cares about is the sequence of requests, that's what you want to simulate. </p>
<p>If the SWF uses HTTP for its content requests, JMeter or siege would be some free tools that help with that. Otherwise there are many commercial load testing tools. I can tell you the one that my company uses costs "lots", but I tend to use JMeter or siege when I do my testing before handing off to QA.</p>
<p>If you are testing streaming media, that becomes a bit more complex and you will probably have to validate your system as individual components.</p>
<p>I suggest the Allspaw book to anyone trying to do load testing. </p>
<p><a href="http://my.safaribooksonline.com/9780596518578" rel="nofollow">http://my.safaribooksonline.com/9780596518578</a></p>
http://stackoverflow.com/questions/1229780/question-about-lru-cache-implementation-in-java/1229798#1229798Comment by caskey on Question about LRU Cache implementation in Javacaskey2009-08-06T19:06:11Z2009-08-06T19:06:11ZOops, yeah, sorry.http://stackoverflow.com/questions/1168345/why-does-this-and-super-have-to-be-the-first-statement-in-a-constructor/1168365#1168365Comment by caskey on Why does this() and super() have to be the first statement in a constructor?caskey2009-07-23T00:23:57Z2009-07-23T00:23:57ZBecause the question is in the question and I think it's reasonable to expect the reader has read the question before jumping to the answers.http://stackoverflow.com/questions/1168283/how-to-go-about-catching-database-and-software-version-mismatch-on-deployed-appli/1168400#1168400Comment by caskey on How to go about catching database and software version mismatch on deployed application?caskey2009-07-23T00:21:20Z2009-07-23T00:21:20ZIf you don't have persistent connections, then just check on each DB open.http://stackoverflow.com/questions/1168345/why-does-this-and-super-have-to-be-the-first-statement-in-a-constructor/1168365#1168365Comment by caskey on Why does this() and super() have to be the first statement in a constructor?caskey2009-07-22T21:42:06Z2009-07-22T21:42:06ZYou're welcome.http://stackoverflow.com/questions/1168345/why-does-this-and-super-have-to-be-the-first-statement-in-a-constructor/1168365#1168365Comment by caskey on Why does this() and super() have to be the first statement in a constructor?caskey2009-07-22T21:38:02Z2009-07-22T21:38:02ZSorry, didn't mean to make you think. It answers the very last question in the OP.
"Can you give a code example where, if the compiler did not have this restriction, something bad would happen?"http://stackoverflow.com/questions/1167942/why-does-perls-filecopy-silently-fail-on-windows-2008/1167986#1167986Comment by caskey on Why does Perl's File::Copy silently fail on Windows 2008?caskey2009-07-22T21:06:55Z2009-07-22T21:06:55ZI can see where you would think that. Perl just doesn't do things that way. There are more pieces you can pick up to make it happen: <a href="http://perldoc.perl.org/File/Path.html" rel="nofollow">perldoc.perl.org/File/Path.html</a>http://stackoverflow.com/questions/1167942/why-does-perls-filecopy-silently-fail-on-windows-2008/1167986#1167986Comment by caskey on Why does Perl's File::Copy silently fail on Windows 2008?caskey2009-07-22T20:54:42Z2009-07-22T20:54:42ZThe script may not be running in the same directory as the files. Either the source or destination must not exist. Don't forget that if you're moving to /a/b/c, /a/b must already exist.http://stackoverflow.com/questions/1120951/need-help-on-bmp-to-jpeg-conversionComment by caskey on Need help on BMP to JPEG conversioncaskey2009-07-13T17:41:42Z2009-07-13T17:41:42ZFinally an excellent technical question. Thank you Mark. Unfortunately I don't have the answer, but I hope someone does.http://stackoverflow.com/questions/1015736/how-can-one-simulate-a-web-browser-or-just-the-flash-plugin-to-load-test-a-flas/1015748#1015748Comment by caskey on How can one simulate a web browser, or just the Flash plugin, to load-test a Flash-based web-application?caskey2009-07-01T20:46:04Z2009-07-01T20:46:04Z@Triynko Sorry, but no matter what is going on, the web server never sees anything other than a series of HTTP requests. Whether they are generated by a web browser, flash app, javascript, or whatever, the server doesn't care. Functional testing may require the use of the flash app, but for load testing, the server doesn't care what's making the request.http://stackoverflow.com/questions/1060618/can-you-recommend-any-good-book-about-low-level-programming/1060700#1060700Comment by caskey on Can you recommend any good book about low level programming?caskey2009-06-29T21:47:02Z2009-06-29T21:47:02Z+1 The intel manuals are THE BEST place for information on CPU architecture. It is OS agnostic and they are detailed and thorough. You MAY want to start with the more basic manuals, such as the 8086 before reading the latest ones, mostly to save yourself from slogging through a few thousand pages.http://stackoverflow.com/questions/1033999/mobile-phone-survey-questionsComment by caskey on Mobile Phone Survey Questionscaskey2009-06-23T18:23:05Z2009-06-23T18:23:05ZIt's not programming related just because it asks questions of programmers. It's a market research/product development question.http://stackoverflow.com/questions/1015736/how-can-one-simulate-a-web-browser-or-just-the-flash-plugin-to-load-test-a-flas/1015748#1015748Comment by caskey on How can one simulate a web browser, or just the Flash plugin, to load-test a Flash-based web-application?caskey2009-06-19T01:12:10Z2009-06-19T01:12:10Z<i>sigh</i> Yes, JMeter is not a browser, however the browser is just a source of URL requests. You don't just point jmeter at the web page and magic happens, you use the jmeter proxy to record all the traffic between the browser and the web server. You then edit the output and turn that into a test suite that re-runs that traffic against your server according to your desires.
If you want a short answer: NO you can NOT do what you want to do the way you are trying to do it. YES you CAN achieve what you want using tools that are readily available. None of it is a point and click solution.http://stackoverflow.com/questions/1015736/how-can-one-simulate-a-web-browser-or-just-the-flash-plugin-to-load-test-a-flas/1015748#1015748Comment by caskey on How can one simulate a web browser, or just the Flash plugin, to load-test a Flash-based web-application?caskey2009-06-19T00:06:58Z2009-06-19T00:06:58ZI think you misunderstand. Tools like JMeter allow you to incorporate the timing and flow of the user into your test plan.http://stackoverflow.com/questions/996739/should-a-web-developer-use-css-3-when-ie6-has-15-of-market-share/996782#996782Comment by caskey on Should a web developer use CSS 3 when IE6 has 15% of market share?caskey2009-06-15T16:13:41Z2009-06-15T16:13:41Z@marcgg It depends on the company's market. Not all corporate products serve non-technical consumers or corporate drones (assuming that's where Ie6 still has the biggest foothold.. E.g., if I was developing a site for a product targeted at Vista or Win7 users, I might not bother with IE6 support. Of course transitioning to CSS3 is probably the biggest risk.
@willcodejavaforfood Lies, damn lies, and statistics!http://stackoverflow.com/questions/931148/postgresql-doesnt-recognize-straightjoin/931157#931157Comment by caskey on PostgreSQL doesn't recognize STRAIGHT_JOINcaskey2009-05-31T18:13:35Z2009-05-31T18:13:35ZYes. the result if the query will be the same. The difference between STRAIGHT_JOIN and JOIN is only significant to the (mysql) query optimizer, not the results of the query.