Question
What are the differences between a Framework build and a non-Framework build (i.e., standard UNIX build) of Python on Mac OS X? Also, what are the advantages and disadvantages of each?
Preliminary Research
Here is the information that I found prior to posting this question:
[Pythonmac-SIG] Why is Framework build of Python n...
We are selling an image processing application (about 120k lines of code) developed with wxWidgets. We planned everything to be as most cross platform as possible in case the porting from Windows to other OS was needed. And in fact we are going to realiza a version for Mac.
We haven't tested wxWidgest on Mac yet, but we haven't read very...
does anyone have any suggestions for what I can do to try and create a SL Shared Library as a DLL file on a Mac? I've tried Eclipse with eclipse4sl and MonoDevelop, but I can't figure out what i'm doing wrong. I had a nice streamlined process for this on a PC using VWD 2008. Basically what I want is this:
1.) A project that is strictly ...
The source code editor in XCode 3.1 has a new feature where your compiler error (and warning) messages are embedded directly in your code below the relevant line of text. I'm sure it sounded like a nice idea, but in practice I find it very annoying - your code jumps around as you try to make the edits to fix the error.
I know you can c...
Does anyone know how to use setLeftCapWidth on the mac? I know that Apple uses it in iChat and atebits uses it in Tweetie for mac. So does anyone know how to re-create it?
...
Hi guys,
I want to change this code into assembly code, working on mac, how to do this?
while (a --)
{
*pDest ++ += *pSrc ++;
}
...
How do I install mcrypt? I'm using Leopard 10.5.8 with PHP5.
...
Everything I found so far is either a WYSIWIG designer or a glorified TextEdit replacement.
I am looking for the following:
Lightweight (that rules out Eclipse and Aptana)
Code completion or at least automatic bracket closing
Syntax highlighting
FTP integration (either on its own or with another FTP application)
...
I installed Snow Leopard and things have been going great, after a few re-installs. But now when I go to run cucumber, I get the error below, and I can't find anything conclusive through Google searches. Has anyone run into this, or maybe have some troubleshooting steps to try?
$ cucumber features
dyld: NSLinkModule() error
dyld: Libr...
Is there a parallel command to Linux's LDCONFIG for Mac OS X's Terminal?
...
Greetings
It sounds easy, but it's giving me a hard time.
I am trying to create a method that inputs a string then return it compressed(deflated) using zlib.h (the one from zlib.net)
I've read the zlib.h a couple times, no success :/
I think I need to use the deflateInit2() function, but woah, look at its complex definition:
#define ...
I've created the following AppleScript for deleting all the selected tracks:
property okflag : false
-- check if iTunes is running
tell application "Finder"
if (get name of every process) contains "iTunes" then set okflag to true
end tell
if okflag then
tell application "iTunes"
if selection is not {} then
repeat wi...
I had a working application bundle on Mac OS X Tiger. I was easily able to just replace the jar file and everything worked as i made changes. I take that app bundle now, and when it is on Leopard, I get the error message along the lines of "Cannot open this application because it is not supported on this architecture".
I assume this is...
Mac OSX Finder has a search feature that darkens everything but the part that matches.
Is there a way to emulate it via CSS? I was thinking about adding a semi-transparent black div with opacity 50. But how then do I cut a hole in it?? and possibly make the edge fuzzy?
Any suggestions?
...
I've been trying to read a txt file containing a formatted matrix (9x9) into an int array. The txt file is selected by the user using NSOpenPanel.
An example txt file:
2 7 9 1 6 2 1 1 1
9 1 3 3 4 0 6 8 5
5 3 2 9 3 8 6 7 0
6 0 9 2 5 6 4 8 0
3 2 0 4 0 5 0 6 0
4 0 5 4 0 3 9 0 0
6 4 1 3 2 5 7 2 0
6 5 7 2 1 3 0 9 3
1 0 2 7 5 1 0 0 0
I...
I encountered following weird behavior yesterday. It seems a compiler bug to me or is there a something that I've missed? I was wrapping Facebook Connect for iPhone's Objective-C classes with Objective-C to C++ adaptor classes, so that they could be used from our own OpenGL/C++ code more conveniently.
The following code reveals the prob...
I wanted to try and use some features introduces in 10.5 (like Core Text), so I set the Base SDK and Deployment target both to Mac OS X 10.5
I am also certain that all referenced Frameworks have a path relative to the selected SDK, and the tooltip also currently says it is looking in the 10.5 folder.
When I try to compile it however, I ...
I'm trying to get audio queue working on an iphone app, and whenever AudioQueueStart is called it gives the "fmt?" result code (kAudioFormatUnsupportedDataFormatError). In the code below i'm setting the format to kAudioFormatLinearPCM, which surely is supported. What am i doing wrong?
data.mDataFormat.mSampleRate = 44100;
data.mDataForm...
I have two questions about Package Maker on Leopard. I installed Xcode 3.1.4. I exported my Java app out of Eclipse into an app bundle and made an installation program for it. I know little about Macs so I am going off of random sites right now on how to use this tool.
1) Is there a way using Package Maker or alter the "Info.plist" to r...
We have a java app which we call with a parameter (a selected folder), which works fine in C#.
However, I'm at a loose end to work out how to do this in Objective-C; I've found the LaunchApplication command, but it's a bit vague.
Can someone please help me out?
...