| Thread | Last Post | Replies |
|
| float vs. double | 29 Jun 2008 16:35 GMT | 9 |
I have inherited some plain old C code written back in '94 that uses only floats. I did a little empirical testing on my Mac (2 x 2.8 GHz Quad-Core Intel Xeon) to see whether it would be worthwhile to change everything to double. I would like the greater accuracy, but don't
|
| Having difficulty with sscanf on my Mac | 28 Jun 2008 03:16 GMT | 1 |
I can't seem to get sscanf to work for some odd reason on my Macbook Pro. The following code: sscanf(string, "%f", &double_var); Doesn't do as expected. According to gdb, double_var goes from 0.0
|
| Unit Testing a Library | 28 Jun 2008 03:16 GMT | 2 |
I've made a C++ library and would like to develop some unit test for it. Do I need to make an executable to use unit tests or can I write them against my dylib? Also, what does it mean in the tutorial (http://developer.apple.com/
|
| A "how to do it" query - load a URL using User's browser. | 27 Jun 2008 00:48 GMT | 2 |
Deep in the guts of my program, I've got a standard "http://host.network.TLD/whatever/something/foo/pagename.html" URL to a web page stored in an object. Where it came from, how it got into that object, and what type of object it's in is irrelevant - Just take it as
|
| CFPreferencesAppSynchronize failed | 26 Jun 2008 14:33 GMT | 6 |
I wrote following code. Also, I have created com.p1.myapp.plist from admin user at /Library/Preferences and has 666 permission. SInt kColor = 5; const CFStringRef kAppName = CFSTR("com.p1.myapp");
|
| USB External Drive on an iMac? | 25 Jun 2008 19:43 GMT | 4 |
I just purchased VMWare's Fusion and am intending on using Windows XP through it. I have been using the trial version for a couple of weeks and really enjoyed it. I have an iMac and plan on using a USB external hard drive to host all my Windows files and projects. Can you suggest
|
| Happy Hacking Keyboard lite2 for the Mac - problem with intermitted caps stuck on. (INIT USB on the Mac?) | 23 Jun 2008 15:46 GMT | 1 |
I have two Happy Hacking Keyboard lite2 for the Mac that I think are great. There is one minor problem. There is an intermittent problem while using the keyboard either the Mac G4 (Tiger) or the Mac Pro (Leopard) where it will switch to caps on. I try the function+tab key
|
| Trivial/stupid naming convention/cosmetics query - What would YOU do? | 23 Jun 2008 00:11 GMT | 2 |
Humor my OCD :) I have a method (as part of a category adding on to NSMutableData) I'm trying to name in a "by the conventions" fashion. It works fine - nothing wrong there. I just don't like the way the method declaration,
|
| Cocoa Newbie Question. | 22 Jun 2008 10:24 GMT | 42 |
This is my first time compiling objective C and C files together for one program. All of my files are C files except the main file which is in objective C called main.m Here is the code for my boilerplate main implementation file file:
|
| iMac with VMWare Fusion running XP - Using SQL Server and Oracle DB | 20 Jun 2008 15:00 GMT | 1 |
Obviously from the subject line I am a developer. :) I would like to know if anyone out there has had experience using VMWare on iMac with XP with the XP VM running Oracle 11g or any version for that matter and/or running SQL Server as well. They don't
|
| Dashcode Question | 19 Jun 2008 02:03 GMT | 1 |
Why does Dashcode report the error "Value undefined (result of expression widget.system) is not an object" when it comes across the line below? var output = widget.system("/usr/bin/which ls", null).outputString;
|
| How do I find the build steps taken by XCode? | 18 Jun 2008 12:03 GMT | 2 |
When I build, say, an objective C application or a C++ application, how do I access the compiler build output ie: the output from the compiler that goes on when something is compiled and linked. I'm curious about the steps XCode takes to build my program, ie: the
|
| Simple Software Distribution (bundle+dylib) | 16 Jun 2008 09:20 GMT | 2 |
I have a plug-in (a .bundle) that is linked against a dynamic lib I wrote. Everything works fine on my machine. The only problem is that now, I want to distribute it. Problem, I would like to make it very simple. For the moment, the .dylib has to be in the /usr/local/lib
|
| Bind on port fails while switch the user. | 13 Jun 2008 18:34 GMT | 3 |
I have sent one post in this group long before. Issue was my application was not able to bind on port. Senerio was one client was connected successfully and then I close the application and If I switch the user and try to bind the the port on
|
| OK, what have I missed??? (continuation of my NSTableView question) | 13 Jun 2008 15:41 GMT | 3 |
The CocoaDev site that Reinder pointed me at was *VERY* useful - At least now I think I've got the beginnings of a grip on how to use NSTableView. Except for one minor detail...
|