This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
clearapp://list/create? | |
listName=[prompt:List Name]& | |
tasks=[prompt-list:List Items] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Pythonista script to create a Launch Center Pro action with all my | |
# updated grocery lists. | |
# Author: Aaron Bach | |
# www: http://www.bachyaproductions.com/ | |
import json | |
import os | |
import sys | |
import urllib | |
import urllib2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
import PlaygroundSupport | |
let vc = UIViewController() | |
vc.view.backgroundColor = .white | |
PlaygroundPage.current.liveView = vc | |
PlaygroundPage.current.needsIndefiniteExecution = true | |
let button = UIButton(type: .system) | |
button.frame = CGRect(x: 0, y: 0, width: 240, height: 120) |