{"id":26126062,"url":"https://github.com/monnus/practise-copilot","last_synced_at":"2026-04-18T18:34:25.367Z","repository":{"id":183112095,"uuid":"669620128","full_name":"Monnus/Practise-copilot","owner":"Monnus","description":"Testing/practising using github copilot from this template","archived":false,"fork":false,"pushed_at":"2023-10-01T09:19:17.000Z","size":17,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-10T17:36:17.534Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/Monnus.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":"2023-07-22T21:57:12.000Z","updated_at":"2023-07-24T05:50:43.000Z","dependencies_parsed_at":"2025-03-10T17:46:52.153Z","dependency_job_id":null,"html_url":"https://github.com/Monnus/Practise-copilot","commit_stats":null,"previous_names":["monnus/practise-copilot"],"tags_count":0,"template":false,"template_full_name":"skills/copilot-codespaces-vscode","purl":"pkg:github/Monnus/Practise-copilot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Monnus%2FPractise-copilot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Monnus%2FPractise-copilot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Monnus%2FPractise-copilot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Monnus%2FPractise-copilot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Monnus","download_url":"https://codeload.github.com/Monnus/Practise-copilot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Monnus%2FPractise-copilot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31980156,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T17:30:12.329Z","status":"ssl_error","status_checked_at":"2026-04-18T17:29:59.069Z","response_time":103,"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-03-10T17:27:41.885Z","updated_at":"2026-04-18T18:34:25.350Z","avatar_url":"https://github.com/Monnus.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cheader\u003e\n\n\u003c!--\n  \u003c\u003c\u003c Author notes: Course header \u003e\u003e\u003e\n  Read \u003chttps://skills.github.com/quickstart\u003e for more information about how to build courses using this template.\n  Include a 1280×640 image, course name in sentence case, and a concise description in emphasis.\n  In your repository settings: enable template repository, add your 1280×640 social image, auto delete head branches.\n  Next to \"About\", add description \u0026 tags; disable releases, packages, \u0026 environments.\n  Add your open source license, GitHub uses the MIT license.\n--\u003e\n\n# Code with GitHub Copilot\n\n_GitHub Copilot can help you code by offering autocomplete-style suggestions right in VS Code and Codespaces._\n\n\u003c/header\u003e\n\n\u003c!--\n  \u003c\u003c\u003c Author notes: Step 3 \u003e\u003e\u003e\n  Start this step by acknowledging the previous step.\n  Define terms and link to docs.github.com.\n--\u003e\n\n## Step 3: View the GitHub Copilot tab with multiple suggestions\n\n_Nice work! You just used AI code suggestions within a Javascript file by using GitHub Copilot :sparkles:_\n\nKeep in mind that as you continue to use copilot, you may not want some of the suggestions GitHub Copilot offers. GitHub Copilot will show you multiple suggestions in a new tab.\n\n### :keyboard: Activity: Pull the latest code to the Codespace repo.\n\n\u003e **Note**\n\u003e Pull MUST be done prior to the next activity.\n\n1. Use the VS Code terminal to pull the latest code:\n\n   ```\n   git pull\n   ```\n\n### :keyboard: Activity: Add another Javascript method and view all suggestions\n\n1. From inside the codespace in the VS Code explorer window, create a new file. Note: If you closed the Codespace from above please open it back up or create a new Codespace.\n2. Name the file `member.js`\n3. In the `member.js` file, type the following function header.\n   ```\n   function skillsMember()\n   ```\n4. Stop typing and view the Copilot suggestion by hovering over the red squiggly and select the `...`\n5. Click `Open Completions Panel`. Copilot will synthesize around 10 different code suggestions. You should see something like this:\n   ![Screen Shot 2023-04-27 at 10 06 55 AM](https://user-images.githubusercontent.com/26442605/234937592-d196bd5e-8ac2-4d9a-87f4-94e8a9b6a417.png)\n6. Find a solution you like and click `Accept Solution`.\n7. Your `member.js` file will be updated with your solution.\n\n### :keyboard: Activity: Push code to your repository from the codespace\n\n1. Use the VS Code terminal to add the `member.js` file to the repository:\n\n   ```\n   git add member.js\n   ```\n\n2. Next from the VS Code terminal stage and commit the changes to the repository:\n\n   ```\n   git commit -m \"Copilot second commit\"\n   ```\n\n3. Finally from the VS Code terminal push to code to the repository:\n\n   ```\n   git push\n   ```\n\n**Wait about 60 seconds then refresh your repository landing page for the next step.**\n\n\u003cfooter\u003e\n\n\u003c!--\n  \u003c\u003c\u003c Author notes: Footer \u003e\u003e\u003e\n  Add a link to get support, GitHub status page, code of conduct, license link.\n--\u003e\n\n---\n\nGet help: [Post in our discussion board](https://github.com/skills/.github/discussions) \u0026bull; [Review the GitHub status page](https://www.githubstatus.com/)\n\n\u0026copy; 2023 GitHub \u0026bull; [Code of Conduct](https://www.contributor-covenant.org/version/2/1/code_of_conduct/code_of_conduct.md) \u0026bull; [MIT License](https://gh.io/mit)\n\n\u003c/footer\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmonnus%2Fpractise-copilot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmonnus%2Fpractise-copilot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmonnus%2Fpractise-copilot/lists"}