Pretty hacky flow, but this will remove anyone that was invited but not accepted their TestFlight invitation.
Start the Ruby REPL
$ irb
I want you to become my Expert Prompt Creator. Your goal is to help me craft the best possible prompt for my needs. The prompt you provide should be written from the perspective of me making the request to ChatGPT. Consider in your prompt creation that this prompt will be entered into an interface for gpt-4o. The prompt will include instructions to write the output using my communication style. The process is as follows: | |
1. You will generate the following sections: | |
" | |
**Prompt:** | |
>{provide the best possible prompt according to my request} | |
> | |
> | |
>{summarize my prior messages to you and provide them as examples of my communication style} |
class ViewController: UIViewController { | |
@IBAction func onSearch(_ sender: Any) { | |
let fakeWindow = UIWindow(windowScene: view.window!.windowScene!) | |
let fakeTextField = UITextField() | |
fakeTextField.autocorrectionType = .no | |
fakeWindow.addSubview(fakeTextField) | |
fakeWindow.makeKeyAndVisible() | |
fakeTextField.becomeFirstResponder() |
Date/Time: 2019-09-06 20:24:09.836 -0400 | |
OS Version: Mac OS X 10.14.6 (18G95) | |
Report Version: 12 | |
Bridge OS Version: 3.6 (16P6571) | |
Anonymous UUID: 2F39EFFF-A558-172D-A389-1B5A4D92497B | |
Sleep/Wake UUID: 2C691F51-7554-49E4-9814-D24C14443882 | |
Time Awake Since Boot: 320000 seconds | |
Time Since Wake: 1200 seconds |
class Cell: UITableViewCell { | |
let textView = UITextView() | |
let scrollView = UIScrollView() | |
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) { | |
super.init(style: style, reuseIdentifier: reuseIdentifier) | |
scrollView.translatesAutoresizingMaskIntoConstraints = false | |
scrollView.alwaysBounceHorizontal = true | |
scrollView.scrollsToTop = false |
import UIKit | |
public extension CGSize { | |
func snapped(scale: CGFloat) -> CGSize { | |
var size = self | |
size.width = ceil(size.width * scale) / scale | |
size.height = ceil(size.height * scale) / scale | |
return size | |
} |
$ bash -l -c "$(curl -sfL https://raw.githubusercontent.com/bitrise-tools/codesigndoc/master/_scripts/install_wrap-xcode.sh)" 18-05-04 12:54:54 | |
=> Creating a temporary directory for codesigndoc ... | |
=> Downloading version: 2.1.0 | |
=> Downloading codesigndoc from (https://github.com/bitrise-tools/codesigndoc/releases/download/2.1.0/codesigndoc-Darwin-x86_64) to (/var/folders/cp/3k3452xn2w9223mgpchm2059krf8ch/T/codesigndocXXXXXX.REa5smBc/codesigndoc) ... | |
######################################################################## 100.0% | |
=> Making it executable ... | |
=> codesigndoc version: 2.1.0 | |
=> Running codesigndoc scan ... |
// ListSwiftAdapterDataSource.swift | |
public class Value { | |
public let value: ListSwiftDiffable | |
public let constructor: () -> ListSectionController | |
public init<T>(value: T, constructor: @escaping () -> ListSwiftSectionController<T>) { | |
self.value = value | |
self.constructor = constructor | |
} |
FAILED=false | |
if [ -z "${BUDDYBUILD_BUILD_NUMBER}" ]; then | |
echo "Script is not being run on CI" | |
exit 0 | |
fi | |
if [ -z "${GITHUB_CLIENT_ID}" ]; then | |
echo "${SRCROOT}/Classes/Systems/Secrets.swift:14:1: warning: Missing GitHub Client ID" | |
FAILED=true |
import UIKit | |
extension UIContentSizeCategory { | |
var multiplier: CGFloat { | |
switch self { | |
case .accessibilityExtraExtraExtraLarge: return 23 / 16 | |
case .accessibilityExtraExtraLarge: return 22 / 16 | |
case .accessibilityExtraLarge: return 21 / 16 | |
case .accessibilityLarge: return 20 / 16 |