{"id":17226800,"url":"https://github.com/dantleech/strava-rs","last_synced_at":"2025-04-14T01:13:03.449Z","repository":{"id":112064671,"uuid":"606241085","full_name":"dantleech/strava-rs","owner":"dantleech","description":"Strava TUI","archived":false,"fork":false,"pushed_at":"2024-12-09T21:25:01.000Z","size":472,"stargazers_count":17,"open_issues_count":8,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-14T01:12:50.271Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dantleech.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-02-24T23:25:14.000Z","updated_at":"2025-01-21T16:47:51.000Z","dependencies_parsed_at":"2024-05-30T21:18:02.323Z","dependency_job_id":"5b01abd2-5021-4ffc-b863-781d11a18ad4","html_url":"https://github.com/dantleech/strava-rs","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dantleech%2Fstrava-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dantleech%2Fstrava-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dantleech%2Fstrava-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dantleech%2Fstrava-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dantleech","download_url":"https://codeload.github.com/dantleech/strava-rs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248804825,"owners_count":21164135,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-15T04:17:16.221Z","updated_at":"2025-04-14T01:13:03.417Z","avatar_url":"https://github.com/dantleech.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"Strava TUI\n==========\n\nStrava TUI written in Rust! This is an experimental TUI for Strava.\n\nFeatures:\n\n- List activities in a comparable way\n- Filter activites by with expressions\n- Sort listed activities\n- Display the route\n- Show laps\n- Race predictions\n- Activity segments\n- Works offline\n- Filter by route similarity (\"anchoring\")\n\n## Screenshots\n\n### List activities\n\n![image](https://github.com/user-attachments/assets/f13ed611-d764-4941-a3df-c95db8636ba7)\n\n### Acivity View\n\n![image](https://github.com/user-attachments/assets/88c9b34a-7cee-409d-9d01-39bd22ef8259)\n\n### Activity Segments\n\n![image](https://github.com/user-attachments/assets/d07cd433-b333-4bae-b931-d2e777a1eefb)\n\n## Key Map\n\n- `q`: **Quit**: quit!\n- `k`: **Up** - select previous activity\n- `j`: **Down** - select next activity\n- `K`: **PageUp** - select previous activity (`shift-K` to move 10 down)\n- `J`: **PageDown** - select next activity (`shift-J` to move 10 up)\n- `n`: **Next** - (in activity view) next split\n- `p`: **Previous** - (in activity view) previous split\n- `o`: **ToggleSortOrder** - switch between ascending and descending order\n- `u`: **ToggleUnitSystem** - switch between imperial and metric units\n- `s`: **Sort** - show sort dialog\n- `S`: **Rank** - choose ranking\n- `f`: **Filter** - filter (see filter section below)\n- `r`: **Refresh** - reload activities\n- `a`: **Anchor** - show activities with similar routes\n- `+`: **IncreaseTolerance** - incease the anchor tolerance\n- `-`: **DecreaseTolerance** - descrease the ancor tolerance\n- `0`: **ToggleLogView** - toggle log view\n\n## Filter\n\nPress `f` on the activity list view to open the filter input.\n\n### Examples\n\nShow all runs that are of a half marathon distance or more:\n\n```\ntype = \"Run\" and distance \u003e 21000\n```\n\nShow all runs with \"Park\" in the title:\n\n```\ntype = \"Run\" and title ~ \"Park\"\n```\n\n### Fields\n\n- `distance`: Distance (in meters)\n- `type`: `Run`, `Ride` etc.\n- `heartrate`: Heart rate in BPM.\n- `title`: Activity title\n- `elevation`: Elevation (in meters)\n- `time`: Time (in seconds, 3600 = 1 hour)\n- `date`: Date (YYYY-MM-DD)\n- `speed`: Speed (meters per hour, 1000 = 1kmph)\n\n### Values\n\n- `kmph`, `k`: Kilometers per hour e.g. `speed \u003e 10kmph`, `distance \u003e 10k`\n- `mph`, `mi`: Miles per hour e.g. `speed \u003e 10mph`, `distance \u003e 10mi`\n- `m`, `meters`: Meters per hour e.g. `elevation \u003e 500m`\n- `f`, `foot`: Foot per hour e.g. `elevation \u003e 1000ft`\n\n### Operators\n\n- `\u003e`, `\u003c`: Greater than, Less than (e.g. `distance \u003e 21000`)\n- `and`, `or`: Logical operators (e.g. `type = \"Run\" and time \u003e 0`)\n- `=`: Equal to\n- `~`: String contains\n- `!=`: Not equal to (e.g. `type != \"Run\"`)\n- `!~`: String does not contain (e.g. `title ~ \"Parkrun\"`)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdantleech%2Fstrava-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdantleech%2Fstrava-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdantleech%2Fstrava-rs/lists"}