{"id":20462038,"url":"https://github.com/denvercoder1/countdown","last_synced_at":"2025-04-13T06:20:43.199Z","repository":{"id":56685267,"uuid":"278378257","full_name":"DenverCoder1/countdown","owner":"DenverCoder1","description":"Website to display a countdown timer to a specified date.","archived":false,"fork":false,"pushed_at":"2021-03-29T20:10:00.000Z","size":65,"stargazers_count":6,"open_issues_count":2,"forks_count":20,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-26T22:51:17.809Z","etag":null,"topics":["beginner-friendly","countdown","countdown-clock","countdown-javascript","countdown-timer","first-timers-only","hacktoberfest","time-and-date-diff","timer","timer-clock"],"latest_commit_sha":null,"homepage":"http://eyl327.mywebcommunity.org/countdown/","language":"PHP","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/DenverCoder1.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-07-09T13:52:45.000Z","updated_at":"2025-02-09T06:28:40.000Z","dependencies_parsed_at":"2022-08-15T23:20:16.158Z","dependency_job_id":null,"html_url":"https://github.com/DenverCoder1/countdown","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DenverCoder1%2Fcountdown","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DenverCoder1%2Fcountdown/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DenverCoder1%2Fcountdown/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DenverCoder1%2Fcountdown/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DenverCoder1","download_url":"https://codeload.github.com/DenverCoder1/countdown/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248671324,"owners_count":21143070,"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":["beginner-friendly","countdown","countdown-clock","countdown-javascript","countdown-timer","first-timers-only","hacktoberfest","time-and-date-diff","timer","timer-clock"],"created_at":"2024-11-15T12:29:38.940Z","updated_at":"2025-04-13T06:20:43.158Z","avatar_url":"https://github.com/DenverCoder1.png","language":"PHP","readme":"# Countdown Timer\n\n\u003cp\u003e\n  \u003ca href=\"https://discord.gg/fPrdqh3Zfu\" alt=\"Dev Pro Tips Discussion \u0026 Support Server\"\u003e\n    \u003cimg src=\"https://img.shields.io/discord/819650821314052106?color=7289DA\u0026logo=discord\u0026logoColor=white\u0026style=for-the-badge\"/\u003e\u003c/a\u003e\n\u003c/p\u003e\n\nWebsite to display a countdown timer to a specified date.\n\n## Table of Contents\n\n* [Create a countdown using the UI](#create-a-countdown-using-the-ui)\n* [Create a countdown by passing url parameters](#create-a-countdown-by-passing-url-parameters)\n* [Screenshots](#screenshots)\n* [Contributing](#contributing)\n\n## Create a countdown using the UI\n\nView the demo at http://eyl327.mywebcommunity.org/countdown/\n\n## Create a countdown by passing url parameters\n\nFields:\n\n* **d** - date and time in the format \"YYYYMMDDTHHmm\" (ex. 20201231T1300 for 31st of December, 2020 at 1 pm.)\n* **tz** - timezone offset from UTC (ex. -7 for MST)\n* **msg** - message to display above the countdown (ex. \"Countdown to Deadline\")\n* **font** - a font available from [fonts.google.com](https://fonts.google.com/) (ex. \"Roboto\")\n* **bg** - background image url (ex. https://i.imgur.com/HcD6od4.jpg) or hex code preceded by %23 (ex. %23111111 for #111111)\n\nExample:\n\n[http://eyl327.mywebcommunity.org/countdown/?d=20201231T2359\u0026tz=%2B3\u0026msg=New%20Year%27s%20Eve\u0026font=Righteous\u0026bg=https%3A%2F%2Fi.imgur.com%2FHcD6od4.jpg](http://eyl327.mywebcommunity.org/countdown/?d=20201231T2359\u0026tz=%2B3\u0026msg=New%20Year%27s%20Eve\u0026font=Righteous\u0026bg=https%3A%2F%2Fi.imgur.com%2FHcD6od4.jpg)\n\n## Screenshots\n\n![Create a Countdown](https://i.imgur.com/kvWT0YE.png)\n\n![Countdown 1](https://i.imgur.com/BOiMUce.png)\n\n![Countdown 2](https://i.imgur.com/VNnadBY.png)\n\n![Countdown 3](https://i.imgur.com/0qjR34X.png)\n\n## Contributing\n\n**Video tutorial: [How to make a Pull Request with Github Desktop](https://youtu.be/mMSOIkkSIag)**\n\n1. Fork this repository and clone your repo to your computer\n\n\u003e `git fork https://github.com/DenverCoder1/countdown.git`\n\n2. Create a new branch\n\n\u003e `git checkout -b new_branch` (where `new_branch` is the feature you are working on)\n\n3. Set up a local or hosted web server to test your code\n\n\u003e [This can be done with XAMPP](https://youtu.be/K-qXW9ymeYQ)\n\n4. Make your changes to the code\n\n5. When it is ready, submit a PR from your forked repository\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdenvercoder1%2Fcountdown","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdenvercoder1%2Fcountdown","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdenvercoder1%2Fcountdown/lists"}