go
golang-developer-roadmap
go | golang-developer-roadmap | |
---|---|---|
2,274 | 9 | |
128,440 | 18,218 | |
0.7% | 0.6% | |
10.0 | 0.0 | |
7 days ago | over 2 years ago | |
Go | ||
BSD 3-clause "New" or "Revised" License | - |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
go
- Green Tea Garbage Collector
-
Why I'm excited about Go for agents
> Lack of proper enums is hurting so much I can't describe it.
Do you mean sum types? Its enums function just pretty much like enums in every single other language under the sun. If anything, Go enums are more advanced than most languages, allowing things like bit shifts. But at the heart of it all, it's all just the same. Here are enum implementations in both Go and Rust:
[Go] https://github.com/golang/go/blob/f18d046568496dd331657df4ba...
[Rust] https://github.com/rust-lang/rust/blob/40daf23eeb711dadf140b...
While Go leans on the enumerator value produced by `range`, while Rust performs explicit incrementing, the outcome is no different — just plain [n=0, n++].
-
Too Many Open Files
This is one of the many things where Go just takes care of automatically. Since Go 1.19, if you import the os package, on startup, the open file soft limit will be raised to the hard limit: https://github.com/golang/go/commit/8427429c592588af8c49522c...
-
sync.Cond in Go: Efficient Goroutine Signaling Without Channels
For a deeper dive, check out the source code for sync.Cond.
-
Syntactic Support for Error Handling
> But is know that the current way of Go (that is a insignificant improvement over the C way) sucks and ANY of the other ways are truly better […]
This is a bold statement for something so subjective. I'll note that the proposal to leave the status quo as-is is probably one of the most favorably voted Go proposals of all time: https://github.com/golang/go/issues/32825
Go language design is not a popularity contest or democracy (if nothing else because it is not clear who would get a vote). But you won't find any other proposal with thousands of emoji votes, 90% of which are in favor.
I get the criticism and I agree with it to a degree. But boldly stating that criticism as objective and universal is uninformed.
- Go green tea experimental garbage collector
-
Understanding the Go Scheduler
Relevant proposal to make GOMAXPROCS cgroup-aware: https://github.com/golang/go/issues/73193
- Pkg.go.dev Is Down
-
Tracking Postgres "fsyncs" with bpftrace
The script for making the fsync call is written in Golang here
- Too Much Go Misdirection
golang-developer-roadmap
-
Web api with golang
I have found this road map kind of summarized frameworks and tools but I am not sure if it's up to date https://github.com/Alikhll/golang-developer-roadmap
-
The Dearth of golang content on youtube
Golang tutorial: Table Of Contentshttps://golangbot.com/learn-golang-series/https://quii.gitbook.io/learn-go-with-tests/ - Learn Go by testshttps://gobyexample.com/https://tour.golang.org/https://github.com/Alikhll/golang-developer-roadmap
- Go Developer Roadmap
- Golang roadmap
-
Is this roadmap still viable?
Hey guys Im really new to golang.Learning some basics and willing to switch my whole career to golang. Im a junior frontend developer rn.And starting backend with Go.I was looking for some good structered roadmap and found this https://github.com/Alikhll/golang-developer-roadmap. Its from 2020. Should I still follow it?
-
Web Developer learning Golang
Roadmap: https://github.com/Alikhll/golang-developer-roadmap/blob/master/golang-developer-roadmap.png
-
TIL: Learning Go
Check out a proposal for a Go Developer Roadmap for learning Go in 2020
-
Do we have a golang roadmap?
Don't know if there's an official one but I'm following this roadmap Golang Roadmap
-
As experienced devs of Golang.... how do you guys think i should start from scratch to be industry ready go developer ? and from where also?
Here is a good perspective to be "industry ready". Remember you shouldn't be an expert in everything, but for a junior dev know at least the terms: https://github.com/Alikhll/golang-developer-roadmap
What are some alternatives?
zig - General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.
data-engineer-roadmap - Roadmap to becoming a data engineer in 2021
v - Simple, fast, safe, compiled language for developing maintainable software. Compiles itself in <1s with zero library dependencies. Supports automatic C => V translation. https://vlang.io
AspNetCore-Developer-Roadmap - Roadmap to becoming an ASP.NET Core developer in 2025
Nim - Nim is a statically typed compiled systems programming language. It combines successful concepts from mature languages like Python, Ada and Modula. Its design focuses on efficiency, expressiveness, and elegance (in that order of priority).
gobyexample - Go by Example