DevLog Day 7 - olindner/LightDisc GitHub Wiki

  • Basic cleanup and organization
  • Used Google Takeout to rip the GPS points of local Light Disc course (saved in Google Maps) into a csv
  • Split up App.tsx into multiple files, plus a styling one
  • Added method to shred JSON to display holes, also added new Icon for these
  • Trying to ideate solutions for storing data:
    • One option is just using local storage (built into React) but this is cleared if the cache or session reset
      • Could add a button to send this data to my email after a session, and then I'll save that/parse it later
    • Another option is using Google Cloud storage to store user profiles and scores (make sure this doesn't bloat/can reset monthly)
  • Considering between SQLite and WatermelonDB