Dragon Magazine (Fujimi Shobo)

Dragon Magazine (Japanese: ドラゴンマガジン, Hepburn: Doragon Magajin), frequently abbreviated as "Doramaga" or "DM", is a Japanese light novel and manga magazine aimed at young adult males, first published in 1988. The magazine became bi-monthly on March 19, 2008.

Dragon Magazine
CategoriesMale-oriented light novels and manga (shōnen and seinen manga), and Japanese role-playing games
FrequencyMonthly (1988-2008)
Bi-monthly (2008-present)
First issue1988
CompanyFujimi Shobo
CountryJapan
Based inTokyo
LanguageJapanese

Many popular light novels which were later animated were originally serialized in it. The magazine also features one or two manga series at a time.

The light novel magazine Fantasia Battle Royal was a special edition of Dragon Magazine.

Current serialized works

Title AuthorIllustrator First issue Last issue
Itsuka Tenma no Kuro Usagi Kurenai Gekkou no Seitokaishitsu
いつか天魔の黒ウサギ (Itsuka Tenma no Kuro Usagi)
Takaya Kagami Yū Kamiya  February 20, 2010 Ongoing
Date A Live
デート・ア・ライブ (Dēto A Raibu)
Kōshi Tachibana Tsunako  March 19, 2011 Ongoing
Shin High School DxD
真はいすくーるDxD (Shin Haisukūru Dī Dī)
Ichiei Ishibumi Miyama-Zero  July 20, 2018 Ongoing
Kantai Collection: Bonds of the Wings of Cranes
艦隊これくしょん ‐艦これ‐鶴翼の絆 (Kantai Korekushon: Kakuyoku no kizuna)
Hiroki Uchida Mataro  January 2014 Ongoing
The Legend of the Great Legendary Heroes
伝説の勇者の伝説 (Dai Densetsu no Yuusha no Densetsu)
Takaya Kagami Saori Toyota  October 25, 2007 Ongoing
Tokyo Ravens
東京レイヴンズ (Tōkyō Reivunzu)
Kōhei Azano Sumihei  May 2010 Ongoing

Former serialized works

gollark: Yes.
gollark: More great "WHY WOULD YOU DO THIS":```go// A Context carries a deadline, cancelation signal, and request-scoped values// across API boundaries. Its methods are safe for simultaneous use by multiple// goroutines.type Context interface { // Done returns a channel that is closed when this Context is canceled // or times out. Done() <-chan struct{} // Err indicates why this context was canceled, after the Done channel // is closed. Err() error // Deadline returns the time when this Context will be canceled, if any. Deadline() (deadline time.Time, ok bool) // Value returns the value associated with key or nil if none. Value(key interface{}) interface{}}```
gollark: Basically, modems/rednet but more flexible, cross-server, and without actual modems.
gollark: It's a websocket-based inter-computer cross-server message relay.
gollark: ```rust#[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Hash, Clone)]#[serde(untagged)]pub enum Channel { Numeric(i64), Named(String)}#[derive(Serialize, Deserialize, Debug, Clone, Message)]pub struct RawMsg { pub channel: Channel, #[serde(flatten)] pub meta: HashMap<String, Value>, pub message: Value}#[derive(Serialize, Deserialize, Debug, Clone, Message)]pub struct Msg { pub channel: Channel, #[serde(flatten)] pub meta: HashMap<String, Value>, pub message: Value, pub timestamp: chrono::DateTime<chrono::Utc>}#[derive(Serialize, Deserialize, Debug)]#[serde(tag = "type")]enum MessageFromClient { #[serde(rename = "open")] Open { channel: skynet::Channel }, #[serde(rename = "close")] Close { channel: skynet::Channel }, #[serde(rename = "message")] Message(skynet::RawMsg)}#[derive(Serialize)]#[serde(tag = "type")]enum MessageToClient<'a> { #[serde(rename = "message")] Message(skynet::Msg), #[serde(rename = "channels")] OpenChannels { channels: &'a HashSet<skynet::Channel> }}```WIP Rust notreallyconversion of the Skynet protocol.

References

    This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.