omz:forum

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

    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 3
    • Followers 34
    • Topics 82
    • Posts 2925
    • Best 430
    • Controversial 0
    • Groups 0

    ccc

    @ccc

    605
    Reputation
    20904
    Profile views
    2925
    Posts
    34
    Followers
    3
    Following
    Joined Last Online
    Website github.com/cclauss

    ccc Unfollow Follow

    Best posts made by ccc

    • Pythonista is now featured on Python.org

      https://www.python.org/download/other

      Sandwiched in between Python for IBM i and Python for OS/390 and z/OS... It took a bit of work but it is up there now.

      posted in Pythonista
      ccc
      ccc
    • RE: Pythonista 3

      @omz Congratulations of two great releases today!! Thanks massively for your commitment and craftsmanship. These tools have become so powerful yet so delightful. This community is extremely grateful to you for your dedication over the years.

      posted in Pythonista
      ccc
      ccc
    • RE: Wish list for next release

      Python 3.5

      Edit: Fixed in Pythonista3 version 3.0 (300001) (currently in beta).

      posted in Pythonista
      ccc
      ccc
    • Pythonista users of Ireland unite at PyConIE 2016!!

      Hi Folks,

      I just got word that my presentation on Pythonista was accepted for PyCon Ireland 2016 on November 5th and 6th in Dublin. If @omz would be interested to give this pitch instead of me then I would gladly yield to him and even pay his travel expenses. It would have so much more power coming directly from Pythonista's creator.

      Last time that I gave this presentation was 2014 in Berlin. I had the great privileged to have lunch with Ole after the talk ended. Pythonista has grown up soooo much in the intervening years.

      The idea behind this presentation is to show Pythonista in action and to talk about both the power of the product and the power of this community around the product (this users forum, the Slack channel, Pythonista-Tools on GitHub). I view spreading the good word about this great product as my small way of paying Ole back for all the wonderful work that he has done for us all over the years.

      If you have ideas about things that should be shown in this pitch or messages that should be sent, I am all ears. If you are based in Ireland and can join on November 5th and 6th, please do so. I plan to fly up from Switzerland and it would be wonderful to meet you face-to-face.

      Pythonistas of Ireland unite!

      posted in Pythonista
      ccc
      ccc
    • RE: Ranting about feature requests.

      I wanted to register my concern about the super long beta cycle for Pythonista v1.6.

      In these days of continuous delivery it worries me that there have not been more upgrades that were smaller in size but more frequent. Core Bluetooth could have been an upgrade. Ctypes could have been an upgrade. ObjC_util could have been an upgrade. Pillow could have been an upgrade. IOS9 (appex, etc.) compatibility could have been an upgrade. Today all of these capabilities are only available to those who are enrolled in the Beta program. More frequent upgrades would mean that we would be at Pythonista v2.5 instead of v1.5 but a bunch of users would have access to these incredible capabilities. I would like to vote for more releases with less functionality per release as opposed to the long beta cycles with tons of features that we currently have.

      posted in Pythonista
      ccc
      ccc
    • TheAlgorithms/Python: An invitation to participate

      I am a participant in the repo https://github.com/TheAlgorithms/Python/blob/master/DIRECTORY.md and I invite you to get involved.

      We curate a long list of algorithms written in pure-Python (they should all be Pythonista compatible) for learning purposes.

      We encourage the use of type hints, f-strings, and doctests so contributing is a great way to learn these. We currently have more than 500 automated tests that run on every pull request.

      We could use contributions that implement new algorithms and optimize or improve test coverage on existing ones. There are also sister repos for most other programming languages. Please take a look... https://github.com/TheAlgorithms/Python and read thru https://github.com/TheAlgorithms/Python/blob/master/CONTRIBUTING.md if you want to get involved.

      posted in Pythonista
      ccc
      ccc
    • RE: Exit app by Pythonista script

      I seriously doubt that Apple allows one iOS app to terminate another app.

      posted in Pythonista
      ccc
      ccc
    • RE: Time to release a new version to App Store

      @lpl Please cease with the doomsday prophecies and grumpy demands. If you do not feel secure with Pythonista’s future then chose an alternative. There are alternatives now. Please remember that the purchase price of Pythonista is about as much as a drink at Starbucks so switching costs are not prohibitive.

      posted in Pythonista
      ccc
      ccc
    • RE: Pythonista-made game now on App Store

      If I know @JonB, he probably wrote a learning algorithm that runs on his iPhone that plays the game on his iPad.

      posted in Pythonista
      ccc
      ccc
    • RE: FTP in appex mode

      "Les grands esprits se rencontrent" == "Great minds think alike"

      posted in Pythonista
      ccc
      ccc

    Latest posts made by ccc

    • RE: How to get gyroscope data in pythonista?

      https://forum.omz-software.com/topic/1031

      posted in Pythonista
      ccc
      ccc
    • RE: Armstrong Number In Python

      Here is a PYTHON (not C as above) version with tests.

      • https://github.com/TheAlgorithms/Python/blob/master/DIRECTORY.md#maths
      posted in Pythonista
      ccc
      ccc
    • RE: Google Drive connection falls in error in Pythonista beta: needs a temporary workaround

      We do not even need setattr()...

      >>> import collections
      >>>> collections.Hashable = collections.abc.Hashable
      >>>> collections.MutableMapping = collections.abc.MutableMapping
      >>>> collections.Hashable, collections.MutableMapping
      >(<class 'collections.abc.Hashable'>, <class 'collections.abc.MutableMapping'>)
      
      posted in Pythonista
      ccc
      ccc
    • RE: Google Drive connection falls in error in Pythonista beta: needs a temporary workaround

      % python3.10

      >>> import collections
      >>> setattr(collections, "Hashable", collections.abc.Hashable)
      >>> collections.Hashable
      <class 'collections.abc.Hashable'>
      

      Try that before importing Google Drive.

      posted in Pythonista
      ccc
      ccc
    • RE: Google Drive connection falls in error in Pythonista beta: needs a temporary workaround

      Yet another thing that was migrated from collections to collections.abc.

      • https://docs.python.org/3/library/collections.abc.html#collections.abc.Hashable
      posted in Pythonista
      ccc
      ccc
    • RE: How to scan wifi network

      You might try https://www.fing.com -- Even their free app is quite useful. https://github.com/fingltd

      posted in Pythonista
      ccc
      ccc
    • RE: Photo album slideshow

      insets = self.objc_instance.safeAreaInsets()
      self.frame = self.frame.inset(insets.top, insets.left, insets.bottom, insets.right)

      Does this work? self.frame = self.frame.inset(*self.objc_instance.safeAreaInsets())

      posted in Pythonista
      ccc
      ccc
    • RE: What is the link to join the Slack channel?

      https://join.slack.com/t/pythonista-app/shared_invite/zt-1ryocg7z8-CPtzfQB31yyJGqe8d0p1Jw

      posted in Pythonista
      ccc
      ccc
    • RE: Extra pythonista key row containing common py chars is not being displayed.

      Settings —> Keyboard & Typing —> Extra Key Row

      From https://omz-software.com/pythonista/docs/ios/pythonista.html#pythonista-editor

      From https://omz-software.com/pythonista/docs/ios/pythonista_shortcuts.html#pythonista-keyboard

      posted in Pythonista
      ccc
      ccc
    • RE: Request for an App

      This one?

      https://raw.githubusercontent.com/jsbain/RoomAreaFinder/master/floorplanarea.py

      posted in Pythonista
      ccc
      ccc