Fernando Luis Gomes Guilherme

Fernando Luis Gomes Guilherme (born January 6, 1988 in Fortaleza[1]), is a Brazilian footballer, who currently plays for Mogi Mirim Esporte Clube.

Fernando
Personal information
Full name Fernando Luis Gomes Guilherme
Date of birth (1988-01-06) January 6, 1988
Place of birth Fortaleza, Brazil
Height 1.77 m (5 ft 9 12 in)
Playing position(s) Midfielder
Club information
Current team
Mogi Mirim
Youth career
2004–2006 Internacional
Senior career*
Years Team Apps (Gls)
2007 Internacional 5 (1)
2008Vitória (Loan) 11 (0)
2009 Fortaleza 16 (0)
2009–2010 Treze 4 (0)
2011 Botafogo-SP
2011– Mogi Mirim
2011América-RN (Loan)
* Senior club appearances and goals counted for the domestic league only

Notes

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.
gollark: It does not avoid those. You just reimplement them oddly.


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