├── .gitignore ├── LICENSE ├── Latest ├── Asynchronous Operations.playground │ ├── Contents.swift │ ├── Sources │ │ ├── AsynchronousOperation.swift │ │ └── URLSessionOperation.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Badge Formatter.playground │ ├── Contents.swift │ ├── Sources │ │ ├── BadgeFormatter.swift │ │ └── BadgeGalleryViewController.swift │ ├── contents.xcplayground │ ├── playground.xcworkspace │ │ └── contents.xcworkspacedata │ └── timeline.xctimeline ├── Chunk Sequence.playground │ ├── Contents.swift │ ├── Sources │ │ └── ChunkSequence.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ └── contents.xcworkspacedata ├── Combinatorial Parsers.playground │ ├── Contents.swift │ ├── Sources │ │ ├── ExistentialParser.swift │ │ ├── FlatMap.swift │ │ ├── Map.swift │ │ ├── Models.swift │ │ ├── OneOf.swift │ │ ├── Parseable.swift │ │ ├── Parser.swift │ │ ├── Parsers.swift │ │ ├── PrefixWhile.swift │ │ ├── ZeroOrMore.swift │ │ └── Zip.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Debounce.playground │ ├── Contents.swift │ ├── Sources │ │ └── Debounce.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ └── contents.xcworkspacedata ├── Deriving Scroll Views.playground │ ├── Pages │ │ ├── Scroll View of Doom.xcplaygroundpage │ │ │ ├── Contents.swift │ │ │ └── timeline.xctimeline │ │ └── Stacking Scroll Views?!.xcplaygroundpage │ │ │ ├── Contents.swift │ │ │ └── timeline.xctimeline │ ├── Sources │ │ ├── DerivingContentSizeCollectionView.swift │ │ ├── DerivingContentSizeTableView.swift │ │ └── ScrollViewDerivedBoundsHelper.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ └── contents.xcworkspacedata ├── HTMLDocument.playground │ ├── Pages │ │ ├── Attributed String.xcplaygroundpage │ │ │ └── Contents.swift │ │ └── Unit Tests.xcplaygroundpage │ │ │ └── Contents.swift │ ├── Resources │ │ └── xml.html │ ├── Sources │ │ └── HTMLDocument.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Keyboard Layout Guide │ ├── KeyboardLayoutGuide.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── KeyboardLayoutGuide │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── KeyboardLayoutGuide.swift │ │ ├── UIResponder+KeyboardAvoidance.swift │ │ └── ViewController.swift ├── Living Wallpapers.playground │ ├── Pages │ │ ├── Creating a Solar Trigger.xcplaygroundpage │ │ │ └── Contents.swift │ │ ├── Creating an Appearance Trigger.xcplaygroundpage │ │ │ └── Contents.swift │ │ ├── Creating an Hour Trigger.xcplaygroundpage │ │ │ ├── Contents.swift │ │ │ └── timeline.xctimeline │ │ └── Reading the System Solar Trigger.xcplaygroundpage │ │ │ ├── Contents.swift │ │ │ └── timeline.xctimeline │ ├── Sources │ │ ├── AppearanceTrigger.swift │ │ ├── DynamicDesktopTrigger.swift │ │ ├── HourTrigger.swift │ │ ├── SolarTrigger.swift │ │ └── Utilities.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── NSView Layout Margins.playground │ ├── Contents.swift │ ├── Sources │ │ └── NSView+LayoutSupport.swift │ ├── contents.xcplayground │ ├── playground.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── timeline.xctimeline ├── Notifier.playground │ ├── Contents.swift │ ├── Sources │ │ └── Notifier.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ └── contents.xcworkspacedata ├── OrderedDictionary.playground │ ├── Contents.swift │ ├── Sources │ │ └── OrderedDictionary.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ └── contents.xcworkspacedata ├── Readable Width.playground │ ├── Contents.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Receding Navigation Title.playground │ ├── Contents.swift │ ├── Resources │ │ └── Main.storyboard │ ├── Sources │ │ ├── UIFont+DynamicTypeSymbolicTraits.swift │ │ └── UINavigationItem+FloatingTitle.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Repeatable UUID.playground │ ├── Contents.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── String Views.playground │ ├── Contents.swift │ ├── Resources │ │ └── swift.txt │ ├── Sources │ │ ├── SimpleStringViews.swift │ │ └── TokenizerStringViews.swift │ ├── contents.xcplayground │ ├── playground.xcworkspace │ │ └── contents.xcworkspacedata │ └── timeline.xctimeline ├── Tab Bar Palette.playground │ ├── Contents.swift │ ├── Resources │ │ └── second.pdf │ ├── Sources │ │ ├── AccessoryTabBarController.swift │ │ ├── BackgroundBlendingView.swift │ │ └── HighlightingFilter.swift │ ├── contents.xcplayground │ ├── playground.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── timeline.xctimeline ├── Thread with Function.playground │ ├── Contents.swift │ ├── Sources │ │ └── ThreadWithFunction.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ └── contents.xcworkspacedata └── ValueCodable.playground │ ├── Contents.swift │ ├── Sources │ ├── EnumCodable.swift │ ├── ObjCCodable.swift │ └── ValueCodable.swift │ ├── contents.xcplayground │ ├── playground.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── timeline.xctimeline ├── Media ├── 2018-01-17 Badge Formatter.png ├── 2018-01-17 Tab Bar Palette.png ├── 2018-06-30 Living Wallpapers.gif ├── 2018-12-09 Layout Margins.png └── 2019-05-20 Receding Navigation Title.gif ├── README.md ├── Swift-2 ├── BetterCoreDataInit.playground │ ├── Contents.swift │ ├── Sources │ │ └── CoreDataModelType.swift │ ├── contents.xcplayground │ ├── playground.xcworkspace │ │ └── contents.xcworkspacedata │ └── timeline.xctimeline ├── ConcretePlusProtocol.playground │ ├── Contents.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ └── contents.xcworkspacedata ├── CustomTruncation.playground │ ├── Contents.swift │ ├── Sources │ │ ├── IntegralRect.swift │ │ ├── NSRange.swift │ │ └── TruncatingLabel.swift │ ├── contents.xcplayground │ ├── playground.xcworkspace │ │ └── contents.xcworkspacedata │ └── timeline.xctimeline ├── Data.playground │ ├── Pages │ │ ├── Advanced Unicode.xcplaygroundpage │ │ │ ├── Contents.swift │ │ │ └── timeline.xctimeline │ │ ├── Reading from Disk.xcplaygroundpage │ │ │ ├── Contents.swift │ │ │ └── timeline.xctimeline │ │ └── Simple Decoding.xcplaygroundpage │ │ │ ├── Contents.swift │ │ │ └── timeline.xctimeline │ ├── Resources │ │ ├── hello-U16B.txt │ │ └── hello-U8.txt │ ├── Sources │ │ ├── ChunkGenerator.swift │ │ ├── Data+CollectionType.swift │ │ ├── Data+NSData.swift │ │ ├── Data.swift │ │ ├── DataElements.swift │ │ ├── DataRegions.swift │ │ ├── UnicodeCodecs.swift │ │ ├── UnicodeUtilities+Foundation.swift │ │ └── UnicodeUtilities.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ └── contents.xcworkspacedata ├── DispatchBlock.playground │ ├── Pages │ │ ├── Making It Cleaner.xcplaygroundpage │ │ │ ├── Contents.swift │ │ │ └── timeline.xctimeline │ │ ├── The Bug.xcplaygroundpage │ │ │ ├── Contents.swift │ │ │ └── timeline.xctimeline │ │ ├── The Change.xcplaygroundpage │ │ │ ├── Contents.swift │ │ │ └── timeline.xctimeline │ │ └── The Fix.xcplaygroundpage │ │ │ ├── Contents.swift │ │ │ └── timeline.xctimeline │ ├── Sources │ │ └── DispatchBlock.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ │ └── contents.xcworkspacedata ├── Geometry.playground │ ├── Contents.swift │ ├── Sources │ │ ├── CATransform3D.swift │ │ ├── CGAffineTransform.swift │ │ ├── CGPoint.swift │ │ ├── CGRect.swift │ │ ├── CGSize.swift │ │ ├── UIEdgeInsets.swift │ │ └── Utilities.swift │ ├── contents.xcplayground │ ├── playground.xcworkspace │ │ └── contents.xcworkspacedata │ └── timeline.xctimeline ├── Localize.playground │ ├── Contents.swift │ ├── Resources │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── Sources │ │ └── LocalizableText.swift │ ├── contents.xcplayground │ ├── playground.xcworkspace │ │ └── contents.xcworkspacedata │ └── timeline.xctimeline ├── Overrides │ ├── Overrides.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ └── Overrides │ │ ├── AppDelegate.swift │ │ ├── Base.lproj │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── Main.storyboard │ │ ├── OverrideRootViewController.swift │ │ └── ViewController.swift ├── RegularExpression.playground │ ├── Contents.swift │ ├── Sources │ │ ├── NSRange.swift │ │ └── NSRegularExpression.swift │ ├── contents.xcplayground │ ├── playground.xcworkspace │ │ └── contents.xcworkspacedata │ └── timeline.xctimeline ├── UI Geometry.playground │ ├── Contents.swift │ ├── Sources │ │ ├── CGRect.swift │ │ ├── GeometricMeasure.swift │ │ ├── Scaling.swift │ │ ├── UIEdgeInsets.swift │ │ ├── UIUserInterfaceLayoutDirection.swift │ │ └── UIView.swift │ ├── contents.xcplayground │ ├── playground.xcworkspace │ │ └── contents.xcworkspacedata │ └── timeline.xctimeline └── ViewRecursion.playground │ ├── Contents.swift │ ├── contents.xcplayground │ ├── playground.xcworkspace │ └── contents.xcworkspacedata │ └── timeline.xctimeline ├── Swift-3 └── Delimited.playground │ ├── Contents.swift │ ├── Sources │ ├── CaseIterable.swift │ ├── Delimited.swift │ └── XCTest.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ └── contents.xcworkspacedata └── SwiftUI └── Stickiness ├── Stickiness.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── Stickiness.xcscheme └── Stickiness ├── AppDelegate.swift ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── Base.lproj └── LaunchScreen.storyboard ├── Blur.swift ├── ContentView.swift ├── Helpers ├── UIFont+Theming.swift ├── UIResponder+ViewController.swift └── UIView+Convenience.swift ├── Info.plist ├── InlineNavigationTitleView.swift ├── OpacityEffect.swift ├── Preview Content └── Preview Assets.xcassets │ └── Contents.json ├── ProminentCallToActionButtonStyle.swift ├── SceneDelegate.swift ├── Step.swift └── UpdatesNavigationBar.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/LICENSE -------------------------------------------------------------------------------- /Latest/Asynchronous Operations.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Asynchronous Operations.playground/Contents.swift -------------------------------------------------------------------------------- /Latest/Asynchronous Operations.playground/Sources/AsynchronousOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Asynchronous Operations.playground/Sources/AsynchronousOperation.swift -------------------------------------------------------------------------------- /Latest/Asynchronous Operations.playground/Sources/URLSessionOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Asynchronous Operations.playground/Sources/URLSessionOperation.swift -------------------------------------------------------------------------------- /Latest/Asynchronous Operations.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Asynchronous Operations.playground/contents.xcplayground -------------------------------------------------------------------------------- /Latest/Asynchronous Operations.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Asynchronous Operations.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Latest/Badge Formatter.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Badge Formatter.playground/Contents.swift -------------------------------------------------------------------------------- /Latest/Badge Formatter.playground/Sources/BadgeFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Badge Formatter.playground/Sources/BadgeFormatter.swift -------------------------------------------------------------------------------- /Latest/Badge Formatter.playground/Sources/BadgeGalleryViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Badge Formatter.playground/Sources/BadgeGalleryViewController.swift -------------------------------------------------------------------------------- /Latest/Badge Formatter.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Badge Formatter.playground/contents.xcplayground -------------------------------------------------------------------------------- /Latest/Badge Formatter.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Badge Formatter.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Latest/Badge Formatter.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Badge Formatter.playground/timeline.xctimeline -------------------------------------------------------------------------------- /Latest/Chunk Sequence.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Chunk Sequence.playground/Contents.swift -------------------------------------------------------------------------------- /Latest/Chunk Sequence.playground/Sources/ChunkSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Chunk Sequence.playground/Sources/ChunkSequence.swift -------------------------------------------------------------------------------- /Latest/Chunk Sequence.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Chunk Sequence.playground/contents.xcplayground -------------------------------------------------------------------------------- /Latest/Chunk Sequence.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Chunk Sequence.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Latest/Combinatorial Parsers.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Combinatorial Parsers.playground/Contents.swift -------------------------------------------------------------------------------- /Latest/Combinatorial Parsers.playground/Sources/ExistentialParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Combinatorial Parsers.playground/Sources/ExistentialParser.swift -------------------------------------------------------------------------------- /Latest/Combinatorial Parsers.playground/Sources/FlatMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Combinatorial Parsers.playground/Sources/FlatMap.swift -------------------------------------------------------------------------------- /Latest/Combinatorial Parsers.playground/Sources/Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Combinatorial Parsers.playground/Sources/Map.swift -------------------------------------------------------------------------------- /Latest/Combinatorial Parsers.playground/Sources/Models.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Combinatorial Parsers.playground/Sources/Models.swift -------------------------------------------------------------------------------- /Latest/Combinatorial Parsers.playground/Sources/OneOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Combinatorial Parsers.playground/Sources/OneOf.swift -------------------------------------------------------------------------------- /Latest/Combinatorial Parsers.playground/Sources/Parseable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Combinatorial Parsers.playground/Sources/Parseable.swift -------------------------------------------------------------------------------- /Latest/Combinatorial Parsers.playground/Sources/Parser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Combinatorial Parsers.playground/Sources/Parser.swift -------------------------------------------------------------------------------- /Latest/Combinatorial Parsers.playground/Sources/Parsers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Combinatorial Parsers.playground/Sources/Parsers.swift -------------------------------------------------------------------------------- /Latest/Combinatorial Parsers.playground/Sources/PrefixWhile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Combinatorial Parsers.playground/Sources/PrefixWhile.swift -------------------------------------------------------------------------------- /Latest/Combinatorial Parsers.playground/Sources/ZeroOrMore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Combinatorial Parsers.playground/Sources/ZeroOrMore.swift -------------------------------------------------------------------------------- /Latest/Combinatorial Parsers.playground/Sources/Zip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Combinatorial Parsers.playground/Sources/Zip.swift -------------------------------------------------------------------------------- /Latest/Combinatorial Parsers.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Combinatorial Parsers.playground/contents.xcplayground -------------------------------------------------------------------------------- /Latest/Combinatorial Parsers.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Combinatorial Parsers.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Latest/Combinatorial Parsers.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Combinatorial Parsers.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Latest/Debounce.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Debounce.playground/Contents.swift -------------------------------------------------------------------------------- /Latest/Debounce.playground/Sources/Debounce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Debounce.playground/Sources/Debounce.swift -------------------------------------------------------------------------------- /Latest/Debounce.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Debounce.playground/contents.xcplayground -------------------------------------------------------------------------------- /Latest/Debounce.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Debounce.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Latest/Deriving Scroll Views.playground/Pages/Scroll View of Doom.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Deriving Scroll Views.playground/Pages/Scroll View of Doom.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Latest/Deriving Scroll Views.playground/Pages/Scroll View of Doom.xcplaygroundpage/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Deriving Scroll Views.playground/Pages/Scroll View of Doom.xcplaygroundpage/timeline.xctimeline -------------------------------------------------------------------------------- /Latest/Deriving Scroll Views.playground/Pages/Stacking Scroll Views?!.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Deriving Scroll Views.playground/Pages/Stacking Scroll Views?!.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Latest/Deriving Scroll Views.playground/Pages/Stacking Scroll Views?!.xcplaygroundpage/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Deriving Scroll Views.playground/Pages/Stacking Scroll Views?!.xcplaygroundpage/timeline.xctimeline -------------------------------------------------------------------------------- /Latest/Deriving Scroll Views.playground/Sources/DerivingContentSizeCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Deriving Scroll Views.playground/Sources/DerivingContentSizeCollectionView.swift -------------------------------------------------------------------------------- /Latest/Deriving Scroll Views.playground/Sources/DerivingContentSizeTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Deriving Scroll Views.playground/Sources/DerivingContentSizeTableView.swift -------------------------------------------------------------------------------- /Latest/Deriving Scroll Views.playground/Sources/ScrollViewDerivedBoundsHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Deriving Scroll Views.playground/Sources/ScrollViewDerivedBoundsHelper.swift -------------------------------------------------------------------------------- /Latest/Deriving Scroll Views.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Deriving Scroll Views.playground/contents.xcplayground -------------------------------------------------------------------------------- /Latest/Deriving Scroll Views.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Deriving Scroll Views.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Latest/HTMLDocument.playground/Pages/Attributed String.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/HTMLDocument.playground/Pages/Attributed String.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Latest/HTMLDocument.playground/Pages/Unit Tests.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/HTMLDocument.playground/Pages/Unit Tests.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Latest/HTMLDocument.playground/Resources/xml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/HTMLDocument.playground/Resources/xml.html -------------------------------------------------------------------------------- /Latest/HTMLDocument.playground/Sources/HTMLDocument.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/HTMLDocument.playground/Sources/HTMLDocument.swift -------------------------------------------------------------------------------- /Latest/HTMLDocument.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/HTMLDocument.playground/contents.xcplayground -------------------------------------------------------------------------------- /Latest/HTMLDocument.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/HTMLDocument.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Latest/HTMLDocument.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/HTMLDocument.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Latest/Keyboard Layout Guide/KeyboardLayoutGuide.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Keyboard Layout Guide/KeyboardLayoutGuide.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Latest/Keyboard Layout Guide/KeyboardLayoutGuide.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Keyboard Layout Guide/KeyboardLayoutGuide.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Latest/Keyboard Layout Guide/KeyboardLayoutGuide/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Keyboard Layout Guide/KeyboardLayoutGuide/AppDelegate.swift -------------------------------------------------------------------------------- /Latest/Keyboard Layout Guide/KeyboardLayoutGuide/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Keyboard Layout Guide/KeyboardLayoutGuide/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Latest/Keyboard Layout Guide/KeyboardLayoutGuide/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Keyboard Layout Guide/KeyboardLayoutGuide/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Latest/Keyboard Layout Guide/KeyboardLayoutGuide/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Keyboard Layout Guide/KeyboardLayoutGuide/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Latest/Keyboard Layout Guide/KeyboardLayoutGuide/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Keyboard Layout Guide/KeyboardLayoutGuide/Info.plist -------------------------------------------------------------------------------- /Latest/Keyboard Layout Guide/KeyboardLayoutGuide/KeyboardLayoutGuide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Keyboard Layout Guide/KeyboardLayoutGuide/KeyboardLayoutGuide.swift -------------------------------------------------------------------------------- /Latest/Keyboard Layout Guide/KeyboardLayoutGuide/UIResponder+KeyboardAvoidance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Keyboard Layout Guide/KeyboardLayoutGuide/UIResponder+KeyboardAvoidance.swift -------------------------------------------------------------------------------- /Latest/Keyboard Layout Guide/KeyboardLayoutGuide/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Keyboard Layout Guide/KeyboardLayoutGuide/ViewController.swift -------------------------------------------------------------------------------- /Latest/Living Wallpapers.playground/Pages/Creating a Solar Trigger.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Living Wallpapers.playground/Pages/Creating a Solar Trigger.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Latest/Living Wallpapers.playground/Pages/Creating an Appearance Trigger.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Living Wallpapers.playground/Pages/Creating an Appearance Trigger.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Latest/Living Wallpapers.playground/Pages/Creating an Hour Trigger.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Living Wallpapers.playground/Pages/Creating an Hour Trigger.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Latest/Living Wallpapers.playground/Pages/Creating an Hour Trigger.xcplaygroundpage/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Living Wallpapers.playground/Pages/Creating an Hour Trigger.xcplaygroundpage/timeline.xctimeline -------------------------------------------------------------------------------- /Latest/Living Wallpapers.playground/Pages/Reading the System Solar Trigger.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Living Wallpapers.playground/Pages/Reading the System Solar Trigger.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Latest/Living Wallpapers.playground/Pages/Reading the System Solar Trigger.xcplaygroundpage/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Living Wallpapers.playground/Pages/Reading the System Solar Trigger.xcplaygroundpage/timeline.xctimeline -------------------------------------------------------------------------------- /Latest/Living Wallpapers.playground/Sources/AppearanceTrigger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Living Wallpapers.playground/Sources/AppearanceTrigger.swift -------------------------------------------------------------------------------- /Latest/Living Wallpapers.playground/Sources/DynamicDesktopTrigger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Living Wallpapers.playground/Sources/DynamicDesktopTrigger.swift -------------------------------------------------------------------------------- /Latest/Living Wallpapers.playground/Sources/HourTrigger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Living Wallpapers.playground/Sources/HourTrigger.swift -------------------------------------------------------------------------------- /Latest/Living Wallpapers.playground/Sources/SolarTrigger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Living Wallpapers.playground/Sources/SolarTrigger.swift -------------------------------------------------------------------------------- /Latest/Living Wallpapers.playground/Sources/Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Living Wallpapers.playground/Sources/Utilities.swift -------------------------------------------------------------------------------- /Latest/Living Wallpapers.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Living Wallpapers.playground/contents.xcplayground -------------------------------------------------------------------------------- /Latest/Living Wallpapers.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Living Wallpapers.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Latest/Living Wallpapers.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Living Wallpapers.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Latest/NSView Layout Margins.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/NSView Layout Margins.playground/Contents.swift -------------------------------------------------------------------------------- /Latest/NSView Layout Margins.playground/Sources/NSView+LayoutSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/NSView Layout Margins.playground/Sources/NSView+LayoutSupport.swift -------------------------------------------------------------------------------- /Latest/NSView Layout Margins.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/NSView Layout Margins.playground/contents.xcplayground -------------------------------------------------------------------------------- /Latest/NSView Layout Margins.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/NSView Layout Margins.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Latest/NSView Layout Margins.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/NSView Layout Margins.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Latest/NSView Layout Margins.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/NSView Layout Margins.playground/timeline.xctimeline -------------------------------------------------------------------------------- /Latest/Notifier.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Notifier.playground/Contents.swift -------------------------------------------------------------------------------- /Latest/Notifier.playground/Sources/Notifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Notifier.playground/Sources/Notifier.swift -------------------------------------------------------------------------------- /Latest/Notifier.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Notifier.playground/contents.xcplayground -------------------------------------------------------------------------------- /Latest/Notifier.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Notifier.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Latest/OrderedDictionary.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/OrderedDictionary.playground/Contents.swift -------------------------------------------------------------------------------- /Latest/OrderedDictionary.playground/Sources/OrderedDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/OrderedDictionary.playground/Sources/OrderedDictionary.swift -------------------------------------------------------------------------------- /Latest/OrderedDictionary.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/OrderedDictionary.playground/contents.xcplayground -------------------------------------------------------------------------------- /Latest/OrderedDictionary.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/OrderedDictionary.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Latest/Readable Width.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Readable Width.playground/Contents.swift -------------------------------------------------------------------------------- /Latest/Readable Width.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Readable Width.playground/contents.xcplayground -------------------------------------------------------------------------------- /Latest/Readable Width.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Readable Width.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Latest/Readable Width.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Readable Width.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Latest/Receding Navigation Title.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Receding Navigation Title.playground/Contents.swift -------------------------------------------------------------------------------- /Latest/Receding Navigation Title.playground/Resources/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Receding Navigation Title.playground/Resources/Main.storyboard -------------------------------------------------------------------------------- /Latest/Receding Navigation Title.playground/Sources/UIFont+DynamicTypeSymbolicTraits.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Receding Navigation Title.playground/Sources/UIFont+DynamicTypeSymbolicTraits.swift -------------------------------------------------------------------------------- /Latest/Receding Navigation Title.playground/Sources/UINavigationItem+FloatingTitle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Receding Navigation Title.playground/Sources/UINavigationItem+FloatingTitle.swift -------------------------------------------------------------------------------- /Latest/Receding Navigation Title.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Receding Navigation Title.playground/contents.xcplayground -------------------------------------------------------------------------------- /Latest/Receding Navigation Title.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Receding Navigation Title.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Latest/Receding Navigation Title.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Receding Navigation Title.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Latest/Repeatable UUID.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Repeatable UUID.playground/Contents.swift -------------------------------------------------------------------------------- /Latest/Repeatable UUID.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Repeatable UUID.playground/contents.xcplayground -------------------------------------------------------------------------------- /Latest/Repeatable UUID.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Repeatable UUID.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Latest/Repeatable UUID.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Repeatable UUID.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Latest/String Views.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/String Views.playground/Contents.swift -------------------------------------------------------------------------------- /Latest/String Views.playground/Resources/swift.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/String Views.playground/Resources/swift.txt -------------------------------------------------------------------------------- /Latest/String Views.playground/Sources/SimpleStringViews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/String Views.playground/Sources/SimpleStringViews.swift -------------------------------------------------------------------------------- /Latest/String Views.playground/Sources/TokenizerStringViews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/String Views.playground/Sources/TokenizerStringViews.swift -------------------------------------------------------------------------------- /Latest/String Views.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/String Views.playground/contents.xcplayground -------------------------------------------------------------------------------- /Latest/String Views.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/String Views.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Latest/String Views.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/String Views.playground/timeline.xctimeline -------------------------------------------------------------------------------- /Latest/Tab Bar Palette.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Tab Bar Palette.playground/Contents.swift -------------------------------------------------------------------------------- /Latest/Tab Bar Palette.playground/Resources/second.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Tab Bar Palette.playground/Resources/second.pdf -------------------------------------------------------------------------------- /Latest/Tab Bar Palette.playground/Sources/AccessoryTabBarController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Tab Bar Palette.playground/Sources/AccessoryTabBarController.swift -------------------------------------------------------------------------------- /Latest/Tab Bar Palette.playground/Sources/BackgroundBlendingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Tab Bar Palette.playground/Sources/BackgroundBlendingView.swift -------------------------------------------------------------------------------- /Latest/Tab Bar Palette.playground/Sources/HighlightingFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Tab Bar Palette.playground/Sources/HighlightingFilter.swift -------------------------------------------------------------------------------- /Latest/Tab Bar Palette.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Tab Bar Palette.playground/contents.xcplayground -------------------------------------------------------------------------------- /Latest/Tab Bar Palette.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Tab Bar Palette.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Latest/Tab Bar Palette.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Tab Bar Palette.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Latest/Tab Bar Palette.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Tab Bar Palette.playground/timeline.xctimeline -------------------------------------------------------------------------------- /Latest/Thread with Function.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Thread with Function.playground/Contents.swift -------------------------------------------------------------------------------- /Latest/Thread with Function.playground/Sources/ThreadWithFunction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Thread with Function.playground/Sources/ThreadWithFunction.swift -------------------------------------------------------------------------------- /Latest/Thread with Function.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Thread with Function.playground/contents.xcplayground -------------------------------------------------------------------------------- /Latest/Thread with Function.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/Thread with Function.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Latest/ValueCodable.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/ValueCodable.playground/Contents.swift -------------------------------------------------------------------------------- /Latest/ValueCodable.playground/Sources/EnumCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/ValueCodable.playground/Sources/EnumCodable.swift -------------------------------------------------------------------------------- /Latest/ValueCodable.playground/Sources/ObjCCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/ValueCodable.playground/Sources/ObjCCodable.swift -------------------------------------------------------------------------------- /Latest/ValueCodable.playground/Sources/ValueCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/ValueCodable.playground/Sources/ValueCodable.swift -------------------------------------------------------------------------------- /Latest/ValueCodable.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/ValueCodable.playground/contents.xcplayground -------------------------------------------------------------------------------- /Latest/ValueCodable.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/ValueCodable.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Latest/ValueCodable.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/ValueCodable.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Latest/ValueCodable.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Latest/ValueCodable.playground/timeline.xctimeline -------------------------------------------------------------------------------- /Media/2018-01-17 Badge Formatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Media/2018-01-17 Badge Formatter.png -------------------------------------------------------------------------------- /Media/2018-01-17 Tab Bar Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Media/2018-01-17 Tab Bar Palette.png -------------------------------------------------------------------------------- /Media/2018-06-30 Living Wallpapers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Media/2018-06-30 Living Wallpapers.gif -------------------------------------------------------------------------------- /Media/2018-12-09 Layout Margins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Media/2018-12-09 Layout Margins.png -------------------------------------------------------------------------------- /Media/2019-05-20 Receding Navigation Title.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Media/2019-05-20 Receding Navigation Title.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/README.md -------------------------------------------------------------------------------- /Swift-2/BetterCoreDataInit.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/BetterCoreDataInit.playground/Contents.swift -------------------------------------------------------------------------------- /Swift-2/BetterCoreDataInit.playground/Sources/CoreDataModelType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/BetterCoreDataInit.playground/Sources/CoreDataModelType.swift -------------------------------------------------------------------------------- /Swift-2/BetterCoreDataInit.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/BetterCoreDataInit.playground/contents.xcplayground -------------------------------------------------------------------------------- /Swift-2/BetterCoreDataInit.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/BetterCoreDataInit.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Swift-2/BetterCoreDataInit.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/BetterCoreDataInit.playground/timeline.xctimeline -------------------------------------------------------------------------------- /Swift-2/ConcretePlusProtocol.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/ConcretePlusProtocol.playground/Contents.swift -------------------------------------------------------------------------------- /Swift-2/ConcretePlusProtocol.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/ConcretePlusProtocol.playground/contents.xcplayground -------------------------------------------------------------------------------- /Swift-2/ConcretePlusProtocol.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/ConcretePlusProtocol.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Swift-2/CustomTruncation.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/CustomTruncation.playground/Contents.swift -------------------------------------------------------------------------------- /Swift-2/CustomTruncation.playground/Sources/IntegralRect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/CustomTruncation.playground/Sources/IntegralRect.swift -------------------------------------------------------------------------------- /Swift-2/CustomTruncation.playground/Sources/NSRange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/CustomTruncation.playground/Sources/NSRange.swift -------------------------------------------------------------------------------- /Swift-2/CustomTruncation.playground/Sources/TruncatingLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/CustomTruncation.playground/Sources/TruncatingLabel.swift -------------------------------------------------------------------------------- /Swift-2/CustomTruncation.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/CustomTruncation.playground/contents.xcplayground -------------------------------------------------------------------------------- /Swift-2/CustomTruncation.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/CustomTruncation.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Swift-2/CustomTruncation.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/CustomTruncation.playground/timeline.xctimeline -------------------------------------------------------------------------------- /Swift-2/Data.playground/Pages/Advanced Unicode.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Data.playground/Pages/Advanced Unicode.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Swift-2/Data.playground/Pages/Advanced Unicode.xcplaygroundpage/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Data.playground/Pages/Advanced Unicode.xcplaygroundpage/timeline.xctimeline -------------------------------------------------------------------------------- /Swift-2/Data.playground/Pages/Reading from Disk.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Data.playground/Pages/Reading from Disk.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Swift-2/Data.playground/Pages/Reading from Disk.xcplaygroundpage/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Data.playground/Pages/Reading from Disk.xcplaygroundpage/timeline.xctimeline -------------------------------------------------------------------------------- /Swift-2/Data.playground/Pages/Simple Decoding.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Data.playground/Pages/Simple Decoding.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Swift-2/Data.playground/Pages/Simple Decoding.xcplaygroundpage/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Data.playground/Pages/Simple Decoding.xcplaygroundpage/timeline.xctimeline -------------------------------------------------------------------------------- /Swift-2/Data.playground/Resources/hello-U16B.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Data.playground/Resources/hello-U16B.txt -------------------------------------------------------------------------------- /Swift-2/Data.playground/Resources/hello-U8.txt: -------------------------------------------------------------------------------- 1 | Hello, world! 2 | -------------------------------------------------------------------------------- /Swift-2/Data.playground/Sources/ChunkGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Data.playground/Sources/ChunkGenerator.swift -------------------------------------------------------------------------------- /Swift-2/Data.playground/Sources/Data+CollectionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Data.playground/Sources/Data+CollectionType.swift -------------------------------------------------------------------------------- /Swift-2/Data.playground/Sources/Data+NSData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Data.playground/Sources/Data+NSData.swift -------------------------------------------------------------------------------- /Swift-2/Data.playground/Sources/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Data.playground/Sources/Data.swift -------------------------------------------------------------------------------- /Swift-2/Data.playground/Sources/DataElements.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Data.playground/Sources/DataElements.swift -------------------------------------------------------------------------------- /Swift-2/Data.playground/Sources/DataRegions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Data.playground/Sources/DataRegions.swift -------------------------------------------------------------------------------- /Swift-2/Data.playground/Sources/UnicodeCodecs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Data.playground/Sources/UnicodeCodecs.swift -------------------------------------------------------------------------------- /Swift-2/Data.playground/Sources/UnicodeUtilities+Foundation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Data.playground/Sources/UnicodeUtilities+Foundation.swift -------------------------------------------------------------------------------- /Swift-2/Data.playground/Sources/UnicodeUtilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Data.playground/Sources/UnicodeUtilities.swift -------------------------------------------------------------------------------- /Swift-2/Data.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Data.playground/contents.xcplayground -------------------------------------------------------------------------------- /Swift-2/Data.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Data.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Swift-2/DispatchBlock.playground/Pages/Making It Cleaner.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/DispatchBlock.playground/Pages/Making It Cleaner.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Swift-2/DispatchBlock.playground/Pages/Making It Cleaner.xcplaygroundpage/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/DispatchBlock.playground/Pages/Making It Cleaner.xcplaygroundpage/timeline.xctimeline -------------------------------------------------------------------------------- /Swift-2/DispatchBlock.playground/Pages/The Bug.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/DispatchBlock.playground/Pages/The Bug.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Swift-2/DispatchBlock.playground/Pages/The Bug.xcplaygroundpage/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/DispatchBlock.playground/Pages/The Bug.xcplaygroundpage/timeline.xctimeline -------------------------------------------------------------------------------- /Swift-2/DispatchBlock.playground/Pages/The Change.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/DispatchBlock.playground/Pages/The Change.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Swift-2/DispatchBlock.playground/Pages/The Change.xcplaygroundpage/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/DispatchBlock.playground/Pages/The Change.xcplaygroundpage/timeline.xctimeline -------------------------------------------------------------------------------- /Swift-2/DispatchBlock.playground/Pages/The Fix.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/DispatchBlock.playground/Pages/The Fix.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Swift-2/DispatchBlock.playground/Pages/The Fix.xcplaygroundpage/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/DispatchBlock.playground/Pages/The Fix.xcplaygroundpage/timeline.xctimeline -------------------------------------------------------------------------------- /Swift-2/DispatchBlock.playground/Sources/DispatchBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/DispatchBlock.playground/Sources/DispatchBlock.swift -------------------------------------------------------------------------------- /Swift-2/DispatchBlock.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/DispatchBlock.playground/contents.xcplayground -------------------------------------------------------------------------------- /Swift-2/DispatchBlock.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/DispatchBlock.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Swift-2/Geometry.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Geometry.playground/Contents.swift -------------------------------------------------------------------------------- /Swift-2/Geometry.playground/Sources/CATransform3D.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Geometry.playground/Sources/CATransform3D.swift -------------------------------------------------------------------------------- /Swift-2/Geometry.playground/Sources/CGAffineTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Geometry.playground/Sources/CGAffineTransform.swift -------------------------------------------------------------------------------- /Swift-2/Geometry.playground/Sources/CGPoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Geometry.playground/Sources/CGPoint.swift -------------------------------------------------------------------------------- /Swift-2/Geometry.playground/Sources/CGRect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Geometry.playground/Sources/CGRect.swift -------------------------------------------------------------------------------- /Swift-2/Geometry.playground/Sources/CGSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Geometry.playground/Sources/CGSize.swift -------------------------------------------------------------------------------- /Swift-2/Geometry.playground/Sources/UIEdgeInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Geometry.playground/Sources/UIEdgeInsets.swift -------------------------------------------------------------------------------- /Swift-2/Geometry.playground/Sources/Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Geometry.playground/Sources/Utilities.swift -------------------------------------------------------------------------------- /Swift-2/Geometry.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Geometry.playground/contents.xcplayground -------------------------------------------------------------------------------- /Swift-2/Geometry.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Geometry.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Swift-2/Geometry.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Geometry.playground/timeline.xctimeline -------------------------------------------------------------------------------- /Swift-2/Localize.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Localize.playground/Contents.swift -------------------------------------------------------------------------------- /Swift-2/Localize.playground/Resources/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Localize.playground/Resources/Localizable.strings -------------------------------------------------------------------------------- /Swift-2/Localize.playground/Resources/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Localize.playground/Resources/Localizable.stringsdict -------------------------------------------------------------------------------- /Swift-2/Localize.playground/Sources/LocalizableText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Localize.playground/Sources/LocalizableText.swift -------------------------------------------------------------------------------- /Swift-2/Localize.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Localize.playground/contents.xcplayground -------------------------------------------------------------------------------- /Swift-2/Localize.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Localize.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Swift-2/Localize.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Localize.playground/timeline.xctimeline -------------------------------------------------------------------------------- /Swift-2/Overrides/Overrides.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Overrides/Overrides.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Swift-2/Overrides/Overrides.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Overrides/Overrides.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Swift-2/Overrides/Overrides/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Overrides/Overrides/AppDelegate.swift -------------------------------------------------------------------------------- /Swift-2/Overrides/Overrides/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Overrides/Overrides/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Swift-2/Overrides/Overrides/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Overrides/Overrides/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Swift-2/Overrides/Overrides/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Overrides/Overrides/Info.plist -------------------------------------------------------------------------------- /Swift-2/Overrides/Overrides/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Overrides/Overrides/Main.storyboard -------------------------------------------------------------------------------- /Swift-2/Overrides/Overrides/OverrideRootViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Overrides/Overrides/OverrideRootViewController.swift -------------------------------------------------------------------------------- /Swift-2/Overrides/Overrides/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/Overrides/Overrides/ViewController.swift -------------------------------------------------------------------------------- /Swift-2/RegularExpression.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/RegularExpression.playground/Contents.swift -------------------------------------------------------------------------------- /Swift-2/RegularExpression.playground/Sources/NSRange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/RegularExpression.playground/Sources/NSRange.swift -------------------------------------------------------------------------------- /Swift-2/RegularExpression.playground/Sources/NSRegularExpression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/RegularExpression.playground/Sources/NSRegularExpression.swift -------------------------------------------------------------------------------- /Swift-2/RegularExpression.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/RegularExpression.playground/contents.xcplayground -------------------------------------------------------------------------------- /Swift-2/RegularExpression.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/RegularExpression.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Swift-2/RegularExpression.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/RegularExpression.playground/timeline.xctimeline -------------------------------------------------------------------------------- /Swift-2/UI Geometry.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/UI Geometry.playground/Contents.swift -------------------------------------------------------------------------------- /Swift-2/UI Geometry.playground/Sources/CGRect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/UI Geometry.playground/Sources/CGRect.swift -------------------------------------------------------------------------------- /Swift-2/UI Geometry.playground/Sources/GeometricMeasure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/UI Geometry.playground/Sources/GeometricMeasure.swift -------------------------------------------------------------------------------- /Swift-2/UI Geometry.playground/Sources/Scaling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/UI Geometry.playground/Sources/Scaling.swift -------------------------------------------------------------------------------- /Swift-2/UI Geometry.playground/Sources/UIEdgeInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/UI Geometry.playground/Sources/UIEdgeInsets.swift -------------------------------------------------------------------------------- /Swift-2/UI Geometry.playground/Sources/UIUserInterfaceLayoutDirection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/UI Geometry.playground/Sources/UIUserInterfaceLayoutDirection.swift -------------------------------------------------------------------------------- /Swift-2/UI Geometry.playground/Sources/UIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/UI Geometry.playground/Sources/UIView.swift -------------------------------------------------------------------------------- /Swift-2/UI Geometry.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/UI Geometry.playground/contents.xcplayground -------------------------------------------------------------------------------- /Swift-2/UI Geometry.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/UI Geometry.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Swift-2/UI Geometry.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/UI Geometry.playground/timeline.xctimeline -------------------------------------------------------------------------------- /Swift-2/ViewRecursion.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/ViewRecursion.playground/Contents.swift -------------------------------------------------------------------------------- /Swift-2/ViewRecursion.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/ViewRecursion.playground/contents.xcplayground -------------------------------------------------------------------------------- /Swift-2/ViewRecursion.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/ViewRecursion.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Swift-2/ViewRecursion.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-2/ViewRecursion.playground/timeline.xctimeline -------------------------------------------------------------------------------- /Swift-3/Delimited.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-3/Delimited.playground/Contents.swift -------------------------------------------------------------------------------- /Swift-3/Delimited.playground/Sources/CaseIterable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-3/Delimited.playground/Sources/CaseIterable.swift -------------------------------------------------------------------------------- /Swift-3/Delimited.playground/Sources/Delimited.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-3/Delimited.playground/Sources/Delimited.swift -------------------------------------------------------------------------------- /Swift-3/Delimited.playground/Sources/XCTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-3/Delimited.playground/Sources/XCTest.swift -------------------------------------------------------------------------------- /Swift-3/Delimited.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-3/Delimited.playground/contents.xcplayground -------------------------------------------------------------------------------- /Swift-3/Delimited.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/Swift-3/Delimited.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftUI/Stickiness/Stickiness.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/SwiftUI/Stickiness/Stickiness.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftUI/Stickiness/Stickiness.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/SwiftUI/Stickiness/Stickiness.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftUI/Stickiness/Stickiness.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/SwiftUI/Stickiness/Stickiness.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SwiftUI/Stickiness/Stickiness.xcodeproj/xcshareddata/xcschemes/Stickiness.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/SwiftUI/Stickiness/Stickiness.xcodeproj/xcshareddata/xcschemes/Stickiness.xcscheme -------------------------------------------------------------------------------- /SwiftUI/Stickiness/Stickiness/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/SwiftUI/Stickiness/Stickiness/AppDelegate.swift -------------------------------------------------------------------------------- /SwiftUI/Stickiness/Stickiness/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/SwiftUI/Stickiness/Stickiness/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /SwiftUI/Stickiness/Stickiness/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/SwiftUI/Stickiness/Stickiness/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SwiftUI/Stickiness/Stickiness/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/SwiftUI/Stickiness/Stickiness/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SwiftUI/Stickiness/Stickiness/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/SwiftUI/Stickiness/Stickiness/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SwiftUI/Stickiness/Stickiness/Blur.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/SwiftUI/Stickiness/Stickiness/Blur.swift -------------------------------------------------------------------------------- /SwiftUI/Stickiness/Stickiness/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/SwiftUI/Stickiness/Stickiness/ContentView.swift -------------------------------------------------------------------------------- /SwiftUI/Stickiness/Stickiness/Helpers/UIFont+Theming.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/SwiftUI/Stickiness/Stickiness/Helpers/UIFont+Theming.swift -------------------------------------------------------------------------------- /SwiftUI/Stickiness/Stickiness/Helpers/UIResponder+ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/SwiftUI/Stickiness/Stickiness/Helpers/UIResponder+ViewController.swift -------------------------------------------------------------------------------- /SwiftUI/Stickiness/Stickiness/Helpers/UIView+Convenience.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/SwiftUI/Stickiness/Stickiness/Helpers/UIView+Convenience.swift -------------------------------------------------------------------------------- /SwiftUI/Stickiness/Stickiness/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/SwiftUI/Stickiness/Stickiness/Info.plist -------------------------------------------------------------------------------- /SwiftUI/Stickiness/Stickiness/InlineNavigationTitleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/SwiftUI/Stickiness/Stickiness/InlineNavigationTitleView.swift -------------------------------------------------------------------------------- /SwiftUI/Stickiness/Stickiness/OpacityEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/SwiftUI/Stickiness/Stickiness/OpacityEffect.swift -------------------------------------------------------------------------------- /SwiftUI/Stickiness/Stickiness/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/SwiftUI/Stickiness/Stickiness/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SwiftUI/Stickiness/Stickiness/ProminentCallToActionButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/SwiftUI/Stickiness/Stickiness/ProminentCallToActionButtonStyle.swift -------------------------------------------------------------------------------- /SwiftUI/Stickiness/Stickiness/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/SwiftUI/Stickiness/Stickiness/SceneDelegate.swift -------------------------------------------------------------------------------- /SwiftUI/Stickiness/Stickiness/Step.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/SwiftUI/Stickiness/Stickiness/Step.swift -------------------------------------------------------------------------------- /SwiftUI/Stickiness/Stickiness/UpdatesNavigationBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zwaldowski/ParksAndRecreation/HEAD/SwiftUI/Stickiness/Stickiness/UpdatesNavigationBar.swift --------------------------------------------------------------------------------