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 SwiftSyntax | |
import SwiftSyntaxMacros | |
import SwiftCompilerPlugin | |
public enum SerialError: Error, CustomStringConvertible { | |
case invalidInput | |
case invalidOutput | |
public var description: String { | |
switch self { |
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
/// A queue that executes async functions in order, and atomically. | |
/// That is, each enqueued func executes fully before the next one is started. | |
struct AsyncSerialQueue { | |
typealias Block = () async throws -> [Int] | |
private struct Item { | |
let block: Block | |
let continuation: CheckedContinuation<[Int], Error> | |
} |
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 Foundation | |
struct NuclearPowerStationOperator { | |
class Storage { | |
var turnOffCores: Bool = false | |
func copy() -> Storage { | |
let new = Storage() | |
new.turnOffCores = turnOffCores | |
return new |
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 AppStoreConnect_Swift_SDK | |
func updateMetadata(forBundleID bundleID: String) async throws { | |
let configuration = try! APIConfiguration(issuerID: "...", privateKeyID: "...", privateKey: "...") | |
let provider = APIProvider(configuration: configuration) | |
// Get app | |
let appRequest = APIEndpoint.v1 | |
.apps | |
.get(parameters: .init(filterBundleID: [bundleID], include: [.appInfos, .appStoreVersions])) |
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
// Open in Script Editor, and Export as an Application | |
// To use, drag files from folder onto Droplet | |
function openDocuments(docs) { | |
var mail = Application("Mail") | |
for (var i = 0; i < docs.length; i++) { | |
var doc = docs[i].toString() | |
var filename = doc.replace(/^.*[\\\/]/, '') | |
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
#!/usr/bin/env python | |
# | |
# To use this, just put the DSYMS in the same directory as the sample dump file, | |
# and run the script from that directory, passing the sample dump file name as only argument | |
# | |
import re, sys, os, subprocess | |
sampleFile = sys.argv[1] |
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
actor Queue { | |
private var tasks: [() async -> Void] = [] | |
func enqueue(_ task: @escaping () async -> Void) { | |
tasks.append(task) | |
Task { await runNext() } | |
} | |
private func runNext() async { | |
guard !tasks.isEmpty else { return } |
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 <Foundation/Foundation.h> | |
@interface NSString (MCHTMLToPlainTextConversion) | |
-(NSString *)stringByConvertingHTMLToPlainText; | |
@end |
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
struct Label: Hashable { | |
var label: String | |
} | |
protocol LabelUniquing { | |
var label: Label { get } | |
} | |
extension LabelUniquing { |
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
// | |
// Lightweight but powerful state machine. | |
// | |
// Usage: | |
// enum TrafficLight: State { | |
// case red, orange, green | |
// } | |
// | |
// var trafficLights = StateMachine<TrafficLight>(initialState: .red) | |
// trafficLights.addRoute(from: .red, to: .green) |
NewerOlder