gitextract_ub9k0_ub/ ├── .gitignore ├── 2014 letter.md ├── 2019/ │ ├── OpenSourceforSwift-ApplicationArchitecture-MindNode.md │ ├── OpenSourceforSwift-ApplicationArchitecture.md │ ├── OpenSourceforSwift-Classification-MindNode.md │ ├── OpenSourceforSwift-Classification.md │ ├── RecentlyIncludedSwiftProjects.md │ ├── SwiftDevelopers.md │ ├── SwiftDevelopmentTeam.md │ └── recentlyarchive/ │ ├── RecentlyIncludedSwiftProjects-0201.md │ └── RecentlyIncludedSwiftProjects-0325.md ├── Apple Watch/ │ └── README.md ├── Featured-Articles.md ├── Featured.md ├── HelloWorld.swift ├── README.md ├── README20181213.md ├── archive/ │ ├── README_2016-3.md │ ├── getting-started.md │ ├── news.md │ ├── platforms.md │ ├── projects.md │ └── tutorial.md ├── mirror/ │ ├── App Extension Programming Guide/ │ │ └── README.md │ ├── Swift Blog - Apple Developer/ │ │ └── README.md │ ├── best-blogs-for-ios-developers │ └── iOS Human Interface Guidelines/ │ └── README.md ├── open_deep_researcher.ipynb ├── other/ │ └── VirtualGS/ │ ├── GSwift/ │ │ ├── GSwift/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Base.lproj/ │ │ │ │ └── Main.storyboard │ │ │ ├── GSView.swift │ │ │ ├── Images.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchImage.launchimage/ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── Main.swift │ │ │ └── ViewController.swift │ │ ├── GSwift.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcuserdata/ │ │ │ │ └── limtc.xcuserdatad/ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── xcuserdata/ │ │ │ └── limtc.xcuserdatad/ │ │ │ ├── xcdebugger/ │ │ │ │ └── Breakpoints_v2.xcbkptlist │ │ │ └── xcschemes/ │ │ │ ├── GSwift.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── GSwiftTests/ │ │ ├── GSwiftTests.swift │ │ └── Info.plist │ ├── GSwift-2/ │ │ ├── Demo/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Base.lproj/ │ │ │ │ └── Main.storyboard │ │ │ ├── GSPicsView.swift │ │ │ ├── GSView.swift │ │ │ ├── HiresView.swift │ │ │ ├── Images.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── LaunchImage.launchimage/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── first.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── second.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LoresView.swift │ │ │ ├── PaintView.swift │ │ │ ├── SpaceView.swift │ │ │ └── ViewController.swift │ │ ├── DemoTests/ │ │ │ ├── Info.plist │ │ │ └── TabbedDemoTests.swift │ │ └── GSwift.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata/ │ │ │ └── limtc.xcuserdatad/ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata/ │ │ └── limtc.xcuserdatad/ │ │ ├── xcdebugger/ │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes/ │ │ ├── Demo.xcscheme │ │ └── xcschememanagement.plist │ ├── Lores/ │ │ ├── Lores/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Base.lproj/ │ │ │ │ └── Main.storyboard │ │ │ ├── Images.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchImage.launchimage/ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── Lores.swift │ │ │ ├── LoresView.swift │ │ │ └── ViewController.swift │ │ ├── Lores.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcuserdata/ │ │ │ │ ├── limtc.xcuserdatad/ │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ │ └── yongguo.xcuserdatad/ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── xcuserdata/ │ │ │ ├── limtc.xcuserdatad/ │ │ │ │ └── xcschemes/ │ │ │ │ ├── Lores.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ └── yongguo.xcuserdatad/ │ │ │ └── xcschemes/ │ │ │ ├── Lores.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── LoresTests/ │ │ ├── Info.plist │ │ └── LoresTests.swift │ └── README.md └── weekly/ ├── 2014-10-27.md ├── 2014-11-03.md ├── 2014-11-10.md ├── 2014-11-17.md ├── 2014-11-24.md ├── 2014-11-30.md ├── 2014-12-07.md ├── 2014-12-14.md ├── 2014-12-21.md ├── 2014-12-28.md ├── 2015-01-04.md ├── 2015-01-11.md ├── 2015-01-18.md ├── 2015-01-25.md ├── 2015-02-01.md ├── 2015-02-08.md ├── 2015-03-08.md ├── 2015-03-15.md ├── 2015-03-22.md ├── 2015-03-29.md ├── 2015-04-05.md ├── 2015-04-12.md ├── 2015-04-19.md ├── 2015-04-26.md ├── 2015-05-03.md ├── 2015-05-10.md ├── 2015-05-17.md ├── 2015-05-24.md ├── 2015-05-31.md ├── 2015-06-07.md ├── Issue-31.md ├── Issue-32.md ├── Issue-33.md ├── Issue-34.md ├── Issue-35.md ├── Issue-36.md ├── Issue-37.md ├── Issue-38.md ├── Issue-39.md ├── Issue-40.md ├── Issue-41.md ├── Issue-42.md ├── Issue-43.md ├── Issue-44.md ├── Issue-45.md ├── Issue-46.md ├── Issue-47.md ├── Issue-48.md ├── Issue-49.md ├── Issue-50.md ├── Issue-51.md ├── Issue-52.md ├── Issue-53.md ├── Issue-54.md ├── Issue-55.md ├── README.md ├── Volunteers.md └── template.md