found : junit.framework.Test
required: java.lang.annotation.Annotation
found : junit.framework.Test
required: java.lang.annotation.Annotation
GetProcessID I believe
if it works.
SendMessage(WM_CLOSE…)
or
PostQuitMessage
1>Hooks.obj : fatal error LNK1276: invalid directive 'RWS' found; does not start with '/'
meant “take out any spaces in a pragma linker directive”
in my case:
#pragma comment(linker,”/SECTION:.SHARE, RWS”)
became
#pragma comment(linker,”/SECTION:.SHARE,RWS”)
ref: http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=251298
So you want to establish a network of files that only your family can see?
You could use hamachi to establish the connections then use straight windows file sharing
I think there are other competitors out there but that should work about right.
Thoughts?
So…run this command
tar -tf non_tar_file
and it might return 0! As if success! Whoa! unexpected! [on linux but not windows, mind you]
So…it turns out that with the replaceAll function in Java, you’re going to be double interpolated.
our goal: replace a back slash with two backslashes.
“ab\\c”.replaceAll(“\\”, “\\\\”) doesn’t work
“ab\\c”.replaceAll(“\\\\”, “\\\\\\\\”) does
wasn’t that intuitive?
so…suddenly your logs disappear? It may be that log4j is re-reading “another” config file, and loading that. To find out how add
log4j.debug=true
to your log4j.cfg file
ref: