Questions tagged [osx-yosemite]

OS X Yosemite (version 10.10) is the eleventh release of OS X, Apple's desktop and server operating system for Macintosh computers.

OS X Yosemite (version 10.10) is the eleventh release of OS X, Apple's desktop and server operating system for Macintosh computers.

Yosemite introduced a revision to the operating system's user interface. Its graphics are inspired by iOS7. Some icons have been changed to go along with iOS 7 and iOS 8. It still maintains the OS X desktop metaphor. The interface incorporates a flatter visual appearance with blurred translucency effects.

OS X Yosemite was the first release to introduce Apple's new programming language, Swift.

Related tags

2087 questions
0
votes
1 answer

Installing Ingres Database on Mac OS X 10.10

I need help - I am using MacBook Pro with Yosemite installed. I started next year in College and we have subject about databases. My tutor wants us to use Ingres database, but there is no release for Mac (there is release for Windows, Linux and even…
XSorcery
  • 83
  • 1
  • 10
0
votes
0 answers

undefined symbols for architecture x86_64 when trying to install OpenCV

im trying to install opencv in my mac. Ive searched for tutorials and they are all the same, so when i get to the part of running the command "make -j8" it executes just part of it because when it reaches 50% it shows me the error [ 50%] Building…
0
votes
5 answers

How to use sed to grab regular expression

I'd like to grab the digits in a string like so : "sample_2341-43-11.txt" to 2341-43-11 And so I tried the following command: echo "sample_2341-43-11.txt" | sed -n -r 's|[0-9]{4}\-[0-9]{2}\-[0-9]{2}|\1|p' I saw this answer, which is where I…
makansij
  • 9,303
  • 37
  • 105
  • 183
0
votes
2 answers

Install HAXM on OS X Yosemite for make android simulator working

I need to use the AndroidStudio simulator, but the IDE show me follow error: emulator: ERROR: x86 emulation currently requires hardware acceleration! Please ensure Intel HAXM is properly installed and usable. CPU acceleration status: HAX is not…
Fabio Cenni
  • 841
  • 3
  • 16
  • 30
0
votes
2 answers

Why is my bash script creating files without telling it to?

I am running the following script, which has a function intended to tell me whether one date is before another, as seen at the very bottom of the script. Now, the script has a few bugs. But one of them in particular is strange. The script creates…
makansij
  • 9,303
  • 37
  • 105
  • 183
0
votes
2 answers

Fortran call system('input.txt') run time modify

I need to run a program that requires certain inputs that are listed in a input.txt file. I want to be able to call up this file when I execute the program so I can modify the input.txt file if needed before executing the rest of the code. I'm…
SolFSU
  • 1
0
votes
1 answer

How does one assign values to nested [NSObject: AnyObject] dictionaries?

I would like to have a Dictionary of Dictionaries. I'm coming from mostly a Python background, where I can simply allocate and assign a top-level key to be a new dictionary, then use a reference to that dictionary to update it no matter how deeply…
drootang
  • 2,351
  • 1
  • 20
  • 30
0
votes
3 answers

I want to install Mono on MacOSX Yosemite

I want to install Mono on MacOSX Yosemite. I installed it but I tried type "mono", terminal said "command not found". So it looks like it failed to install it properly? How to install Mono properly on MacOSX Yosemite?
yushun_o
  • 31
  • 1
  • 1
0
votes
1 answer

Symfony 403 Error

I just installed Symfony on my Mac running Yosemite but keep getting 403 errors. This isn't just affecting the directory into which I installed symfony, but also sites in other directories that were previously working fine! So far I have…
Kittovski
  • 177
  • 3
  • 16
0
votes
0 answers

OpenCL Accuracy and Performance Issues when using MacPro (Firepro D500)

I have run into a strange issue while running the same OpenCL kernel on multiple machines. Please see below: OS OpenCL version GPU Output Accuracy LINUX 2.0 AMD-R9 290X …
user1274878
  • 1,275
  • 4
  • 25
  • 56
0
votes
1 answer

Xcode Returning (lldb), while running C application

I'm trying to run the following code on C, using Xcode, and it's returning an erro that I can't figure out, any clue on it? Below is the code and a print of the Xcode Screen. It runs mostly the code, until I select the number of duplicate entries it…
Diego Patrocinio
  • 100
  • 1
  • 4
  • 13
0
votes
0 answers

Diagnosing SIGBUS error on OS X Yosemite

I'm attempting to convert some code to run on OS X and having problems with some of the low-level memory writing code (which works on Linux/Windows platforms). Specifically the method being called is: void Dset_mem_write_i1B(void* ptr,int val) { …
akosky
  • 834
  • 9
  • 5
0
votes
1 answer

ConnectionError in Djrill after upgrading to Mac OSX 10.10.5

I just upgraded to Mac OSX 10.10.5 today and now I get a ConnectionError every time I try to send an email locally in GAE using the djrill Django app. Exception Type: ConnectionError Exception Value: ('Connection aborted.', error(22, 'Invalid…
Jordan Hawkins
  • 141
  • 1
  • 8
0
votes
1 answer

Downloading Zip with cURL or wget; Python

I have a download link to a zip file. But I don't know how to use either wget or cURL from Python console to get it to my Downloads folder (OS X). import os os.system('wget {}'.format(results_url) or os.system('curl'.format(results_url) 512 none…
Zlo
  • 1,150
  • 2
  • 18
  • 38
0
votes
1 answer

How to ignore mouse moves over hidden part of NSView?

I have some window which in turn contains an NSView, v1. The view can receive events from mouse, like Mouse Down, Enter, Exit and so on. The view can be overlapped by other view (v2) (modal window not involved). I want to be able receive events…
BorisV
  • 683
  • 3
  • 20