Found 1,325 posts across 1 forum.
Reaction in San Francisco to Bush victory (warning!) — #3
What's the purpose of this thread?
I thought so.
Reaction in San Francisco to Bush victory (warning!) — #4
[quote]Originally posted by IceBreaker:
Oh that is really going to convince those of us in Middle America to vote Democratic!
Reaction in San Francisco to Bush victory (warning!) — #5
He's going to have a helluva time explaining that sign to Middle America when he runs for president in 35 years, as the Democratic candidate.
And, I should also mention, he'd not …
Reaction in San Francisco to Bush victory (warning!) — #6
I bet these people are preaching tolerance and non-violence too.
Reaction in San Francisco to Bush victory (warning!) — #7
Free speech from real americans
Reaction in San Francisco to Bush victory (warning!) — #8
Quote:
Originally posted by ironknee:
Free speech from real americans
Teen angst from spoiled brats.
Reaction in San Francisco to Bush victory (warning!) — #9
Hahahaha, those damn losers don't even upset me anymore since this whole thing is over with now.
I hope they develop huge ulcers.
Reaction in San Francisco to Bush victory (warning!) — #10
Idiots. All of them.
New icons for NeoOffice/J: Designers wanted — #1
As mentioned before it seems rather difficult to find any developers to support the Mac port of OOo, but here is another issue that can be adressed by any willing artist: designing…
C++, Xcode telling me main() needs int?! — #1
Hi Folks,
I have just begun to code C++ for the first time starting yesterday and I can't even get the very first most basic script completed that I found in a tutorial. Now, the …
C++, Xcode telling me main() needs int?! — #2
Most C compilers look for main to be declared like:
int main(int argc, char* argv[])
Then add:
return 0;
at the end of main method.
C++, Xcode telling me main() needs int?! — #3
Quote:
Originally posted by iPhotoStuff:
Hi Folks,
now, I read in a bunch of places that different compilers require different returns for main? Frankly, I have no idea…
C++, Xcode telling me main() needs int?! — #4
the return value usually just tells the OS the exit status of the program. Just change that main function to read: int main() { ... } and at the end of the program before the last…
C++, Xcode telling me main() needs int?! — #5
another spot that discusses something similar to this question is down a little ways titled "help please" posted by zanyterp . . . (me).
perhaps can help little bit more. . . .whi…
C++, Xcode telling me main() needs int?! — #6
Quote:
Originally posted by zanyterp:
while on this topic here, if i declare a function that main() calls, does void functionName() work? (including the ';' as needed of…
C++, Xcode telling me main() needs int?! — #7
Quote:
Originally posted by zanyterp:
another spot that discusses something similar to this question is down a little ways titled "help please" posted by zanyterp . . . …
C++, Xcode telling me main() needs int?! — #8
Quote:
Originally posted by PBG4 User:
Yes, you can create void functions. It's just that some compilers expect the main method to be declared as int main...
The C+…
C++, Xcode telling me main() needs int?! — #9
Quote:
Originally posted by Chuckit:
void functionName(); is a valid declaration. You should just be including the header file, though.
so instead of declaring the…
C++, Xcode telling me main() needs int?! — #10
Normally you declare your functions in a header file and define them in an implementation file. Like this:
code:// SomeClass.h
#ifndef SOMECLASS_H
#define SOMECLASS_H
class Some…
C++, Xcode telling me main() needs int?! — #11
Quote:
Originally posted by Chuckit:
Normally you declare your functions in a header file and define them in an implementation file. Like this:
code:// SomeClass.h
#if…
C++, Xcode telling me main() needs int?! — #12
Well, you don't want to include a file that's going to be compiled in another file that's going to be compiled. That will just confuse things. Also, header files do make your desig…
C++, Xcode telling me main() needs int?! — #13
Quote:
Originally posted by Chuckit:
Normally you declare your functions in a header file and define them in an implementation file. Like this:
code:// SomeClass.h
#if…
C++, Xcode telling me main() needs int?! — #14
Quote:
Originally posted by Chuckit:
The C++ standard requires int main() or int main(int, char**).
Thanks for the clarification, Chuckit.
iTunes export to disk image or folders — #1
Hello,
Anyone know of a way to export tracks out of itunes, keeping the folder heirarchy to either a disk image or another hard drive?
I've tried various applescripts from Doug's…