{"id":31111872,"url":"https://github.com/jonathanwthom/meminders","last_synced_at":"2025-09-17T08:27:13.033Z","repository":{"id":82273256,"uuid":"345540284","full_name":"JonathanWThom/meminders","owner":"JonathanWThom","description":"A little reminders program. Meminders will send you text messages to remind you of things.","archived":false,"fork":false,"pushed_at":"2022-01-16T07:10:46.000Z","size":171,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-06-20T20:16:12.714Z","etag":null,"topics":["golang","twilio-sms"],"latest_commit_sha":null,"homepage":"","language":"Go","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/JonathanWThom.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2021-03-08T05:24:59.000Z","updated_at":"2022-01-16T06:57:44.000Z","dependencies_parsed_at":null,"dependency_job_id":"3e7b9d0a-19ca-4c29-b664-7457066bc42b","html_url":"https://github.com/JonathanWThom/meminders","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/JonathanWThom/meminders","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JonathanWThom%2Fmeminders","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JonathanWThom%2Fmeminders/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JonathanWThom%2Fmeminders/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JonathanWThom%2Fmeminders/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JonathanWThom","download_url":"https://codeload.github.com/JonathanWThom/meminders/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JonathanWThom%2Fmeminders/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275558387,"owners_count":25486437,"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","status":"online","status_checked_at":"2025-09-17T02:00:09.119Z","response_time":84,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["golang","twilio-sms"],"created_at":"2025-09-17T08:27:11.450Z","updated_at":"2025-09-17T08:27:13.021Z","avatar_url":"https://github.com/JonathanWThom.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Meminders\n\nA little reminders program. Meminders will send you text messages (or call you!) to remind you\nof things.\n\n### Development\n\nThere are a few primary dependencies to Meminders:\n1. Go (though you can run it with Docker as well), and all the Go packages\n   specified in [go.mod](https://github.com/JonathanWThom/meminders/blob/main/go.mod).\n2. SQLite (though this could easily be swapped out).\n3. Twilio (for sending text messages and making calls).\n\nCheck out the [test.env file](https://github.com/JonathanWThom/meminders/blob/main/.env.test) to see what environment variables you'll need. The program will also blow up if any are lacking, so that helps.\n\nThere is a [Makefile](https://github.com/JonathanWThom/meminders/blob/main/Makefile) which won't necessarily set everything up for you, but provides some convenience methods for development.\n\n### API\n\nRight now, Meminders has only one endpoint, `POST /meminders`. An example\nrequest to a local server might look like this:\n\n```\ncurl --location --request POST 'localhost:8080/reminders' \\\n--header 'Content-Type: application/json' \\\n--header 'Authorization: Basic YWRtaW46cGFzc3dvcmQ=' \\\n--data-raw '{\"message\": \"This is a test. This is only a test.\", \"frequency\": \"once\", \"year\": 2021, \"month\": \"March\", \"hour\": 15, \"minute\": 30, \"day\": 21, \"zone\": \"America/Los_Angeles\"}'\n```\n\nThe program supports frequencies of \"once\", \"daily\", \"weekly\", and \"monthly\".\nThe API does not (yet!) do a great job of validating inputs, so make sure if you\nset something for a given frequency, you send it a sensical set of other\nparameters (e.g. if you want a weekly reminder, tell it what day of the week).\n\nBy default, reminders will be sent via SMS. But you can add the call parameter to the\nbody (`\"call\": true`) to receive a phone call instead.\n\nAn additional... \"feature\" is that I've set it up such that any request to a\nnon-existant path will result a tarpit response (quasi-infinite streamed http\nresponse). You may not want this.\n\n### Deployment\n\nThere's a nice little [GitHub Actions workflow](https://github.com/JonathanWThom/meminders/blob/main/.github/workflows/go.yml) set up that you could use to put this thing on a server, if you were to fork the repo. You'd probably want to sub out any reference to `jonathanwthom` for your own username.\n\nOne fun use case is to create a client for Meminders using Siri Shortcuts; this\nis what I've done, but there are probably other ways to make it useful.\n\n### Contributing\n\nI welcome any and all issues and PRs. The next priority for this\nproject is to support more actions on saved reminders via API.\n\n### License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonathanwthom%2Fmeminders","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjonathanwthom%2Fmeminders","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonathanwthom%2Fmeminders/lists"}