Julien Fivaz
Julien Fivaz (born 9 January 1979) is a Swiss long jumper. His personal best jump is 8.27 metres (NR) , achieved in August 2003 in Ebensee.
He competed at the 2003 World Championships and the 2008 Olympic Games without reaching the final.
Competition record
Year | Competition | Venue | Position | Notes |
---|---|---|---|---|
Representing | ||||
2003 | World Championships | Paris, France | 32nd (q) | 7.37 m |
2005 | Jeux de la Francophonie | Niamey, Niger | 7th | 7.32 m |
2007 | European Indoor Championships | Birmingham, United Kingdom | 16th (q) | 7.47 m |
2008 | Olympic Games | Beijing, China | 36th (q) | 7.53 m |
2009 | Jeux de la Francophonie | Beirut, Lebanon | 3rd | 7.76 m |
gollark: Yes.
gollark: Oh, that's declaring the existent of the variable `stmt`.
gollark: Which `let`?
gollark: This lets me do this```javascriptconst getPage = name => SQL`SELECT * FROM pages WHERE name = ${name} ORDER BY updated DESC LIMIT 1`.get() || null```*without* the glaring SQL injection vulnerabilities!
gollark: ```javascriptexport const SQL = (strings, ...params) => { const sql = strings.join("?") let stmt const cachedValue = preparedStatements.get(sql) if (!cachedValue) { stmt = DB.prepare(sql) preparedStatements.set(sql, stmt) } else { stmt = cachedValue } return { get: () => stmt.get.apply(stmt, params), run: () => stmt.run.apply(stmt, params), all: () => stmt.all.apply(stmt, params), statement: stmt }}```observe some stuff from my code.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.