Nov 7, 2009 at 4:19pm UTC
Does/has anyone create/d any phone applications? Typically blackberry, iPhone etc? If so, what have you created?
Nov 9, 2009 at 1:54pm UTC
yes, in java on blackberry and many types.
why?
Nov 9, 2009 at 9:41pm UTC
Ahh was purely curiosity. I might be getting a blackberry soon and remembered that you could develop your own apps for it. How do you find the API?
Nov 10, 2009 at 11:30am UTC
@guestgulkan ... Sorry that wasn't actually a question asking how to find it. I meant: do you like the API etc...?
Nov 10, 2009 at 7:36pm UTC
I've taken a look at Objective-C (for the iTouch platform), and it looked completely illegible. Made absolutely no sense. Perl is easier to read.
Nov 10, 2009 at 7:47pm UTC
1 2 3 4 5 6 7 8 9 10
@interface classname : superclassname {
// instance variables
}
+classMethod1;
+(return_type)classMethod2;
+(return_type)classMethod3:(param1_type)parameter_varName;
-(return_type)instanceMethod1:(param1_type)param1_varName :(param2_type)param2_varName;
-(return_type)instanceMethod2WithParameter:(param1_type)param1_varName andOtherParameter:(param2_type)param2_varName;
@end
Jesus christ... You're right. Perl
is easier to read! What the hell do the + and - signs do? What the hell is that?
1 2 3 4 5 6
#import <stdio.h>
int main( int argc, const char *argv[] ) {
printf( "hello world\n" );
return 0;
}
What the hell? The ONLY difference is #import instead of include! Include makes
more sense! You're not shipping the header file across the pacific; you're including it in your project! That's a stupid language; they probably only changed include to import so that they can say "look, our hello world is different than yours!".
Last edited on Nov 10, 2009 at 7:50pm UTC
Nov 11, 2009 at 1:21pm UTC
Wow, thanks for pointing that out. Otherwise, I would have missed a reply intended for me, quoting my post.
Nov 11, 2009 at 5:21pm UTC
helios wrote:Wow, thanks for pointing that out. Otherwise, I would have missed a reply intended for me, quoting my post.
See
Predator wrote:Any time...
Last edited on Nov 11, 2009 at 5:22pm UTC
Nov 11, 2009 at 5:44pm UTC
Well that's not funny. I hope Dick is the name of a guy and not your Johnson.
Nov 11, 2009 at 5:57pm UTC
Oh, you guys don't frequent /prog/. Good for you.
Nov 11, 2009 at 6:09pm UTC
I went there once; and all the files I opened were blank even though I could clearly see (through Nautilus) that they contained text :l
I also like to go into /dev and try reading /dev/ram0. Never seems to work though...
Nov 14, 2009 at 3:03am UTC
Fortunately, you're allowed to use C++ instead, but it's much more complicated than just using Objective-C apparently.