Mark Anders
- Total activity 43
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 17
-
Created What does "IDE updates are managed externally and weren't checked" mean?
AnsweredI did "check for updates" and got that message. What does it mean? Where else are they being managed? -
Created Support XCode 8.1
Is there an estimate as to when XCode 8.1 will be supported in AppCode? I recently attempted to upgrade my codebase to Swift 3.0 from Swift 2.3, and it was an amazing amount of work. Unfortunate... -
Created Project Panel font changed in latest 2016.3 EAP
AnsweredI just installed the latest 2016.3 EAP and the font for the project panel seems to have gotten quite a bit larger than it was before. How can I change it? Also the icons for the files have gotten... -
Created How to fix "Class X must implement all abstract methods" warning
I'm using the Marshmallow package and all of the classes that I create for it (custom Fields, Schema, etc) are displayed with squiggles for the "Class X must implement all abstract methods". For ... -
Created Can't activate PyCharm 5 RC 143.587
After upgrading to the RC, I was prompted to resister using a few methods.Entering my Activation code was rejected. After entering my code (which was purchased on 3//3/15) I got the message: "Licen... -
Created How do I import files from my project into a Python?
I have a Flask app that I'm working on and in the project root I have an iPython notebook file. I'm able to load it and works great in PyCharm. I'm able to load in modules installed in the projec... -
Created How to test multiple targets?
I have a project that contains multiple targets, primarily an app and a library used by the app. Each has its own set of tests. I've created Run configurations for each of the tests and can run th... -
Created Should AppCode 3.2 build 141.2000 work on OS X 10.11 with XCode 7?
I'm using OS X El Capitan and XCode 7 Beta 3. XCode 6.4 does not actually run on El Cap. I've installed the AppCode build 141.2000 and am having a few problems. First, on every startup I get an ... -
Created Any way for AppCode to work with multiple Git repositories in a workspace?
I have an app that uses CocoaPods and one of the pods is one I've developed as part of the app. In the Podfile, it's specified as:pod 'MyTableView', :path => '../MyTableView'As a result, if I open... -
Created Possible to step into decorated functions?
I'm working on a Flask project and am using Flask-Principal. One way to apply access checks is to use a decorator like: @mod_auth.route(‘/admin’) @admin.require(http_exception=403) def admin(): ...