├── Hackery-Dark.png ├── Hackery-Light.png ├── Hackery.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcuserdata │ │ └── timshim.xcuserdatad │ │ └── WorkspaceSettings.xcsettings ├── xcshareddata │ └── xcschemes │ │ └── Hackery.xcscheme └── xcuserdata │ └── timshim.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── Hackery ├── Feed │ ├── CommentButton.swift │ ├── CommentsView.swift │ ├── FeedModel.swift │ ├── FeedView.swift │ ├── FeedViewModel.swift │ ├── SafariView.swift │ └── StoryView.swift └── Main │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Hackery_AppIcon_Dark.png │ │ ├── Hackery_AppIcon_Light.png │ │ └── Hackery_AppIcon_Watch.png │ ├── Contents.json │ ├── background.colorset │ │ └── Contents.json │ ├── borderColor.colorset │ │ └── Contents.json │ ├── cardBg.colorset │ │ └── Contents.json │ ├── loader.colorset │ │ └── Contents.json │ ├── shadow.colorset │ │ └── Contents.json │ ├── subtitleColor.colorset │ │ └── Contents.json │ └── titleColor.colorset │ │ └── Contents.json │ ├── Extensions.swift │ ├── Fonts │ ├── Lato-Bold.ttf │ └── Lato-Regular.ttf │ ├── Hackery.entitlements │ ├── Hackery.swift │ ├── Info.plist │ └── Preview Content │ └── Preview Assets.xcassets │ └── Contents.json ├── HackeryV ├── Bookmarks │ └── BookmarksView.swift ├── Feed │ ├── CommentButton.swift │ ├── CommentsView.swift │ ├── FeedView.swift │ ├── FeedViewModel.swift │ ├── SafariView.swift │ └── StoryView.swift ├── Main │ ├── Assets.xcassets │ │ ├── AppIcon.solidimagestack │ │ │ ├── Back.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Hackery_AppIcon_BG.jpg │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Hackery_AppIcon_TOP.png │ │ │ │ └── Contents.json │ │ │ └── Middle.solidimagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Hackery_AppIcon_MID.png │ │ │ │ └── Contents.json │ │ └── Contents.json │ └── HackeryV.swift └── Preview Content │ └── Preview Assets.xcassets │ └── Contents.json ├── Packages └── RealityKitContent │ ├── .swiftpm │ └── xcode │ │ └── xcuserdata │ │ └── timshim.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── Package.realitycomposerpro │ ├── ProjectData │ │ └── main.json │ └── WorkspaceData │ │ ├── SceneMetadataList.json │ │ └── Settings.rcprojectdata │ ├── Package.swift │ ├── README.md │ └── Sources │ └── RealityKitContent │ ├── RealityKitContent.rkassets │ ├── Scene.usda │ └── _PlainMaterial.usda │ └── RealityKitContent.swift ├── README.md ├── appicon.gif └── screen.png /Hackery-Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery-Dark.png -------------------------------------------------------------------------------- /Hackery-Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery-Light.png -------------------------------------------------------------------------------- /Hackery.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Hackery.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Hackery.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Hackery.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Hackery.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Hackery.xcodeproj/project.xcworkspace/xcuserdata/timshim.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery.xcodeproj/project.xcworkspace/xcuserdata/timshim.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Hackery.xcodeproj/xcshareddata/xcschemes/Hackery.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery.xcodeproj/xcshareddata/xcschemes/Hackery.xcscheme -------------------------------------------------------------------------------- /Hackery.xcodeproj/xcuserdata/timshim.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery.xcodeproj/xcuserdata/timshim.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Hackery.xcodeproj/xcuserdata/timshim.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery.xcodeproj/xcuserdata/timshim.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Hackery/Feed/CommentButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Feed/CommentButton.swift -------------------------------------------------------------------------------- /Hackery/Feed/CommentsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Feed/CommentsView.swift -------------------------------------------------------------------------------- /Hackery/Feed/FeedModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Feed/FeedModel.swift -------------------------------------------------------------------------------- /Hackery/Feed/FeedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Feed/FeedView.swift -------------------------------------------------------------------------------- /Hackery/Feed/FeedViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Feed/FeedViewModel.swift -------------------------------------------------------------------------------- /Hackery/Feed/SafariView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Feed/SafariView.swift -------------------------------------------------------------------------------- /Hackery/Feed/StoryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Feed/StoryView.swift -------------------------------------------------------------------------------- /Hackery/Main/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Main/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Hackery/Main/Assets.xcassets/AppIcon.appiconset/Hackery_AppIcon_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Main/Assets.xcassets/AppIcon.appiconset/Hackery_AppIcon_Dark.png -------------------------------------------------------------------------------- /Hackery/Main/Assets.xcassets/AppIcon.appiconset/Hackery_AppIcon_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Main/Assets.xcassets/AppIcon.appiconset/Hackery_AppIcon_Light.png -------------------------------------------------------------------------------- /Hackery/Main/Assets.xcassets/AppIcon.appiconset/Hackery_AppIcon_Watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Main/Assets.xcassets/AppIcon.appiconset/Hackery_AppIcon_Watch.png -------------------------------------------------------------------------------- /Hackery/Main/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Main/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Hackery/Main/Assets.xcassets/background.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Main/Assets.xcassets/background.colorset/Contents.json -------------------------------------------------------------------------------- /Hackery/Main/Assets.xcassets/borderColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Main/Assets.xcassets/borderColor.colorset/Contents.json -------------------------------------------------------------------------------- /Hackery/Main/Assets.xcassets/cardBg.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Main/Assets.xcassets/cardBg.colorset/Contents.json -------------------------------------------------------------------------------- /Hackery/Main/Assets.xcassets/loader.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Main/Assets.xcassets/loader.colorset/Contents.json -------------------------------------------------------------------------------- /Hackery/Main/Assets.xcassets/shadow.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Main/Assets.xcassets/shadow.colorset/Contents.json -------------------------------------------------------------------------------- /Hackery/Main/Assets.xcassets/subtitleColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Main/Assets.xcassets/subtitleColor.colorset/Contents.json -------------------------------------------------------------------------------- /Hackery/Main/Assets.xcassets/titleColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Main/Assets.xcassets/titleColor.colorset/Contents.json -------------------------------------------------------------------------------- /Hackery/Main/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Main/Extensions.swift -------------------------------------------------------------------------------- /Hackery/Main/Fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Main/Fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /Hackery/Main/Fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Main/Fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /Hackery/Main/Hackery.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Main/Hackery.entitlements -------------------------------------------------------------------------------- /Hackery/Main/Hackery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Main/Hackery.swift -------------------------------------------------------------------------------- /Hackery/Main/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Main/Info.plist -------------------------------------------------------------------------------- /Hackery/Main/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Hackery/Main/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /HackeryV/Bookmarks/BookmarksView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/HackeryV/Bookmarks/BookmarksView.swift -------------------------------------------------------------------------------- /HackeryV/Feed/CommentButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/HackeryV/Feed/CommentButton.swift -------------------------------------------------------------------------------- /HackeryV/Feed/CommentsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/HackeryV/Feed/CommentsView.swift -------------------------------------------------------------------------------- /HackeryV/Feed/FeedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/HackeryV/Feed/FeedView.swift -------------------------------------------------------------------------------- /HackeryV/Feed/FeedViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/HackeryV/Feed/FeedViewModel.swift -------------------------------------------------------------------------------- /HackeryV/Feed/SafariView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/HackeryV/Feed/SafariView.swift -------------------------------------------------------------------------------- /HackeryV/Feed/StoryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/HackeryV/Feed/StoryView.swift -------------------------------------------------------------------------------- /HackeryV/Main/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/HackeryV/Main/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /HackeryV/Main/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Hackery_AppIcon_BG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/HackeryV/Main/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Hackery_AppIcon_BG.jpg -------------------------------------------------------------------------------- /HackeryV/Main/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/HackeryV/Main/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /HackeryV/Main/Assets.xcassets/AppIcon.solidimagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/HackeryV/Main/Assets.xcassets/AppIcon.solidimagestack/Contents.json -------------------------------------------------------------------------------- /HackeryV/Main/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/HackeryV/Main/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /HackeryV/Main/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Hackery_AppIcon_TOP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/HackeryV/Main/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Hackery_AppIcon_TOP.png -------------------------------------------------------------------------------- /HackeryV/Main/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/HackeryV/Main/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /HackeryV/Main/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/HackeryV/Main/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /HackeryV/Main/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Hackery_AppIcon_MID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/HackeryV/Main/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Hackery_AppIcon_MID.png -------------------------------------------------------------------------------- /HackeryV/Main/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/HackeryV/Main/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /HackeryV/Main/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/HackeryV/Main/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /HackeryV/Main/HackeryV.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/HackeryV/Main/HackeryV.swift -------------------------------------------------------------------------------- /HackeryV/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/HackeryV/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Packages/RealityKitContent/.swiftpm/xcode/xcuserdata/timshim.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Packages/RealityKitContent/.swiftpm/xcode/xcuserdata/timshim.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Packages/RealityKitContent/Package.realitycomposerpro/ProjectData/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Packages/RealityKitContent/Package.realitycomposerpro/ProjectData/main.json -------------------------------------------------------------------------------- /Packages/RealityKitContent/Package.realitycomposerpro/WorkspaceData/SceneMetadataList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Packages/RealityKitContent/Package.realitycomposerpro/WorkspaceData/SceneMetadataList.json -------------------------------------------------------------------------------- /Packages/RealityKitContent/Package.realitycomposerpro/WorkspaceData/Settings.rcprojectdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Packages/RealityKitContent/Package.realitycomposerpro/WorkspaceData/Settings.rcprojectdata -------------------------------------------------------------------------------- /Packages/RealityKitContent/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Packages/RealityKitContent/Package.swift -------------------------------------------------------------------------------- /Packages/RealityKitContent/README.md: -------------------------------------------------------------------------------- 1 | # RealityKitContent 2 | 3 | A description of this package. -------------------------------------------------------------------------------- /Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/Scene.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/Scene.usda -------------------------------------------------------------------------------- /Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/_PlainMaterial.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/_PlainMaterial.usda -------------------------------------------------------------------------------- /Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/README.md -------------------------------------------------------------------------------- /appicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/appicon.gif -------------------------------------------------------------------------------- /screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timshim/Hackery/HEAD/screen.png --------------------------------------------------------------------------------