{"id":18801034,"url":"https://github.com/mandliya/go_journey","last_synced_at":"2025-09-19T20:21:43.718Z","repository":{"id":79099842,"uuid":"42634752","full_name":"mandliya/go_journey","owner":"mandliya","description":"My journey of learning go language.","archived":false,"fork":false,"pushed_at":"2017-12-30T09:21:29.000Z","size":30,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-29T06:54:24.217Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","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/mandliya.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2015-09-17T04:23:52.000Z","updated_at":"2023-05-04T11:45:20.000Z","dependencies_parsed_at":"2023-03-12T06:38:35.654Z","dependency_job_id":null,"html_url":"https://github.com/mandliya/go_journey","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mandliya/go_journey","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mandliya%2Fgo_journey","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mandliya%2Fgo_journey/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mandliya%2Fgo_journey/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mandliya%2Fgo_journey/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mandliya","download_url":"https://codeload.github.com/mandliya/go_journey/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mandliya%2Fgo_journey/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275997351,"owners_count":25567378,"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","status":"online","status_checked_at":"2025-09-19T02:00:09.700Z","response_time":108,"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":[],"created_at":"2024-11-07T22:21:45.305Z","updated_at":"2025-09-19T20:21:43.708Z","avatar_url":"https://github.com/mandliya.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"## go_journey\nMy journey of learning go programming language. This repository will document my progress in learning \"Go\" programming language.\n\n### So far\n\n## [A tour of Go](https://tour.golang.org)\n  - [Hello World](tour_of_go/hello-world/hello-world.go)\n  - [Go Playground-Show current time](tour_of_go/show-time/showTime.go)\n  - [Packages- A random int](tour_of_go/math-random/math-random.go)\n  - [Import](tour_of_go/math-next-after/next-after.go)\n  - [Exported-names](tour_of_go/name-export/name-export.go)\n  - [Functions](tour_of_go/function/add.go)\n  - [Functions continued](tour_of_go/function2/multiply.go)\n  - [Multiple results](tour_of_go/multiple-returns/multiple-results.go)\n  - [Named return value](tour_of_go/named-return-value/named-return.go)\n  - [Variables](tour_of_go/variables/variables.go)\n  - [Variables with initializer](tour_of_go/variable-initializer/variable-initializer.go)\n  - [Short declaration](tour_of_go/short-declaration/short-declaration.go)\n  - [Basic types](tour_of_go/basic-types/basic-types.go)\n  - [Type conversion](tour_of_go/type-conversion/type-conversion.go)\n  - [Type inference](tour_of_go/type-inference/type-inference.go)\n  - [Constants](tour_of_go/constants/constants.go)\n  - [For loop](tour_of_go/forLoop/forLoop.go)\n  - [If else](tour_of_go/if-else/if-else.go)\n  - [If with a short statement](tour_of_go/short-if/short-if.go)\n  - [If Else with a short statement](tour_of_go/if-else-short/if-else-short.go)\n  - [Exercise - Loops and Functions](tour_of_go/exercise-loops-and-functions)\n  - [Using switch](tour_of_go/switch/osType.go)\n  - [Switch with evaluation order](tour_of_go/switch-evaluation-order/switch-order.go)\n  - [Switch with no condition](tour_of_go/switch-with-no-condition/switch-with-no-condition.go)\n  - [Defer](tour_of_go/defer/defer.go)\n  - [Defer-last in first out](tour_of_go/defer-last-in-first-out/defer-last-in-first-out.go)\n  - [Pointers in Go](tour_of_go/pointers/pointers.go)\n  - [Structs in Go](tour_of_go/struct/struct.go)\n  - [Pointer to struct](tour_of_go/pointer-to-struct/pointer-to-struct.go)\n  - [Struct literals](tour_of_go/struct-literals/struct-literals.go)\n  - [Arrays](tour_of_go/arrays/arrays.go)\n  - [Array slices](tour_of_go/array-slices/array-slices.go)\n  - [Slicing slices](tour_of_go/slicing-slices/slicing-slices.go)\n  - [Making slices](tour_of_go/making-slices/making-slices.go)\n  - [Nil slice](tour_of_go/nil-slice/nil-slice.go)\n  - [Adding elements to slice](tour_of_go/append/append.go)\n  - [Range](tour_of_go/range/range.go)\n  - [Exercise slices](tour_of_go/exercise-slices/exercise-slices.go)\n  - [Maps in Go](tour_of_go/maps/maps.go)\n  - [Map literals](tour_of_go/map-literals/map-literals.go)\n  - [Mutating Maps](tour_of_go/mutating-maps/mutating-maps.go)\n  - [Exercise on Maps](tour_of_go/exercise-maps/exercise-maps.go)\n  - [Function values](tour_of_go/function-values/function-values.go)\n  - [Function closures](tour_of_go/function-closure/function-closure.go)\n  - [Exercise on Function closures](tour_of_go/fibonacci_closure/fibonacci_closure.go)\n  - [Methods](tour_of_go/methods/methods.go)\n  - [Methods on any types](tour_of_go/methods-on-any-type/methods-on-any-type.go)\n  - [Methods with pointer receivers](tour_of_go/methods-pointer-recv/methods-pointer-recv.go)\n  - [Interfaces](tour_of_go/interfaces/interfaces.go)\n  - [Interfaces are satisfied implicitly](tour_of_go/interface-implicitly-satisfied/interface-implicitly-satisfied.go)\n  - [Stringers](tour_of_go/stringer-interface/stringer-interface.go)\n  - [Exercise : Stringers](tour_of_go/exercise-Stringers/exercise-Stringers.go)\n  - [Errors](tour_of_go/errors/errors.go)\n  - [Exercise-Errors](tour_of_go/exercise-errors/exercise-errors.go)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmandliya%2Fgo_journey","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmandliya%2Fgo_journey","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmandliya%2Fgo_journey/lists"}