omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular
    1. Home
    2. athros

    Welcome!

    This is the community forum for my apps Pythonista and Editorial.

    For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.


    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 8
    • Best 4
    • Controversial 0
    • Groups 0

    athros

    @athros

    4
    Reputation
    1213
    Profile views
    8
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    athros Unfollow Follow

    Best posts made by athros

    • RE: Thoughts on Pythonista subreddit?

      @omz - It sounds like upgrading the forum, keeping it secure and all the ops work is taking away from your ability to work on Pythonista which makes me all for a subreddit. Apollo works fine for mobile for most cases, and you could then have a dedicated mod staff to keep it clean. I don't think it would be any better or worse than a dedicated forum, and it could be easily linked to /r/learnpython for the learning, just starting questions that aren't Pythonista specific as well as /r/Python for some heftier questions that are not Pythonista specific.

      If folks are worried about it looking cluttered, there are ways to have CSS help with that. There's also the RES which is an addon for most browsers that will help with things like unread etc. If that doesn't work, unfortunately Reddit keeps certain website features behind the paywall for the subscribers to Reddit (the Gold program). Apollo is a pretty great app on mobile for a sub there.

      Overall: +1 for a subreddit, if nothing else to ease your interaction with the community and remove the ops work that you're doing now so you can focus more on Pythonista and any other projects you have going on!

      posted in Pythonista
      athros
      athros
    • RE: Help with screen sizes

      iPad Pro :

      • Pythonista version 2.0 (200003) on iOS 9.2.1 on an iPad6,7 with a screen size of 1366 x 1024. (Landscape)

      6S+ :

      • Pythonista version 2.0 (200003) on iOS 9.2.1 on an iPhone8,2 with a screen size of 414 x 736. (Portrait)

      • Pythonista version 2.0 (200003) on iOS 9.2.1 on an iPhone8,2 with a screen size of 736 x 414. (Labdscape)

      posted in Pythonista
      athros
      athros
    • RE: Hiding console in Pythonista 2.0?

      Once you hit the shaded box and the console goes full screen, swipe left, @Olaf

      posted in Pythonista
      athros
      athros
    • RE: Pythonista 1.6 Beta

      Here's to hoping!

      posted in Pythonista
      athros
      athros

    Latest posts made by athros

    • RE: Thoughts on Pythonista subreddit?

      @omz - It sounds like upgrading the forum, keeping it secure and all the ops work is taking away from your ability to work on Pythonista which makes me all for a subreddit. Apollo works fine for mobile for most cases, and you could then have a dedicated mod staff to keep it clean. I don't think it would be any better or worse than a dedicated forum, and it could be easily linked to /r/learnpython for the learning, just starting questions that aren't Pythonista specific as well as /r/Python for some heftier questions that are not Pythonista specific.

      If folks are worried about it looking cluttered, there are ways to have CSS help with that. There's also the RES which is an addon for most browsers that will help with things like unread etc. If that doesn't work, unfortunately Reddit keeps certain website features behind the paywall for the subscribers to Reddit (the Gold program). Apollo is a pretty great app on mobile for a sub there.

      Overall: +1 for a subreddit, if nothing else to ease your interaction with the community and remove the ops work that you're doing now so you can focus more on Pythonista and any other projects you have going on!

      posted in Pythonista
      athros
      athros
    • RE: Appex and user modules

      Folks wanted both Python 2 and Python 3 in the same app, so it's a feature.

      posted in Pythonista
      athros
      athros
    • RE: [Share Code] gitsynchista now has pyzipista support

      @marcus67 : it's erroring out on me. Latest Pythonista 3 build. Working Copy up and running, WebDAV server on.

      Console output follows:

      log - INFO - Loaded logging configuration from etc/log_config.json
      log - INFO - Starting logging
      log - INFO - Loaded logging configuration from etc/log_config.json
      log - INFO - Starting logging
      gitsynchista - INFO - Starting gitsynchista
      config - INFO - reading configuration file '../EitD/gitsynchista_config.txt' for config 'SyncConfig'
      sync - INFO - No pyzipista found
      sync - INFO - Loading remote directory structure
      sync - INFO - Loading WebDav directory '/EitD-Pythonista'
      sync - INFO - Loading WebDav directory '/EitD-Pythonista/Docs'
      sync - INFO - Loading WebDav directory '/EitD-Pythonista/esper'
      sync - INFO - Loading local directory structure
      sync - INFO - Loading file directory '../EitD'
      sync - INFO - Loading file directory '../EitD/Docs'
      sync - INFO - Loading file directory '../EitD/esper'
      sync - INFO - Transferring '../EitD/esper/__init__.py' to '/EitD-Pythonista/esper/__init__.py'
      sync - ERROR - Error during scan: name 'basestring' is not defined
      Traceback (most recent call last):
        File "/private/var/mobile/Containers/Shared/AppGroup/EBB985EF-4968-4E86-B655-FB94E1213029/Pythonista3/Documents/gitsynchista/sync.py", line 520, in sync
          self.compare_info.transfer_new_files_to_remote()
        File "/private/var/mobile/Containers/Shared/AppGroup/EBB985EF-4968-4E86-B655-FB94E1213029/Pythonista3/Documents/gitsynchista/sync.py", line 317, in transfer_new_files_to_remote
          transfer_new_files(self.local_change_info, self.local_file_access, self.remote_file_access)
        File "/private/var/mobile/Containers/Shared/AppGroup/EBB985EF-4968-4E86-B655-FB94E1213029/Pythonista3/Documents/gitsynchista/sync.py", line 255, in transfer_new_files
          dest_file_access.save_from_string(dest_physical_name, source_file_access.load_into_string(file.physical_name, mode="rb"), mode="wb")
        File "/private/var/mobile/Containers/Shared/AppGroup/EBB985EF-4968-4E86-B655-FB94E1213029/Pythonista3/Documents/gitsynchista/sync.py", line 198, in save_from_string
          self.webdav_client.upload(string_file, path)
        File "/private/var/mobile/Containers/Shared/AppGroup/EBB985EF-4968-4E86-B655-FB94E1213029/Pythonista3/Documents/site-packages/client.py", line 182, in upload
          if isinstance(local_path_or_fileobj, basestring):
      NameError: name 'basestring' is not defined
      gitsynchista - INFO - Terminating gitsynchista
      

      I'm willing to help with the error, just let me know what you need.

      posted in Pythonista
      athros
      athros
    • RE: Python 3.x Progress Update

      @omz signed up for the beta! Can't wait to get my existing code converted over to Python 3!

      posted in Pythonista
      athros
      athros
    • RE: Python 3.x Progress Update

      Great news @omz! I'm in for both buying and beta testing!

      posted in Pythonista
      athros
      athros
    • RE: Help with screen sizes

      iPad Pro :

      • Pythonista version 2.0 (200003) on iOS 9.2.1 on an iPad6,7 with a screen size of 1366 x 1024. (Landscape)

      6S+ :

      • Pythonista version 2.0 (200003) on iOS 9.2.1 on an iPhone8,2 with a screen size of 414 x 736. (Portrait)

      • Pythonista version 2.0 (200003) on iOS 9.2.1 on an iPhone8,2 with a screen size of 736 x 414. (Labdscape)

      posted in Pythonista
      athros
      athros
    • RE: Hiding console in Pythonista 2.0?

      Once you hit the shaded box and the console goes full screen, swipe left, @Olaf

      posted in Pythonista
      athros
      athros
    • RE: Pythonista 1.6 Beta

      Here's to hoping!

      posted in Pythonista
      athros
      athros