golang code

https://www.geeksforgeeks.org/minimum-number-of-bottles-required-to-fill-k-glasses/Given N glasses having water, and a list A of each of their capacity. The task is to find the minimum number of bottles required to fill out exactly K…

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…

php kötü yanları

BU YAZI BİTMEMİŞ YAZIDIR….kimisi liseyi terk eder kimisi üniversiteyi kimi sevgilisini ben ise php yi terk ettim en son php ile çalıştığım yer davutpaşa teknopark da bir firmaydı yaptıkları yazılımın mimarisi…

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

golang ubuntu install

https://fabianlee.org/2018/05/09/golang-installing-the-go-programming-language-on-ubuntu-16-04/https://tecadmin.net/install-go-on-ubuntu/https://www.digitalocean.com/community/tutorials/how-to-install-go-on-ubuntu-18-04https://hurriyetlabs.com/visual-studio-code-ile-5-dakika-da-golang-geli%C5%9Ftirme-ortam%C4%B1-5e3ace9e404anice tuthttps://ewanvalentine.io/microservices-in-golang-part-1/https://kylewbanks.com/blog/tutorial-opengl-with-golang-part-1-hello-opengl

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 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/