-
bee18
Not about technical things, but I believe omz should provide demo video of Pythonista both on the site and in the app store. The video should be able to present the ability of Pythonista much better than just static images, especially the advance features. Omz can take a look at Codea's demo video, it's quite good. And I believe a good demo video would also be able to attract new purchasers.
Thank you.
-
bee18
Thank you for providing link to other projects. filenav seems pretty cool. I'll start with that. :)
-
bee18
Hi,
I plan to write a simple app that puts a datetime stamp to a photo based on its EXIF data. So far I haven't found a way to read the EXIF data, especially using Pythonista. Can anybody give me a light on this? Thank you.
-Bee
-
bee18
If the photo doesn't have exif data, can I take the data from the file info e.g. datetime of file creation? Is there any python function to read it? Not the datetime of last file modification but the true file creation.
Thank you.
-
-
-
bee18
Ok... I don't understand why the list is NOT displayed correctly in this forum. :(
-
bee18
I just forked your minesweeper gists into:
https://github.com/git-bee/pythonista-minesweeper
Or, here the pastebin version:
Enhancements:
- bigger grid by default
- support landscape orientation
- no bomb at the first try :)
- tap-and-hold on open tile to auto-reveal
- game timer starts on first tap on tile, instead of on first tap on the smiley button
- some minor informational text (and a title)
- some minor better variable naming (IMHO)
I wrote this on my iPod touch, so my modification might doesn't work correctly on iPad due the different display aspect ratio. You could simply adjust the value in the source code.
Have fun! :)
-
bee18
Thank you for sharing your code. It's pretty neat. Really remind me of Windows. (FYI, I no longer use Windows since 2008). :)
Just one tiny little bit of annoyance… the real windows' minesweeper never give a bomb at the first try. Never. ;)
And also a double click (tap) would automatically reveal the already obvious blocks. This really helps reducing time in order to get fastest time record. Btw, my fastest record is 3 seconds on a small grid (10 bombs). :)
-
bee18
It will be called exactly 60 times per second if you got very very simple things to draw which require less than 1/60 second to process. But once you got a bit more complex drawing and or computation, the process would take longer. The more complex your program the longer it takes to draw. So, you need another way to get your program syncs with the real time. :)