Mamadi Berthe

Mamadi Berthe (born 17 January 1983) is a Malian- French footballer. As of 2003, he plays for Club Sportif Sedan Ardennes.

Mamadi Berthe
Personal information
Full name Mamadi Berthe
Date of birth (1983-01-17) 17 January 1983
Place of birth Nogent-sur-Marne, France
Height 1.80 m (5 ft 11 in)
Playing position(s) Forward
Senior career*
Years Team Apps (Gls)
1999–2003 AS Cannes 14 (1)
2003–2005 CS Sedan Ardennes 3 (1)
2004–2005 US Roye 8 (1)
2005–2006 UD Los Barrios
2006–2007 Ethnikos Assia
2008 Olympiakos Nicosia
* Senior club appearances and goals counted for the domestic league only and correct as of 16 January 2008

Career

Berthe was part of the Mali U-20 team who finish third in group stage of 2003 FIFA World Youth Championship.

He was part of the Malian 2004 Olympic football team, who exited in the quarter finals, finishing top of group A, but losing to Italy in the next round.

gollark: And it mutates some shared state.
gollark: As you can see, it has to explicitly manage a "waitgroup" for synchronization and whatnot.
gollark: ```go log.Println("Fetching feeds...") var feeds []*rss.Feed var wg sync.WaitGroup for _, source := range sources { wg.Add(1) src := source go func() { defer wg.Done() feed, err := rss.Fetch(src.String()) if err != nil { log.Printf("Error fetching %s: %s", src.String(), err.Error()) return } feeds = append(feeds, feed) log.Printf("Fetched %s", feed.Title) }() } wg.Wait()```So here is something which is meant to fetch a bunch of RSS feeds in parallel.
gollark: Somewhat? There doesn't seem to be a better way to do it.
gollark: Hold on, I worked on a tiny bit of Go code, I'll dredge some up as a sample.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.