#debugging
4 posts tagged debugging. Clear filter
-
How to Find the Directory Locations Your XCode App Uses
You can add this snippet to your application, say for instance in your viewDidLoad function, that will print to the XCode console, the location of your app while it's being developed. // prints the...
-
How to Just Get SQL Statement Error with SQLAlchemy Python Database Wrapper
If you're working with SQLAlchemy, the best database driver for Python, and want to see only SQL syntax errors, you need to use the StatementError exception class. On it, is an attribute orig, that...
-
How to Fix Pypi Upload failed (403): Invalid or non-existent authentication information.
If you run into authentication failure when trying to upload packages Submitting dist/<package name to https://upload.pypi.org/legacy/ Upload failed (403): Invalid or non-existent authentication...
-
Turn Off SSL Verification In Ruby
The following code will disable SSL verification when using Open SSL. OpenSSL::SSL::VERIFYPEER = OpenSSL::SSL::VERIFYNONE It is probably not a good idea to do this in production. But if you are...