##Hi
This file contains hidden or 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
{ | |
"data": { | |
"Menu": { | |
"_id": "7041d454-5910-4521-b4b4-b31087260b6b", | |
"_type": "menu", | |
"name": { | |
"locale": "FHS Main Default Menu", | |
"__typename": "LocaleString" | |
}, | |
"image": null, |
This file contains hidden or 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
{ | |
"data": { | |
"storeMenu": [ | |
{ | |
"id": "1da1d8f6-cb05-49f9-93d4-88556cf3f95a", | |
"isAvailable": true, | |
"price": { | |
"default": 1147, | |
"max": 1847, | |
"min": 1147, |
##Hi
Title: Automated PRD Update System Based on Jira Tickets
-
Introduction
a Define PRD (Product Requirements Document)
a Explain the importance of keeping a PRD updated
Explain the purpose of the system: to automatically update PRDs based on Jira tickets
This file contains hidden or 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 | |
import SwiftUI | |
struct ScrollViewWithProgress<Content: View>: View { | |
let axes: Axis.Set | |
let showsIndicators: Bool | |
let offsetChanged: (CGFloat, CGFloat) -> Void | |
let content: Content | |
This file contains hidden or 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 Combine | |
import QuartzCore.CADisplayLink | |
extension CADisplayLink { | |
fileprivate class DisplayLinkWrapper { | |
private var subscriber: AnySubscriber<CADisplayLink, Never> | |
private var displayLink: CADisplayLink? | |
init(runloop: RunLoop, mode: RunLoop.Mode, subscriber: AnySubscriber<CADisplayLink, Never>) { | |
self.subscriber = subscriber |
This file contains hidden or 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
extension Publishers { | |
public struct Anonymous<Output, Failure: Swift.Error>: Publisher { | |
private var closure: (AnySubscriber<Output, Failure>) -> Void | |
public init(closure: @escaping (AnySubscriber<Output, Failure>) -> Void) { | |
self.closure = closure | |
} | |
public func receive<S>(subscriber: S) where S : Subscriber, Anonymous.Failure == S.Failure, Anonymous.Output == S.Input { |
This file contains hidden or 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
CLIENT | |
var apollo = Apollo() | |
struct Apollo { | |
func fetch(query: LaunchesQuery, resultHandler: (Result<GraphQLResult<LaunchesQuery.Data>, Error>) -> ()) | |
} | |
public func fetchLaunches() -> Future<[LaunchInterface], Error> { | |
Future { promise in | |
apollo.fetch(query: LaunchesQuery()) { result in |