├── Adaptive ├── Adaptive.xcodeproj │ └── project.pbxproj └── Adaptive │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── CollectionViewCell.swift │ ├── CollectionViewController.swift │ ├── CollectionViewLayout.swift │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ └── Info.plist ├── CoreDataScalarAttribute ├── CoreDataScalarAttribute.xcodeproj │ └── project.pbxproj └── CoreDataScalarAttributeTests │ ├── CoreDataScalarAttributeTests-Info.plist │ ├── CoreDataScalarAttributeTests.m │ ├── ISHManagedObject.h │ ├── ISHManagedObject.m │ ├── Model.xcdatamodeld │ └── Model.xcdatamodel │ │ └── contents │ └── en.lproj │ └── InfoPlist.strings ├── DateSection ├── DateSection.xcodeproj │ └── project.pbxproj └── DateSection │ ├── DateSection-Info.plist │ ├── DateSection-Prefix.pch │ ├── DateSection.xcdatamodeld │ ├── .xccurrentversion │ └── DateSection.xcdatamodel │ │ └── contents │ ├── ISHAppDelegate.h │ ├── ISHAppDelegate.m │ ├── ISHItem.h │ ├── ISHItem.m │ ├── ISHViewController.h │ ├── ISHViewController.m │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json │ ├── en.lproj │ └── InfoPlist.strings │ └── main.m ├── EstimatedRowHeight ├── EstimatedRowHeight.xcodeproj │ └── project.pbxproj └── EstimatedRowHeight │ ├── EstimatedRowHeight-Info.plist │ ├── EstimatedRowHeight-Prefix.pch │ ├── ISHAppDelegate.h │ ├── ISHAppDelegate.m │ ├── ISHTableViewController.h │ ├── ISHTableViewController.m │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json │ ├── en.lproj │ └── InfoPlist.strings │ └── main.m ├── ISPanNavigationWebView ├── .gitignore ├── DemoApp │ ├── DemoApp-Info.plist │ ├── DemoApp-Prefix.pch │ ├── ISAppDelegate.h │ ├── ISAppDelegate.m │ ├── ISWebViewController.h │ ├── ISWebViewController.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Main.storyboard │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── ISPanNavigationWebView.podspec ├── ISPanNavigationWebView.xcodeproj │ └── project.pbxproj ├── ISPanNavigationWebView.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── ISPanNavigationWebView.xccheckout ├── ISPanNavigationWebView │ ├── ISPanNavigationWebView-Prefix.pch │ ├── ISPanNavigationWebView.h │ └── ISPanNavigationWebView.m ├── Podfile ├── Podfile.lock └── README.md ├── NSCacheBehavior ├── NSCacheBehavior.xcodeproj │ └── project.pbxproj └── NSCacheBehaviorTests │ ├── NSCacheBehaviorTests-Info.plist │ ├── NSCacheBehaviorTests.m │ └── en.lproj │ └── InfoPlist.strings ├── README.md ├── RxCocoaReorderIssue ├── Cartfile ├── Cartfile.resolved ├── Demo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── Demo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── RxPagination ├── .gitignore └── README.md ├── SwiftAPIClient ├── WebAPI.xcodeproj │ └── project.pbxproj └── WebAPI │ ├── AppDelegate.swift │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── GitHub.swift │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── Message.swift │ └── ViewController.swift ├── UIDevelopmentInPlayground ├── Demo.playground │ ├── Sources │ │ └── SupportCode.swift │ ├── contents.swift │ ├── contents.xcplayground │ └── timeline.xctimeline ├── SegmentedControl.xcodeproj │ └── project.pbxproj ├── SegmentedControl │ ├── Info.plist │ ├── SegmentedControl.h │ └── SegmentedControl.swift └── SegmentedControlTests │ ├── Info.plist │ └── SegmentedControlTests.swift ├── XCTestRunnerExample ├── XCTestRunnerExample.xcodeproj │ └── project.pbxproj ├── XCTestRunnerExample │ ├── ISHAppDelegate.h │ ├── ISHAppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── XCTestRunnerExample-Info.plist │ ├── XCTestRunnerExample-Prefix.pch │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m └── XCTestRunnerExampleTests │ ├── XCTestRunnerExampleTests-Info.plist │ ├── XCTestRunnerExampleTests.m │ └── en.lproj │ └── InfoPlist.strings └── multipart ├── README.md ├── client ├── Multi.xcodeproj │ └── project.pbxproj ├── Multi │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── Multi-Bridging-Header.h │ └── input.png └── PKMultipartInputStream │ ├── PKMultipartInputStream.h │ └── PKMultipartInputStream.m └── server └── main.go /Adaptive/Adaptive.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/Adaptive/Adaptive.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Adaptive/Adaptive/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/Adaptive/Adaptive/AppDelegate.swift -------------------------------------------------------------------------------- /Adaptive/Adaptive/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/Adaptive/Adaptive/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Adaptive/Adaptive/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/Adaptive/Adaptive/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Adaptive/Adaptive/CollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/Adaptive/Adaptive/CollectionViewCell.swift -------------------------------------------------------------------------------- /Adaptive/Adaptive/CollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/Adaptive/Adaptive/CollectionViewController.swift -------------------------------------------------------------------------------- /Adaptive/Adaptive/CollectionViewLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/Adaptive/Adaptive/CollectionViewLayout.swift -------------------------------------------------------------------------------- /Adaptive/Adaptive/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/Adaptive/Adaptive/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Adaptive/Adaptive/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/Adaptive/Adaptive/Info.plist -------------------------------------------------------------------------------- /CoreDataScalarAttribute/CoreDataScalarAttribute.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/CoreDataScalarAttribute/CoreDataScalarAttribute.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CoreDataScalarAttribute/CoreDataScalarAttributeTests/CoreDataScalarAttributeTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/CoreDataScalarAttribute/CoreDataScalarAttributeTests/CoreDataScalarAttributeTests-Info.plist -------------------------------------------------------------------------------- /CoreDataScalarAttribute/CoreDataScalarAttributeTests/CoreDataScalarAttributeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/CoreDataScalarAttribute/CoreDataScalarAttributeTests/CoreDataScalarAttributeTests.m -------------------------------------------------------------------------------- /CoreDataScalarAttribute/CoreDataScalarAttributeTests/ISHManagedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/CoreDataScalarAttribute/CoreDataScalarAttributeTests/ISHManagedObject.h -------------------------------------------------------------------------------- /CoreDataScalarAttribute/CoreDataScalarAttributeTests/ISHManagedObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/CoreDataScalarAttribute/CoreDataScalarAttributeTests/ISHManagedObject.m -------------------------------------------------------------------------------- /CoreDataScalarAttribute/CoreDataScalarAttributeTests/Model.xcdatamodeld/Model.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/CoreDataScalarAttribute/CoreDataScalarAttributeTests/Model.xcdatamodeld/Model.xcdatamodel/contents -------------------------------------------------------------------------------- /CoreDataScalarAttribute/CoreDataScalarAttributeTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DateSection/DateSection.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/DateSection/DateSection.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DateSection/DateSection/DateSection-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/DateSection/DateSection/DateSection-Info.plist -------------------------------------------------------------------------------- /DateSection/DateSection/DateSection-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/DateSection/DateSection/DateSection-Prefix.pch -------------------------------------------------------------------------------- /DateSection/DateSection/DateSection.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/DateSection/DateSection/DateSection.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /DateSection/DateSection/DateSection.xcdatamodeld/DateSection.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/DateSection/DateSection/DateSection.xcdatamodeld/DateSection.xcdatamodel/contents -------------------------------------------------------------------------------- /DateSection/DateSection/ISHAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/DateSection/DateSection/ISHAppDelegate.h -------------------------------------------------------------------------------- /DateSection/DateSection/ISHAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/DateSection/DateSection/ISHAppDelegate.m -------------------------------------------------------------------------------- /DateSection/DateSection/ISHItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/DateSection/DateSection/ISHItem.h -------------------------------------------------------------------------------- /DateSection/DateSection/ISHItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/DateSection/DateSection/ISHItem.m -------------------------------------------------------------------------------- /DateSection/DateSection/ISHViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/DateSection/DateSection/ISHViewController.h -------------------------------------------------------------------------------- /DateSection/DateSection/ISHViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/DateSection/DateSection/ISHViewController.m -------------------------------------------------------------------------------- /DateSection/DateSection/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/DateSection/DateSection/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DateSection/DateSection/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/DateSection/DateSection/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /DateSection/DateSection/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /DateSection/DateSection/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/DateSection/DateSection/main.m -------------------------------------------------------------------------------- /EstimatedRowHeight/EstimatedRowHeight.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/EstimatedRowHeight/EstimatedRowHeight.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /EstimatedRowHeight/EstimatedRowHeight/EstimatedRowHeight-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/EstimatedRowHeight/EstimatedRowHeight/EstimatedRowHeight-Info.plist -------------------------------------------------------------------------------- /EstimatedRowHeight/EstimatedRowHeight/EstimatedRowHeight-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/EstimatedRowHeight/EstimatedRowHeight/EstimatedRowHeight-Prefix.pch -------------------------------------------------------------------------------- /EstimatedRowHeight/EstimatedRowHeight/ISHAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/EstimatedRowHeight/EstimatedRowHeight/ISHAppDelegate.h -------------------------------------------------------------------------------- /EstimatedRowHeight/EstimatedRowHeight/ISHAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/EstimatedRowHeight/EstimatedRowHeight/ISHAppDelegate.m -------------------------------------------------------------------------------- /EstimatedRowHeight/EstimatedRowHeight/ISHTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/EstimatedRowHeight/EstimatedRowHeight/ISHTableViewController.h -------------------------------------------------------------------------------- /EstimatedRowHeight/EstimatedRowHeight/ISHTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/EstimatedRowHeight/EstimatedRowHeight/ISHTableViewController.m -------------------------------------------------------------------------------- /EstimatedRowHeight/EstimatedRowHeight/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/EstimatedRowHeight/EstimatedRowHeight/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /EstimatedRowHeight/EstimatedRowHeight/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/EstimatedRowHeight/EstimatedRowHeight/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /EstimatedRowHeight/EstimatedRowHeight/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /EstimatedRowHeight/EstimatedRowHeight/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/EstimatedRowHeight/EstimatedRowHeight/main.m -------------------------------------------------------------------------------- /ISPanNavigationWebView/.gitignore: -------------------------------------------------------------------------------- 1 | Pods 2 | -------------------------------------------------------------------------------- /ISPanNavigationWebView/DemoApp/DemoApp-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/ISPanNavigationWebView/DemoApp/DemoApp-Info.plist -------------------------------------------------------------------------------- /ISPanNavigationWebView/DemoApp/DemoApp-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/ISPanNavigationWebView/DemoApp/DemoApp-Prefix.pch -------------------------------------------------------------------------------- /ISPanNavigationWebView/DemoApp/ISAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/ISPanNavigationWebView/DemoApp/ISAppDelegate.h -------------------------------------------------------------------------------- /ISPanNavigationWebView/DemoApp/ISAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/ISPanNavigationWebView/DemoApp/ISAppDelegate.m -------------------------------------------------------------------------------- /ISPanNavigationWebView/DemoApp/ISWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/ISPanNavigationWebView/DemoApp/ISWebViewController.h -------------------------------------------------------------------------------- /ISPanNavigationWebView/DemoApp/ISWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/ISPanNavigationWebView/DemoApp/ISWebViewController.m -------------------------------------------------------------------------------- /ISPanNavigationWebView/DemoApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/ISPanNavigationWebView/DemoApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ISPanNavigationWebView/DemoApp/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/ISPanNavigationWebView/DemoApp/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /ISPanNavigationWebView/DemoApp/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/ISPanNavigationWebView/DemoApp/Main.storyboard -------------------------------------------------------------------------------- /ISPanNavigationWebView/DemoApp/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ISPanNavigationWebView/DemoApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/ISPanNavigationWebView/DemoApp/main.m -------------------------------------------------------------------------------- /ISPanNavigationWebView/ISPanNavigationWebView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/ISPanNavigationWebView/ISPanNavigationWebView.podspec -------------------------------------------------------------------------------- /ISPanNavigationWebView/ISPanNavigationWebView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/ISPanNavigationWebView/ISPanNavigationWebView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ISPanNavigationWebView/ISPanNavigationWebView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/ISPanNavigationWebView/ISPanNavigationWebView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ISPanNavigationWebView/ISPanNavigationWebView.xcworkspace/xcshareddata/ISPanNavigationWebView.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/ISPanNavigationWebView/ISPanNavigationWebView.xcworkspace/xcshareddata/ISPanNavigationWebView.xccheckout -------------------------------------------------------------------------------- /ISPanNavigationWebView/ISPanNavigationWebView/ISPanNavigationWebView-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/ISPanNavigationWebView/ISPanNavigationWebView/ISPanNavigationWebView-Prefix.pch -------------------------------------------------------------------------------- /ISPanNavigationWebView/ISPanNavigationWebView/ISPanNavigationWebView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/ISPanNavigationWebView/ISPanNavigationWebView/ISPanNavigationWebView.h -------------------------------------------------------------------------------- /ISPanNavigationWebView/ISPanNavigationWebView/ISPanNavigationWebView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/ISPanNavigationWebView/ISPanNavigationWebView/ISPanNavigationWebView.m -------------------------------------------------------------------------------- /ISPanNavigationWebView/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/ISPanNavigationWebView/Podfile -------------------------------------------------------------------------------- /ISPanNavigationWebView/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/ISPanNavigationWebView/Podfile.lock -------------------------------------------------------------------------------- /ISPanNavigationWebView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/ISPanNavigationWebView/README.md -------------------------------------------------------------------------------- /NSCacheBehavior/NSCacheBehavior.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/NSCacheBehavior/NSCacheBehavior.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NSCacheBehavior/NSCacheBehaviorTests/NSCacheBehaviorTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/NSCacheBehavior/NSCacheBehaviorTests/NSCacheBehaviorTests-Info.plist -------------------------------------------------------------------------------- /NSCacheBehavior/NSCacheBehaviorTests/NSCacheBehaviorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/NSCacheBehavior/NSCacheBehaviorTests/NSCacheBehaviorTests.m -------------------------------------------------------------------------------- /NSCacheBehavior/NSCacheBehaviorTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/README.md -------------------------------------------------------------------------------- /RxCocoaReorderIssue/Cartfile: -------------------------------------------------------------------------------- 1 | github "ReactiveX/RxSwift" ~> 3.1.0 2 | -------------------------------------------------------------------------------- /RxCocoaReorderIssue/Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "ReactiveX/RxSwift" "3.1.0" 2 | -------------------------------------------------------------------------------- /RxCocoaReorderIssue/Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/RxCocoaReorderIssue/Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RxCocoaReorderIssue/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/RxCocoaReorderIssue/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RxCocoaReorderIssue/Demo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/RxCocoaReorderIssue/Demo/AppDelegate.swift -------------------------------------------------------------------------------- /RxCocoaReorderIssue/Demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/RxCocoaReorderIssue/Demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /RxCocoaReorderIssue/Demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/RxCocoaReorderIssue/Demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /RxCocoaReorderIssue/Demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/RxCocoaReorderIssue/Demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /RxCocoaReorderIssue/Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/RxCocoaReorderIssue/Demo/Info.plist -------------------------------------------------------------------------------- /RxCocoaReorderIssue/Demo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/RxCocoaReorderIssue/Demo/ViewController.swift -------------------------------------------------------------------------------- /RxPagination/.gitignore: -------------------------------------------------------------------------------- 1 | Carthage 2 | 3 | -------------------------------------------------------------------------------- /RxPagination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/RxPagination/README.md -------------------------------------------------------------------------------- /SwiftAPIClient/WebAPI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/SwiftAPIClient/WebAPI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftAPIClient/WebAPI/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/SwiftAPIClient/WebAPI/AppDelegate.swift -------------------------------------------------------------------------------- /SwiftAPIClient/WebAPI/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/SwiftAPIClient/WebAPI/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /SwiftAPIClient/WebAPI/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/SwiftAPIClient/WebAPI/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SwiftAPIClient/WebAPI/GitHub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/SwiftAPIClient/WebAPI/GitHub.swift -------------------------------------------------------------------------------- /SwiftAPIClient/WebAPI/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/SwiftAPIClient/WebAPI/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SwiftAPIClient/WebAPI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/SwiftAPIClient/WebAPI/Info.plist -------------------------------------------------------------------------------- /SwiftAPIClient/WebAPI/Message.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/SwiftAPIClient/WebAPI/Message.swift -------------------------------------------------------------------------------- /SwiftAPIClient/WebAPI/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/SwiftAPIClient/WebAPI/ViewController.swift -------------------------------------------------------------------------------- /UIDevelopmentInPlayground/Demo.playground/Sources/SupportCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/UIDevelopmentInPlayground/Demo.playground/Sources/SupportCode.swift -------------------------------------------------------------------------------- /UIDevelopmentInPlayground/Demo.playground/contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/UIDevelopmentInPlayground/Demo.playground/contents.swift -------------------------------------------------------------------------------- /UIDevelopmentInPlayground/Demo.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/UIDevelopmentInPlayground/Demo.playground/contents.xcplayground -------------------------------------------------------------------------------- /UIDevelopmentInPlayground/Demo.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/UIDevelopmentInPlayground/Demo.playground/timeline.xctimeline -------------------------------------------------------------------------------- /UIDevelopmentInPlayground/SegmentedControl.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/UIDevelopmentInPlayground/SegmentedControl.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UIDevelopmentInPlayground/SegmentedControl/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/UIDevelopmentInPlayground/SegmentedControl/Info.plist -------------------------------------------------------------------------------- /UIDevelopmentInPlayground/SegmentedControl/SegmentedControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/UIDevelopmentInPlayground/SegmentedControl/SegmentedControl.h -------------------------------------------------------------------------------- /UIDevelopmentInPlayground/SegmentedControl/SegmentedControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/UIDevelopmentInPlayground/SegmentedControl/SegmentedControl.swift -------------------------------------------------------------------------------- /UIDevelopmentInPlayground/SegmentedControlTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/UIDevelopmentInPlayground/SegmentedControlTests/Info.plist -------------------------------------------------------------------------------- /UIDevelopmentInPlayground/SegmentedControlTests/SegmentedControlTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/UIDevelopmentInPlayground/SegmentedControlTests/SegmentedControlTests.swift -------------------------------------------------------------------------------- /XCTestRunnerExample/XCTestRunnerExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/XCTestRunnerExample/XCTestRunnerExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /XCTestRunnerExample/XCTestRunnerExample/ISHAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/XCTestRunnerExample/XCTestRunnerExample/ISHAppDelegate.h -------------------------------------------------------------------------------- /XCTestRunnerExample/XCTestRunnerExample/ISHAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/XCTestRunnerExample/XCTestRunnerExample/ISHAppDelegate.m -------------------------------------------------------------------------------- /XCTestRunnerExample/XCTestRunnerExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/XCTestRunnerExample/XCTestRunnerExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /XCTestRunnerExample/XCTestRunnerExample/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/XCTestRunnerExample/XCTestRunnerExample/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /XCTestRunnerExample/XCTestRunnerExample/XCTestRunnerExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/XCTestRunnerExample/XCTestRunnerExample/XCTestRunnerExample-Info.plist -------------------------------------------------------------------------------- /XCTestRunnerExample/XCTestRunnerExample/XCTestRunnerExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/XCTestRunnerExample/XCTestRunnerExample/XCTestRunnerExample-Prefix.pch -------------------------------------------------------------------------------- /XCTestRunnerExample/XCTestRunnerExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /XCTestRunnerExample/XCTestRunnerExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/XCTestRunnerExample/XCTestRunnerExample/main.m -------------------------------------------------------------------------------- /XCTestRunnerExample/XCTestRunnerExampleTests/XCTestRunnerExampleTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/XCTestRunnerExample/XCTestRunnerExampleTests/XCTestRunnerExampleTests-Info.plist -------------------------------------------------------------------------------- /XCTestRunnerExample/XCTestRunnerExampleTests/XCTestRunnerExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/XCTestRunnerExample/XCTestRunnerExampleTests/XCTestRunnerExampleTests.m -------------------------------------------------------------------------------- /XCTestRunnerExample/XCTestRunnerExampleTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /multipart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/multipart/README.md -------------------------------------------------------------------------------- /multipart/client/Multi.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/multipart/client/Multi.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /multipart/client/Multi/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/multipart/client/Multi/AppDelegate.swift -------------------------------------------------------------------------------- /multipart/client/Multi/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/multipart/client/Multi/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /multipart/client/Multi/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/multipart/client/Multi/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /multipart/client/Multi/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/multipart/client/Multi/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /multipart/client/Multi/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/multipart/client/Multi/Info.plist -------------------------------------------------------------------------------- /multipart/client/Multi/Multi-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/multipart/client/Multi/Multi-Bridging-Header.h -------------------------------------------------------------------------------- /multipart/client/Multi/input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/multipart/client/Multi/input.png -------------------------------------------------------------------------------- /multipart/client/PKMultipartInputStream/PKMultipartInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/multipart/client/PKMultipartInputStream/PKMultipartInputStream.h -------------------------------------------------------------------------------- /multipart/client/PKMultipartInputStream/PKMultipartInputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/multipart/client/PKMultipartInputStream/PKMultipartInputStream.m -------------------------------------------------------------------------------- /multipart/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ishkawa/sandbox/HEAD/multipart/server/main.go --------------------------------------------------------------------------------