Andreas Goller

Andreas Goller (born 15 March 1976 in Bolzano) is an Italian sports manager and football players' agent.[1]

Career

In winter season 2002/2003, the German multiple times World Champion and Olympic Medalist skier Martina Ertl became his first client in sports management field.[2]

In 2004, Andreas Goller became the personal manager of the all-time most successful Italian downhill skier Kristian Ghedina.[3] After the end of his skiing career Ghedina became an official race driver of BMW in touring car championships.

In 2006, Andreas Goller participated in a television commercial for the Japanese motor scooter Suzuki Burgman together with the Italian World Champion footballer and captain of FC Juventus Turin Alessandro Del Piero in a leading role.[4]

For the start of winter season 2007/2008, the Italian Ski Vice World Champion Peter Fill became the client of the sport management agency Flashlight,[5] founded, owned and managed by Andreas Goller.[6]

In 2008, the German specialized magazines in marketing communications “Werben & Verkaufen”[7] and “Kontakter”[8] announced that Andreas Goller’s FlashLight agency is responsible for the commercialization of Italians football World Champion and FC Bayern Munich striker Luca Toni.

For its client Fisker Automotive FlashLight coordinated a campaign wherein Denmark’s Crown Prince Frederik was the first person outside the development team to drive the new eco-friendly Fisker Karma at COP15 UN Climate Conference in Copenhagen.

In December 2009, Andreas Goller signed the Olympic Champion figure skater Evgeni Plushenko for international representation.

Notes

  1. https://www.dfb.de/uploads/media/DFB_Spielervermittler_online_161112.pdf%5B%5D
  2. "Archived copy". Archived from the original on 2011-07-11. Retrieved 2009-07-24.CS1 maint: archived copy as title (link)
  3. "Archived copy". Archived from the original on 2011-07-11. Retrieved 2009-07-24.CS1 maint: archived copy as title (link)
  4. https://www.youtube.com/watch?v=SzD6FNVtiVs
  5. http://www.peter-fill.com/14-e_218059.ski,r_23341.htm
  6. "Archived copy". Archived from the original on 2011-07-22. Retrieved 2009-07-24.CS1 maint: archived copy as title (link)
  7. http://www.wuv.de/nachrichten/unternehmen/partner_suche_wer_will_luca_toni
  8. http://imperia.efv.de/kontakter/news/artikel/2008/06/98694/index.html%5B%5D
gollark: It only works if you also have GCC installed.
gollark: That's the compiler.
gollark: Yep!
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description="Compile a WHY program")parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_C(args): template = """#define QUITELONG long long intconst QUITELONG max = @max@;int main() { QUITELONG i = 0; while (i < max) { i++; } @code@} """ for k, v in args.items(): template = template.replace(f"@{k}@", str(v)) return templateinput = args.inputoutput = args.outputtemp = "ignore-this-please"with open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_C({ "code": contents, "max": looplen }) with open(temp, "w") as out: out.write(code)subprocess.run(["gcc", "-x", "c", "-o", output, temp])```
gollark: And *is* Haskell necessarily that fast?
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.