417 reputation
16
bio website
location
age
visits member for 1 year, 5 months
seen 16 hours ago
stats profile views 20

Mar
25
comment How do I write to the input stream of an already running java program?
I'm pretty sure that only works if stdin happens to be a pty device. If it's a regular file, then you just overwrote that file. If it's /dev/null, then I suspect nothing will happen.
Jan
9
awarded  Revival
Jan
8
answered Do I have to do a LEFT JOIN after a RIGHT JOIN?
Dec
31
answered Compiling PHP + Libpuzzle to Windows
Dec
25
comment how can i get the content of between two special strings in shell
@choujayyl If you're data is in a file, you could use 'cat' instead of 'echo'. I don't think you ever said your character strings were not short. Perhaps you need to edit your question.
Dec
25
comment Writing C programm
I'm pretty sure integer overflow doesn't segfault.
Dec
25
answered how can i get the content of between two special strings in shell
Dec
24
answered Play multiple file in Read application [Asterisk platform]
Dec
23
comment Applying a patch that modifies multiple files
I believe the diff for each file actually starts on the 'diff' line that's right before the "---" line.
Dec
23
answered Applying a patch that modifies multiple files
Dec
21
awarded  Yearling
Dec
20
asked Would using Quercus make my code fall under the GPL?
Dec
8
comment RESTful web service - how to authenticate requests from other services?
Client certificates are NOT a shared secret. That's why they exist. The client has a private key and the server has a public key. The client never share's its secret, and the public key is not a secret.
Nov
19
comment In subversion, someone deleted a file and added it back with changes in a single commit, how do I fix this?
It doesn't matter, because I have the revision number already, but your first command won't work. 'svn log affected' will stop before the last good revision. Also, could you please explain how running 'svn rm' and then putting the file back and running 'svn add' restores the original history? It seems to me that would put me back into the same situation I'm already in, with the history starting from the commit right after that 'svn add'.
Nov
19
revised In subversion, someone deleted a file and added it back with changes in a single commit, how do I fix this?
Specify command line svn on linux
Nov
19
comment In subversion, someone deleted a file and added it back with changes in a single commit, how do I fix this?
I'm not using tortoiseSVN, I'm using the command line svn client on Linux. I don't know what your #5 "make update" means. Your #6 is the part I don't know how to do. I know how to use 'svn merge' to revert a commit, but will that really restore the original file with it's history?
Nov
19
comment In subversion, someone deleted a file and added it back with changes in a single commit, how do I fix this?
I don't want to do anything I'm not sure about, and mess up the shared repository further. I'm not sure how I revert the file to before it was deleted, and do it in a way that svn recognizes as the original file with history. If I could do that, then reapplying the rest of the changes should be easy to do.
Nov
19
asked In subversion, someone deleted a file and added it back with changes in a single commit, how do I fix this?
Aug
10
awarded  Commentator
Aug
10
comment What does “Pure” mean, in the context of programming languages and paradigms?
That description makes Haskell sound useless. You say "In Haskell it is impossible for functions to have side effects like printing to stdout or changing memory locations". This is only true in the sense that that doing so is part of the return value (the IO monad), and so isn't technically a side effect. But you make it sound like you can't print to stdout in Haskell, which is not true, you can.