Advanced Search
Search Results
173 total results found
Projects
Go
Languages
Cours
Introduction
Qui a fait le Go ? Go (ou Golang) est un langage de programmation open source assez jeune. Il a été développé en 2007 par Robert Griesemer, Rob Pike et Ken Thompson qui travaillent aujourd'hui chez Google. Le langage Go est officiellement lancé en novembr...
C
Technos
Gin Framework
Gin est un framework web écrit en Go (Golang).
Les bases
Clean architecture Go Le playground https://play.golang.org/ Bonjour monde package main import "fmt" func main() { fmt.Println("Hello, World!") } Les types Langage fortement typé, avec possibilités de faire de l'inférence. On peut dé...
Docker
Introduction & Installation
Tests & Boucles
Les combinaisons et opérateurs booléens Comparaisons == != < > >= >= Opérateurs booléens && || ! If age := 10 if age > 10 { // something } Conditions alternatives age := 10 if age > 10 { // something } else if a > 5 { // s...
AI Projects
K3S
Tableaux
Tableaux à taille fixe Définition Simplement Un tableau à taille fixe est une séquence d'éléments d'une taille définie Tout est alloué d'un seul bloc ➡️ les cases sont contiguës en mémoire Le premier index démarre à 0. La taille est définitive, pour agr...
API Projects
Stacks
My favorites docker stacks
Les fonctions
func printInfoNoParam() { fmt.Printf("Name=%s, age=%d, email=%s\n", "Bob", 10, "bob@golang.org") } func printInfoParams(name string, age int, email string) { fmt.Printf("Name=%s, age=%d, email=%s\n", name, age, email) } func avg(x, y float64) float64 { re...
Behavior Driven Development Projects
Présentation
Présentation de l'application et ses fonctionnalités