I'm trying to use pjsip library for sip telephony in an android device for different architectures on a MAC. I have downloaded 2.5.5 from http://svn.pjsip.org/repos/pjproject/tags/2.5.5 which is build fine for armabi architectures with the correspond
I want to learn how to pass parameter to maven project from jenkins. Firstly i chose General Configuration in Jenkins and click "This project is parameterized" then Name => my_parameter Choices => desktop, ipad, tablet Then, Source Managem
I am trying to download NLTK 3.0 for use with Python 3.6 on Mac OS X 10.7.5, but am getting an SSL error: import nltk nltk.download() I downloaded NLTK with a pip3 command: sudo pip3 install -U nltk. Changing the index in the NLTK downloader allows t
I installed python via brew, and made it my default python. If I run which python, I obtain /usr/local/bin/python. Also pip is installed via brew, which pip returns /usr/local/bin/pip. I do not remember how I installed ipython, but I didn't do it via
In xcode 7.3 on MacOS 10.11.3 and 10.11.4, when I stop the debugger inside any app delegate method and try to examine any object instantiated inside the app delegate, or even the app delegate itself, I get this warning in the debugger: error: warning
I'll open Safari, other system apps and third-party apps with codes like: let task = NSTask() task.launchPath = "/usr/bin/open" task.arguments = ["Safari"] task.launch() will it be rejected by MAS review? I know there is recommended wa
This is really annoying. For some reason, on MacOS X 10.11 (probably also on previous versions) there are gcc and g++ commands (in /usr/bin, they are not aliases or so) which, when executed with the -v argument, give: Configured with: --prefix=/Appli
I wrote class Vehicle in Vehicle.swift and inherited it in another class Bicycle in Bicycle.swift. But Xcode 6.1 reported an compile error: initializer does not override a designated initializer from its superclass. Vehicle.swift: import Foundation p
Can anyone tell me how to change this command: sed -i.bak "/group :test/ a gem 'selenium-webdriver'" Gemfile To work on Mac? Getting this error: sed: 1: "/group :test/ a gem 'se ...": command a expects \ followed by text I was trying t
I am having trouble making text fields look acceptable when using different typefaces. See this screenshot taken from a test app I made to demonstrate the problem. It consists of a single XIB, with no code in the delegate or anywhere else. This is on
I've just upgraded my MacBook Pro to Mavericks (MacOS 10.9), including Xcode. According to Apple's "OpenGL Capabilities Table", this version has support for OpenGL 4.1, but a call to glGetString(GL_VERSION) returns "1.2" and my GLSL 3.
OS X 10.9 comes with ruby 2.0.0p195 but I need to install Ruby 1.8.7. I keep running into errors. I have Xcode5-DP install and I believe Command Line Tools is installed too. In the terminal: sudo rvm install 1.8.7 Searching for binary rubies, this mi
This is a n00b question and I've seen an answer that does not help me. I'm running a simple c program (firsty.c) written in textmate: #include <stdio.h> int main() { printf("hi world.\n"); return 0; } I've entered the following into the te
I have created a subclass of NSTextField that changes its height according to the text it contains. I now want to insert it in another view (an NSTableCellView) and make the view resize according to the height of the text field. I want to use the -(N
I want to make a label that change its size depending on the size of the string value that it will show. Currently I am doing this: [tfScroll setStringValue:strScoller]; [tfScroll sizeToFit]; However this is not working. What am I missing?If you tryi
My OS is windows 7 and I want to develop IOS applications without buying a MAC. Can I install MAC OS on a virtual machine for development ?Yes it is possible. I did this for 6 months before buying my first Mac.
I've followed the GitHub instructions for setting up my account, and I'm able to clone, but I'm unable to push remotely. When I do a "git push" I get the 403 error. It has the correct URL. I tried a "git credential-osxkeychain get" to
How can I create a spotlight importer for an OS X app that creates a spotlight tool like the calculator spotlight tool? It's the tool where you type in an equation and the calculator app displays the result. I want to do something like that, but I've
Are there any tutorials or examples on how to play WAV files on Mac from application built by Delphi XE2 FireMonkey? I'm asking because this code does not work: var //fWaves head and data is initialized and plays properly on Win through OpenAL fWaves
How can I combine "stringURL" and "stringSearch" together? - (IBAction)search:(id)sender;{ stringURL = @"http://www.websitehere.com/index.php?s="; stringSearch = search.text; /* Something such as: stringURL_ = stringURL + str
I have just completed the xcode install, mac osx lion. Upon completion I attempted to install PIL in a virtual enviroment using pip, easy_install and home brew. All three are erring out. pip install give the following error: pip ` unable to execute g
Is full screen support for the Mac stand-alone version of Aptana Studio 3 going to be in the works? Mac OS X Lion came out yesterday and I love the full screen apps. I've been trying to find a way to get Aptana to have that same functionality.Add thi
I was having some trouble running some Ruby scripts. While trying to get these scripts to run I tried lots of different things as well as updating rubygems as I thought this may be the problem. Since then I can't get any Ruby scripts to run. I think
I've created a new Java project (testProject) and begin to add jars to a user library, but I'm getting project errors after adding jars to a "User Library" Here's what I'm doing:Create the User Library Right mouse click the project and click Pro
I am trying to wrap rsync in NSTask and use the exclude option to not sync hidden files (dot files). I know this works at the command line: rsync -az --exclude='.*' source destination My NSTask is defined as follows: NSTask *rsyncTask; rsyncTask = [[
Could someone point me to any examples on how to write full-screen apps for Mac OS X in Ojective-C with Cocoa?Add the following code to the NSView you want to make fullscreen: [view enterFullScreenMode:[NSScreen mainScreen] withOptions:nil]; It's exa
I have mysql and apache running through XAMPP on my Mac machine (10.6.4). I usually do PHP development with this setup but now I want to start out with Ruby on Rails. Unfortunately I cannot get mysql to work with RoR. I start the mysql Server with XA
I'm using Eclipse with C++ plugins on my macbook, trying some practice projects to improve my skills. I'd also like to test out Mercurial and get a taste of DVCS. Unfortunately, Eclipse + Mercurial + OSX seems to be a rare enough combination that the
I am already quite familiar with relational databases and have used SQLite (and other databases) in the past. However, Core Data has a certain allure, so I am considering spending some time to learn it for use in my next application. Is there much be
Possible Duplicate: Where are the best explanations of memory management for iPhone? I come from a web development background. I'm good at XHTML, CSS, JavaScript, PHP and MySQL, because I use all of those technologies at my day job. Recently I've bee