Pouet

Wake me up before you code Go!

go

Conversion de Types en Go

Comment convertir les types en Go

Issif

1 minutes

strconv.FormatInt(i int64, base int)

Itoa

strconv.Itoa(i int)
// Itoa is equivalent to FormatInt(int64(i), 10). 

string 🠮 int64

ParseInt

strconv.ParseInt(s string, base int, bitSize int)

Atoi

strconv.Atoi(s string)
// Atoi is equivalent to ParseInt(s, 10, 0), converted to type int. 

string 🠮 Time

Parse

time.Parse(layout, value string)

ParseInLocation

time.ParseInLocation(layout, value string, loc *Location)

Time 🠮 string

Pour le layout.

Décoder du base64 en Go

comment corriger "panic: illegal base64 data at input byte"

Issif

1 minutes

Je tentais de décoder la partie payload d’un token JWT (https://scotch.io/tutorials/the-anatomy-of-a-json-web-token) quand j’ai eu l’erreur suivante :

Posts récents

Voir plus

Catégories

A propos

Du Go, de l'AWS et autres par un SRE/FinOps