Validação de CNPJ usando go lang package cnpj import ( "errors" "strconv" "strings" "regexp" ) func Valid(digits string) (bool, error) { return valid(digits) } func sanitize(data string) string
Dica de como extrair o conteúdo de uma string Base64 Gzip, usado para transferência de arquivos em WebServices. import ( "encoding/base64" "compress/gzip" "bytes" "os" "io ) // content - base64 gzip content // path - file path to save func ExtractAndSaveD
const ( stdLongMonth = "January" stdMonth = "Jan" stdNumMonth = "1" stdZeroMonth = "01" stdLongWeekDay = "Monday" stdWeekDay = "Mon" stdDay = "2"
Na URL de conexão com o ORM adicione (para local America/Sao_Paulo) user:password@/amo?charset=utf8&loc=America%2FSao_Paulo Com isso os valores paa os campos campos CreatedAt e UpdatedAt serão gravados corretamente. Também informe na inicialização do ORM orm.RegisterDriver(
Usando a função rune podemos pegar o substring de uma string se sem preocupar com caracteres especiais: Por exemplo str := "Verificar o nível de combustível do reservatório e, se necessário, complementar" r := []rune(str) fmt.Println(len(str)) // 83 fmt.Println(len(r)) // 79 fmt.Printl
import( "encoding/json" "encoding/hex" "crypto/sha1" "crypto/hmac" "strings" "fmt" ) func (this *PagarmeController) Postback() { apiKey := "my api key" &n
Use d := time.Now().Truncate(24*time.Hour) other := time.Now().Truncate(24*time.Hour) areEqual := other.Equal(d) Or d.Year() == other.Year() && d.YearDay() == other.YearDay()