🔥 Burn Fat Fast. Discover How! 💪

Go

Logo of telegram channel golang — Go G
Logo of telegram channel golang — Go
Channel address: @golang
Categories: Technologies
Language: English
Subscribers: 18.26K
Description from channel

// admin @denniselite
go func() { channel <- news }()
news := <-channel
fmt.Sprintf("%s", news)

Ratings & Reviews

1.67

3 reviews

Reviews can be left only by registered users. All reviews are moderated by admins.

5 stars

0

4 stars

0

3 stars

0

2 stars

2

1 stars

1


The latest Messages 5

2020-08-06 02:44:18
Let's build a Full-Text Search engine in Go

Full-Text Search (FTS) is a technique for searching text in a collection of documents. A document can refer to a web page, a newspaper article, an email message, or any structured text.

Today we are going to build our own FTS engine. By the end of this post, we'll be able to search across millions of documents in less than a millisecond. We'll start with simple search queries like "give me all documents that contain the word cat" and we'll extend the engine to support more sophisticated boolean queries.

https://artem.krylysov.com/blog/2020/07/28/lets-build-a-full-text-search-engine/
23.9K views23:44
Open / Comment
2020-07-20 01:06:58 That’s fantastic! An example of using Go to build something that works in the browser by way of WebAssembly
https://dstoiko.github.io/posts/go-pong-wasm/
15.7K viewsedited  22:06
Open / Comment
2020-06-17 20:21:25 Wow, after almost a year of silence a new info about generics in Go comes up officially the update brings to us:
- a new, updated design draft;
- an experimental tool to try generics from the draft by yourself;
- and a few lines about what’s going to happen next.

Here I’d like to post a quote from the post and then allow you to read the rest by the link below.

>>>
Introduction
It’s been almost a year since we last wrote about the possibility of adding generics to Go. It’s time for an update.

Updated design
We’ve been continuing to refine the generics design draft. We’ve written a type checker for it: a program that can parse Go code that uses generics as described in the design draft and report any type errors. We’ve written example code. And we’ve collected feedback from many, many people—thanks for providing it!

Based on what we’ve learned, we’re releasing an updated design draft. The biggest change is that we are dropping the idea of contracts. The difference between contracts and interface types was confusing, so we’re eliminating that difference. Type parameters are now constrained by interface types. Interface types are now permitted to include type lists, though only when used as constraints; in the previous design draft type lists were a feature of contracts. More complex cases will use a parameterized interface type.

We hope that people will find this design draft simpler and easier to understand.

https://blog.golang.org/generics-next-step
19.4K views17:21
Open / Comment
2020-05-29 12:01:26 Hello, everyone It’s announcement time

GoWayFest 4.0 - the 4th edition of the conference fully dedicated to Go - will be held online on July 11-12 and will bring together gophers and Go-fans from all over the globe.

This year’s speakers team is full of Go-stars:
Dave Cheney will share a secret how the names we give to things can affect the maintainability of the software;
Ellen Körbes will help you to speed up your “from code change to process running” benchmark for Go applications;
Iskander Sharipov with several topics about implementation an efficient VM in GO;
Mat Ryer, Andrii Soldatenko and other speakers on the website.
Lineup will be updated - subscribe not to miss the news https://goway.io/#speakers

Check out online perks:
more great speakers with talks and Q&A in virtual rooms;
networking with go-programmers from different countries;
any talk in any track on-demand whenever you want;
no last row seats;
much cheaper tickets;
no borders, no visas, no travel arrangements;
and more cool stuff and opportunities.
Subscribe not to miss the news https://goway.io/.

Get your ticket for 70 $ till June 29 - then the price will go up.
Use the promocode GOWAYtoGO and get your ticket with 15% off.
Join us for days full of Go and networking https://goway.io/#tickets
14.4K views09:01
Open / Comment
2020-04-29 22:14:16
“How We Created a Realtime Patient Monitoring System With Go and Vue in 3 days”

The risk of handling a Covid-19 ward

The deadly virus can infect you with a very small mistake. As healthcare workers, our frontline has to wander around the isolation wards to check vital signs of a patient from time to time. This task involves disposing of the protective gear after a visit. All just to check some reading on a device.

A request from health authorities reached us to develop a remote monitoring system for isolation wards. There are expensive softwares to remotely monitor them. But Sri Lanka might not be that rich to spend such amount of money.

https://kasvith.me/posts/how-we-created-a-realtime-patient-monitoring-system-with-go-and-vue/
15.9K viewsedited  19:14
Open / Comment
2020-03-30 17:08:17 Good day for everyone I kinda missed the news for a bit, but no worries, here we are: a new interesting post comes up recently from Go dev team, check it out:

A new Go API for Protocol Buffers
Joe Tsai, Damien Neil, and Herbie Ong

Introduction: We are pleased to announce the release of a major revision of the Go API for protocol buffers, Google's language-neutral data interchange format.
https://blog.golang.org/protobuf-apiv2
15.9K views14:08
Open / Comment
2020-02-12 10:57:48


What’s happened to Go since Go 1.12 and what’s coming up for Go 1.14? Francesc Campoy and Maartje Eyskens took 25 minutes at last week’s FOSDEM event to bring us all up to speed.
Slides are here if you're not up for the video
https://speakerdeck.com/campoy/the-state-of-go-2020
18.7K views07:57
Open / Comment
2020-02-05 10:29:41 A lot of people are using validator.Validate for struct fields validation in Go. But how about to write your own custom validation rules? Check this article out:
https://medium.com/swlh/custom-struct-field-tags-and-validation-in-golang-9a7aeedcdc5b
16.1K views07:29
Open / Comment
2020-02-02 12:54:47 In case you're still not using Go interfaces or you're curious how they could be applied, check this small post out:
https://medium.com/better-programming/a-real-world-example-of-go-interfaces-98e89b2ddb67
(Only 2 mins read)
13.8K views09:54
Open / Comment
2020-01-29 10:15:19 An overview and first impressions of Go made by an advanced JS engineer

>> As an advanced JavaScript developer, The more I work with JavaScript the more I understand the advantages of a statically typed language.

JavaScript is fascinating but sometimes you want to try something else and broaden your horizon.

This article will be a brain dump of all I’ve learned so far about Google’s Go language (I will update it as I go, pun intended).

I assume you have installed the Go binaries on your computer.

https://itnext.io/googles-go-essentials-for-node-js-javascript-developers-6d71f08d2531
13.6K views07:15
Open / Comment