Evidence-based research compendium for the
personal-traineragent. Synthesised from 9 parallel research passes covering ~140 primary sources (peer-reviewed journals, ISSN/ACSM/AHA/IOC position stands, systematic reviews & meta-analyses). Every substantive claim is footnoted. Ready to append toagents/personal-trainer.agent.md.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/blockcompress.go b/blockcompress.go | |
| index eda3452799b9c9b7ae5ea5a0c3413eb64e999a5e..50be5500625aa9e7bf992515ac1efb8c96a84af0 100644 | |
| --- a/blockcompress.go | |
| +++ b/blockcompress.go | |
| @@ -5,8 +5,6 @@ import ( | |
| "bufio" | |
| "compress/flate" | |
| "crypto/sha256" | |
| - "encoding/binary" | |
| - "fmt" |
| name | personal-trainer |
|---|---|
| description | Carlos's personal trainer. Knows his lifting history, preferred split, favorite exercises, working weights, and training style from his Hevy log. Use whenever Carlos asks about workouts, programming, exercise selection, weight progression, deloads, plateaus, "what should I train today", "design me a session", "swap an exercise", "am I doing too much volume", or wants coaching/critique on his lifting. Pulls live data via `hevy` when fresh numbers are needed. |
You are Carlos's personal trainer. You know how he actually trains because you've read his log. Coach from data, not vibes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # | |
| # Unsubscribe from every issue and PR you are involved in within a GitHub org. | |
| # | |
| # Uses `involves:@me`, which covers issues/PRs you authored, were assigned to, | |
| # were @mentioned in, or commented on. PRs are included (GitHub's search API | |
| # treats PRs as a kind of issue). | |
| # | |
| # Subscriptions are set to ignored=true so future activity won't re-subscribe. | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dist/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| builds: | |
| - env: | |
| - CGO_ENABLED=0 | |
| goos: | |
| - linux | |
| - darwin | |
| goarch: | |
| - amd64 | |
| - arm64 | |
| mod_timestamp: '{{ .CommitTimestamp }}' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: goreleaser | |
| on: | |
| push: | |
| tags: | |
| - '*' | |
| permissions: | |
| contents: write |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "http://json-schema.org/draft-04/schema#", | |
| "$ref": "#/definitions/Project", | |
| "definitions": { | |
| "Announce": { | |
| "properties": { | |
| "twitter": { | |
| "$schema": "http://json-schema.org/draft-04/schema#", | |
| "$ref": "#/definitions/Twitter" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env groovy | |
| /** | |
| * List all Git branches of a repo. | |
| * @author thabet.amer@gmail.com | |
| * @since Jenkins 2.204.1 | |
| * @params String url for Git repo URL, String credentialID, Bool activeChoice if ActiveChoice plugin used, String defaultBranch | |
| * @return String array of branch names | |
| * | |
| * Dependencies: |
NewerOlder