Akane Tomonaga
Akane Tomonaga (友永 朱音, Tomonaga Akane, born December 2), also known as Yukari Aoyama (青山 ゆかり, Aoyama Yukari), is a Japanese voice actress from Tokyo, Japan.[1]
Principal roles
- Chaos;Head: Orujeru Seira [2]
- Grisaia no Kajitsu: Kazuki Kazami
- Harukoi Otome: Riru Orito
- Hoshiuta: Midori Kinoshita
- Koihime Musō: Kaku (Ei)
- Kamidori Alchemy Meister: Black Eushully/Jane
- Lamune: Hikari Nakazato
- Maji de Watashi ni Koishinasai!: Kazuko Kawakami
- Mashiroiro Symphony: Eleanor Sewell
- Oretachi ni Tsubasa wa Nai: Akira Yoshikawa
- Remember 11: The Age of Infinity: Hotori Suzukage/Keiko Inubushi
- Root Double: Before Crime * After Days: Jun Moribe
- Tristia of the Deep-Blue Sea: Rafarew
- Underbar Summer: Wakana Shimazu
- Diabolik Lovers: Cordelia
- In Search of the Lost Future: Yui Furukawa
- Snow Sakura: Saki Tachibana
- Seinarukana: The Spirit of Eternity Sword 2: Nagamine Nozomi (under the alias Aoyama Yukari)
gollark: ```javascriptimport m = require("mithril")import * as RPCTypes from "../common/rpc"export const sendMessage = (msg: RPCTypes.Message): Promise<RPCTypes.MessageResponse> => { return m.request( { method: "POST", url: "./rpc/", body: msg, }).then(res => { const [ type, p1, p2 ] = res if (type === "error") { throw new RPCTypes.RPCError(p2, p1) } else if (type === "ok") { return p1 } else { throw new Error("Invalid RPC response") } })}const handler = { get: (target, prop) => (...args) => sendMessage([prop, ...args])}export const serverProxy = new Proxy({}, handler)```
gollark: The RPC thing and some JS hax on the client mean I can basically just call any function the server provides as if it's a local one (except asynchronously).
gollark: minoteaur is just plain RPC - you do `POST /rpc` with a function and its arguments as JSON.
gollark: You're forced to try and map the data/functions your thing provides onto a structure which may not really fit them well.
gollark: To be honest I find REST kind of an uncool way to design APIs.
References
- "Akane Tomonaga Profile". axl-one.com. Retrieved 2012-03-29.
- "Chaos;HEAd Promo with Anime Footage Streamed". Animenewsnetwork.com. Retrieved 2012-03-29.
External links
- Akane Tomonaga's personal blog (in Japanese)
- Akane Tomonaga's profile at Axl One (in Japanese)
- Akane Tomonaga at Anime News Network's encyclopedia
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.