{"id":50443549,"url":"https://github.com/ahsankhizar5/webdev-module4","last_synced_at":"2026-05-31T20:01:29.758Z","repository":{"id":299808702,"uuid":"1004266283","full_name":"ahsankhizar5/webdev-module4","owner":"ahsankhizar5","description":"Module 4 solution for Coursera’s HTML, CSS, and Javascript for Web Developers. A JavaScript program that greets names based on their first letter.","archived":false,"fork":false,"pushed_at":"2025-06-18T11:26:57.000Z","size":4,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-18T12:37:38.978Z","etag":null,"topics":["beginner-project","coursera","css","frontend","html","javascript","javascript-assignments","web-development"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/ahsankhizar5.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,"zenodo":null}},"created_at":"2025-06-18T11:15:06.000Z","updated_at":"2025-06-18T11:27:00.000Z","dependencies_parsed_at":"2025-06-18T12:41:31.830Z","dependency_job_id":"3c967a94-4e03-4a81-a440-254132e6c166","html_url":"https://github.com/ahsankhizar5/webdev-module4","commit_stats":null,"previous_names":["ahsankhizar5/webdev-module4"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ahsankhizar5/webdev-module4","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahsankhizar5%2Fwebdev-module4","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahsankhizar5%2Fwebdev-module4/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahsankhizar5%2Fwebdev-module4/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahsankhizar5%2Fwebdev-module4/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ahsankhizar5","download_url":"https://codeload.github.com/ahsankhizar5/webdev-module4/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ahsankhizar5%2Fwebdev-module4/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33746513,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-31T02:00:06.040Z","response_time":95,"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":["beginner-project","coursera","css","frontend","html","javascript","javascript-assignments","web-development"],"created_at":"2026-05-31T20:01:28.871Z","updated_at":"2026-05-31T20:01:29.750Z","avatar_url":"https://github.com/ahsankhizar5.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Yo, Check Out My Module 4 JavaScript Name Greeter! 😎\n\nHey there! This is my solution for Module 4 of the Coursera *HTML, CSS, and Javascript for Web Developers* course. It’s a cool little JavaScript program that says \"Hello\" or \"Good Bye\" to names in the console, depending on whether they start with a 'J'. Wanna see it in action? Let’s chat about it!\n\n👉 **Check it out here**: [https://ahsankhizar5.github.io/webdev-module4/](https://ahsankhizar5.github.io/webdev-module4/)\n\n---\n\n## What’s This Thing Do? 🤔\n\n- It loops through a list of names like \"Yaakov\", \"John\", \"Jen\", etc.\n- If a name starts with 'J' or 'j', it’s like, \"Good Bye John!\" in the console.\n- Otherwise, it’s all, \"Hello Yaakov!\"\n- Uses separate files for the \"Hello\" and \"Good Bye\" logic, all wrapped in IIFEs to keep things clean.\n- Super simple HTML to load the scripts, no fancy styling needed.\n\n---\n\n## How to Run It 🚀\n\nWanna try it yourself? Here’s the deal:\n\n1. Grab the code:\n   ```bash\n   git clone https://github.com/ahsankhizar5/coursera-webdev.git\n   ```\n\n2. Jump into the folder:\n   ```bash\n   cd coursera-webdev/module4-solution\n   ```\n\n3. Fire up a local server with Browser Sync (it’s the vibe):\n   ```bash\n   browser-sync start --server --files \"*.html, *.js\"\n   ```\n\n4. Open Chrome, hit `http://localhost:3000`, and pop open the Console (`Ctrl + Shift + J`). You’ll see:\n   ```\n   Hello Yaakov\n   Good Bye John\n   Good Bye Jen\n   ...\n   ```\n\n---\n\n## What’s Inside? 📂\n\nJust a few files:\n- `index.html`: The basic page that loads the JavaScript.\n- `script.js`: Where the name-looping magic happens.\n- `SpeakHello.js`: Says \"Hello\" to non-J names.\n- `SpeakGoodBye.js`: Says \"Good Bye\" to J names.\n\n---\n\n## Tools I Used 🛠️\n\n- **HTML5**: Just enough to get the scripts running.\n- **JavaScript**: The star of the show, doing all the logic.\n- **Browser Sync**: Makes local testing smooth.\n- **Chrome Console**: Where the output shines.\n\n---\n\n## Wanna Add Something Cool? 😄\n\n1. Fork my repo on GitHub.\n2. Make a new branch:\n   ```bash\n   git checkout -b your-cool-idea\n   ```\n3. Add your changes and commit:\n   ```bash\n   git add .\n   git commit -m \"Added something awesome\"\n   ```\n4. Push it and send me a pull request:\n   ```bash\n   git push origin your-cool-idea\n   ```\n\n---\n\n## Free to Use! 📜\n\nIt’s under the MIT License, so feel free to use, tweak, or share it.\n\n---\n\n## Like It? Drop a Star! 🌟\n\nIf you think this is neat or it helped you, hit that ⭐ on my GitHub repo. It’d mean a lot!\n\n---\n\n\u003e 💬 *“Keep it simple, keep it fun!”* — Me, probably","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fahsankhizar5%2Fwebdev-module4","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fahsankhizar5%2Fwebdev-module4","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fahsankhizar5%2Fwebdev-module4/lists"}