Sevdiğim go projeleri

https://docs.gitea.io/en-us/https://github.com/oxequa/realize#config-sampleDOCKER bunu upload ın silmesinde kullanablirm yada api işlerinde https://github.com/avelino/awesome-go#job-scheduler

Golang tutorials web site

https://go101.org/article/101.htmlhttps://softwaredevvideos.tumblr.com/go clean code https://github.com/Pungyeon/clean-go-article Tour of GoHow to Write Go CodeEffective Go—-Notes on the book Clean Code - A Handbook of Agile Software Craftsmanship by Robert C. Martinhttps://github.com/jbarroso/clean-code#error-handling—–

golang Numeric Conversions

Atoi (string to int) i, err := strconv.Atoi(“-42”)——————————- Itoa (int to string). s := strconv.Itoa(-42)  ———————int64 to stringstr:= strconv.FormatInt(int64(165), 10)——————————- uint64 to string lastID := strconv.FormatUint(uint64(5656556666), 10) ——————————–string to  uint64 catID, _ := strconv.ParseUint(“string”, 10, 64)interface…

go books

https://thewhitetulip.gitbooks.io/webapp-with-golang-anti-textbook/content/manuscript/02.5ObjectOriented.html

React.js Notes

https://react.semantic-ui.com/views/advertisement/https://levelup.gitconnected.com/build-a-todo-app-in-golang-mongodb-and-react-e1357b4690a6https://coreui.io/react/demo/3.0.1/#/buttons/button-groups

GOPHER AŞKI

kimse bizim gopher aşkımızı sorgulamaya kalkmasın, golang da severiz gopher da, gelengi de 

my gopher

Gopher is one of the go programmer mascots. And finally he became a gopher in meTRGopher,  go programcısı maskotlarından biridir. Ve sonunda benimde bir gopher ım  oldu

Install Golang on Raspberry Pi

———————————–1.9.2———————————wget https://storage.googleapis.com/golang/ go1.9.2.linux-armv6l.tar.gz tar -C /usr/local -xzf go1.9.2.linux-armv6l.tar.gz export PATH=$PATH:/usr/local/go/bin————————-1.8———————————–wget https://storage.googleapis.com/golang/go1.8.linux-armv6l.tar.gz tar -C /usr/local -xzf go1.8.linux-armv6l.tar.gz export PATH=$PATH:/usr/local/go/binCompiler (Examples)  your file   -> stnc.goTerminal write  mkdir -p $GOPATH/src/stnc cd $GOPATH/src/stnc go get go…

Golang pointers (İşaretçiler)

https://gobyexample.com/pointersc ve c++ ile uğraşmıssanız işaretciler konusu çok zor bir konu gibi görünebilir, ama bu konuyu öğrenmek için çok sayıda yazı ve blog okursanız ve denemeler yaparsanız öyle korkulacak birşey…

golang Method receivers

güzel örnek Türkçeye çevrilecekhttps://nathanleclaire.com/blog/2014/08/09/dont-get-bitten-by-pointer-vs-non-pointer-method-receivers-in-golang/