4129 links
740 private links
  • Doo's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
  • ► Jouer les vidéos
Links per page: 20 50 100
13 results tagged golang x
  • thumbnail
    https://github.com/go-survey/survey

    via blue

    June 6, 2023 12:20:54 AM GMT+02:00 * - permalink -
    QRCode
    - https://github.com/go-survey/survey
    librairie golang prompt
  • Go by Example: Range
        for _, num := range nums {
            sum += num
        }
    September 15, 2022 04:30:48 PM GMT+02:00 * - permalink -
    QRCode
    - https://gobyexample.com/range#:~:text=for%20_%2C%20num%20%3A%3D%20range%20nums%20%7B%0A%20%20%20%20%20%20%20%20sum%20%2B%3D%20num%0A%20%20%20%20%7D
    golang
  • thumbnail
    Apprendre le langage Go en 2020 🤔 - Jean-Baptiste Le Duigou - Medium
    January 17, 2020 03:28:33 PM GMT+01:00 * - permalink -
    QRCode
    - https://medium.com/@jb.leduigou/apprendre-le-langage-go-en-2020-1ad43ecaccb
    golang tuto tutorial tutoriel
  • Golang interfaces, a pragmatic explanation for the programmer | iMil.net
    January 19, 2019 11:44:29 AM GMT+01:00 * - permalink -
    QRCode
    - https://imil.net/blog/2018/12/09/Golang-interfaces-a-pragmatic-explanation-for-the-programmer/
    golang interfaces
  • Understanding interfaces : golang
    December 11, 2017 01:10:00 PM GMT+01:00 * - permalink -
    QRCode
    - https://www.reddit.com/r/golang/comments/3asw5u/understanding_interfaces/
    golang
  • Interfaces in Python: Protocols and ABCs · Abu Ashraf Masnun

    la version python pour comparer

    December 10, 2017 06:03:38 PM GMT+01:00 * - permalink -
    QRCode
    - http://masnun.rocks/2017/04/15/interfaces-in-python-protocols-and-abcs/
    interfaces python golang
  • Intro++ to Go Interfaces · npf.io

    Les interfaces en go c'est vraiment pas simple ... Pour citer l'article :

    Go’s interfaces are one of it’s best features, but they’re also one of the most confusing for newbies.

    mais l'exemple est assez parlant :

    type Walker interface {
        Walk(miles int)
    }
    
    type Camel struct {
        Name string
    }
    
    func (c Camel) Walk(miles int) {
         fmt.Printf(“%s is walking %v miles\n”, c.Name, miles)
    }
    
    func LongWalk(w Walker) {
         w.Walk(500)
         w.Walk(500)
    }
    
    func main() {
        c := Camel{“Bill”}
        LongWalk(c)
    }
    
    // prints
    // Bill is walking 500 miles.
    // Bill is walking 500 miles.
    December 10, 2017 05:59:11 PM GMT+01:00 * - permalink -
    QRCode
    - https://npf.io/2014/05/intro-to-go-interfaces/
    golang go interfaces
  • thumbnail
    Binky Pointer Fun Video C (High Quality 640x560) - YouTube
    December 5, 2017 02:36:00 PM GMT+01:00 * - permalink -
    QRCode
    - https://www.youtube.com/watch?v=5VnDaHBi8dM
    pointeurs golang go
  • Golang Summaries * Blog
    January 31, 2017 04:24:15 PM GMT+01:00 * - permalink -
    QRCode
    - http://www.tapirgames.com/blog/golang-summaries
    golang
  • Go by Example: Goroutines

    Un très bon example ELI5 de goroutines, c'est plus simple de l'expliquer sans channel en fait ... enfin c'est plus simple de le comprendre :D

    July 15, 2015 05:03:12 PM GMT+02:00 * - permalink -
    QRCode
    - https://gobyexample.com/goroutines
    golang go
  • How To Ensure a Type Implements an Interface (golang)

    Une page qui explique très bien ce qu'est une interface !

    July 15, 2015 04:52:15 PM GMT+02:00 * - permalink -
    QRCode
    - https://splice.com/blog/golang-verify-type-implements-interface-compile-time/
    golang go
  • http://learnxinyminutes.com/docs/files/learngo.go

    Un fucking fichier qui permet d'apprendre go assez rapidement :) so far so clear, en français en plus. Ca va me faciliter la vie tout ça

    July 14, 2015 02:39:56 PM GMT+02:00 * - permalink -
    QRCode
    - http://learnxinyminutes.com/docs/files/learngo.go
    golang go
  • thumbnail
    avelino/awesome-go

    Un repo github qui liste tous les softs bien foutu en golang

    May 28, 2015 09:53:13 AM GMT+02:00 * - permalink -
    QRCode
    - https://github.com/avelino/awesome-go
    golang
Links per page: 20 50 100
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation