{"id":20310979,"url":"https://github.com/codezeilen/scheduler","last_synced_at":"2026-03-06T19:37:22.432Z","repository":{"id":143216935,"uuid":"151726243","full_name":"codeZeilen/Scheduler","owner":"codeZeilen","description":"A Squeak/Smalltalk task scheduler","archived":false,"fork":false,"pushed_at":"2020-03-06T14:26:14.000Z","size":27,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-04T08:15:15.937Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Smalltalk","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codeZeilen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2018-10-05T13:39:05.000Z","updated_at":"2021-08-25T07:59:16.000Z","dependencies_parsed_at":"2023-06-01T19:15:51.881Z","dependency_job_id":null,"html_url":"https://github.com/codeZeilen/Scheduler","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/codeZeilen/Scheduler","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeZeilen%2FScheduler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeZeilen%2FScheduler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeZeilen%2FScheduler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeZeilen%2FScheduler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codeZeilen","download_url":"https://codeload.github.com/codeZeilen/Scheduler/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codeZeilen%2FScheduler/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30193652,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T19:07:06.838Z","status":"ssl_error","status_checked_at":"2026-03-06T18:57:34.882Z","response_time":250,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-11-14T17:35:11.047Z","updated_at":"2026-03-06T19:37:22.409Z","avatar_url":"https://github.com/codeZeilen.png","language":"Smalltalk","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Scheduler [![Build Status](https://travis-ci.org/codeZeilen/Scheduler.svg?branch=master)](https://travis-ci.org/codeZeilen/Scheduler) [![Coverage Status](https://coveralls.io/repos/github/codeZeilen/Scheduler/badge.svg?branch=master)](https://coveralls.io/github/codeZeilen/Scheduler?branch=master)\nA Squeak/Smalltalk task scheduler similar to cron.\n\nThis is a fork from the original Scheduler package provided by John Pierce. The original project remains largely unchanged except for some adjustments to match the present-day Squeak standard library. The license is MIT as with the original source code.\n\n## How to install\n1. Get [Squeak 4.6 or later](http://www.squeak.org)\n2. Load [Metacello](https://github.com/metacello/metacello)\n3. Finally, load Scheduler with the following command:\n\n```Smalltalk\nMetacello new\n  baseline: 'Scheduler';\n  repository: 'github://codezeilen/scheduler/packages';\n  load.\n```\n\n## Usage\nNote: The following is based on the original SqueakMap description\n\nAn easy-to-use task scheduler that can run arbitrary blocks:\n\n  * Every so often (e.g. every hour starting now)\n  * Daily at a given time\n  * Periodically starting at a given time (e.g. every other hour starting a noon)\n  * Per a provide schedule (e.g. using Schedule instance you can run tasks every Monday and Friday)\n  * A one time task at some point in the future \n\nFor ease of use tasks can be blocks passed to the scheduler (or any object that understands #value). For example:\n```Smalltalk\n \"Start a new task scheduler and keep it around\"\n scheduler := TaskScheduler new.\n scheduler start.\n\n\"Let's save the image every hour\"\nscheduler\n  do: [Smalltalk snapshot: true andQuit: false]\n  every: 60 minutes.\n\n\"Let's run a backup at 2am every day\"\nscheduler\n  do: [\"backup code here\"]\n  at: '2am'\n\n\"Let's perform a bank transfer every other hour starting at 1pm\"\nscheduler\n  do: [\"swiss bank account transfer code\"]\n  at: '1pm'\n  every: 2 hours.\n\n\"Let's do a one time email reminder\"\nscheduler\n  doOnce: [\"email reminder to go on honeymoon\"]\n  at: '2005-1-15T8:00'\n\n\"You can delete tasks by sending #delete to them\"\n(scheduler taskAt: 1) delete\n\n\"Stop the scheduler from running -- but don't delete its tasks\"\nscheduler stop.```\n\nRead the provided tests for more examples.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodezeilen%2Fscheduler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodezeilen%2Fscheduler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodezeilen%2Fscheduler/lists"}