Flask

Strava Noise Reduction

Messing around with Kalman filters to fix noisy Strava activities

September 26, 2022 | ~2500 words | 12 min read

I use Strava to track my runs, and sometimes I'm annoyed with how noisy the GPS tracks are. I recently learned about Kalman filtering, a methodology for smoothing noisy data. Let's see if it can solve my Strava problem. Plus, a small Flask app that integrates with the Strava API.

Using FastAPI to Recreate the Flask Tutorial

November 8, 2021 | ~1100 words | 6 min read

I wanted to try out the popular FastAPI framework. As a learning exercise, I reproduced a simple Flask tutorial using FastAPI.