osx-mavericks

Processing Code "Error, disabling_serialEvent() in Arduino

和自甴很熟 提交于 2020-01-05 09:26:35
问题 I receive this error when trying to run my arduino and Processing Error, disabling serialEvent() for /dev/cu.usbmodem1451 null I am running process 2 and Arduino 1.6.5 on a MAC OSX 10.9.5 I am super new to processing and arduino . I am just trying to use three potentiometers to control the RGB values of the background color. Arduino code: int potPin = 0; //int potPinB = 1; //int potPinC = 2; void setup() { Serial.begin(9600); } void loop() { int val = map(analogRead(potPin), 0, 1023, 0, 255);

How to sign app on Mavericks with Xcode 5.0.2?

ぃ、小莉子 提交于 2020-01-05 08:31:50
问题 I am trying to sign my java app on Mavericks OS using Xcode 5.0.2 - #!/bin/sh if [ -f "/Applications/Xcode.app/Contents/Developer/usr/bin/codesign_allocate" ]; then export CODESIGN_ALLOCATE="/Applications/Xcode.app/Contents/Developer/usr/bin/codesign_allocate" elif [ -f "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate" ]; then export CODESIGN_ALLOCATE="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr

How to sign app on Mavericks with Xcode 5.0.2?

痴心易碎 提交于 2020-01-05 08:30:04
问题 I am trying to sign my java app on Mavericks OS using Xcode 5.0.2 - #!/bin/sh if [ -f "/Applications/Xcode.app/Contents/Developer/usr/bin/codesign_allocate" ]; then export CODESIGN_ALLOCATE="/Applications/Xcode.app/Contents/Developer/usr/bin/codesign_allocate" elif [ -f "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate" ]; then export CODESIGN_ALLOCATE="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr

Does PostgreSQL exist on OS X Mavericks?

余生长醉 提交于 2020-01-03 08:09:05
问题 I knew there was a version of PostgreSQL installed on OS X Mountain Lion and if you want to work with this database engine you must install a new version and make some changes (http://nextmarvel.net/blog/2011/09/brew-install-postgresql-on-os-x-lion /). I didn't do this at that time because it was not necessary for me. Now I have my Mac with OS X Mavericks (clean install) and if I run psql -- version as can be seen in this article (http://russbrooks.com/2010/11/25/install-postgresql-9-on-os-x)

Mavericks issue: noteHeightOfRowsWithIndexesChanged: does not animate

旧时模样 提交于 2020-01-03 03:23:17
问题 When calling [myTableView noteHeightOfRowsWithIndexesChanged: myIndexSet] inside an NSAnimationContext group, the height of the rows animates on 10.8, but does not animate on 10.9: it jumps instantaneously to the final height instead. After some experimentation, I found that it does animate on 10.9 if you do not place that call to the table view in an NSAnimationContext group. This result is a bummer because I wanted to have other animations on the rows in sync with the height animation from

gem install autotest-fsevent failing after update to macosx mavericks

梦想与她 提交于 2020-01-02 07:32:28
问题 After update to Maveriks having problems installing gem autotest-fsevent Here is the error I get; Mellon:public lasdolphin$ sudo gem install autotest-fsevent Building native extensions. This could take a while... ERROR: Error installing autotest-fsevent: ERROR: Failed to build gem native extension. /Users/lasdolphin/.rvm/rubies/ruby-1.9.3-p448/bin/ruby extconf.rb extconf.rb:24:in `<main>': Darwin 13 is not (yet) supported (RuntimeError) Gem files will remain installed in /Users/lasdolphin/

gem install autotest-fsevent failing after update to macosx mavericks

本小妞迷上赌 提交于 2020-01-02 07:31:34
问题 After update to Maveriks having problems installing gem autotest-fsevent Here is the error I get; Mellon:public lasdolphin$ sudo gem install autotest-fsevent Building native extensions. This could take a while... ERROR: Error installing autotest-fsevent: ERROR: Failed to build gem native extension. /Users/lasdolphin/.rvm/rubies/ruby-1.9.3-p448/bin/ruby extconf.rb extconf.rb:24:in `<main>': Darwin 13 is not (yet) supported (RuntimeError) Gem files will remain installed in /Users/lasdolphin/

Remove the authorization prompt from command line instruments (Under mavericks)

淺唱寂寞╮ 提交于 2020-01-02 04:29:43
问题 Similar to this question, except that the authorization database changed formats for mavericks and the old solution doesn't work: Is there a way to remove the authorization prompt from command-line instances of Instruments (XCode)? The specific use-case being to get ios-driver working to run automated tests: http://ios-driver.github.io/ios-driver/faq.html The specific prompt is "Instruments wants permission to analyze other processes" I've tried sudo security authorizationdb write system

Installing & Building GHC with OSX Mavericks GHC

南笙酒味 提交于 2020-01-01 07:28:31
问题 Why doesn't my GHC 7.6.3 work after upgrading to OSX Mavericks? 回答1: It took a long time to figure out how to Work with both OSX 10.9 and GHC 7.6.3, and here are some tips to help you get back to building haskell code. Summary: Download command line tools for mavericks and use gcc version 4.2 (link to the correct gcc path in your ghc settings file) Steps: Download the command line tools for mavericks Install gcc-4.2 using homebrew brew install apple-gcc42 Edit your settings file, Line 2.

XCode 4.6.3 crash everytime I open it on OS X 10.9.3

心已入冬 提交于 2019-12-31 17:11:28
问题 I updated Mavericks 10.9.2 to 10.9.3 and downloaded Xcode 6 beta. One of my project is still in Xcode 4.6.3. So now whenever I open this project Xcode crashes with the following pop up. It was working fine in OS X 10.9.2. Is it OS related issue? Please help 回答1: I had similar issue. This can be fixed using `sudo mv /System/Library/PrivateFrameworks/MobileDevice.framework{,-saved}` This will ask for system component installation and then Xcode starts working. I recommend to use latest version