Takayuki Aoki
Takayuki Aoki (青木 孝行, Aoki Takayuki, born October 26, 1972 in Shiga) is a Japanese auto racing driver.
Career
JGTC and Super GT
Aoki competed in the GT300 class of the Japanese GT Championship between 1998 and 2004, winning the class in 2001 in a Nissan Silvia.[1] JGTC became Super GT in 2005 and Aoki has continued to compete in the GT300 class in a variety of cars.[1]
World Touring Car Championship
Aoki joined WTCC team Wiechers-Sport for the final three rounds of the 2008 season, in Italy, Japan, and Macau. He will return to Wiechers for the season-ending 2009 FIA WTCC Race of Macau.[2] He scored 4 points in race 1 and 10 points in race 2 to finish 13th in the Yokohama Independents' Trophy.[3]
gollark: I should assign unique IDs to the other sandbox escape bugs.
gollark: My "fix" is this:```lua--[["Fix" for bug PS#E9DCC81BSummary: `pcall(getfenv, -1)` seemingly returned the environment outside the sandbox.Based on some testing, this seems like some bizarre optimization-type feature gone wrong.It seems that something is simplifying `pcall(getfenv)` to just directly calling `getfenv` and ignoring the environment... as well as, *somehow*, `function() return getfenv() end` and such.The initial attempt at making this work did `return (fn(...))` instead of `return fn(...)` in an attempt to make it not do this, but of course that somehow broke horribly. I don't know what's going on at this point.This is probably a bit of a performance hit, and more problematically liable to go away if this is actually some bizarre interpreter feature and the fix gets optimized away.Unfortunately I don't have any better ideas. Also, I haven't tried this with xpcall, but it's probably possible, so I'm attempting to fix that too.]]local real_pcall = pcallfunction _G.pcall(fn, ...) return real_pcall(function(...) local ret = {fn(...)} return unpack(ret) end, ...)end local real_xpcall = xpcallfunction _G.xpcall(fn, handler) return real_xpcall(function() local ret = {fn()} return unpack(ret) end, handler)end```which appears to work at least?
gollark: Fixed, but I don't really know how or why.
gollark: ... should I create a bug report?
gollark: It returns two, actually. The second one. I don't know *what* the first one is doing.
References
- http://www.fiawtcc.com/Drivers_Details.asp?idDriver=57 Profile at fiawtcc.com
- Meissner, Johan (2009-10-04). "Takayuki Aoki to Wiechers for Macau". touringcartimes.com. TouringCarTimes. Retrieved 2009-10-08.
- 2009 WTCC Yokohama Independents' Trophy points standings. Archived 2010-09-21 at the Wayback Machine
External links
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.