I hereby claim:
- I am pedantix on github.
- I am pedantix (https://keybase.io/pedantix) on keybase.
- I have a public key ASDNHyZmWO9irQTz_xdXyyeKSeupkNvZXz5g2CXnFEdttQo
To claim this, I am signing this object:
#!/usr/bin/swift | |
// Usage Example: | |
// ./PostgresDbToLocal.swift vgsm-production-api very_good_sports_map_api shaunhubbard | |
import Foundation | |
extension Process { | |
public static func shell(command: String) -> String { | |
return Process().shell(command: command) |
I hereby claim:
To claim this, I am signing this object:
import SwiftUI | |
#if DEBUG | |
struct PreviewGroup: ViewModifier { | |
func body(content: Content) -> some View { | |
Group { | |
content.preferredColorScheme(.dark) | |
content.preferredColorScheme(.light) | |
} | |
} |
import SwiftUI | |
struct StoreListCell: View { | |
var body: some View { | |
Text("A Store List Cell") | |
} | |
} | |
struct StoreListCell_Previews: PreviewProvider { | |
static var previews: some View { |
import SwiftUI | |
struct StoreListCell: View { | |
var body: some View { | |
Text("A Store List Cell") | |
} | |
} | |
struct StoreListCell_Previews: PreviewProvider { | |
static var previews: some View { |