Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kfcampbell/icarus
How close can you fly to the sun?
https://github.com/kfcampbell/icarus
Last synced: 13 days ago
JSON representation
How close can you fly to the sun?
- Host: GitHub
- URL: https://github.com/kfcampbell/icarus
- Owner: kfcampbell
- Created: 2019-02-17T16:16:33.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-21T17:57:13.000Z (almost 6 years ago)
- Last Synced: 2024-12-21T10:42:21.256Z (19 days ago)
- Language: Swift
- Homepage:
- Size: 164 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# icarus
Track your phone's altitude while you throw it skyward. Impress your friends with a leaderboard (if I can be bothered to make one). Reap what you sow!
## todo
- use accelerometer data to determine height more accurately
- make it pretty## notes/miscellaneous/scratch space
### colors
blue "send high score button": #0055a5
### to make tracking algorithm better
- take an average for baseline (either when app is started or last xxx location check-ins)
- auto-reset height/baseline frequently to avoid running up the stairs problem
- consider creating an idea of a "toss" segment in order to have a predictable baseline and minimize interference from bad sensor data outside of desired window### "server.dll" not found
This error occurs when running `dotnet ef migrations add MigrationName`, followed by `dotnet ef database update`. Go into the bin folder, find server.dll, copy its full path, open server.deps.json, find the line with `"server.dll": {}` in it, and replace `server.dll` with the full path from earlier.