Douglas Leeder

11,428
Reputation
555 views

Registered User

Name Douglas Leeder
Member for 1 year
Seen 11 hours ago
Website
Location UK
Age 30
I work at Sophos, on Anti-Virus for Linux (Also various Unixes)
17h
comment how can this src vs. build tree timestamp comparison be faster? (bash)
I think you mean ${file/.java/.class} in the substitution?
2d
comment Help to use protocol buffers
Follow the link I included - it's a tutorial that covers using protocol buffers from C++.
2d
answered Help to use protocol buffers
2d
comment Is Network Up? C++ Fedora/Unix
So re-order your code - check if you can connect to (at least one) appropriate client, then do your calculations, before communicating to the connected clients.
2d
answered Is Network Up? C++ Fedora/Unix
2d
comment Is Network Up? C++ Fedora/Unix
Not on Linux/Unix. Only Windows decided to change the name of the command.
Dec
1
answered Performance Implications when sending large files via HTTPS
Dec
1
answered Is there a way to ask the Linux Kernel to re-run its PCI initialization code?
Dec
1
accepted C++ swap problem in inheritance scenario
Nov
30
answered C++ swap problem in inheritance scenario
Nov
30
answered Is RLock a sensible default over Lock?
Nov
28
comment Why does C have a distinction between -> and . ?
+1 for C++ problems.
Nov
28
answered Why doesn’t the following (perfectly valid) C code show the contents of a file in Objective-C?
Nov
27
answered Autoconf - Where does config.h go?
Nov
27
comment Oracle C++ linux and more weird stuff
en.wikipedia.org/wiki/Multitier_architecture/… Basically it allows independence; allowing both the database and the endpoints to be replaced without requiring the other to change. It avoid precisely the problem you are having - needing proprietary libraries for your devices.
Nov
27
comment Synchronization on the local variables
Yes, but it won't be a local variable then.
Nov
27
answered How to change permissions for file on sFTP server using phpseclib?
Nov
27
answered Oracle C++ linux and more weird stuff
Nov
27
accepted Algorithm should I create a new thread?
Nov
27
revised Algorithm should I create a new thread?
added 604 characters in body
Nov
27
revised Algorithm should I create a new thread?
added 285 characters in body
Nov
27
revised Algorithm should I create a new thread?
Correct spelling.
Nov
27
answered Algorithm should I create a new thread?
Nov
27
answered Avoid pass-phrase prompt on git push to remote.
Nov
25
answered ssh client using python socket
Nov
24
revised How to debug a program that is terminating in an unhandled exception???
added 202 characters in body
Nov
24
answered How to debug a program that is terminating in an unhandled exception???
Nov
23
comment Troubleshooting SIGTERMs with tee on a cluster within SGE jobs
As pipe is the problem - I suggest writing your own wrapper.
Nov
23
comment Why does gcc report “implicit declaration of function ‘round’”?
Also need -lm to link libm to get the actual function.
Nov
23
comment Why does gcc report “implicit declaration of function ‘round’”?
Looks like it - from the Ubuntu 8.04 manpage - round(), roundf(), roundl(): _XOPEN_SOURCE >= 600 || _ISOC99_SOURCE; or cc -std=c99
Nov
23
answered Why does gcc report “implicit declaration of function ‘round’”?
Nov
23
revised Troubleshooting SIGTERMs with tee on a cluster within SGE jobs
added 116 characters in body
Nov
23
comment Troubleshooting SIGTERMs with tee on a cluster within SGE jobs
Could you try replacing the tee command with cat - to see if it's the pipe that's the problem?
Nov
23
comment Troubleshooting SIGTERMs with tee on a cluster within SGE jobs
Ok, could you try replacing the tee command with cat - to see if it's the pipe that's the problem?
Nov
23
answered Troubleshooting SIGTERMs with tee on a cluster within SGE jobs
Nov
22
comment fcntl issues compiling C++
I'm sure it possible to tell gcc to include all the C++ libraries, but given that g++ is designed precisely to compile C++ (and include appropriate libraries), it seems obtuse to try and use gcc.
Nov
20
revised Translating a Windows batch file into a Linux shell script
Don't put ping output in results file, only put failing results.
Nov
20
comment Translating a Windows batch file into a Linux shell script
Does Windows ping not output on success???
Nov
19
answered Translating a Windows batch file into a Linux shell script
Nov
18
answered How can I run a Python program over telnet?
Nov
18
accepted Subversion: Generate a full diff from every checkin that includes username
Nov
18
comment perforce: create a local backup of current pendinglist
Did you ever get a chance to look at that book?
Nov
18
comment Regular Expression Match Without Final Character
Either your first sentence is wrong, or your regex and examples are wrong. Do you want to match all string that don't have a slash or .aspx at the end?
Nov
18
comment Regular Expression Match Without Final Character
So is it your first sentance that is wrong?
Nov
18
comment Regular Expression Match Without Final Character
I guess your regex engine allows variable-width look-behind assertions then?
Nov
18
comment Regular Expression Match Without Final Character
It's a negative look-ahead assertion - I can't see how the final /? will ever match anything (i.e. it will always be the 0 of {0,1}).
Nov
18
revised Regular Expression Match Without Final Character
added 189 characters in body
Nov
18
answered Regular Expression Match Without Final Character
Nov
18
comment Regular Expression Match Without Final Character
Maybe you're trying to do too much with a regular expression?
Nov
18
comment Regular Expression Match Without Final Character
Won't the /? never match, because the greedy + will always take it?