osx-mavericks

Xcode launch app error in Mac 10.9 Mavericks

橙三吉。 提交于 2019-12-12 22:09:04
问题 I using MacOSX 10.9.3 Maverick, xcode 5.1.1 . I try to launch app in simulator, but happen black screen and close xcode. This is notice: Process: Xcode [625] Path: /Applications/Xcode.app/Contents/MacOS/Xcode Identifier: com.apple.dt.Xcode Version: 5.1.1 (5085) Build Info: IDEFrameworks-5085000000000000~10 App Item ID: 497799835 App External ID: 520942841 Code Type: X86-64 (Native) Parent Process: launchd [151] Responsible: Xcode [625] User ID: 501 Date/Time: 2014-05-19 09:43:47.454 +0700 OS

Eclipse plugin - TFS (Team Explorer Everywhere) not connecting to TFS Repository

↘锁芯ラ 提交于 2019-12-12 18:07:33
问题 I'm running OSX 10.9 Maverick, following a restart I began to see the following message: "An internal error occurred during: "Refreshing TFS Repository information for https://yourwebsite.visualstudio.com/DefaultCollection/". The character ' ' is not permitted in server paths." I've tried removing all traces of Eclipse & Team Explorer Everywhere and re-installing it as a clean-version but the error continues. Here's a list of files/directories I removed.. Users/My-Mac/Library/Application

TeamCity fails to run iOS appium tests when auto-launched

此生再无相见时 提交于 2019-12-12 15:24:54
问题 Description We are using appium in our cucumber suite within TeamCity 8 on an Apple MacMini running Mavericks. The problem is that appium seems to fail to interact with the iOS Simulator when it is ran from TeamCity at login (via Automator). The only combination that I have found to work is to run the following from the Terminal in an interactive session: sh /Applications/buildagent/bin/agent.sh start What does not work? running agent.sh start from an ssh session creating a shell script with

CIDetector trackingID never present

夙愿已清 提交于 2019-12-12 15:08:59
问题 I'm working on some face detection code on OSX Mavericks and I'm trying to take advantage of the newish (as of 10.8) face tracking across multiple stills functionality that CIDetector offers. I have basic face detection working fine, like so: - (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer fromConnection:(AVCaptureConnection *)connection { CVImageBufferRef imageBuffer = CMSampleBufferGetImageBuffer(sampleBuffer); CIImage *image =

Unable to install rpy2 on Mac OS X 10.9

自古美人都是妖i 提交于 2019-12-12 12:07:22
问题 I have been trying to install rpy2 on Mac OS X 10.9, but I have not been able to do so. I think there is a problem with the R shared library, but I read that R is installed with the shared library option as default. Any help would be very appreciated! This is the log: Downloading from URL https://pypi.python.org/packages/source/r/rpy2/rpy2-2.3.9.tar.gz#md5=86851a56f637e7b87709eb2b91dc5075 (from https://pypi.python.org/simple/rpy2/) Running setup.py (path:/private/tmp/pip_build_root/rpy2/setup

RVM requirements error

谁都会走 提交于 2019-12-12 09:57:18
问题 I have OS X Mavericks installed and I'm trying to run rvm requirements in terminal and it gives me this error. Installing required packages: autoconf, automake, libtool, pkgconfig, libyaml, libffi, readline, libksba, curl-ca-bundle, gdbm............. Error running 'requirements_osx_port_libs_install autoconf automake libtool pkgconfig libyaml libffi readline libksba curl-ca-bundle gdbm', please read /Users/Alex/.rvm/log/ruby-1.9.3-p448/1374263757_package_install_autoconf_automake_libtool

How do I open an NSSheet in Mavericks?

守給你的承諾、 提交于 2019-12-12 08:56:44
问题 In Mavericks, the methods to open and close NSSheets has changed. And to make it tougher, the Release Notes do not match the current documentation (see below). I'm trying to do this: MainSheetController (NSWindowController): -(IBAction)callSheet:(id)sender { [sheetController openSheet]; } SheetController (NSObject): (void)openSheet { [[NSBundle mainBundle] loadNibNamed:sheetName owner:self topLevelObjects:nil]; NSLog(@"1"); [self.mainWindowController.window beginSheet:self.sheet

How to build GCC 4.8.x on Mac OS X host for MIPS target

♀尐吖头ヾ 提交于 2019-12-12 08:27:24
问题 I am trying to build GCC / binutils for a MIPS target platform on a Mac OS X host running (10.9) x86_64. I have downloaded the latest version of binutils and GCC to my knowledge, and I have also installed GCC 4.8.2 via homebrew. However, so far I have been unsuccessful in building GCC / binutils for MIPS arch on a OS X host. I tried setting the CC environment variable to point to the gcc version installed via homebrew, but that doesn't seem to fix the problem. Has anyone created a step by

Matplotlib installation on Mavericks

倾然丶 夕夏残阳落幕 提交于 2019-12-12 06:48:12
问题 I'm having problem while installing matplotlib . I'm using Mavericks and it complains about a deprecated NumPy API both installing via pip and installing from source (following the instructions here https://github.com/matplotlib/matplotlib/blob/master/README.osx): In file included from src/_macosx.m:1: In file included from /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk/System/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h:12: In file

Why does TextEdit open html files as locked?

六眼飞鱼酱① 提交于 2019-12-12 04:52:55
问题 I have an applescript that creates html files and uses textedit to open them: try tell application "Finder" to set save_folder to (target of window 1) as alias on error set save_folder to path to desktop end try set textFile to (choose file name with prompt "Enter file name:" default location save_folder default name "Comment.html") as text if textFile does not end with ".html" then set textFile to textFile & ".html" do shell script "touch " & quoted form of POSIX path of textFile tell