Skip to content

Commit

Permalink
✨ feat: add go introduction
Browse files Browse the repository at this point in the history
  • Loading branch information
ShAlireza committed Apr 13, 2024
1 parent 087a222 commit 4016602
Showing 1 changed file with 29 additions and 24 deletions.
53 changes: 29 additions & 24 deletions hugo-blog/content/docs/roadmap/programming-language/go/_index.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,31 @@
# 3rd Level of Menu
# Go

Nefas discordemque domino montes numen tum humili nexilibusque exit, Iove. Quae
miror esse, scelerisque Melaneus viribus. Miseri laurus. Hoc est proposita me
ante aliquid, aura inponere candidioribus quidque accendit bella, sumpta.
Intravit quam erat figentem hunc, motus de fontes parvo tempestate.
## Introduction
Go, also known as Golang, is a programming language created at Google. Go is designed to be simple, efficient, and readable.
It is a statically typed, compiled language known for its straightforward syntax and performance that rivals C and C++.
One of Go's defining features is its built-in support for concurrent programming, enabling the development of applications that can perform multiple operations simultaneously.
This is facilitated by Go's goroutines and channels, which make concurrent and parallel programming more accessible and safer.

iscsi_virus = pitch(json_in_on(eupViral),
northbridge_services_troubleshooting, personal(
firmware_rw.trash_rw_crm.device(interactive_gopher_personal,
software, -1), megabit, ergonomicsSoftware(cmyk_usb_panel,
mips_whitelist_duplex, cpa)));
if (5) {
managementNetwork += dma - boolean;
kilohertz_token = 2;
honeypot_affiliate_ergonomics = fiber;
}
mouseNorthbridge = byte(nybble_xmp_modem.horse_subnet(
analogThroughputService * graphicPoint, drop(daw_bit, dnsIntranet),
gateway_ospf), repository.domain_key.mouse(serverData(fileNetwork,
trim_duplex_file), cellTapeDirect, token_tooltip_mashup(
ripcordingMashup)));
module_it = honeypot_driver(client_cold_dvr(593902, ripping_frequency) +
coreLog.joystick(componentUdpLink), windows_expansion_touchscreen);
bashGigabit.external.reality(2, server_hardware_codec.flops.ebookSampling(
ciscNavigationBacklink, table + cleanDriver), indexProtocolIsp);
In data engineering, Go is appreciated for its efficiency in building scalable network servers and data pipelines.
Its performance is critical in processing large volumes of data quickly, and its concurrency model is particularly advantageous for developing services that require high throughput and low latency.
Go's standard library includes robust support for network and I/O operations, making it suitable for tasks like developing web servers, data ingestion services, and real-time data processing systems that are foundational in modern data architectures.

The growing ecosystem around Go includes several tools and libraries specifically geared towards data manipulation and pipeline construction, such as Go-ETL for pipeline frameworks, and GoSQL, which interacts with SQL databases.
Its compiled nature and efficiency in managing dependencies make Go an excellent choice for containerized applications and microservices, which are increasingly popular in cloud-native data engineering environments.
This combination of performance, simplicity, and powerful concurrency handling makes Go a valuable tool in the data engineer's toolkit for building high-performance data processing applications.

## Learning Resources

### Books
- [Learning Go](https://www.amazon.ca/Learning-Go-Idiomatic-Real-World-Programming/dp/1492077216)
- [Go Programming Language](https://www.amazon.ca/Go-Programming-Language-Alan-Donovan/dp/0134190440)

### Courses
- [Go Programming – Golang Course](https://www.youtube.com/watch?v=un6ZyFkqFKo)
- [Golang Tutorial for Beginners](https://www.youtube.com/watch?v=yyUHQIec83I)
- [Learn Go Programming by Building 11 Projects](https://www.youtube.com/watch?v=jFfo23yIWac)

### Miscellaneous
- [A Tour of Go](https://go.dev/tour/welcome/1)
- [Go by Example](https://gobyexample.com/)
- [Effective Go](https://go.dev/doc/effective_go)

0 comments on commit 4016602

Please sign in to comment.