About 12,900,000 results
Open links in new tab
  1. go - What is the meaning of '*' and '&'? - Stack Overflow

    Golang does not allow pointer-arithmetic (arrays do not decay to pointers) and insecure casting. All downcasts will be checked using the runtime-type of the variable and either panic or return false as …

  2. What is the difference between []string and ...string in golang?

    Oct 16, 2012 · @StephenWeinberg: Yes, my "nothing really" answer to the "what's the difference" quote is answering the question that was asked about the difference between the slice generated by the …

  3. How to set up HTTPS on golang web server? - Stack Overflow

    Oct 28, 2017 · Here is my finding and I would like to share because it took me a few hours as all available installation guides were for Nginx and Apache HTTP configurations, not for the Golang …

  4. 想系统学习GO语言 (Golang),能推荐几本靠谱的书吗? - 知乎

    二、《8小时转职Golang工程师》 文章正文: 8小时转职Golang工程师 · 语雀 简介:《8小时转职Golang工程师》偏入门级,主要是针对后端想快速低成本掌握Golang开发人群学习,如您已经掌 …

  5. How to compare if two structs, slices or maps are equal?

    I want to check if two structs, slices and maps are equal. But I'm running into problems with the following code. See my comments at the relevant lines. package main import ( "fmt" "refl...

  6. What is the idiomatic Go equivalent of C's ternary operator?

    Nov 14, 2013 · 8 As others have noted, golang does not have a ternary operator or any equivalent. This is a deliberate decision thought to improve readability.

  7. What are conventions for filenames in Go? - Stack Overflow

    I could find the conventions for naming packages in Go: no underscore between words, everything lowercase. Does this convention apply to the filenames too? Do you also put one struct in one file ...

  8. How to decode a JWT token in Go? - Stack Overflow

    As of June 2021 there is a community fork golang-jwt/jwt, officially blessed by Dave Grijalva, the original author. This also means that the library import path has changed. Note that the current major version …

  9. How to do a https request with bad certificate? - Stack Overflow

    this is not a "bad certificate" it's a certificate with a different CN. InsecureSkipVerify is not a legitimate use here. You must set ServerName in the tls.Config to match what you are trying to connect to. This …

  10. How to import local packages in go? - Stack Overflow

    Feb 18, 2016 · I'm not trying to make a philosophical statement, I'm literally saying all imports happen in your local filesystem; there is never any difference whether they originate from a remote repo or not. …