{"id":25498328,"url":"https://github.com/natuworkguy/nnostime","last_synced_at":"2026-01-25T14:33:11.077Z","repository":{"id":276373015,"uuid":"929095922","full_name":"Natuworkguy/NNOSTime","owner":"Natuworkguy","description":"The coolest way to show time","archived":false,"fork":false,"pushed_at":"2025-02-08T21:11:37.000Z","size":71,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-19T15:53:29.458Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://natuworkguy.github.io/NNOSTime/index.html","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Natuworkguy.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,"zenodo":null}},"created_at":"2025-02-07T19:55:00.000Z","updated_at":"2025-02-08T21:11:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"79df1e14-b59a-48b6-90e1-e8b7f0743815","html_url":"https://github.com/Natuworkguy/NNOSTime","commit_stats":null,"previous_names":["natuworkguy/nnostime"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Natuworkguy/NNOSTime","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Natuworkguy%2FNNOSTime","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Natuworkguy%2FNNOSTime/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Natuworkguy%2FNNOSTime/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Natuworkguy%2FNNOSTime/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Natuworkguy","download_url":"https://codeload.github.com/Natuworkguy/NNOSTime/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Natuworkguy%2FNNOSTime/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28754228,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T13:59:49.818Z","status":"ssl_error","status_checked_at":"2026-01-25T13:59:33.728Z","response_time":113,"last_error":"SSL_read: 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":"2025-02-19T02:42:33.613Z","updated_at":"2026-01-25T14:33:11.072Z","avatar_url":"https://github.com/Natuworkguy.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NNOSTime\n\nNNOSTime is a lightweight, visually appealing web page that displays the current date and time with a futuristic design. With a gradient background, and a dynamic digital clock effect, this project provides a simple yet eye-catching way to show time.\n\n## Features\n\n- **Dynamic Time Display:**  \n  Uses JavaScript's `Intl.DateTimeFormat` API to format and display the current time. The time updates every second for real-time accuracy.\n\n- **Customizable Time Zone:**  \n  The current implementation displays time in the 'America/New_York' time zone. You can change the `timeZone` property in the script to display a different region's time.\n\n- **Futuristic Aesthetic:**  \n  Incorporates a modern gradient background and the Orbitron font from Google Fonts to give the page a sleek, futuristic look.\n\n- **Minimalistic Design:**  \n  The design hides the default scrollbar and cursor for a cleaner user experience.\n\n## Getting Started\n\n### Prerequisites\n\n- A modern web browser (Chrome, Firefox, Edge, etc.) that supports HTML5, CSS3, and JavaScript ES6 features.\n\n### Installation\n\n1. **Clone the Repository:**  \n   Clone or download the source code to your local machine.\n   ```bash\n   git clone https://github.com/Natuworkguy/NNOSTime.git\n   ```\n\n2. **Navigate to the Project Directory:**  \n   ```bash\n   cd NNOSTime\n   ```\n\n3. **Open the Application:**  \n   Open the `index.html` file in your preferred web browser.\n\n## Code Overview\n\n- **HTML Structure:**  \n  The HTML file contains the basic structure, including a `\u003chead\u003e` with metadata, a `\u003cstyle\u003e` block for CSS, and a `\u003cbody\u003e` that includes a heading and an element (`\u003cb id=\"currentTime\"\u003e`) to display the current time.\n\n- **CSS Styling:**  \n  Inline CSS is used to apply a gradient background, customize fonts, hide the scrollbar, and style the time display element with a text-shadow effect.\n\n- **JavaScript Functionality:**  \n  A script at the bottom of the HTML file:\n  - Retrieves the current date and time.\n  - Formats the time using `Intl.DateTimeFormat` with options for the 'America/New_York' time zone, 12-hour formatting, and specific display options for year, month, day, hour, minute, and second.\n  - Updates the time every second using `setInterval`.\n\n## Customization\n\n- **Change the Time Zone:**  \n  To display the time for a different time zone, update the `timeZone` property in the JavaScript options:\n  ```javascript\n  const options = {\n    timeZone: 'Your/Preferred_TimeZone',\n    year: 'numeric',\n    month: 'short',\n    day: 'numeric',\n    hour: '2-digit',\n    minute: '2-digit',\n    second: '2-digit',\n    hour12: true,\n  };\n  ```\n\n- **Adjust the Appearance:**  \n  Modify the CSS in the `\u003cstyle\u003e` block to change colors, fonts, or layout according to your design preferences.\n\n- **Time Format:**  \n  You can alter the formatting options in the `options` object to display the date and time in your preferred format.\n\n## License\n\nThis project is open source and available under the [MIT License](LICENSE).\n\n## Acknowledgements\n\n- The JavaScript community for the powerful and easy-to-use `Intl.DateTimeFormat` API.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnatuworkguy%2Fnnostime","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnatuworkguy%2Fnnostime","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnatuworkguy%2Fnnostime/lists"}