Skip to content

Instantly share code, notes, and snippets.

View pedantix's full-sized avatar
😍
SWIFT!

Shaun Hubbard pedantix

😍
SWIFT!
View GitHub Profile
#!/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)

Keybase proof

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:

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 {