Hikaru Yamamoto
Hikaru Yamamoto (山本 ひかる, Yamamoto Hikaru) is a Japanese actress from Osaka Prefecture. After winning the Amuse Ohimesama Audition, she was signed onto the Amuse, Inc. talent agency. She starred as the female lead in Kamen Rider W in 2009-2010.[1]
Hikaru Yamamoto | |
---|---|
Born | |
Occupation | Actress |
Years active | 2007-present |
Height | 160 cm (5 ft 3 in) |
Filmography
Television
Year | Title | Role | Other notes |
---|---|---|---|
2007 | Watashitachi no Kyokasho | Chiharu Nobe | |
2009 | Kamen Rider W | Akiko Narumi | Main Role |
2011 | Muscle Girl | Tsukasa Sudo | |
2019 | Kishiryu Sentai Ryusoulger | Yui | Episode 29 |
Anime
Year | Title | Role | Other notes |
---|---|---|---|
2006 | Artificial insect KABUTO BORG Victory by Victory | Sayaka |
Film
Year | Title | Role | Other notes |
---|---|---|---|
2008 | Utatama | Sakurako Yamada | |
2009 | My Rainy Days | Tomoko | |
Elite Yankee Saburo | Haruna | ||
Kamen Rider × Kamen Rider W & Decade: Movie War 2010 | Akiko Narumi | ||
2010 | Kamen Rider W Forever: A to Z/The Gaia Memories of Fate | Akiko Narumi | |
Kamen Rider × Kamen Rider OOO & W Featuring Skull: Movie War Core | Akiko Narumi | ||
2011 | Kamen Rider W Returns | Akiko Narumi | |
2013 | Kamen Rider × Kamen Rider Gaim & Wizard: The Fateful Sengoku Movie Battle | Cha-cha | Cameo |
gollark: <@!341618941317349376>
gollark: https://esolangs.org/wiki/WHY#WHYJIT
gollark: WHYJIT is now production-unusable!
gollark: _continues WHYJIT development_
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_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-too cat << EOF > $TMP1{C_code}EOF gcc -x c -o $TMP2 $TMP1 chmod +x $TMP2 $TMP2 """ return shell_scriptinput = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "w") as out: out.write(code)```
References
- "仮面ライダーW(ダブル) introduction|東映[テレビ]". Retrieved 2010-04-08.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.