User Douglas Leeder - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T07:07:24Zhttp://stackoverflow.com/feeds/user/3978http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1935194/sorting-an-array-with-minimal-number-of-comparisons/1935277#19352771Answer by Douglas Leeder for Sorting an array with minimal number of comparisonsDouglas Leeder2009-12-20T08:44:37Z2009-12-20T09:02:27Z<p>I don't think the hard-coded solution needs to be all that complicated:</p>
<ol>
<li>Compare (elements) 2 & 3, and swap if needed</li>
<li>Compare 3 & 4, and swap if required</li>
<li>Compare 1 & 3, if 1 is less, then compare 1 & 2, otherwise compare 1 & 4. Place 1 in the correct slot.</li>
<li>Repeat step 3 except with elements 3 & 5.</li>
</ol>
<p>That will always use 7 comparisons.</p>
<p>EDIT:</p>
<p>I don't think this is going to work: Step 4 is broken, and might require an 8th comparison. Consider:</p>
<pre><code>Index | 1 | 2 | 3 | 4 | 5 |
Value | 2 | 3 | 4 | 5 | 1 |
</code></pre>
<p>Step 4:</p>
<ol>
<li>Compare 3 & 5 == 4 vs 1 == element 5 less than element 3</li>
<li>Compare 2 & 5 == 3 vs 1 == element 5 less than element 2</li>
<li>??? Need to compare 1 & 5 to know where to put element 5.</li>
</ol>
http://stackoverflow.com/questions/1916372/how-do-i-write-unit-tests-for-ensuring-numerical-accuracy-in-scientific-computati/1916421#19164210Answer by Douglas Leeder for How do I write unit tests for ensuring numerical accuracy in scientific computation in C?Douglas Leeder2009-12-16T17:52:23Z2009-12-16T17:52:23Z<p>I guess:</p>
<ol>
<li>The accuracy will depend on the arguments - so you might test some values, only to discover later that there are other values where there is loss of precision. </li>
<li>You can test values that differ by extremely small increments and see if the algorithm maintains precision.</li>
<li>Use doubles rather than floats.</li>
<li>Finally, you can do the calculations two times (increasing the arguments by the smallest delta for the second run?), taking the worst case choice for each operation, and see what range of answers you get.</li>
</ol>
http://stackoverflow.com/questions/1916019/java-abstract-static-workaround/1916139#19161390Answer by Douglas Leeder for Java abstract static WorkaroundDouglas Leeder2009-12-16T17:08:40Z2009-12-16T17:08:40Z<p>static methods can't be abstract because they aren't virtual. Therefore anywhere that calls them has to have the concrete type with the implementation. If you want to enforce that all implementations of an interface have a certain static method, then that suggests a unit test is required.</p>
<pre><code>abstract class A
{
public static void foo()
{
java.lang.System.out.println("A::foo");
}
public void bar()
{
java.lang.System.out.println("A::bar");
}
}
class B extends A
{
public static void foo()
{
java.lang.System.out.println("B::foo");
}
public void bar()
{
java.lang.System.out.println("B::bar");
}
}
public class Main
{
public static void main(String[] args)
{
B b = new B();
b.foo();
b.bar();
A a = b;
a.foo();
a.bar();
}
}
</code></pre>
http://stackoverflow.com/questions/1890711/integrating-moved-files-in-perforce/1891396#18913962Answer by Douglas Leeder for Integrating moved files in perforceDouglas Leeder2009-12-11T22:50:20Z2009-12-12T08:56:35Z<p>Perforce 2009.1 has proper renames, which might help with this - probably, and in any case only for future renames. See <a href="http://www.perforce.com/perforce/doc.091/user/relnotes.txt" rel="nofollow">Perforce 2009.1 release notes</a>, in particular:</p>
<pre><code>#177023 * **
The new 'p4 move' command allows for better support for
renaming files. A file must be already opened for 'edit'
or 'add' in order to be moved. Moved files can be synced,
resolved and diffed against the repository just like files
opened for 'edit'. See 'p4 help move' for more info.
</code></pre>
<p>You can add the rename into the branch spec. Then at least the integrations will be automatic - even if the branch spec will be even longer and more complicated.</p>
http://stackoverflow.com/questions/1880856/are-there-any-naming-conventions-when-creating-your-own-file-suffix/1881133#18811330Answer by Douglas Leeder for Are there any naming conventions when creating your own file suffix?Douglas Leeder2009-12-10T13:55:18Z2009-12-10T13:55:18Z<p>Unless users are going to double-click on the files from explorer, having a nice informative, unique extension is not important, so you might want to go with <code>.bin</code> or <code>.dat</code>. However there exist good mechanisms for packing files together (<code>.zip</code> or <code>.7z</code>) so you might want to go for a standard packer, with a standard extension.</p>
http://stackoverflow.com/questions/1866373/how-to-perform-p4-submit-operation-without-passing-description-inside-the-p4-subm/1867113#1867113-1Answer by Douglas Leeder for How to perform p4 submit operation without passing description inside the p4 submit form.Douglas Leeder2009-12-08T13:53:17Z2009-12-09T16:56:00Z<p><a href="http://lmgtfy.com/?q=perforce+download" rel="nofollow">http://lmgtfy.com/?q=perforce+download</a><br>
From <a href="http://www.perforce.com/perforce/downloads/platform.html" rel="nofollow">http://www.perforce.com/perforce/downloads/platform.html</a> download the appropriate version of p4 command-line client. Then:</p>
<ol>
<li>Replace the existing p4 executable with the new one.</li>
<li>Or put the new p4 exe in a directory earlier in your <code>$PATH</code></li>
<li>Make the <code>chmod 755 <new p4></code></li>
<li><code>hash -r</code> </li>
<li><code>p4 -V</code> to verify you are running perforce 2009.1 client</li>
<li><code>p4 help submit</code></li>
<li>We can md5sum the p4 binary</li>
<li><code>p4 info</code> and verify the perforce server is 2006.2 or more recent.</li>
</ol>
<p>Step 5 should produce:</p>
<pre><code>$ p4 -V
Perforce - The Fast Software Configuration Management System.
Copyright 1995-2009 Perforce Software. All rights reserved.
Rev. P4/LINUX26X86/2009.1/205670 (2009/06/29).
</code></pre>
<p>Step 6 should produce:</p>
<pre><code>$ p4 help submit
submit -- Submit open files to the depot
p4 submit [ -r -s -f option ]
p4 submit [ -r -s -f option ] files
p4 submit [ -r -f option ] -d description
p4 submit [ -r -f option ] -d description files
p4 submit [ -r -f option ] -c changelist#
p4 submit -i [ -r -s -f option ]
'p4 submit' commits a pending changelist and its files to the depot.
With no argument 'p4 submit' attempts to submit all files in the
'default' changelist. Submit provides the user with a dialog
similar to 'p4 change' so the user can compose a changelist
description. In this dialog the user is presented with the list
of files open in changelist 'default'. Files may be deleted from
this list but they cannot be added. (Use an open command (edit,
add, delete) to add additional files to a changelist.)
If a (single) file pattern is given, only those files in
the 'default' changelist that match the pattern will be submitted.
The -c flag submits the numbered pending changelist that has been
previously created with 'p4 change' or a failed 'p4 submit'.
The -d flag allows a description to be passed into submit rather
than using a numbered changelist or engaging in a change description
dialog. This option is useful when scripting but does not allow for
jobs to be added or the default changelist to be modified.
The -f flag allows a submit option to be passed into submit which
will override the one that is set in the client. See 'p4 help client'
for valid submit options.
The -i flag causes a changelist specification (including files to be
submitted) to be read from the standard input. The user's editor
is not invoked.
The -r flag allows submitted files to remain open (on the client's
default changelist) after the submit has completed.
The -s flag extends the list of jobs to include the fix status
for each job, which becomes the job's status when the changelist
is committed. See 'p4 help change' for more notes on this option.
Before committing a changelist submit locks all associated files not
already locked. If any file cannot be locked, or if the submit
fails for any other reason the files are left open in a newly
created pending changelist.
Submit is guaranteed to be atomic. Either all files will be
updated in the depot as a unit or none will be.
</code></pre>
<p>Of which the important bit is:</p>
<pre><code> The -d flag allows a description to be passed into submit rather
than using a numbered changelist or engaging in a change description
dialog. This option is useful when scripting but does not allow for
jobs to be added or the default changelist to be modified.
</code></pre>
<p>Step 7:</p>
<pre><code> $ md5sum $(which p4)
bef01f66b8d3964c74a2d8992c0c900c /opt/perforce/bin/p4
</code></pre>
<p>Step 8:<br>
The feature was introduced in <a href="http://www.perforce.com/perforce/doc.091/user/relnotes.txt" rel="nofollow">perforce 2006.2</a>, and it's possible that it requires a sufficiently recent server to support the operation:</p>
<pre><code>#106450 (Bug #258) **
'p4 submit' now sports a '-d description' option. This allows
the user to submit files without the need for a changelist
dialog. See 'p4 help submit'.
</code></pre>
http://stackoverflow.com/questions/1872156/how-can-i-know-where-the-segment-of-memory-is-all-zero/1872277#18722779Answer by Douglas Leeder for How can I know where the segment of memory is all ZeroDouglas Leeder2009-12-09T07:51:41Z2009-12-09T07:51:41Z<p>If you're testing it, and then only going to use it if it's zero, then be aware you have a race-condition, because the method suggested by @Mark Byers doesn't have an atomic test/set operation. It'll be hard to get the logic correct in this case.</p>
<p>If you want to zero it if it's not already zero, then just set it to zero as that will be faster.</p>
http://stackoverflow.com/questions/1859433/imposing-library-loading-order/1859577#18595771Answer by Douglas Leeder for imposing library loading orderDouglas Leeder2009-12-07T11:59:12Z2009-12-07T13:41:48Z<p><code>gcc</code> isn't in-charge of loading the libraries, either <code>ld.so</code> does it automatically when your program loads, or you do it manually as @jldupont suggests.</p>
<p>And <code>ld.so</code> might deliberately <a href="https://www.mirbsd.org/htman/i386/man1/ld.so.htm" rel="nofollow">randomise</a> the order to prevent return-to-stdlib attacks.</p>
<p>So either: </p>
<ol>
<li>Load the libraries yourself.</li>
<li>Or remove the dependencies between the library load scripts.</li>
<li>Make the libraries contain the dependencies themselves (might work, might not)
That is when you get to the point of linking each shared library, make sure it includes <code>-l<dependentlib></code> in the link command. You can test this by creating a trival program that links only with that shared library - if it builds and runs, then the library contains all necessary dependent libs. This might help if ld.so loads the libraries in dependency order - which I think it has to do.</li>
</ol>
http://stackoverflow.com/questions/1859614/a-bot-to-access-data-on-grid-of-a-windows-application-like-a-human/1859657#18596572Answer by Douglas Leeder for A bot to Access data on grid of a windows application (like a human)Douglas Leeder2009-12-07T12:18:54Z2009-12-07T12:50:54Z<p>Any solution which reads the GUI will leave connections open for a short amount of time, and be brittle against changes in the GUI, you will be better off asking Kerio support or serverfault if there is any proper, integrated way to achieve what you want.</p>
<p>It can be done, although C++ is probably the wrong choice, python + pywinauto might be a better choice.</p>
<p>Use pywinauto to enumerate the components of the window till you work out how to get to the list. Work through the list, finding duplicates, and disconnecting them.</p>
http://stackoverflow.com/questions/1859547/open-edit-all-files-of-depot-using-p4-add-edit-command/1859688#18596882Answer by Douglas Leeder for open/edit all files of depot using p4 add/edit commandDouglas Leeder2009-12-07T12:27:24Z2009-12-07T12:27:24Z<p>Look at <a href="http://kb.perforce.com/UserTasks/WorkingDisconnected" rel="nofollow">http://kb.perforce.com/UserTasks/WorkingDisconnected</a>, in particular:</p>
<pre><code>p4 diff -se //myclient/... | p4 -x - edit
find . -type f -print | p4 -x - add
</code></pre>
<p>If you are connected, then it's better to do p4 edit before editing files, as that allows other people to see that you are editing the files.</p>
http://stackoverflow.com/questions/1859438/using-python-how-do-i-get-a-binary-serialization-of-my-google-protobuf-message/1859509#18595090Answer by Douglas Leeder for Using Python, how do I get a binary serialization of my Google protobuf message?Douglas Leeder2009-12-07T11:46:26Z2009-12-07T11:46:26Z<p>It not clear what you want to do:</p>
<ol>
<li>Do something with the serialized form of an entire message (From the SerializeAsString method). Not sure what you'd want to do with this?</li>
<li>Store a byte string inside a protobuf message - just use the <code>bytes</code> type in the .proto file, and a byte string in python for the variable.</li>
</ol>
http://stackoverflow.com/questions/1834434/help-to-use-protocol-buffers/1834577#18345775Answer by Douglas Leeder for Help to use protocol buffers Douglas Leeder2009-12-02T17:39:48Z2009-12-02T17:39:48Z<p>You start by defining your message in a .proto file:</p>
<pre><code>package foo;
message snd_data {
required string var= 1;
required int32 var1 = 2;
optional float var2 = 3;
optional double var3 = 4;
}
</code></pre>
<p>(I guess the float and double actually are different variables...)</p>
<p>Then you compile it using <code>protoc</code> and then you have code implementing your buffer. </p>
<p>For further information see: <a href="http://code.google.com/apis/protocolbuffers/docs/cpptutorial.html" rel="nofollow">http://code.google.com/apis/protocolbuffers/docs/cpptutorial.html</a></p>
http://stackoverflow.com/questions/1832087/is-network-up-c-fedora-unix/1832151#18321512Answer by Douglas Leeder for Is Network Up? C++ Fedora/UnixDouglas Leeder2009-12-02T10:51:28Z2009-12-02T10:51:28Z<p>You should probably just catch the exceptions: otherwise you'll have problems if the machine is connected to a network, but not one with the appropriate other machines on it.</p>
http://stackoverflow.com/questions/1827644/performance-implications-when-sending-large-files-via-https/1827715#18277151Answer by Douglas Leeder for Performance Implications when sending large files via HTTPSDouglas Leeder2009-12-01T17:33:07Z2009-12-01T17:33:07Z<p>Obviously <a href="http://stackoverflow.com/questions/149274/http-vs-https-performance">http://stackoverflow.com/questions/149274/http-vs-https-performance</a> has lots of details, but remember that a lot of the cost of SSL is in the session setup, so the encryption for the transfer will be less costly (relatively) for a large transfer.</p>
http://stackoverflow.com/questions/1827549/is-there-a-way-to-ask-the-linux-kernel-to-re-run-its-pci-initialization-code/1827697#18276971Answer by Douglas Leeder for Is there a way to ask the Linux Kernel to re-run its PCI initialization code?Douglas Leeder2009-12-01T17:29:39Z2009-12-01T17:29:39Z<p><a href="http://www.linuxjournal.com/article/5633" rel="nofollow">http://www.linuxjournal.com/article/5633</a> suggests you should be able to do it with 2.4 kernels using <code>pcihpfs</code>. </p>
<p>If that isn't working, maybe the driver doesn't support hotplug?</p>
http://stackoverflow.com/questions/1822876/c-swap-problem-in-inheritance-scenario/1823032#18230322Answer by Douglas Leeder for C++ swap problem in inheritance scenarioDouglas Leeder2009-11-30T23:02:45Z2009-11-30T23:02:45Z<p>(Somewhat hacky solution)</p>
<p>Add a protected virtual method, isBaseFoo(), make it return true in Foo, and false in Bar, the the swap method for Foo could check it's argument has isBaseFoo()==true.</p>
<p>Evil, and detects the problem only at run-time, but I can't think of anything better, although Charles Bailey's answer might be better, if you allow dynamic_cast<>.</p>
http://stackoverflow.com/questions/1822541/is-rlock-a-sensible-default-over-lock/1822925#18229250Answer by Douglas Leeder for Is RLock a sensible default over Lock?Douglas Leeder2009-11-30T22:39:46Z2009-11-30T22:39:46Z<p>Normally you should structure your code such that you never need to recursively lock in normal operation (basically it forces you to use locks tightly around the protected datastructures they are are protecting). Therefore you want to catch an anomalous recursive locking. </p>
http://stackoverflow.com/questions/1813926/why-doesnt-the-following-perfectly-valid-c-code-show-the-contents-of-a-file-in/1813937#18139372Answer by Douglas Leeder for Why doesn't the following (perfectly valid) C code show the contents of a file in Objective-C?Douglas Leeder2009-11-28T22:13:21Z2009-11-28T22:17:37Z<p>You shouldn't use strlen on the output buffer from read() - it isn't null-terminated.</p>
http://stackoverflow.com/questions/1810216/autoconf-where-does-config-h-go/1810324#18103240Answer by Douglas Leeder for Autoconf - Where does config.h go?Douglas Leeder2009-11-27T19:27:33Z2009-11-27T19:27:33Z<p>You can choice to output a different config file by changing the AC_OUTPUT macro, although I'm not sure how you project is going to integrate with other projects. If it's a sub-project, then it'll be in a sub-directory anyway.</p>
http://stackoverflow.com/questions/1809040/how-to-change-permissions-for-file-on-sftp-server-using-phpseclib/1809063#18090631Answer by Douglas Leeder for How to change permissions for file on sFTP server using phpseclib?Douglas Leeder2009-11-27T14:23:13Z2009-11-27T14:23:13Z<p>At a guess the permissions are 1363. In other words octal(755). It's a complete guess, but I would suggest that the chmod function is taking a decimal mode, rather than an octal one.</p>
http://stackoverflow.com/questions/1808994/oracle-c-linux-and-more-weird-stuff/1809034#18090340Answer by Douglas Leeder for Oracle C++ linux and more weird stuffDouglas Leeder2009-11-27T14:16:34Z2009-11-27T14:16:34Z<ol>
<li>You need to move the <code>-L</code> arguments before the <code>-l</code> arguments.</li>
<li>You'll need ARM libraries to run on the device, not x86 libraries, no idea if Oracle provides those.</li>
<li>You probably don't want to have the device directly accessing the database. It would be better to stick a middle-tier server in the stack, and have the devices talk to that (over XML-RPC or other RPC protocol).</li>
</ol>
http://stackoverflow.com/questions/1808806/algorithm-should-i-create-a-new-thread/1808868#18088684Answer by Douglas Leeder for Algorithm should I create a new thread?Douglas Leeder2009-11-27T13:45:28Z2009-11-27T14:01:17Z<p>python (at least standard CPython) is a special case, because it won't run more than one thread at a time, therefore if you are doing number-crunching on a multiple cores, then pure python isn't really the best choice.</p>
<p>In CPython, while running python code, only one thread is executing. It protected by the <a href="http://docs.python.org/glossary.html#term-global-interpreter-lock" rel="nofollow">Global Interpreter Lock</a>. If you're going IO or sleeping or waiting on the other hand, then python threads make sense.</p>
<p>If you are number-crunching then you probably want to do that in a C-extension anyway. Failing that the <a href="http://docs.python.org/library/multiprocessing.html" rel="nofollow">multiprocessing library</a> provides a way for pure python code to take advantage of multiple cores.</p>
<p>In the general, non-python, case: the question can't be answered, because it depend on:</p>
<ol>
<li>Will running tasks on a new thread be faster at all></li>
<li>What is the cost of starting a new thread?</li>
<li>What sort of work do the tasks contain? (IO-bound, CPU-bound, network-bound, user-bound)</li>
<li>How efficient is the OS at scheduling threads?</li>
<li>How much shared data/locking do the tasks need?</li>
<li>What dependencies exist between tasks?</li>
</ol>
<p>If your tasks are independent and CPU-bound, then running one per-CPU core is probably best - but in python you'll need multiple processes to take advantage. </p>
http://stackoverflow.com/questions/1807860/avoid-pass-phrase-prompt-on-git-push-to-remote/1807882#18078824Answer by Douglas Leeder for Avoid pass-phrase prompt on git push to remote.Douglas Leeder2009-11-27T10:16:30Z2009-11-27T10:16:30Z<p>Use ssh-agent: <a href="http://www.sourcemage.org/Git%5FGuide#I.27m%5Ftired%5Fof%5Ftyping%5Fmy%5FSSH%5Fkey%5Fpassphrase." rel="nofollow">http://www.sourcemage.org/Git_Guide#I.27m_tired_of_typing_my_SSH_key_passphrase.</a></p>
http://stackoverflow.com/questions/305424/aix-why-does-throwing-an-exception-abort-multithreaded-code1AIX: Why does throwing an exception abort multithreaded code?Douglas Leeder2008-11-20T14:22:17Z2009-11-27T09:55:38Z
<p>We get an abort when a C++ exception is thrown when running code compiled with -pthread.</p>
<p>Platform: AIX 5.3 technical level 8
Compiler: gcc 3.4.6
Linker: AIX linker 1.65.2.4</p>
<p>Test Code:</p>
<pre><code>// exception.cpp
#include <iostream>
class MyException
{
public:
MyException(){}
virtual ~MyException(){};
};
void gTest()
{
throw MyException();
}
int main()
{
try
{
gTest();
}
catch(MyException const & ex)
{
std::cout << "exception was caught" << std::endl;
}
return 0;
}
$ g++ exception.cpp
$ ./a.out
exception was caught
$ g++ -pthread exception.cpp
$ ./a.out
terminate called after throwing an instance of 'MyException'
IOT/Abort trap (core dumped)
$ gdb a.out
GNU gdb 6.0
Copyright 2003 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB. Type "show warranty" for details.
This GDB was configured as "powerpc-ibm-aix5.1.0.0"...
(gdb) run
Starting program: /home/leeder/except/a.out
terminate called after throwing an instance of 'MyException'
Program received signal SIGABRT, Aborted.
Switching to Thread 1
0xd0124834 in pthread_kill () from /usr/lib/libpthreads.a(shr_xpg5.o)
(gdb) bt
#0 0xd0124834 in pthread_kill () from /usr/lib/libpthreads.a(shr_xpg5.o)
#1 0xd01242a8 in _p_raise () from /usr/lib/libpthreads.a(shr_xpg5.o)
#2 0xd0359bdc in raise () from /usr/lib/libc.a(shr.o)
#3 0xd03b7efc in abort () from /usr/lib/libc.a(shr.o)
#4 0xd0ca1800 in __gnu_cxx::__verbose_terminate_handler() () at ../../.././libstdc++-v3/libsupc++/vterminate.cc:96
#5 0xd0ca1220 in __cxxabiv1::__terminate(void (*)()) (handler=0)
at ../../.././libstdc++-v3/libsupc++/eh_terminate.cc:43
#6 0xd0ca128c in std::terminate() () at ../../.././libstdc++-v3/libsupc++/eh_terminate.cc:53
#7 0xd0ca7cfc in __cxa_throw (obj=0x200084e8, tinfo=0xffffffff, dest=Cannot access memory at address 0xffffffff
)
at ../../.././libstdc++-v3/libsupc++/eh_throw.cc:80
#8 0x100008dc in gTest() ()
#9 0x100009f0 in main ()
(gdb)
</code></pre>
<p>Has anyone seen anything similar?</p>
<p>Do you think upgrading to gcc 4 would help?</p>
<p>What about switching to IBM's xl compiler?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1796416/ssh-client-using-python-socket/1796423#17964235Answer by Douglas Leeder for ssh client using python socketDouglas Leeder2009-11-25T11:43:39Z2009-11-25T11:43:39Z<p>I haven't used it yet - but why don't you try <a href="http://www.lag.net/paramiko/" rel="nofollow">paramiko</a>?</p>
http://stackoverflow.com/questions/1789195/how-to-debug-a-program-that-is-terminating-in-an-unhandled-exception/1789235#17892355Answer by Douglas Leeder for How to debug a program that is terminating in an unhandled exception???Douglas Leeder2009-11-24T10:37:53Z2009-11-24T15:17:41Z<p>It there anywhere on the call-stack with a <a href="http://publib.boulder.ibm.com/infocenter/lnxpcomp/v8v101/index.jsp?topic=/com.ibm.xlcpp8l.doc/language/ref/cplr156.htm" rel="nofollow">exception specification</a> or <a href="http://www.cplusplus.com/doc/tutorial/exceptions/" rel="nofollow">here</a>? If there is then you might have this problem - you probably want to remove all of them.</p>
<p>If you are using gcc, then you can add this code first thing in <code>main()</code>:</p>
<pre><code>#ifdef __GNUC__
std::set_terminate(__gnu_cxx::__verbose_terminate_handler);
#endif // ifdef __GNUC__
</code></pre>
<p>(More details at <a href="http://gcc.gnu.org/onlinedocs/libstdc++/manual/bk01pt02ch06s02.html" rel="nofollow">http://gcc.gnu.org/onlinedocs/libstdc++/manual/bk01pt02ch06s02.html</a>)<br>
Which will give you a better traceback from such exceptions.</p>
http://stackoverflow.com/questions/1783792/why-does-gcc-report-implicit-declaration-of-function-round/1783863#17838632Answer by Douglas Leeder for Why does gcc report "implicit declaration of function ‘round’"?Douglas Leeder2009-11-23T15:29:12Z2009-11-23T15:29:12Z<p>You need to tell gcc that you want C99, and that you want to link in libm:</p>
<pre><code>gcc -std=c99 -lm round_test.c
</code></pre>
http://stackoverflow.com/questions/1782273/troubleshooting-sigterms-with-tee-on-a-cluster-within-sge-jobs/1782413#17824130Answer by Douglas Leeder for Troubleshooting SIGTERMs with tee on a cluster within SGE jobsDouglas Leeder2009-11-23T11:01:18Z2009-11-23T13:32:18Z<p>I don't know anything about why your particular case is failing, but one option might be to make <code>$GMSCOMMAND</code> do it's own logging. (Effectively put the tee inside the app). I guess this option depends on cost of changing the legacy app.</p>
<p>Failing that you could wrap the 'legacy app' with your own script/application to do the redirection/duplication.</p>
http://stackoverflow.com/questions/1763635/translating-a-windows-batch-file-into-a-linux-shell-script/1763689#17636891Answer by Douglas Leeder for Translating a Windows batch file into a Linux shell scriptDouglas Leeder2009-11-19T14:32:20Z2009-11-20T10:00:02Z<p>Everything except the timeout of 1ms:</p>
<pre><code>while read DOMAIN
do
ping -c 1 -W 1 "www.${DOMAIN}" >dev/null || echo "${DOMAIN}" >>"no-response.txt"
done <"domains.txt"
</code></pre>
<p>(domains.txt might need Unix line endings)</p>
http://stackoverflow.com/questions/1758276/how-can-i-run-a-python-program-over-telnet/1758310#17583104Answer by Douglas Leeder for How can I run a Python program over telnet?Douglas Leeder2009-11-18T19:07:45Z2009-11-18T19:08:51Z<p>Make the Python script into the shell for that user. (Or if that doesn't work, wrap it up in bash script or even a executable).</p>
<p>(You might have to put it in /etc/shells (or equiv.))</p>
http://stackoverflow.com/questions/1935194/sorting-an-array-with-minimal-number-of-comparisons/1935277#1935277Comment by Douglas Leeder on Sorting an array with minimal number of comparisonsDouglas Leeder2009-12-20T09:04:26Z2009-12-20T09:04:26ZYep, you are right - I was editing when you commented.http://stackoverflow.com/questions/1935194/sorting-an-array-with-minimal-number-of-comparisons/1935275#1935275Comment by Douglas Leeder on Sorting an array with minimal number of comparisonsDouglas Leeder2009-12-20T09:02:53Z2009-12-20T09:02:53ZOpps - sorry, you are right - my answer is broken.http://stackoverflow.com/questions/1935194/sorting-an-array-with-minimal-number-of-comparisons/1935275#1935275Comment by Douglas Leeder on Sorting an array with minimal number of comparisonsDouglas Leeder2009-12-20T08:45:58Z2009-12-20T08:45:58ZShown by demonstration. :-)http://stackoverflow.com/questions/1890711/integrating-moved-files-in-perforce/1890761#1890761Comment by Douglas Leeder on Integrating moved files in perforceDouglas Leeder2009-12-11T22:48:46Z2009-12-11T22:48:46ZI believe 2009.1 adds proper renames - which doesn't help with historyhttp://stackoverflow.com/questions/1866373/how-to-perform-p4-submit-operation-without-passing-description-inside-the-p4-submComment by Douglas Leeder on How to perform p4 submit operation without passing description inside the p4 submit form.Douglas Leeder2009-12-10T13:10:43Z2009-12-10T13:10:43ZYou should post answers as answers - not add them to the question...http://stackoverflow.com/questions/1866373/how-to-perform-p4-submit-operation-without-passing-description-inside-the-p4-subm/1867113#1867113Comment by Douglas Leeder on How to perform p4 submit operation without passing description inside the p4 submit form.Douglas Leeder2009-12-10T13:10:13Z2009-12-10T13:10:13ZYou should post answers as answers - not add then to the question...http://stackoverflow.com/questions/1866373/how-to-perform-p4-submit-operation-without-passing-description-inside-the-p4-subm/1867113#1867113Comment by Douglas Leeder on How to perform p4 submit operation without passing description inside the p4 submit form.Douglas Leeder2009-12-09T16:58:28Z2009-12-09T16:58:28ZI'm not sure why Windows p4 would work in that case - is it talking to the same server?http://stackoverflow.com/questions/1866373/how-to-perform-p4-submit-operation-without-passing-description-inside-the-p4-subm/1867113#1867113Comment by Douglas Leeder on How to perform p4 submit operation without passing description inside the p4 submit form.Douglas Leeder2009-12-09T16:56:45Z2009-12-09T16:56:45ZThe release notes from perforce suggest it's a server feature, so you might be right.http://stackoverflow.com/questions/1866373/how-to-perform-p4-submit-operation-without-passing-description-inside-the-p4-subm/1867113#1867113Comment by Douglas Leeder on How to perform p4 submit operation without passing description inside the p4 submit form.Douglas Leeder2009-12-09T16:54:21Z2009-12-09T16:54:21ZI wouldn't have thought so, but maybe - certainly p4 needs to be able to contact the server to do <code>p4 help submit</code>, and our server is 2007.3.http://stackoverflow.com/questions/1866373/how-to-perform-p4-submit-operation-without-passing-description-inside-the-p4-subm/1867113#1867113Comment by Douglas Leeder on How to perform p4 submit operation without passing description inside the p4 submit form.Douglas Leeder2009-12-08T18:06:59Z2009-12-08T18:06:59ZI don't understand how that can be happening. I have precisely the same version and it has the -d flag.http://stackoverflow.com/questions/1866373/how-to-perform-p4-submit-operation-without-passing-description-inside-the-p4-subm/1867113#1867113Comment by Douglas Leeder on How to perform p4 submit operation without passing description inside the p4 submit form.Douglas Leeder2009-12-08T14:17:07Z2009-12-08T14:17:07ZThen you haven't successfully downloaded and installed the new version of p4.http://stackoverflow.com/questions/1866373/how-to-perform-p4-submit-operation-without-passing-description-inside-the-p4-submComment by Douglas Leeder on How to perform p4 submit operation without passing description inside the p4 submit form.Douglas Leeder2009-12-08T13:28:00Z2009-12-08T13:28:00ZIn what way does it fail?http://stackoverflow.com/questions/1859547/open-edit-all-files-of-depot-using-p4-add-edit-command/1859688#1859688Comment by Douglas Leeder on open/edit all files of depot using p4 add/edit commandDouglas Leeder2009-12-08T11:53:54Z2009-12-08T11:53:54ZYou haven't accepted this answer yet...http://stackoverflow.com/questions/1859433/imposing-library-loading-order/1859577#1859577Comment by Douglas Leeder on imposing library loading orderDouglas Leeder2009-12-07T13:42:32Z2009-12-07T13:42:32Z@Jack - edited my answer - basically when linking the library make sure all dependent libs are linked in.http://stackoverflow.com/questions/1686730/aix-monitoring-directory-changesComment by Douglas Leeder on AIX monitoring directory changesDouglas Leeder2009-12-07T12:32:54Z2009-12-07T12:32:54ZLooks like he wants code to do this ("from Java"), so I think it's in the right place.