osx-leopard

pip-3.3 SSL verification error , mac OSX 10.5.8

那年仲夏 提交于 2019-12-11 01:23:05
问题 I am getting an error when trying to run pip-3.3 install numpy from the terminal in OSX 10.5.8 here is the error in question: could not fetch URL...: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:547)> as far as i can tell there is no information on this at all on google or anywhere else for that matter. So any information anyone can provide would be nice because installing packages by hand is a pain. pip version: pip 1.3.1 from /Library/Frameworks/Python.framework

Force Apache HTTPD to run in 32bit

◇◆丶佛笑我妖孽 提交于 2019-12-08 02:41:34
问题 I have been running Apache HTTPD in 64bit mode by stripping out the 32bit architecture from the binary (along with the ppc parts). I did this to make it more compatible for python and mysql. However I have another machine that needs it to be run in 32bit mode (it has all four original architectures still in it). Is it possible to make sure that it is running in 32 bit mode and that anything compiled against it uses said mode. Are my options limited to stripping it, or are there start up

Background color for drop down menu options is not working in Safari, Chrome + MAC

亡梦爱人 提交于 2019-12-07 16:02:25
问题 I have a drop down box where I am setting background color of options as gray based on some conditions. The problem is its all work fine with almost browser on windows machine but its not working in Safari & Chrome on MAC OS. I used color as: Color name: Gray , hex color code: #CCCCCC and with rgb(204,204,204) but all of three isn't working. I done goggling and found that there is some problem with safari in MAC. I am not sure how to fix this. There is an open post at mac forums which didn't

How to run a XUL application in Mac OS X Snow Leopard?

一曲冷凌霜 提交于 2019-12-07 15:07:06
问题 I am trying to create a XUL "Hello World" application in Mac OS X. I download the XULRunner from here, followed this tutorial and then this tutorial and then this tutorial... None worked. So, I looked at it better and found this section, whose instructions I followed. Unfortunately, it does not work yet. I even can run the application with the command /Library/Frameworks/XUL.framework/xulrunner-bin $PWD/application.ini However, no window is presented and no error is printed. It happens when I

Cannot get App built on OS X 10.9 to run on OS X 10.5

允我心安 提交于 2019-12-07 14:24:46
问题 Problem I've recently upgraded my build environment to Xcode 6.1.1, running on OS X 10.9, and now I'm having trouble getting my application running again under OS X Leopard, 10.5. For the target, Base SDK is set to OS X 10.6 , and OS X Deployment Target is set to OS X 10.5 . Inspecting the build logs shows that these settings are making their way through to the compilation and link phases (in the form of mmacosx-version-min=10.5 , export MACOSX_DEPLOYMENT_TARGET=10.5 , etc.) However, when I

KeyDown and Cocoa Sample

泪湿孤枕 提交于 2019-12-07 05:50:36
问题 I'm learning how to build programs with Cocoa. I'm using a sample Apple application that records video from a webcam. I'd like to start and stop the video by capturing the key press. I've tried to override the keydown event but I've read that it's not possible in an NSObject . How can I handle this kind of event? The class of application extends a NSObject class. This is the code: - (void)keyDown:(NSEvent *)event { NSLog(@"Hi there"); NSString *characters = [event characters]; if ([characters

Force Apache HTTPD to run in 32bit

…衆ロ難τιáo~ 提交于 2019-12-06 08:46:06
I have been running Apache HTTPD in 64bit mode by stripping out the 32bit architecture from the binary (along with the ppc parts). I did this to make it more compatible for python and mysql. However I have another machine that needs it to be run in 32bit mode (it has all four original architectures still in it). Is it possible to make sure that it is running in 32 bit mode and that anything compiled against it uses said mode. Are my options limited to stripping it, or are there start up optiosn that I do not know about. You can use the arch(1) command to change the which architecture is used.

Background color for drop down menu options is not working in Safari, Chrome + MAC

蹲街弑〆低调 提交于 2019-12-06 04:04:44
I have a drop down box where I am setting background color of options as gray based on some conditions. The problem is its all work fine with almost browser on windows machine but its not working in Safari & Chrome on MAC OS. I used color as: Color name: Gray , hex color code: #CCCCCC and with rgb(204,204,204) but all of three isn't working. I done goggling and found that there is some problem with safari in MAC. I am not sure how to fix this. There is an open post at mac forums which didn't replied yet: http://www.mac-forums.com/forums/web-design-hosting/144101-drop-down-background-color-mac

KeyDown and Cocoa Sample

别等时光非礼了梦想. 提交于 2019-12-05 10:41:04
I'm learning how to build programs with Cocoa. I'm using a sample Apple application that records video from a webcam. I'd like to start and stop the video by capturing the key press. I've tried to override the keydown event but I've read that it's not possible in an NSObject . How can I handle this kind of event? The class of application extends a NSObject class. This is the code: - (void)keyDown:(NSEvent *)event { NSLog(@"Hi there"); NSString *characters = [event characters]; if ([characters length]) { switch ([characters characterAtIndex:0]) { case NSUpArrowFunctionKey: NSLog(@"Key UP");

Help to fix strange sqlite3 error - dyld: Library not loaded: /usr/lib/libsqlite3.0.dylib

跟風遠走 提交于 2019-12-05 05:26:36
问题 I am suddenly getting an sqlite3 error: ActionView::Template::Error (dyld: Library not loaded: /usr/lib/libsqlite3.0.dylib Referenced from: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork Reason: no suitable image found. Did find: /usr/lib/libsqlite3.0.dylib: mach-o, but wrong architecture /usr/local/lib/libsqlite3.0.dylib: mach-o, but wrong architecture /usr/lib/libsqlite3.0.dylib: mach-o, but wrong architecture I have no idea