├── .gitignore ├── ConfigureSheet.xib ├── Epoch Flip Clock.xcodeproj └── project.pbxproj ├── EpochFlipClock.h ├── EpochFlipClock.m ├── Info.plist ├── Webview ├── index.css ├── index.html └── index.js ├── epochFlipClock.png └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrstphrknwtn/epoch-flip-clock-screensaver/HEAD/.gitignore -------------------------------------------------------------------------------- /ConfigureSheet.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrstphrknwtn/epoch-flip-clock-screensaver/HEAD/ConfigureSheet.xib -------------------------------------------------------------------------------- /Epoch Flip Clock.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrstphrknwtn/epoch-flip-clock-screensaver/HEAD/Epoch Flip Clock.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /EpochFlipClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrstphrknwtn/epoch-flip-clock-screensaver/HEAD/EpochFlipClock.h -------------------------------------------------------------------------------- /EpochFlipClock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrstphrknwtn/epoch-flip-clock-screensaver/HEAD/EpochFlipClock.m -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrstphrknwtn/epoch-flip-clock-screensaver/HEAD/Info.plist -------------------------------------------------------------------------------- /Webview/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrstphrknwtn/epoch-flip-clock-screensaver/HEAD/Webview/index.css -------------------------------------------------------------------------------- /Webview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrstphrknwtn/epoch-flip-clock-screensaver/HEAD/Webview/index.html -------------------------------------------------------------------------------- /Webview/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrstphrknwtn/epoch-flip-clock-screensaver/HEAD/Webview/index.js -------------------------------------------------------------------------------- /epochFlipClock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrstphrknwtn/epoch-flip-clock-screensaver/HEAD/epochFlipClock.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrstphrknwtn/epoch-flip-clock-screensaver/HEAD/readme.md --------------------------------------------------------------------------------