omz:forum

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

    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 4
    • Topics 15
    • Posts 179
    • Best 3
    • Controversial 0
    • Groups 0

    briarfox

    @briarfox

    3
    Reputation
    1792
    Profile views
    179
    Posts
    4
    Followers
    0
    Following
    Joined Last Online

    briarfox Unfollow Follow

    Best posts made by briarfox

    • RE: Git in pythonista?

      Yes the shellista project has a basic git plugin. There are python modules that allow git.

      posted in Pythonista
      briarfox
      briarfox
    • RE: Uploading an image using SFTP (paramiko)

      @sebietter I thought paramiko required pyCrypto which is compiled code.

      posted in Pythonista
      briarfox
      briarfox
    • Fun: Watch ASCII Starwars!

      Thought I'd have a little fun and display the telnet ascii Starwars in pythonista!

      Enjoy!

      <pre>
      #!/usr/bin/env python
      '''
      STARWARS!
      '''
      import telnetlib
      import ui

      HOST = "towel.blinkenlights.nl"
      playing = False

      def button_pressed(sender):
      global playing
      if sender.title == "Play":
      sender.title = 'Pause'
      playing = True
      else:
      sender.title = 'Play'
      playing = False

      tn = telnetlib.Telnet(HOST)
      #view
      view = ui.View()
      view.background_color = (0,0,0)
      view.frame = (0,0,800,800)
      #textview
      tv = ui.TextView()
      tv.font = ('Courier',17)
      tv.flex = 'LRTB'
      tv.text_color = (1,1,1)
      tv.name = 'textview1'
      tv.frame = (0, 60, 800, 400)
      tv.background_color = (0,0,0)
      view.add_subview(tv)
      #button
      btn = ui.Button()
      btn.name = 'button1'
      btn.title = 'Play'
      btn.action = button_pressed
      btn.tint_color = (1,1,1)
      btn.flex = 'LR'
      btn.frame = (359, 6, 80, 32)
      view.add_subview(btn)

      view.present('fullscreen')
      tn.read_until('\r\n')
      while True:
      if playing:
      txt = ''
      lines = tn.read_until('[H').replace('[H','')
      view['textview1'].text = lines

      </pre>

      posted in Pythonista
      briarfox
      briarfox

    Latest posts made by briarfox

    • RE: What is special about the Xcode template?

      If you need a GUI for OSX I'd try out Kivy, Would love to see kivy implemented in pythonista, would make cross platform devv so much easier.

      posted in Pythonista
      briarfox
      briarfox
    • RE: Increment and Save

      @wm neat script. I had used a similar method (manually changing names) when I first started using pythonista. You may want to check out the StaSh project, as it has a limited git. git is nice because it allows you to commit changes (create save points) in a project and roll back/see revision history with ease.

      posted in Pythonista
      briarfox
      briarfox
    • RE: High school student project

      I'm a big fan of pythonista and it would be really cool to use option 1. I have not done much on the ipad with analizing images, I've used @ccc mentioned option of the raspberry pi. Works well.

      Option 2 shouldn't be to difficult. With Apple announcing the ability to install directly on the device without the dev license make this option sound better. Kivy is amazing, I've become a big fan of it. I'd suggest pyCharm for a IDE.

      posted in Pythonista
      briarfox
      briarfox
    • RE: GamePie - game engine designed to ease creation of cross-platform games.

      @ShadowSlayer gamepie is looking good! Thanks for sharing it. I'll be digging around and playing with it.

      posted in Pythonista
      briarfox
      briarfox
    • RE: Beta Status Update

      @JonB #Moe I get the grey screen as well on the platformer example. iPad Air.

      posted in Pythonista
      briarfox
      briarfox
    • RE: Beta Status Update

      @omz How do you close pythonista when ran in safari? The x is grayed out for me and I have to clear safari from memory to remove the pythonista popup.

      posted in Pythonista
      briarfox
      briarfox
    • RE: Beta Status Update

      @omz You have been busy! Thank you for your continued support in pythonista, Please give us a way to donate to you or an optional in app. With as much time that I have spent in pythonista, I feel guilty buying the app on sale and would like to support your continued development.

      Looking forward to playing with the new beta!

      posted in Pythonista
      briarfox
      briarfox
    • RE: Beta Status Update

      @omz Thank you for updating us. Looking forward to the new build! It looks awesome. Game Dev tools look like a lot of fun. In the end it is we that signed up to test builds, and unfortunately that sometimes means there will be issues. Keep up the great work!

      posted in Pythonista
      briarfox
      briarfox
    • RE: HELP! How do I submit apps to the App Store from inside Pythonista?

      NO app will be able to do this, you must have a Mac and the $99 dev license. Pythonista is by far the best python app on the app store.

      posted in Pythonista
      briarfox
      briarfox
    • RE: Pythonista 1.6 beta Is available again!

      I'm showing expired 3 days ago, Crashing on load.

      posted in Pythonista
      briarfox
      briarfox