{"id":20339590,"url":"https://github.com/rootkit-org/go-certification-roadmap","last_synced_at":"2026-03-06T16:02:48.708Z","repository":{"id":40457584,"uuid":"374809693","full_name":"RootKit-Org/Go-Certification-Roadmap","owner":"RootKit-Org","description":null,"archived":false,"fork":false,"pushed_at":"2022-05-07T03:51:59.000Z","size":16,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-03-04T14:47:43.509Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RootKit-Org.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}},"created_at":"2021-06-07T21:54:42.000Z","updated_at":"2023-04-24T17:24:40.000Z","dependencies_parsed_at":"2022-08-09T21:01:18.257Z","dependency_job_id":null,"html_url":"https://github.com/RootKit-Org/Go-Certification-Roadmap","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RootKit-Org/Go-Certification-Roadmap","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RootKit-Org%2FGo-Certification-Roadmap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RootKit-Org%2FGo-Certification-Roadmap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RootKit-Org%2FGo-Certification-Roadmap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RootKit-Org%2FGo-Certification-Roadmap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RootKit-Org","download_url":"https://codeload.github.com/RootKit-Org/Go-Certification-Roadmap/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RootKit-Org%2FGo-Certification-Roadmap/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30184878,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T14:42:24.748Z","status":"ssl_error","status_checked_at":"2026-03-06T14:42:14.925Z","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-14T21:17:39.007Z","updated_at":"2026-03-06T16:02:48.693Z","avatar_url":"https://github.com/RootKit-Org.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# GoLang\n\n### 1. Basic Operators\n  * \\+\n  * \\-\n  * \\*\n  * /\n  * %\n  * ++\n  * --\n  * =\n  * +=\n  * -=\n  * *=\n  * /=\n  * %=\n  * \u003c\u003c=\n  * \\\u003e\u003e=\n  * \u0026=\n  * ^=\n  * |=\n\n### 2. Conditions\n  * ==\n  * !=\n  * \\\u003e\n  * \\\u003c\n  * \\\u003e=\n  * \u003c=\n\n### 3. Data Types\n  * String\n  * Boolean\n  * Int\n  * Int8\n  * Int16\n  * Int32\n  * Int64\n  * uInt\n  * UInt8\n  * Uint16\n  * UInt32\n  * UInt64\n  * UIntptr\n  * Byte\n  * Rune\n  * Float32\n  * Float64\n  * Complex64\n  * Complex128\n\n### 4. Strings\n  * \\\\'\n  * \\\\\"\n  * \\\\\\\n  * \\n\n  * \\r\n  * \\t\n  * \\b\n  * \\ooo\n  * \\xhhh\n  * Subscripting (Indexing)\n  * Slicing\n  * Sprintf\n  * Sscanf\n  * Fscanf\n  * Scanf\n\n### 5. List\n  * `New()`\n  * `Init()`\n  * `Back()`\n  * `Front()`\n  * `InsertAfter()`\n  * `Len()`\n  * `MoveAfter()`\n  * `MoveBefore()`\n  * `MoveToBack()`\n  * `PushBack()`\n  * `PushBackList()`\n  * `PushFront()`\n  * `PushFrontList()`\n  * `Remove()`\n\n### 6. Array\n  * `Len()`\n\n### 7. Slice\n  * `Len()`\n  * `cap()`\n  * `copy()`\n  * `make()`\n  * `append()`\n\n### 8. Structs\n  * Attributes\n  * Methods\n  * Composition\n\n### 9. Statements\n  * import\n  * package\n  * if\n  * else if\n  * else\n  * for\n  * return\n  * defer\n  * break\n  * goto\n  * continue\n  * func\n  * const\n\n### 10. Basic Functions\n  * `print()`\n  * `println()`\n  * `type()`\n  * `error()`\n  * `new()`\n  * `panic()`\n  * `close()`\n  * `recover()`\n\n### 11. Effective Go Style Guide\n  * Format code according to Effective Go page on goland.org\n\n### 11. Tasks\n  * Create variables\n  * Cast variables\n  * Utilize Nested loops\n  * Import packages\n  * Read and write to a file\n  * Create Functions\n  * Function recursion\n  * Create a struct with attributes and methods\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frootkit-org%2Fgo-certification-roadmap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frootkit-org%2Fgo-certification-roadmap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frootkit-org%2Fgo-certification-roadmap/lists"}