active questions tagged osx - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T11:33:49Z http://stackoverflow.com/feeds/tag/osx http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1809011/solution-for-web-designer-using-an-osx-to-develop-an-asp-net-mvc-project 2 Solution for web designer using an OSX to develop an ASP.NET MVC project? Lauri Larjo 2009-11-27T14:11:12Z 2009-11-28T06:03:08Z <p>The project is developed using ASP.NET MVC framework and heavily relies on .NET 3.5.</p> <p>What would be the best solution to allow a web designer, who is using OSX, to develop the site's UI? Basically he would just need to edit the aspx, css and js files, but also run the web application locally.</p> <p>I've thought of some possibilites:</p> <ol> <li>Install parallels/vmware/bootcamp and set up everything as you would for windows. Bad: it would be slow, OSX user doesn't like working in windows</li> <li>Set up Mono and run the webapp on that. Use whatever tool you want for editing the front end files. Bad: does mono support MVC framework, .NET 3.5 and database connections? Unfamiliar platform, so possibly a lot of work setting it up, if it even will work.</li> <li>Run the site on a separate server, and edit the front end files via network drive. Bad: our development server is so slow that seeing the changes takes too long...</li> </ol> <p>Do you have other ideas or comments for these options? Thanks!</p> http://stackoverflow.com/questions/1805081/clojure-cant-find-clj-in-local-directory-and-classes-on-classpath 1 Clojure can't find .clj in local directory, . and ./classes on CLASSPATH Ben Godfrey 2009-11-26T18:24:53Z 2009-11-28T02:42:20Z <p>When I evaluate (use 'hello) to load hello.clj, the REPL complains with the following error:</p> <pre><code>java.io.FileNotFoundException: Could not locate hello__init.class or hello.clj on classpath: (NO_SOURCE_FILE:0) </code></pre> <p>I'm invoking the REPL like this:</p> <pre><code>java -cp "/Library/Java/Extensions/servlet-api-2.5-20081211.jar:... lots of jarfiles ...:/Library/Java/Extensions/clojure-contrib.jar:/Library/Java/Extensions/clojure-1.0.0.jar:./classes/:." jline.ConsoleRunner clojure.lang.Repl </code></pre> <p>Reading around, this looks like the file isn't being found in the PWD, but I've added . to the path with no success :-(.</p> <p>Running with Java 1.6 on OS X 10.6.</p> <p>I'm sure I'm being an idiot, can someone hit me with a LART?</p> http://stackoverflow.com/questions/1810497/hide-console-for-tkinter-app-on-osx 0 Hide console for Tkinter app on OSX lotharsmash 2009-11-27T20:15:36Z 2009-11-27T20:47:36Z <p>I'm trying to hide the Terminal when I launch a GUI Tkinter based app, but when I double click the app.py file on OSX, the Terminal window appears. I've tried changing the extension to .pyw and tried launching it with /usr/bin/pythonw, but no matter what, the Terminal window still appears. </p> <p>I've even tried adding the try/except below, but when I run it I get the error: 'invalid command name "console"' in the Terminal window that appears. </p> <pre><code>from Tkinter import * class MainWindow(Tk): def __init__(self): Tk.__init__(self) try: self.tk.call('console', 'hide') except TclError, err: print err win = MainWindow() win.mainloop() </code></pre> <p>I haven't been able to find any way to hide the Terminal window from appearing. Anybody got any ideas?</p> http://stackoverflow.com/questions/184491/java-applet-awt-refresh-problem-mac-os-x-10-4 0 Java Applet, AWT Refresh problem Mac OS X 10.4 Jason Kealey 2008-10-08T19:37:14Z 2009-11-27T20:46:06Z <p>We have a Java Applet built using AWT. This applet lets you select pictures from your hard drive and upload them to a server. The applet includes a scrollable list of pictures, which works fine in Windows, Linux and Mac OS X 10.5. We launch this applet via Java Web Start or within a web page. </p> <p>Our applet does not behave properly in Mac OS X 10.4, regardless of the version of Java (1.4 or 1.5). You can find a screenshot of the incorrect behaviour, when scrolling, here:</p> <p><a href="http://www.lavablast.com/tmp/ui_error.png" rel="nofollow">http://www.lavablast.com/tmp/ui_error.png</a></p> <p>Simply put, sometimes when scrolling the pictures end up overlapping the header or footer of the application. This behaviour does not occur on other platforms. On Mac OS X 10.4, it shows the pictures in the incorrect location when scrolling, which would not be so bad if it refreshed the screen after painting the image at that location. However, it does not appear that the application knows it painted it incorrectly and thus does not refresh.</p> <p>If the window is minimized, resized or even moved, the application is refreshed and the incorrectly positioned elements vanish and the application resumes normally. I spent quite some time trying to force a refresh of the background image unsuccessfully. (the repaint the image directly, repaint all children of a few panels, etc. ) Thus, I am looking for any tips that would help me resolve this problem under Mac OS X 10.4 or, in the worst case, simply simulate a full applet refresh. </p> <p>Until recently, everything was compatible with Java 1.1 but this has changed in a few locations which now require 1.4. I don't feel these changes created the issue, I am just providing this as extra information. If you are interested in implementation details of the scroll panel, I will investigate, but I am assuming this is a common platform bug for which workarounds must be known.</p> <p>To replicate the problem, open the following Java Web Start application: <a href="http://www.lavablast.com/tmp/opal-webstart.php.jnlp" rel="nofollow">http://www.lavablast.com/tmp/opal-webstart.php.jnlp</a></p> <p>Select a folder containing lots of images and play with the scrollbar. At some point (fairly quickly), you should get the refresh problem. </p> <p>Edit: I followed the first suggestion here and replaced all my controls that feature background images with a Swing equivalent and the issue is still there. (Plus, there are numerous other fixes I would need to do to do a complete change). Any other ideas? A simple one line of code that forces a full refresh would be great :)</p> <p>Edit2: The main thread creates the panels and launches X threads. Using an observer/notifier pattern, the threads complete and notify the main control, which adds a panel to the page. This is done via an EventQueue.invokeLater which, unless I am mistaken, should run on the right thread. The issue is at its most severe when scrolling even if no extra threads are running (as during the loading). </p> http://stackoverflow.com/questions/1810327/cant-use-gcc-in-os-x-terminal 0 Can't use GCC in OS X Terminal Riddian 2009-11-27T19:28:28Z 2009-11-27T19:36:39Z <p>I have installed the developer tools. I can compile code via Xcode and according to the docs /usr/bin/gcc &amp; /usr/bin/cc should point to /usr/bin/gcc-4.0. Neither the symlinks or gcc-4.0 exist on my system (Snow Leopard). All I wish to do is compile some C on the terminal! I'm amazed by how complicated this task is. The command GCC is unsurprisingly returning "gcc: command not found".</p> <p>Can anyone shed some light on this?</p> http://stackoverflow.com/questions/1939/howto-articles-for-iphone-development-objective-c 75 Howto articles for iPhone development, Objective C gyurisc 2008-08-05T05:39:36Z 2009-11-27T17:29:58Z <p>I am looking for an introduction into developing for the iPhone. Any recommendation? I do not speak Objective-C either, so tutorials on that would not hurt either. </p> http://stackoverflow.com/questions/1804922/changing-provided-services-based-on-user-preferences-in-osx 0 Changing provided services based on user preferences in OSX? nkuyu 2009-11-26T17:36:00Z 2009-11-27T15:49:51Z <p>Hi,</p> <p>I would like to be able to change the OSX services that my application provides based on the current user's preferences (like adding more, changing the name,...). This basically means modifying the Info.plist (NSService key), but I don't think it is a good practice when an application modifies its own Info.plist while running, right? (At least based on few searches here). Is there any other option how to get this functionality?</p> <p>I guess it should always be an external entity who does modify the Info.plist? So far I can only think about providing a system preference bundle which will do the modification in the actual app? Do you have any ideas?</p> <p>Thank you</p> http://stackoverflow.com/questions/767380/iphone-unable-to-receive-data-using-udp-recvfrom 0 iPhone Unable to receive data using UDP recvfrom Neo 2009-04-20T08:25:27Z 2009-11-27T07:28:59Z <p>I am writing an application which is continuously sending and receiving data. My initial send/receive is running successfully but when I am expecting data of size 512 bytes in the recvfrom I get its return value as -1 which is "Resource temporarily unavailable." and errno is set to EAGAIN. If I use a blocking call i.e. without Timeout the application just hangs in recvfrom. Is there any max limit on recvfrom on iPhone? Below is the function which receives data from the server. I am unable to figure out what can be going wrong.</p> <pre><code>{ struct timeval tv; tv.tv_sec = 3; tv.tv_usec = 100000; setsockopt (mSock, SOL_SOCKET, SO_RCVTIMEO, (char *)&amp;tv, sizeof tv); NSLog(@"Receiving.. sock:%d",mSock); recvBuff = (unsigned char *)malloc(1024); if(recvBuff == NULL) NSLog(@"Cannot allocate memory to recvBuff"); fromlen = sizeof(struct sockaddr_in); n = recvfrom(mSock,recvBuff,1024,0,(struct sockaddr *)&amp;from, &amp;fromlen); if (n == -1) { [self error:@"Recv From"]; return; } else { NSLog(@"Recv Addr: %s Recv Port: %d",inet_ntoa(from.sin_addr), ntohs(from.sin_port)); strIPAddr = [[NSString alloc] initWithFormat:@"%s",inet_ntoa(from.sin_addr)]; portNumber = ntohs(from.sin_port); lIPAddr = [KDefine StrIpToLong:strIPAddr]; write(1,recvBuff,n); bcopy(recvBuff, data, n); actualRecvBytes = n; free(recvBuff); } </code></pre> <p>}</p> http://stackoverflow.com/questions/1760184/recommendations-for-a-erm-dmd-and-orm-diagram-creation-application-for-osx 0 Recommendations for a ERM, DMD and ORM Diagram Creation Application for OSX Ash 2009-11-19T00:44:03Z 2009-11-27T02:08:31Z <p>I need to produce several ERM, DMD and ORM diagrams for several projects I am working on. Obviously I'd like them to be a sleek and professional as possible, and while a simple Google search provides a plethora of options, they're all pay-for-use.</p> <p>Are there any free (or open source) diagram creators available for Mac OSX which produce "sexy-enough" diagrams suitable and professional enough for use in client-accessible specification documents?</p> http://stackoverflow.com/questions/1806443/why-are-these-methods-returning-different-network-interfaces 0 Why are these methods returning different network interfaces? timmerk 2009-11-27T01:51:06Z 2009-11-27T01:51:06Z <p>I've tried two different ways to return a list of network interfaces in OS X:</p> <pre><code>SCNetworkInterfaceCopyAll() </code></pre> <p>and the other way was to grab everything in the dynamic store key "Setup:/Network/Service/.*/Interface" and then return the interfaces that have a kSCPropNetInterfaceDeviceName key.</p> <p>Each way returns slightly different interfaces. SCNetworkInterfaceCopyAll() returns the bluetooth modem, while the dynamic store does not. The dynamic store way returns a 3G card interface that I haven't plugged in months. I tried removing the kSCPropNetInterfaceDeviceName check, but still no bluetooth interface.</p> http://stackoverflow.com/questions/693936/good-editors-for-web-development-on-os-x 7 Good Editors for Web Development on OS X? JimDaniel 2009-03-29T01:26:59Z 2009-11-26T13:46:38Z <p>I'm getting started with web development on OS X need some good development tools, text editors...etc. I have XCode already but it doesn't seem geared towards editing the web technologies I will be using: xhtml, javascript, css, and php. </p> <p>So I am looking for some ideas. I know about TextMate, but am trying to avoid spending any $$$.</p> <p>Thanks!</p> <p>UPDATE: I downloaded them all and so far I like TextMate the best, so I'll be using it for a month at least. Aquamacs and TextWrangler are also good. The web IDEs like Coda and Espresso are pretty interesting. I might give them a chance in the future, but for now I want to keep it lightweight. Thanks all.</p> http://stackoverflow.com/questions/1799471/disabling-esc-and-command-in-an-osx-cocoa-app 0 Disabling ESC and Command . in an OSX Cocoa app Michael Minerva 2009-11-25T19:42:05Z 2009-11-26T02:52:16Z <p>I made a little cocoa app that brings up an IKPictureTaker and saves a picture to a file if you press the set button. Currently, if you press esc or Command . the window picture taker will close. Is there a way to disable this behavior? </p> http://stackoverflow.com/questions/945709/emacs-23-os-x-multi-tty-and-emacsclient 3 Emacs 23, OS X, multi-tty and emacsclient Singletoned 2009-06-03T16:26:48Z 2009-11-25T23:43:23Z <p>How can I get emacs 23 working nicely in multi-tty mode on OS X?</p> <p>I've added <code>(server-start)</code> to my .emacs, and have discovered that running <code>/Applications/Emacs.app/Contents/MacOS/bin/emacsclient -n ~/myfile.txt</code> will open it in my emacs.app, but it doesn't bring emacs to the front.</p> <p>So, how can I get emacs.app to come to the front when I run emacsclient? (I've considered writing a function that puts the current frame to the front every time a file is opened, or maybe writing an Applescript to do a similar job that could be called at the same time as emacsclient)</p> <p>Is the emacsclient within emacs.app the best one to use? I assume I'll write an alias to it if so, but it seems weird to be using that rather than something in /usr/local/bin</p> <p>Has anyone got any other tips or examples of getting this working?</p> http://stackoverflow.com/questions/1799584/php-file-exists-always-false 1 PHP File Exists Always False Joe 2009-11-25T19:59:54Z 2009-11-25T20:57:42Z <p>I have a case where file_exists() is always returning false. My latest attempt was to just test to see if it would return true for $_SERVER["SCRIPT_FILENAME"] and then return the value of the path if it couldn't find the file which it does. </p> <p>The path while not necessarily relevant to solving the problem is: /Users/joe/Workspace/720/app/webroot/index.php</p> <p>I have obviously verified that the file is there, and am not even sure how it couldn't be there since php is serving it up. </p> <p>I should mention this is on an install of OS X Snow Leopard running PHP 5.3.0.</p> <p>Any ideas would be fantastic.</p> <p>CODE SAMPLE: </p> <pre><code>if (!file_exists($_SERVER["SCRIPT_FILENAME"])) $errors[] = 'Cant find:'. $_SERVER["SCRIPT_FILENAME"]; </code></pre> http://stackoverflow.com/questions/1799268/finding-the-version-of-osx-inside-java 1 Finding the version of OSX inside java Michael Minerva 2009-11-25T19:08:50Z 2009-11-25T19:22:45Z <p>I need to test if the version of osx is &lt; 10.5 inside java is this possible? </p> http://stackoverflow.com/questions/1798078/how-does-an-os-x-installer-package-calculate-required-space 2 How does an OS X installer package calculate required space? DNS 2009-11-25T16:17:48Z 2009-11-25T16:17:48Z <p>I'm building an OS X Installer package for a product. When it is run, the 'Select a Destination' pane has an 'Installing this software requires X MB of space' label. But I can run the same package twice on the same machine, and see the claimed usage vary from, i.e. 85 to 127 MB, neither of which is the actual ~65MB usage of the product.</p> <p>How does Installer calculate required space?</p> http://stackoverflow.com/questions/1797837/ioregistryentryfrompath-fail 0 IORegistryEntry::fromPath() fail. kent 2009-11-25T15:47:23Z 2009-11-25T15:47:23Z <p>my IOKit kext is failing <em>on older iMacs</em> to locate the /options path in the DeviceTree plane of the IORegistry. has anybody else encountered this or know why it would fail? thx->adv</p> <pre><code> IORegistryEntry* regEntry = IORegistryEntry::fromPath("/options", gIODTPlane); if(NULL == regEntry) { regEntry = IORegistryEntry::fromPath("IODeviceTree:/options"); if(NULL == regEntry) { DEBUG_LOG("getIORegOptionsEntry: FAILURE TO LOCATE: IODeviceTree:/options\n"); } } </code></pre> http://stackoverflow.com/questions/1794050/applescript-to-open-named-terminal-window 0 AppleScript to open named terminal window mjs 2009-11-25T01:07:14Z 2009-11-25T14:55:03Z <p>I have two windows/tabs set up to run in Terminal.app, "syd" and "mel". i.e. in Shell | New Window, "syd" and "mel" are listed. How can I open these terminal configurations with AppleScript?</p> http://stackoverflow.com/questions/1794821/opengl-texture-wont-map-white-square 0 OpenGL texture won't map - white square? torch 2009-11-25T05:23:13Z 2009-11-25T14:06:00Z <p>Alright, so I'm using cairo to turn an SVG into image data for openGL textures.</p> <p>That part works.</p> <p>But now the texture I'm using won't map to the quad I'm making. It's just showing up as a blank square. </p> <p>Is there something up with the order I'm calling things in or is there some secret function I forgot to use?</p> <pre><code>const int SCREEN_WIDTH = 1280; const int SCREEN_HEIGHT = 720; const int SCREEN_BPP = 32; int frame = 0; SDL_Event event; bool quit; GLuint texture[1]; int main(int argc, char *argv[]) { g_type_init(); rsvg_init(); SDL_Surface *screen = SDL_SetVideoMode( SCREEN_WIDTH, SCREEN_HEIGHT, SCREEN_BPP, SDL_OPENGL ); SDL_WM_SetCaption ("Cairo", NULL); SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1); SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 16); SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 8); SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 8); SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8); SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, 8); /*2D stuff - it worked here glMatrixMode( GL_PROJECTION ); glLoadIdentity(); glOrtho( 0, SCREEN_WIDTH, SCREEN_HEIGHT, 0, -1, 1 ); glMatrixMode( GL_MODELVIEW ); glLoadIdentity(); glEnable (GL_BLEND); glEnable (GL_TEXTURE_2D); glBlendFunc (GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glEnable (GL_TEXTURE_2D); glEnable(GL_LIGHTING); glEnable(GL_COLOR_MATERIAL); */ //An attempt at setting up 3D stuff glEnable(GL_TEXTURE_2D); glMatrixMode( GL_MODELVIEW ); glMatrixMode( GL_PROJECTION ); glViewport(0,0,SCREEN_WIDTH, SCREEN_HEIGHT); glShadeModel(GL_SMOOTH); glClearColor(0.0,0.0,0.0,0.0); glClearDepth(1.0); glBlendFunc(GL_SRC_ALPHA, GL_ONE); glEnable(GL_BLEND); //glLoadIdentity(); float FlowerWidth = .5; float FlowerHeight = .5; float FlowerTextureWidth = 80; float FlowerTextureHeight = 80; float FlowerScaleWidth = 1; float FlowerScaleHeight = 1; cairo_surface_t* Flower; cairo_t* context; Flower = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, FlowerTextureWidth, FlowerTextureHeight); context = cairo_create(Flower); const gchar* Filename = "resources/area/haneda/lavender.svg"; RsvgHandle* SvgData = rsvg_handle_new_from_file(Filename, NULL); rsvg_handle_render_cairo_sub(SvgData, context,"#1000"); unsigned char *buffer = cairo_image_surface_get_data(Flower); cairo_surface_write_to_png(Flower,"flower.png"); //Make a texture glGenTextures(1, &amp;texture[1]); glBindTexture(GL_TEXTURE_2D, texture[1]); glPixelStoref(GL_UNPACK_ALIGNMENT, 1); glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); glTexParameterf (GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); glTexParameterf (GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); glTexParameterf (GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE); glGetError(); //or am I supposed to use GL_TEXTURE_2D? glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, FlowerHeight, FlowerWidth, 0, GL_BGRA, GL_UNSIGNED_BYTE, buffer); //done while (quit==false) { while(SDL_PollEvent(&amp;event)) { if(event.type == SDL_QUIT) { quit = true; } } /* FlowerScaleWidth+=.001; FlowerScaleHeight+=.001; cairo_scale(context,FlowerScaleWidth,FlowerScaleHeight); */ glBindTexture (GL_TEXTURE_2D, texture[1]); glBegin (GL_QUADS); glTexCoord2f (0.0, 0.0); glVertex3f (0.0, 0.0, 0.0); glTexCoord2f (FlowerWidth, 0.0); glVertex3f (FlowerWidth, 0.0, 0.0); glTexCoord2f (FlowerWidth, FlowerHeight); glVertex3f (FlowerWidth, FlowerHeight, 0.0); glTexCoord2f (0.0, FlowerHeight); glVertex3f (0.0, FlowerHeight, 0.0); glEnd (); glDeleteTextures(1, &amp;texture[1]); cairo_save (context); cairo_set_source_rgba (context, 0, 0, 0, 0); cairo_set_operator (context, CAIRO_OPERATOR_SOURCE); cairo_paint (context); cairo_restore (context); SDL_GL_SwapBuffers(); //glClear( GL_COLOR_BUFFER_BIT ); //SDL_Delay(100); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); glGetError(); SDL_Delay(400); } } </code></pre> http://stackoverflow.com/questions/1352419/why-does-macports-take-forever-to-build-simple-packages 0 Why does Macports take FOREVER to build simple packages? ennuikiller 2009-08-29T21:25:06Z 2009-11-25T09:23:27Z <p>I guess the title says it all. Building from source outside of macports is a breeze. Building with macports takes forever and seems to freeze the os every so often. Is this typical behavior? Although it seems like a nice packaging tool for os x, if I have to go through this pain every time during every install I think I'll do without it.</p> http://stackoverflow.com/questions/1794445/getresourceasstream-works-differently-on-mac-osx-vs-windows-7 0 getResourceAsStream works differently on Mac OSX vs. Windows 7? Tom H 2009-11-25T03:30:51Z 2009-11-25T07:37:52Z <p>Hi all,</p> <p>I have a set of unit test cases that depend on a test.properties file. When I run the tests under Mac OSX or Linux using Maven ('mvn test'), they work fine. But when running under Windows 7, they can't find the file unless I copy it directly to the class folder. The code to return the properties is the following two methods:</p> <pre><code>private void loadProperties() { try { properties.load(HibernateTestCase.class.getResourceAsStream(getPropertiesFilePath())); } catch (Exception ioExc) { ioExc.printStackTrace(); } } private String getPropertiesFilePath() { return File.separator + "test.properties"; } </code></pre> <p>What's the real deal here? Is it all about the file path being set wrong somewhere? Thanks in advance!</p> http://stackoverflow.com/questions/844951/make-qtmovieview-full-screen 1 Make QTMovieView full screen hekevintran 2009-05-10T08:43:11Z 2009-11-25T07:12:07Z <p>I have a QTMovieView set up as an IBOutlet. I want to play the video in full screen. Which method allows this?</p> http://stackoverflow.com/questions/244889/what-are-the-conventional-gem-paths-for-ruby-under-os-x-10-5 1 What are the Conventional GEM PATHS for Ruby under OS X 10.5? mattwynne 2008-10-28T21:13:19Z 2009-11-25T03:53:51Z <p>I have a performance problem with my ruby on my machine, which I think I have isolated to loading libraries (when #require is called), so I'm trying to work out whether ruby is searching too many folders for libraries.</p> <p>When I run </p> <pre><code>$ gem environment RubyGems Environment: - RUBYGEMS VERSION: 1.3.0 - RUBY VERSION: 1.8.6 (2008-03-03 patchlevel 114) [universal-darwin9.0] - INSTALLATION DIRECTORY: /Library/Ruby/Gems/1.8 - RUBY EXECUTABLE: /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby - EXECUTABLE DIRECTORY: /usr/bin - RUBYGEMS PLATFORMS: - ruby - universal-darwin-9 - GEM PATHS: - /Library/Ruby/Gems/1.8 - /Users/matt/.gem/ruby/1.8 - /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8 - GEM CONFIGURATION: - :update_sources =&gt; true - :verbose =&gt; true - :benchmark =&gt; false - :backtrace =&gt; false - :bulk_threshold =&gt; 1000 - :sources =&gt; ["http://gems.rubyforge.org", "http://gems.github.com/"] - REMOTE SOURCES: - http://gems.rubyforge.org - http://gems.github.com/ </code></pre> <p>There's nothing much on /Users/matt/.gem, but there's tons in both /Library/Ruby and in /System/Library/Frameworks/Ruby.framework.</p> <p>What gives? Is this normal?</p> <p>Thanks in advance, folks.</p> http://stackoverflow.com/questions/1792926/can-cocoa-be-used-in-filemaker-plugins 0 Can Cocoa be used in FileMaker Plugins? Adam Dempsey 2009-11-24T21:07:38Z 2009-11-24T22:39:17Z <p>I am trying to port a Windows FileMaker plugin to OS X and am thinking that I should be doing this in Cocoa not Carbon, but I am struggling to get anything to compile as soon as I include Cocoa.h</p> http://stackoverflow.com/questions/1792632/how-to-add-an-extra-plist-property-using-cmake 0 How to add an extra plist property using CMake? Jesse Beder 2009-11-24T20:13:18Z 2009-11-24T20:13:18Z <p>I'm trying to add the item</p> <pre><code>&lt;key&gt;UIStatusBarHidden&lt;/key&gt;&lt;true/&gt; </code></pre> <p>to my plist that's auto-generated by CMake. For certain keys, it appears there are pre-defined ways to add an item; for example:</p> <pre><code>set(MACOSX_BUNDLE_ICON_FILE ${ICON}) </code></pre> <p>But I can't find a way to add an arbitrary property.</p> <p>I tried using the <code>MACOSX_BUNDLE_INFO_PLIST</code> target property as follows: I'd like the resulting plist to be identical to the old one, except with the new property I want, so I just copied the auto-generated plist and set that as my template. But the plist uses some Xcode variables, which also look like <code>${foo}</code>, and CMake grumbles about this:</p> <blockquote> <p>Syntax error in cmake code when parsing string</p> <pre><code> &lt;string&gt;com.bedaire.${PRODUCT_NAME:identifier}&lt;/string&gt; </code></pre> <p>syntax error, unexpected cal_SYMBOL, expecting } (47)</p> <p>Policy CMP0010 is not set: Bad variable reference syntax is an error. Run "cmake --help-policy CMP0010" for policy details. Use the cmake_policy command to set the policy and suppress this warning. This warning is for project developers. Use -Wno-dev to suppress it.</p> </blockquote> <p>In any case, I'm not even sure that this is the right thing to do. I can't find a good example or any good documentation about this. Ideally, I'd just let CMake generate everything as before, and just add a single extra line. What can I do?</p> http://stackoverflow.com/questions/1792200/are-there-any-open-source-filemaker-plugins 0 Are there any Open Source FileMaker Plugins? Adam Dempsey 2009-11-24T19:01:23Z 2009-11-24T19:05:51Z <p>Does anyone know of any open-source FileMaker plugins? </p> <p>The only one I currently know of is Keystone (<a href="http://code.google.com/p/keystonefilemakerplugin/" rel="nofollow">http://code.google.com/p/keystonefilemakerplugin/</a>)</p> <p>Just wondered if there were any others?</p> <p>I've created a few of my own FileMaker Plugins for Windows, but am struggling on OS X so was hoping to be able to see some working examples to learn from.</p> http://stackoverflow.com/questions/83789/what-is-the-best-git-gui-on-osx 11 What is the best Git GUI on OSX? sanity 2008-09-17T14:25:47Z 2009-11-24T09:13:38Z <p>What is the best GUI on OSX for viewing a repository, and (optionally) manipulating it?</p> http://stackoverflow.com/questions/1030829/gprof-reports-no-time-accumulated 2 gprof reports no time accumulated Daniel 2009-06-23T06:01:22Z 2009-11-23T21:33:34Z <p>I'm trying to profile a C++ application with gprof on a machine running OSX 10.5.7. I compile with g++ in the usual way, but using -pg flags, run the application and try to view the call graph with gprof.</p> <p>Unfortunately my call graph contains all zeroes for all time columns. The values in the "called" columns have reasonable values so it looks like something was profiled but I'm mystified about the lack of other data. </p> <p>All my source files are compiled in a similar way:</p> <pre><code>g++ -pg -O2 -DNDEBUG -I./ -ansi -c -o ScenarioLoader.o ScenarioLoader.cpp </code></pre> <p>I then run 'ar' to bundle all the object files into a library. Later, I link and run gprof as so: </p> <pre><code>g++ -pg -lm -o vrpalone vrpalone.o ../src/atomicprof.a lastbuild.o ./vrpalone gprof gmon.out | less </code></pre> <p>Any ideas?</p> http://stackoverflow.com/questions/1688945/is-there-a-tool-to-diff-merge-sort-localizable-strings-files 2 Is there a tool to diff/merge/sort localizable strings files? Jean Regisser 2009-11-06T17:03:25Z 2009-11-23T18:44:21Z <p>Localizable strings file which are used for Apple/iPhone apps localization have the following format:</p> <pre>/* COMMENT */ "KEY" = "VALUE"</pre> <p>Note that <strong><em>KEY</em></strong> is unique in a given <strong>strings</strong> file.<br> <strong><em>COMMENT</em></strong> is optional however it can help the translator with some additional info.</p> <p>Example:</p> <pre> /* Menu item to make the current document plain text */ "Make Plain Text" = "Make Plain Text"; /* Menu item to make the current document rich text */ "Make Rich Text" = "Make Rich Text";</pre> <p>I would like to diff/merge two strings files and optionally sort that kind of files. It would be great if the comments would be kept while doing these operations.</p> <p>The format is quite simple and I could write let's say a python script to do that, but if somebody has already done that, I prefer not reinveting the wheel ;)</p> <p>Do you know a tool that can manipulate strings file?</p> http://stackoverflow.com/questions/281485/can-i-override-loginwindow-on-tiger 3 Can I override loginwindow on Tiger? Fred Priese 2008-11-11T17:00:00Z 2009-11-23T16:02:54Z <p>My software authorizes the user prior to booting Mac OS X (Tiger and Leopard.) I want to use SFAuthorizationPluginView to create a plugin to attempt to use our pre-boot authorization (cached securely) for user login to Mac OS X for single-sign-on capability. I have not yet validated if that will even work for Leopard, but am assuming I will be able to do it. (Dangerous, I know.)</p> <p><strong>The question is how can I do this for Tiger and will that solution work for Leopard?</strong></p> <p>I continue to research, if I find a solution I will share.</p>