├── .gitignore ├── EffectivePower.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── EffectivePower.xcscheme ├── EffectivePower ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── BinaryGraph.swift ├── BinarySearch.swift ├── ChartView.swift ├── ContentView.swift ├── Debug.xcconfig ├── Deployment.xcconfig ├── EffectivePower.entitlements ├── EffectivePower.xcconfig ├── EffectivePowerApp.swift ├── EffectivePowerDocument.swift ├── Graphability.swift ├── HistogramGraph.swift ├── Info.plist ├── LinearGraph.swift ├── MouseTrackingView.swift ├── Polyfills.swift ├── Release.xcconfig ├── SQLiteDatabase.swift ├── Shared.xcconfig └── UsageView.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/.gitignore -------------------------------------------------------------------------------- /EffectivePower.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /EffectivePower.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /EffectivePower.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /EffectivePower.xcodeproj/xcshareddata/xcschemes/EffectivePower.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower.xcodeproj/xcshareddata/xcschemes/EffectivePower.xcscheme -------------------------------------------------------------------------------- /EffectivePower/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /EffectivePower/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /EffectivePower/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /EffectivePower/BinaryGraph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower/BinaryGraph.swift -------------------------------------------------------------------------------- /EffectivePower/BinarySearch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower/BinarySearch.swift -------------------------------------------------------------------------------- /EffectivePower/ChartView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower/ChartView.swift -------------------------------------------------------------------------------- /EffectivePower/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower/ContentView.swift -------------------------------------------------------------------------------- /EffectivePower/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower/Debug.xcconfig -------------------------------------------------------------------------------- /EffectivePower/Deployment.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower/Deployment.xcconfig -------------------------------------------------------------------------------- /EffectivePower/EffectivePower.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower/EffectivePower.entitlements -------------------------------------------------------------------------------- /EffectivePower/EffectivePower.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower/EffectivePower.xcconfig -------------------------------------------------------------------------------- /EffectivePower/EffectivePowerApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower/EffectivePowerApp.swift -------------------------------------------------------------------------------- /EffectivePower/EffectivePowerDocument.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower/EffectivePowerDocument.swift -------------------------------------------------------------------------------- /EffectivePower/Graphability.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower/Graphability.swift -------------------------------------------------------------------------------- /EffectivePower/HistogramGraph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower/HistogramGraph.swift -------------------------------------------------------------------------------- /EffectivePower/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower/Info.plist -------------------------------------------------------------------------------- /EffectivePower/LinearGraph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower/LinearGraph.swift -------------------------------------------------------------------------------- /EffectivePower/MouseTrackingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower/MouseTrackingView.swift -------------------------------------------------------------------------------- /EffectivePower/Polyfills.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower/Polyfills.swift -------------------------------------------------------------------------------- /EffectivePower/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower/Release.xcconfig -------------------------------------------------------------------------------- /EffectivePower/SQLiteDatabase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower/SQLiteDatabase.swift -------------------------------------------------------------------------------- /EffectivePower/Shared.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower/Shared.xcconfig -------------------------------------------------------------------------------- /EffectivePower/UsageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/EffectivePower/UsageView.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saagarjha/EffectivePower/HEAD/README.md --------------------------------------------------------------------------------