developer

Developer tools in windows edge browse localstorage

匿名 (未验证) 提交于 2019-12-03 01:33:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I'm trying to use the new windows Edge browser for my web development.But just can't find any way to browse localstorage, cookies etc. inside the developer tools. How do I view them? Best regards 回答1: They are here: Debugger tab -> Folder icon on the left, under the "play" icon. 回答2: you can check localStorage object in the Console Open F12 Developer Tools (press F12) Go to Console tab type localStorage in the input and click run/press enter. check the screenshot 文章来源: Developer tools in windows edge browse localstorage

xcode 7.2 Could not build Objective-C module

匿名 (未验证) 提交于 2019-12-03 01:31:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I have just updated my Xcode to version 7.2. Now I try to build a framework from command line using xcodebuild but have this error .... /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator9.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h:6:9: note: in file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator9.2.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTiming.h:6:

iPhone SDK 4.3 libav compiling problem

匿名 (未验证) 提交于 2019-12-03 01:29:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I faced with strange problem. I installed iPhone SDK 4.3 and xCode 4 and now I can't compile libav from ffmpeg for ARMv6 architecture. This is my script to compile it (it works fine for iPhone SDK 4.2): ./ configure \ -- disable - doc -- disable - ffmpeg -- disable - ffplay -- disable - ffserver -- enable - cross - compile \ -- enable - encoder = rawvideo \ -- enable - decoder = h264 \ -- enable - decoder = mpeg4 \ -- enable - encoder = mjpeg \ -- enable - muxer = rawvideo \ -- enable - demuxer = h264 \ -- enable - parser = h264 \

Error: “no member named 'uint8_t' in the global namespace” on MacOS

匿名 (未验证) 提交于 2019-12-03 01:13:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Chriss-MacBook-Pro-2:build louisduplessis$ cmake .. && make In file included from /Library/Developer/CommandLineTools/usr/include/c++/v1/utility:203: /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdint:158:8: error: no member named 'uint8_t' in the global namespace using::uint8_t; ~~^ /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdint:159:8: error: no member named 'uint16_t' in the global namespace using::uint16_t; ~~^ /Library/Developer/CommandLineTools/usr/include/c++/v1/cstdint:160:8: error: no member named 'uint32

Building for MacOSX, but linking against dylib built for iOS Simulator file

匿名 (未验证) 提交于 2019-12-03 01:10:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I've just upgraded to Xcode 5 beta with the April 15 2013 commandline tools and hit the following warning when running a cmake build during the standard CMakeTestCCompiler.cmake attempt to compile a simple test program: cmake - version cmake version 2.8 . 11.2 ld : building for MacOSX , but linking against dylib built for iOS Simulator file '/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk/usr/lib/libSystem.dylib' for architecture i386 lipo - info / Applications /

xcode-select active developer directory error

匿名 (未验证) 提交于 2019-12-03 01:05:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: Saw the following error when running an npm install which required node-gyp ... but could be triggered by anything which requires xcode-select . xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance What is the problem? 回答1: This problem happens when xcode-select developer directory was pointing to /Library/Developer/CommandLineTools , when a full regular XCode was required (happens when CLT are installed after XCode) Solution:

XCTestCase: ld: symbol(s) not found for architecture x86_64

匿名 (未验证) 提交于 2019-12-03 00:56:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I'm just trying to make my 1st XCTestCase implementation, everything build fine, but when I'm executing the test case I face a "build failed": Undefined symbols for architecture x86_64: "_OBJC_CLASS_$_Node", referenced from: objc-class-ref in Test01.o ld: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation) Its certainly a stupid configuration (compile/link) error, but I don't found the solution myself or on the existing posts :-( Thanks in advance fro any help. Have a

change xcrun developer path

匿名 (未验证) 提交于 2019-12-03 00:52:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: How can I change the directory at which xcrun is pointing ? currently is pointing to xcrun: Error: could not stat active Xcode path '/Volumes/Xcode/Xcode44-DP7.app/Contents/Developer'. (No such file or directory) I need to change the location. Thank you. 回答1: sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer 回答2: Use xcode-select -switch to choose which version of Xcode you're using by default. 回答3: In my case, i had to: Install Xcode's command line tools, going to preferences -> Locations and setting a correct value to

Archive apple LLVM 6.0 error could not read profile

匿名 (未验证) 提交于 2019-12-03 00:48:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: When in device test it's ok. But when I want to archive, xcode give the error like this. error: Could not read profile: No such file or directory it is the errors CompileC /Users/wikimo/Library/Developer/Xcode/DerivedData/jinbi-anvflcahmvfrbchckuahzoashzvm/Build/Intermediates/ArchiveIntermediates/jinbi/IntermediateBuildFilesPath/jinbi.build/Release-iphoneos/jinbi.build/Objects-normal/armv7/UIColor+Extension.o jinbi/Views/NavigationMenuView/UIColor+Extension.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler cd /wikimo

解决oracle11g的ORA-12505问题

匿名 (未验证) 提交于 2019-12-03 00:30:01
今天在使用SQL Developer的时候连不上去,报ORA-12505错误,但是SQLPLUS可以连接。 检查服务名,是OracleServiceORCL,那SID应当就是orcl,但是使用该SID仍然无法连接。 查阅资料后解决方法如下: 找到listener.ora文件(listener监听器进程的配置文件),使用文本编辑器打开。 内容如下: [plain] view plain copy 色字体部分) [plain] view plain copy 附: PL/SQL DEVELOPER 和 SQLPLUS 采用 service_name 进行连接 而应用程序是按照 sid_name 进行连接,所以出现 PL/SQL DEVELOPER和SQLPLUS 能够连接而应用程序却无法连接的问题。 使用 SELECT INSTANCE_NAME FROM V$INSTANCE 语句,就可以查看当前数据库实例的sid_name了。 文章来源: 解决oracle11g的ORA-12505问题