Does anyone else have infuriating usability issues while trying to work with MonoDevelop in OS X Snow Leopard? The ones that interrupt my flow the most are associated with button clicks not responding until I move the window around a little bit. Afterwards, I can get maybe one or two button presses in before I have to repeat moving the w...
I have been able to register my own mach port to capture mach exceptions in my applications and it works beautifully when I target 32 bit. However when I target 64 bit, my exception handler catch_exception_raise() gets called but the array of exception codes that is passed to the handler are 32 bits wide. This is expected in a 32 bit bui...
Hey,
I got Leopard with XCode 3.1 and SDK 3.0, when opening the organizer and trying to debug on my ipod I received
"The version of iPhone OS on "..." does not match any of the versions of iPhone OS supported for development with this copy of xCode...".
It tells me with my xCode I can only develop for iPhone OS 3.0 or less, so I download...
I have an NSWindow that I want to display as part of another window. It has to be an NSWindow; I don't want to change it to an NSView or anything... I just don't because it involves accessing foreign nib files and the such.
How should I accomplish this if possible? I was thinking along the lines of grabbing the view of the NSWindow and ...
I'm really new to the whole GitHub thing so this might seem like a basic question but I can't figure it out.
I have a GitHub repository set up on my machine, I've managed at some point to push the master but now I have made some changes and I want to push the entire thing again (pretty much everything changed).
What I'm wondering is:
...
I'm using BAS in a Cocoa app with a custom prompt for admin password...
But now I want to change the prompt. I changed it in the strings file and it doesn't change. I rebuilt everything and deleted the sockets in /var/run and the launchdaemon and privelegedhelpertools folders. But the prompt just won't change!!!
Help?
...
I made a program in Xcode, being a simple calculator that takes a first number, and a second number, and then either adds,subtracts,multiplies, or divides depending on the radio button. I build and run and the program comes up and works fine. When I went to show my friends on their macs, when you double click on the program the program p...
In my application I'm using custom attributes to contain text I want to hide or unhide.
When text is hidden, it contained as the value (as NSAttributedString) of the custom attribute "Hidden", for example, in a special character sequence (for example (H)).
This all works super. I don't about saving the custom attribute when I save the...
I'm trying to build an application using the Canon EDSDK 2.8. I created a new Cocoa Application project in Xcode, and imported the headers and framework files. When I try to build and run (without writing any code), I get two warnings that say the frameworks are missing x86_64 architecture files. If I try and import the "EDSDK.h" header ...
I have a Java applet that needs to be able to run on Java 1.5.
I have successfully installed Java 1.5 on Snow Leopard and I am able to use it to run applets in Safari by changing the order of the versions in Java Preferences.
However, Firefox (3.5.9) doesn't seem to be able to pick up the changes and keeps reverting to using the Java...
I'm currently running Xcode 3.2.2 on Snow Leopard. When opening Organizer > Screenshots I see a list of screenshots I did before. But when I click the Capture button, nothing's happening. I don't see any messages popping up or any errors from the Console tab. I also tried restoring the iPod Touch (2nd gen) but that didn't help. Any thoug...
I can't get a swt application to work on Mac OSX Snow Leopard.
Exception in thread "main" java.lang.UnsatisfiedLinkError: no swt-cocoa-3557 or swt-cocoa in swt.library.path, java.library.path or the jar file
at org.eclipse.swt.internal.Library.loadLibrary(Unknown Source)
at org.eclipse.swt.internal.Library.loadLibrary(Unknown So...
Currently, I am trying out OpenMP on XCode 3.2.2 on Snow Leopard:
#include <omp.h>
#include <iostream>
#include <stdio.h>
int main (int argc, char * const argv[]) {
#pragma omp parallel
printf("Hello from thread %d, nthreads %d\n", omp_get_thread_num(), omp_get_num_threads());
return 0;
}
I didn't include any linking lib...
[UPDATE]
Apparently I'm not the only one with this problem - http://grails.1312388.n4.nabble.com/Beginner-ERROR-Failed-to-invoke-Servlet-2-5-getContextPath-method-td2222279.html . It has also appeared on a Windows machine and in the Netbeans IDE on OS X.
At this point, the part that has me particularly perplexed, is I can run my Gra...
Edits/Additions at bottom...
Environment:
Mac OS X 10.6 Snow Leopard
PHP 5.3
Kohana 3.0.4
When I try to configure and use a connection to a postgresql database on localhost I get the following error:
ErrorException [ Warning ]: mysql_connect(): [2002] No such file or directory (trying to connect via unix:///var/mysql/mysql.sock)...
Here's one I haven't been able to find despite some Googling and playing around:
I'm creating a disk image for a school to use on all their new laptops. It's not a fresh install. There are some customizations and software that's being installed (Volume License Office, for example). One of the requests that came in from the school was to...
I have a Mac mini with Snow Leopard Server installed on it. I need to have Tomcat, Apache, and SVN running on this system, with Apache configured to pass JSP through to Tomcat, and SVN accessible through Apache. I've tried all sorts of things, and googled extensively, but can't find the right combination that works. I've been able to ...
I'm confused. It's a regular state of affairs for me but specifically in this case I felt I could reach out to fellow stackoverflowers (that is, stackoverflow-ers, not stackover-flowers).
uname -a
Darwin macbookpro 10.3.0 Darwin Kernel Version 10.3.0: Fri Feb 26 11:58:09 PST 2010; root:xnu-1504.3.12~1/RELEASE_I386 i386
set
bash-3.2$ s...
I have a setup with an object (OTNodeDatum) (OT for OutlineTest) to be the represented object in NSTreeNode. NSTreeNode is the Class shown in the attributes page for NSTreeController.
I have document based app, no core data. On MyDocument init, I set up content with an NSMutableArray containing one item, an NSTreeNode with a represent...
Hi all,
I find there is no daytime server available in leopard/snow leopard. And after reading some documents, the approach I can think of is writing a daemon and put it under /System/Library/LaunchDaemons, so that launchd can run it. I wonder if there is a way to just enable the service rather than writing a new one myself?
Thanks in...