User Paul - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T21:39:47Zhttp://stackoverflow.com/feeds/user/21755http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/214862/equivalent-of-firebugs-copy-xpath-in-internet-explorer0Equivalent of Firebug's "Copy Xpath" in Internet Explorer?Paul2008-10-18T10:25:41Z2009-11-09T10:31:13Z
<p>I have an internet-explorer only web application.</p>
<p>I'm exploring what we can do to automate the testing. </p>
<p>Selenium looks like a good tool, but to be able to activate links etc I need to tell selenium where they are. The application wasn't built with this kind of testing in mind, so there generally aren't id attributes on the key elements.</p>
<p>No problem, I think, I can use Xpath expressions. But finding the correct Xpath for say, a button, is a royal pain if done by inspecting the source of the page.</p>
<p>With Firefox / Firebug, I can select the element then use "Copy Xpath" to get the expression. Is there any way of doing this with IE?</p>
<p>(I have the IE Developer Toolbar and it's frustratingly close - I can click to select the element of interest, display all sorts of information about it... but I can't see any convenient way of determining the Xpath for it)</p>
http://stackoverflow.com/questions/1373181/sniffing-capturing-all-traffic-between-apache-and-weblogic-on-solaris3Sniffing/capturing all traffic between Apache and Weblogic on SolarisPaul2009-09-03T12:40:52Z2009-10-20T05:44:10Z
<p>We have an application where an embedded device talks to weblogic via Apache. Weblogic and Apache are on the same Solaris server, and we are using the weblogic module for Apache.</p>
<p>The communication works over http</p>
<p>It does not work over https, although the problem does not appear to be directly related to https (the SSL session is negotiated fine and some back and forth happens). It appears the device handles the communication differently when https is used.</p>
<p>We'd like to see the http/https requests and responses to debug this. </p>
<p>We can capture the data between device and server using (e.g.) wireshark, but that's encrypted so isn't a great help. Wireshark (or snoop) don't see the local traffic on the server between Apache and Weblogic. Note: on Linux we could do this - but not on Solaris.</p>
<p>We don't actually need the low level packet capture of Wireshark - capturing the headers and body of the http requests and responses would be sufficient.</p>
<p>Anyone know how do to this? Is there an apache mod that will log all the requests and responses that pass through, perhaps (A google didn't show anything obvious). Any other creative ways of doing this?</p>
http://stackoverflow.com/questions/274948/time-machine-for-windows/274955#2749550Answer by Paul for Time Machine for Windows?Paul2008-11-08T17:21:08Z2009-09-15T11:44:57Z<p>What are you wanting the source control/multiple backups to do?</p>
<p>There's two reasons for source code control in my view - configuration management, and protection against developer finger trouble/stupidity (much evidenced by me). If the latter is the issue, then the suggestions below (or FileHamster as recommended in another answer) will do the job. </p>
<p>If as Dustin Getz suggests it may be, it's about configuration management, branches, etc then the SVN or other source code control program recommendations are better than my suggestions.</p>
<p>So, not used it, and not free ($32), but googling showed up </p>
<p>TrackMyFiles - <a href="http://www.trackmyfiles.com/en/features/" rel="nofollow">http://www.trackmyfiles.com/en/features/</a></p>
<blockquote>
<ul>
<li>Tracks and stores changes to files automatically</li>
<li>Allows you to view and restore old file versions</li>
<li>Important file versions can be labeled explicitely</li>
<li>Compatible with most file types, such as Microsoft Word® Documents and
Microsoft Powerpoint® presentations</li>
<li>Efficient storage of changes through delta compression algorithm</li>
<li>Integrated into Microsoft Windows® File Explorer for seamless operation</li>
</ul>
</blockquote>
<p>60 day trial version available, according to that website</p>
<p>Or, if you're using Vista, there's shadow-copy built in. See <a href="http://en.wikipedia.org/wiki/Shadow%5FCopy" rel="nofollow">http://en.wikipedia.org/wiki/Shadow%5FCopy</a></p>
http://stackoverflow.com/questions/1057449/how-to-code-a-download-upload-speed-monitor-in-php-python-or-java/1057517#10575172Answer by Paul for How to code a Download/Upload Speed Monitor in PHP,Python, or Java?Paul2009-06-29T10:02:50Z2009-06-29T10:02:50Z<p>You don't say which operating system you're interested in.</p>
<p>A quick google turned up this: <a href="http://excess.org/speedometer/" rel="nofollow">http://excess.org/speedometer/</a></p>
<p>"Measure and display the rate of data across a network connection or data being stored in a file"</p>
<p>Opensource, written in Python</p>
http://stackoverflow.com/questions/275229/what-is-source-code-control-for3What is source code control for?Paul2008-11-08T21:28:00Z2009-05-24T01:38:48Z
<p>There was a recent question about, effectively, replacing a local source code control system with a "keep all versions" file system or tool.</p>
<p>Many of the answers said in essence that source code control systems are for more than just keeping past versions, even for an individual developer - something I think is correct.</p>
<p>So, the question: What reasons are there for having source code control? And which of those are the most important?</p>
<p>I'm not so much interested in source code control features, but the reasons why those features are there. </p>
<p>Here's a starter for ten, but I'd like to know if I've missed some:</p>
<ol>
<li>Keeping all versions, especially ones that formed a shipped product</li>
<li>Enabling a team to edit and preventing (or at least alerting) when two attempt clashing changes</li>
<li>Making it easy to see differences between file versions (covering the top two developer excuses: "I didn't change anything" and "my change shouldn't have done that")</li>
<li>Protecting against developer accidents (deleting/changing code unintentionally)</li>
<li>Protecting against hardware problems (failed disks etc)</li>
<li>Allowing development of several different code bases while minimising duplication of unchanged files.</li>
<li>Keeping a record of who changed something, and why</li>
<li>Enabling experimental changes without breaking the main code base</li>
</ol>
<p>Why do you use source control?</p>
http://stackoverflow.com/questions/863290/terminology-for-temporarily-diverting-data-from-a-stream/863536#8635360Answer by Paul for terminology for temporarily diverting data from a streamPaul2009-05-14T14:09:58Z2009-05-14T15:46:57Z<p>HoldBackData?</p>
<blockquote>
<p>should reflect the "true" state where data is being letting through transparently without delay</p>
</blockquote>
<p>So, floodGatesOpen ? :)</p>
http://stackoverflow.com/questions/853697/standard-java-datebuilder-implementation/853727#8537270Answer by Paul for "standard" Java DateBuilder implementation?Paul2009-05-12T16:43:11Z2009-05-12T16:43:11Z<p>Google codesearch turns up <a href="http://www.google.com/codesearch/p?hl=en#g7Y8u8uY%5Flw/trunk/common/java/org.jitterbit.util/src/org/jitterbit/util/time/DateBuilder.java&q=datebuilder" rel="nofollow">this</a></p>
<p>Any use?</p>
http://stackoverflow.com/questions/819818/international-sms-forwarding/819957#8199571Answer by Paul for International SMS ForwardingPaul2009-05-04T12:51:43Z2009-05-04T12:51:43Z<p>Some (near) duplicates:</p>
<ol>
<li><a href="http://stackoverflow.com/questions/804924/sms-api-suggestions">SMS API Suggestions</a></li>
<li><a href="http://stackoverflow.com/questions/576940/how-do-i-design-sms-service">How do I design sms service ?</a></li>
<li><a href="http://stackoverflow.com/questions/526046/receive-sms-messages-by-web-application">Receive SMS messages by web application</a></li>
<li><a href="http://stackoverflow.com/questions/238579/free-sms-api">Free SMS API</a></li>
<li><a href="http://stackoverflow.com/questions/115361/what-is-the-best-way-to-handle-incoming-sms-messages">What is the best way to handle incoming SMS messages?</a></li>
</ol>
<p>plus others, if you search for SMS and incoming or receiving.</p>
http://stackoverflow.com/questions/806515/modelling-a-system-after-having-defined-the-uml-use-case/806703#8067031Answer by Paul for Modelling a system after having defined the UML use casePaul2009-04-30T12:39:46Z2009-04-30T12:50:18Z<p>I've had success using <a href="http://www.ddj.com/architect/184414712" rel="nofollow">Robustness Analysis</a>.</p>
<blockquote>
<p>This article focuses on robustness
analysis, which involves analyzing the
narrative text of use cases and
identifying a first-guess set of
objects that will participate in each
use case, then classifying these
objects into three types:</p>
<ol>
<li>Boundary objects, which actors use in communicating with the system.</li>
<li>Entity objects, which are usually objects from the domain model
(the subject of "Driving Design: The
Problem Domain," Jan. 2001).</li>
<li>Control objects (which we usually call controllers because they
often aren't real objects), which
serve as the "glue" between boundary
objects and entity objects.Figure 1
shows the visual icons for these three
types of objects.</li>
</ol>
</blockquote>
<p>The entity objects are the ones that (usuallly) end up in the database/</p>
<p>On mapping between classes and the database, I would recommend <a href="http://homepage.mac.com/s%5Flott/iblog/architecture/C20070522153704/E20090325060144/index.html" rel="nofollow">S.Lott's article on "The ORM Problem"</a> (he's also a participant on StackOverflow</p>
http://stackoverflow.com/questions/792916/my-spider-service-keeps-stopping-unexpectedly/793003#7930030Answer by Paul for My spider service keeps stopping unexpectedly?Paul2009-04-27T10:34:24Z2009-04-27T10:34:24Z<p>You're going to need to give us more details, I think, and some code fragments,</p>
<p>I think, from your description, you have two problems - one, the web requests start failing with 521 errors, and, two, your service stops.</p>
<p>Given the service stops after a large number of the web request failures, I'd look at resource exhaustion of some sort - are you running out of memory? Filehandles? Threads? Something else? What does your application do when the web request fails?</p>
http://stackoverflow.com/questions/790710/how-should-i-handle-multi-threading-in-java/790728#7907284Answer by Paul for How should I handle Multi-threading in Java?Paul2009-04-26T12:02:38Z2009-04-26T12:02:38Z<p>Consider using <a href="http://java.sun.com/products/jms/" rel="nofollow">Java Message Services (JMS)</a> rather than re-inventing the wheel?</p>
http://stackoverflow.com/questions/788313/can-i-have-two-mail-server-for-diffrent-emails/788509#7885091Answer by Paul for Can I have two mail server for diffrent emailsPaul2009-04-25T08:07:58Z2009-04-25T08:07:58Z<p>So you want different users for the same domain to go to different mail servers?</p>
<p>You can't do this by manipulating the DNS records - the mail will be delivered to the server(s) defined by your MX record for the domain without any reference to the user name.</p>
<p>However, there's nothing stopping that mail server being an application that forwards mail onto several other servers based on the user name of the recipient...</p>
http://stackoverflow.com/questions/786490/using-arrays-with-recursion/786511#7865112Answer by Paul for Using arrays with recursionPaul2009-04-24T16:04:16Z2009-04-24T16:04:16Z<p>Sniff, sniff, smells like homework to me.</p>
<p>However, a hint. Adding all the elements of an array of length 'n' is the same as adding all the elements of an array of length 'n-1', then adding the value of element 'n'.</p>
<p>The result of adding all the elements of an array of length '1' is just the value of the one element</p>
http://stackoverflow.com/questions/786477/how-to-calculate-vat-in-sql-query/786500#7865003Answer by Paul for How to calculate VAT in SQL query?Paul2009-04-24T16:01:03Z2009-04-24T16:01:03Z<p>Surely homework.</p>
<p>However, let us know what you've tried. In general, you're supposed to make an effort first before people on SO will help you.</p>
<p>What does your table look like? How is the total calculated? What query returns the total? What do you need to do to the total to add tge VAT?</p>
<p>Paul</p>
http://stackoverflow.com/questions/785581/how-to-ensure-that-a-program-is-running-and-restart-it-if-needed/785604#7856040Answer by Paul for How to ensure that a program is running and restart it if needed ?Paul2009-04-24T12:16:10Z2009-04-24T12:21:16Z<p>Create the program you wish to have running continually as a child of a "watcher" process that re-starts it when it terminates. You can use wait/waitpid (or SIGCHILD) to tell when the child terminates. I would expect someone's written code to do this (it's pretty much what init(8) does)</p>
<p>However, the program presumably does something. You might want not only to check the application is running, but that it is not hung or something and is providing the service that it is intended to. This might mean running some sort of probe or synthetic transaction to check it's operating correctly.</p>
<p>EDIT: You may be able to get init to do this for you - give it a type of 'respawn' in inittab. From the man page:</p>
<pre><code>respawn
The process will be restarted whenever it terminates (e.g. getty).
</code></pre>
http://stackoverflow.com/questions/785390/does-pair-programming-work-when-there-is-a-skills-impedance-mismatch/785402#78540222Answer by Paul for Does pair programming work when there is a skills impedance mismatch?Paul2009-04-24T11:01:44Z2009-04-24T11:01:44Z<p>Absolutely. Sharing knowledge is one of the points of pair-programming (along with the useful dynamic of having one person type for a bit and the other review as they do it).</p>
<p>In my experience, it's one of the most effective ways of doing so - and allows the less experienced coder still to usefully contribute (it takes less experience to review what an expert is doing and make sensible comments/interventions than to do the entire job).</p>
http://stackoverflow.com/questions/781234/interpreting-bea-weblogic-thread-dumps-helpful-documents-and-or-tools1Interpreting BEA weblogic thread dumps - helpful documents and/or tools?Paul2009-04-23T11:02:03Z2009-04-23T14:34:52Z
<p>I am a neophyte at Weblogic troubleshooting.</p>
<p>We have an issue on our production environment. I cannot access the ennvironment directly (our hosting people will do that, but it's some hours until I can ask them things).</p>
<p>I have a thread dump from the time the issue was evident on production. I can look through the dump and deduce some things, but given it's quite structured and something people do all the time I'm assuming there are tools out there to help interpret them. Are there?</p>
<p>Failing that, are there some useful documents or websites that would help me learn to interpret them?</p>
http://stackoverflow.com/questions/781234/interpreting-bea-weblogic-thread-dumps-helpful-documents-and-or-tools/782037#7820371Answer by Paul for Interpreting BEA weblogic thread dumps - helpful documents and/or tools?Paul2009-04-23T14:34:52Z2009-04-23T14:34:52Z<p>Answering my own question:</p>
<p><a href="https://tda.dev.java.net/" rel="nofollow">This is a neat tool</a> for summarising the thread dumps.</p>
<p><a href="http://thread.dumps.googlepages.com/java-thread-dumps" rel="nofollow">This</a> and <a href="http://thread.dumps.googlepages.com/java-thread-dumps-2" rel="nofollow">this</a> form a two-part article on interpreting thread dumps.</p>
<p>I still haven't found our issue, though, so still looking for more.</p>
http://stackoverflow.com/questions/746913/java-j2me-how-to-get-record-size/746951#7469510Answer by Paul for Java J2ME: How to get record size?Paul2009-04-14T10:00:24Z2009-04-14T10:00:24Z<p>The answer appears to be <a href="http://java.sun.com/javame/reference/apis/jsr118/javax/microedition/rms/RecordStore.html#getRecordSize%28int%29" rel="nofollow">getrecordsize</a>, after a quick google.</p>
http://stackoverflow.com/questions/746689/unix-tool-to-remove-duplicate-lines-from-a-file/746695#7466956Answer by Paul for unix tool to remove duplicate lines from a filePaul2009-04-14T07:53:44Z2009-04-14T08:01:09Z<p><a href="http://unixhelp.ed.ac.uk/CGI/man-cgi?uniq" rel="nofollow">uniq(1)</a></p>
<p>SYNOPSIS</p>
<blockquote>
<p>uniq [OPTION]... [INPUT [OUTPUT]]</p>
</blockquote>
<p>DESCRIPTION</p>
<blockquote>
<p>Discard all but one of successive identical lines from INPUT (or standard input), writing to OUTPUT (or standard output).</p>
</blockquote>
<p>Or, if you want to remove non-adjacent duplicate lines as well, this fragment of perl will do it:</p>
<pre><code>while(<>) {
print $_ if (!$seen{$_});
$seen{$_}=1;
}
</code></pre>
http://stackoverflow.com/questions/724567/what-is-sml-used-for/724647#7246471Answer by Paul for What is SML used for?Paul2009-04-07T08:27:44Z2009-04-07T08:27:44Z<p>Not SML, but closely related, is OCAML, which has been used for a number of things:</p>
<p><a href="http://caml.inria.fr/about/successes.en.html" rel="nofollow">http://caml.inria.fr/about/successes.en.html</a></p>
<p>I rather like the "Faster Fourier Transform in the West" where ML is used to generate optimised C...</p>
http://stackoverflow.com/questions/724617/examples-of-union-in-c/724626#7246262Answer by Paul for Examples of Union in CPaul2009-04-07T08:19:53Z2009-04-07T08:19:53Z<p>Coincidentally, I just used one in a Stackoverflow answer <a href="http://stackoverflow.com/questions/724404/converting-endianess-on-a-bit-field-structure/724415#724415">here</a> so I could treat a word that was made up of 6 bit fields as two 16 bit unsigned integers.</p>
<p>Years ago, I also used one for (the first) ARM C compiler - the instructions in those days were all 32 bit, but had different layouts depending on the exact instruction. So I had a union to represent an ARM instruction, containing a set of structs which each had the appropriate bitfields for a specific instruction type.</p>
http://stackoverflow.com/questions/724404/converting-endianess-on-a-bit-field-structure/724415#7244150Answer by Paul for Converting Endianess on a bit field structurePaul2009-04-07T07:03:16Z2009-04-07T07:11:19Z<p>You have two 16 bit sections there (the first three fields and the last three fields are 16 bits).</p>
<p>That's only 65536 entries. So have a lookup table that holds the bit-reversed version of the fields. Wrap the struct in a union with another struct that has two 16 bit fields to make this easier?</p>
<p>Something like (untested, I'm not near a C compiler):</p>
<pre><code>union u {
struct {
unsigned int b1:1;
unsigned int b2:8;
unsigned int b3:7;
unsigned int b4:8;
unsigned int b5:7;
unsigned int b6:1;
} bits;
struct {
uint16 first;
uint16 second;
} words
} ;
unit16 lookup[65536];
/* swap architectures */
void swapbits ( union u *p)
{
p->words.first = lookup[p->words.first];
p->words.second = lookup[p->words.second];
}
</code></pre>
<p>Population of the lookup table left as an exercise for the reader :)</p>
<p>However, read your compiler doc carefully. I'm not sure if the C standard requires that struct to fit in a word (although I'd expect most compilers to do that).</p>
http://stackoverflow.com/questions/721762/does-pair-programming-mean-you-dont-need-design-documentation/721808#7218081Answer by Paul for Does Pair programming mean you don't need design documentation?Paul2009-04-06T14:48:42Z2009-04-06T14:48:42Z<p>The experience of people may be in sync with the code, as you say. But the design decisions are not all captured in the code - only the choices made are there.</p>
<p>In my experience, to really understand why code is designed the way it is, you need to know about the design choices that were not selected, the approaches that had tried and failed etc. You can hope that the "chinese whispers" chain transmits that correctly, given that there's no record of this in the code to refresh memories or correct errors...</p>
<p>... or you can write some documentation on the design and how it was arrived at. That way, you avoid being taken down a dark alley by the maintenance programmers in future.</p>
http://stackoverflow.com/questions/721751/closing-down-a-project-what-are-the-key-things-to-do0Closing down a project - what are the key things to do?Paul2009-04-06T14:37:30Z2009-04-06T14:48:18Z
<p>It seems probable our client will cancel the project we've been working on for 15 months.</p>
<p>It's possible (although not very likely) that it will get restarted at some point. </p>
<p>We've also extended our company's product in several areas while doing this. Other project teams may need to make similar extensions, and we'd like them to be able to make use of what we did.</p>
<p>So, what are the key things to record for posterity, so that a future team (which may include different personnel) can learn from what we've done?</p>
<p>This is slightly different from what to record for future maintainers, since people will probably arrive with little/no familiarity with our project, and will probably not have any extended involvement with it.</p>
<p>So far, we've worked on collecting information about each major feature/extension - so there's one place to look for requirements, pointer to the source code, test cases, etc, and are adding some narrative on key design points/decisions etc.</p>
<p>What else should we be doing and capturing, while the project team is still together?</p>
http://stackoverflow.com/questions/721598/how-to-seaching-xml-child-nodes/721692#7216921Answer by Paul for How to: seaching XML child nodes.Paul2009-04-06T14:24:01Z2009-04-06T14:24:01Z<p>Or, perhaps a bit more flexibly because it doesn't assume the grandfather is root</p>
<pre><code>//child/anotherChild/key[text()="2"]/../../leaf2
</code></pre>
<p>"find the key with text 2, parent anotherChild and grandparentchild, go to grandparent(i.e. child, and find leaf2"</p>
http://stackoverflow.com/questions/718490/segmentation-fault-in-strcpy/718494#7184941Answer by Paul for Segmentation fault in strcpyPaul2009-04-05T07:05:36Z2009-04-05T07:05:36Z<p>It depends on what's on the stack after the "str" array. You just happen not to be trampling on anything critical until you copy that many characters.</p>
<p>So it's going to depend on what else is in the function, the compiler you use and possibly the compiler options too.</p>
<p>13 is 5 + 8, suggesting there are two non-critical words after the str array, then something critical (maybe the return address)</p>
http://stackoverflow.com/questions/710122/we-made-it-reliable-whats-next-usability/710163#7101631Answer by Paul for We made it reliable. What's next? Usability?Paul2009-04-02T15:18:41Z2009-04-02T15:18:41Z<p>What does it do for your users? What do they think about the usability? Maybe it's not an ssue for them.</p>
<p>Make it more valueable to your users. Deliver more business value. Help your customers getter a better return on their investment. Do this by making it do more of what they need it to do, to do it better (more accurately, more quickly, more reliably more useably), or to do it at lower cost (less infrastructure needed to run it, reduced maintenance costs because you improved reliability), more flexibly (deals with their business changes)...</p>
<p>Lots of dimensions which do connect with the technical ones you refer to (usability reliabilty stability etc). But paying customers normally care about their business needs/features, not your technical ones that deliver them.</p>
<p>Go talk to your users (or potential users)</p>
http://stackoverflow.com/questions/667250/strptime-in-windows/667259#6672591Answer by Paul for strptime in windows?Paul2009-03-20T17:55:02Z2009-03-20T17:55:02Z<p>You need better google-fu :)</p>
<p><a href="http://www.google.com/codesearch?q=strptime&hl=en&btnG=Search%2BCode" rel="nofollow">Google Codesearch</a> finds many implementations. It shouldn't be too difficult to port to Windows?</p>
<p>Edit: <a href="http://www.google.com/codesearch/p?hl=en#Q1EdIy4DTbs/trunk/src/common/timesupport.cc&q=strptime%20windows" rel="nofollow">this one</a> has a WIN32 implementation.</p>
http://stackoverflow.com/questions/614718/wrapping-a-data-structure/614743#6147430Answer by Paul for Wrapping a data structurePaul2009-03-05T13:24:55Z2009-03-05T13:24:55Z<p>I think we need to know more about why you need to access/modify it in different ways, and why you see the need for different classes to do this, and what you expect to gain from this</p>
http://stackoverflow.com/questions/1398705/how-to-use-regex-in-selenium-locatorsComment by Paul on How to use regex in selenium locatorsPaul2009-09-09T10:14:37Z2009-09-09T10:14:37ZSo what's not working, and in what way is it not working? Can you post the HTML (or a fragment of it) that you're matching against?http://stackoverflow.com/questions/1373181/sniffing-capturing-all-traffic-between-apache-and-weblogic-on-solaris/1373218#1373218Comment by Paul on Sniffing/capturing all traffic between Apache and Weblogic on SolarisPaul2009-09-03T13:24:55Z2009-09-03T13:24:55ZYour reply got me looking in the right direction. This looks like exactly what we want: <a href="http://httpd.apache.org/docs/2.2/mod/mod_dumpio.html" rel="nofollow">httpd.apache.org/docs/2.2/…</a>
http://stackoverflow.com/questions/1373181/sniffing-capturing-all-traffic-between-apache-and-weblogic-on-solaris/1373247#1373247Comment by Paul on Sniffing/capturing all traffic between Apache and Weblogic on SolarisPaul2009-09-03T12:55:43Z2009-09-03T12:55:43ZDoesn't help - I can already sniff the traffic over the wire as I said in my question, but that's the encrypted traffic. I need to see it after Apache has handled the SSL termination and decoded the requests / not encoded the responses.http://stackoverflow.com/questions/1373181/sniffing-capturing-all-traffic-between-apache-and-weblogic-on-solaris/1373218#1373218Comment by Paul on Sniffing/capturing all traffic between Apache and Weblogic on SolarisPaul2009-09-03T12:50:45Z2009-09-03T12:50:45ZThanks. This may be worth a try, but I've a nasty feeling we're going to need the body too.http://stackoverflow.com/questions/1373181/sniffing-capturing-all-traffic-between-apache-and-weblogic-on-solaris/1373219#1373219Comment by Paul on Sniffing/capturing all traffic between Apache and Weblogic on SolarisPaul2009-09-03T12:50:13Z2009-09-03T12:50:13ZYes, that would work. Unfortunately, because of where the server is sitting (in a tightly controlled secured environment) bouncing things off another server is trickyhttp://stackoverflow.com/questions/1057927/uml-modelling/1057940#1057940Comment by Paul on UML modelling Paul2009-06-29T12:06:37Z2009-06-29T12:06:37Z+1 for the UML Distilled recommendationhttp://stackoverflow.com/questions/1057927/uml-modellingComment by Paul on UML modelling Paul2009-06-29T12:04:01Z2009-06-29T12:04:01ZHomework? And google for UML Modelling, there's a ton of stuff available.http://stackoverflow.com/questions/1057449/how-to-code-a-download-upload-speed-monitor-in-php-python-or-java/1057504#1057504Comment by Paul on How to code a Download/Upload Speed Monitor in PHP,Python, or Java?Paul2009-06-29T10:07:14Z2009-06-29T10:07:14ZThis seems to be answering a different question. There's no file upload requested here?http://stackoverflow.com/questions/1057449/how-to-code-a-download-upload-speed-monitor-in-php-python-or-javaComment by Paul on How to code a Download/Upload Speed Monitor in PHP,Python, or Java?Paul2009-06-29T09:59:15Z2009-06-29T09:59:15ZPHP? Do you envisage this as a web application then? It doesn't appear to be one.http://stackoverflow.com/questions/295280/whats-one-change-in-your-lifestyle-that-positively-affected-your-work-and-health/295439#295439Comment by Paul on What's one change in your lifestyle that positively affected your work and health?Paul2009-06-09T13:46:46Z2009-06-09T13:46:46ZThen cycle some of it. My commutes about 102 km. I only cycle the last 6.5 or so. Also, 42 km is about 26 miles or pretty close to the distance of a marathon. Run :)http://stackoverflow.com/questions/853834/blackberry-technical-specificationComment by Paul on Blackberry Technical SpecificationPaul2009-05-12T17:46:42Z2009-05-12T17:46:42ZI think a request for information on APIs is programming related and belongs here.http://stackoverflow.com/questions/853697/standard-java-datebuilder-implementation/853727#853727Comment by Paul on "standard" Java DateBuilder implementation?Paul2009-05-12T17:37:56Z2009-05-12T17:37:56ZAgreed, but then the answer is "no", I think. But at least now the OP has a way of getting an implementation :)http://stackoverflow.com/questions/851913/c4-5-algorithm-implementation-on-unix-mac-osComment by Paul on c4.5 algorithm implementation on unix/mac osPaul2009-05-12T09:25:54Z2009-05-12T09:25:54ZLet us know what you've tried, and what went wrong. Otherwise, we're just guessing what problems you had. Did it work on the RH machine? The page you link to has instructions. How far did you get through them before it went wrong?http://stackoverflow.com/questions/847876/is-there-any-performance-difference-between-for-and-while/847894#847894Comment by Paul on Is there any performance difference between for() and while()?Paul2009-05-11T12:45:23Z2009-05-11T12:45:23ZNo it doesn't. The other parts of the conditional could still change.
for (i = 0; i < other_var; i++) { other_var = some_function() ; }
I would be surprised if the while and for don't end up exactly the same internal structure after the compiler's done parsing the source. The C compilers I wrote did that.http://stackoverflow.com/questions/842789/div-moving-in-cycle-rotation-using-javascript/842792#842792Comment by Paul on Div Moving in cycle rotation using JavascriptPaul2009-05-09T07:51:41Z2009-05-09T07:51:41ZRavi, please take a minute to write your question more clearly and with more detail. Your comment here doesn't really answer Chad's question. Do you want to display each of the four DIVs in turn, or do you want to rotate the content of one DIV, or something else?