{"id":13895060,"url":"https://github.com/kudoabhijeet/LetsGO","last_synced_at":"2025-07-17T10:32:22.979Z","repository":{"id":112180959,"uuid":"237806531","full_name":"kudoabhijeet/LetsGO","owner":"kudoabhijeet","description":"Go is an open-source programming language designed for building simple, fast, and reliable software. This repository contains the basics of Go. ","archived":false,"fork":false,"pushed_at":"2020-07-28T06:53:16.000Z","size":89,"stargazers_count":7,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-04-16T00:56:32.189Z","etag":null,"topics":["go","golang","google","gopher","letsgo"],"latest_commit_sha":null,"homepage":"","language":"Go","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/kudoabhijeet.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}},"created_at":"2020-02-02T17:15:48.000Z","updated_at":"2020-09-09T08:08:36.000Z","dependencies_parsed_at":"2023-05-11T01:30:25.888Z","dependency_job_id":null,"html_url":"https://github.com/kudoabhijeet/LetsGO","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kudoabhijeet%2FLetsGO","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kudoabhijeet%2FLetsGO/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kudoabhijeet%2FLetsGO/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kudoabhijeet%2FLetsGO/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kudoabhijeet","download_url":"https://codeload.github.com/kudoabhijeet/LetsGO/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":226255303,"owners_count":17595859,"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","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":["go","golang","google","gopher","letsgo"],"created_at":"2024-08-06T18:01:57.916Z","updated_at":"2024-11-25T00:30:44.322Z","avatar_url":"https://github.com/kudoabhijeet.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"# LetsGO!\n\u003c!-- PROJECT LOGO --\u003e\n\u003cbr /\u003e\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/kudoabhijeet/LetsGO\"\u003e\n    \u003cimg src=\"assets/logo.png\" alt=\"\" width=\"80\" height=\"80\"\u003e\n  \u003c/a\u003e\n\n  \u003ch3 align=\"center\"\u003eGO Programming Language!\u003c/h3\u003e\n\n  \u003cp align=\"center\"\u003e\n   Getting Started with GO!\n    \u003cbr /\u003e\n    \u003ca href=https://golang.org/doc\u003e\u003cstrong\u003eGO Documentation »\u003c/strong\u003e\u003c/a\u003e\n    \u003cbr /\u003e\n  \u003c/p\u003e\n\u003c/p\u003e\n\nThis repository will keep track of my GO learning experience. The entire phase is divided into 4 Weeks.\nIt will include my personal notes as well as Documentation snippets provided by the GO Community.\nFollow along of you want to get started with Go. \n\n## Contents \n### Week 1:\n1. ####  Why GO?\n  - Fast-paving compilation and execution\n  - Do away with the need of working with different subsets of languages for one project.\n  - A boost to code readability and documentation\n  - Offering a thoroughly consistent language\n  - Facilitating easy versioning of the program\n  - Allowing developing with multiple languages\n  - Allowing easier maintenance of dependencies\n2. #### GO vs. other High Level Languages.\n3. ####  Advantages of GO!\n  - [x] Concurrency Support\n    - Management of multiple tasks at the same time. \n    - Solves the problems in Parallelism (i.e : Conflict in Memory, Dependent tasks, When do tasks start and stop etc. )\n  - [x] Garbage Collection\n    - Automatic memory management. \n    - Gives a ton of control over memory allocation. \n    - Reduces latency to 1ms. Uses algorithm of Tricolor Mark \u0026 Sweep.\n  - [x] Simplicity\n    - Very small language specs. \n    - [Tutorials and Docs](https://tour.golang.org/welcome/1)\n  - [x] Scalability\n    - Need of the hour with growing Applications.\n    - Features such as Concurrency, Goroutines, Channels help in improving Scalability.\n    \n4. #### Setting up Develepment Environment.\n  - [x] Download [Go Installer](https://golang.org/dl/)\n  - [x] Verify GOPATH\n### Week 2:\n  - [x] Writing our first GoLang Program, i.e \"Hello World\".\n  - [x] Variables\n  - [x] Variables Initialization\n  - [x] Pointers \n  - [x] Variable Scope\n  - [x] Deallocating Memory\n  - [x] Garbage Collection\n  - [x] Comments, Printing\n  - [x] Data Types : int, float, strings\n  - [x] String Packages\n  - [x] Control Flow, Scan()\n  - [x] Assignment\n  \n  ### Week 3 :\n  - [x] Arrays\n  - [x] Slices\n  - [x] Hashtables\n  - [x] Maps\n  - [x] Structs\n  - [x] Assignment\n  \n  ### Week 4 :\n  - [x] RFC\n  - [x] JSON\n  - [x] File Access - IOUtil \n  - [x] File Access - OS \n  \n  \n  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkudoabhijeet%2FLetsGO","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkudoabhijeet%2FLetsGO","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkudoabhijeet%2FLetsGO/lists"}