Kyūtai

Kyūtai (球体) is the ninth album by Mucc, released on March 4, 2009. Daisuke from Kagerou sings the chorus on "Hōkō". Tracks 3 and 10 were produced with Ken from L'Arc-en-Ciel. Miya's mother sings the chorus on the 7-minute song "Sanbika", as the song was written about the death of his grandmother. The album reached number 12 on the Oricon chart.[2]

Kyūtai
Studio album by
ReleasedMarch 4, 2009
RecordedNovember 18–December 12, 2008
Genre
Length48:18
LabelUniversal
ProducerMiya, Ken
Mucc chronology
Shion
(2008)
Kyūtai
(2009)
Karma
(2010)
Singles from Kyūtai
  1. "Ageha"
    Released: August 27, 2008
  2. "Sora to Ito"
    Released: January 28, 2009
Professional ratings
Review scores
SourceRating
NEO Magazine[1]

Track listing

Original track listing
No.TitleLyricsMusicLength
1."Kyūtai" (球体) Miya1:49
2."Hōkō" (咆哮)MiyaMiya3:40
3."Ageha" (アゲハ)Miya, TatsurouMiya, Tatsurou3:58
4."Hide and Seek" (ハイドアンドシーク)TatsurouMiya3:30
5."Kagerō" (陽炎)TatsurouSatochi5:00
6."Lemming" (レミング)MiyaSatochi4:39
7."Oz" (オズ)MiyaMiya3:36
8."Fuyū" (浮游)TatsurouYukke4:05
9."Sanbika" (讃美歌)MiyaMiya7:33
10."Sora to Ito" (空と糸)TatsurouMiya4:12
11."Hanabi" (hanabi)TatsurouMiya6:11
Total length:48:18

Other editions

Edition A: album plus bonus DVD: Live performance at The Fillmore, Irving Plaza in New York
Edition B: album plus bonus DVD: Documentary footage

gollark: Makes sense.
gollark: Hmm, so what extra features are needed?
gollark: Anyway, good news systemd-dislikers, I made an EXCELLENT and AMAZING replacement using the RUST programming language.
gollark: I have DashMap in here because of some vague dream of concurrently doing... stuff.
gollark: ```rustuse std::process::Command;use anyhow::Result;use std::path::Path;use std::fs;#[derive(serde::Serialize, serde::Deserialize, Debug)]struct RawServiceSpec { command: String, args: Vec<String>, name: Option<String>}#[derive(Debug)]struct ServiceSpec { command: String, args: Vec<String>, name: String}fn load_spec(path: &Path) -> Result<ServiceSpec> { let file = fs::read_to_string(path)?; let raw: RawServiceSpec = toml::from_str(&file)?; Ok(ServiceSpec { command: raw.command, args: raw.args, name: path.file_stem().unwrap().to_string_lossy().to_string() })}fn run_service(serv: ServiceSpec) -> Result<()> { println!("thread {:?}", serv); loop { println!("Starting"); let mut child = Command::new("/bin/env") .arg("python3") .arg("test.py") .spawn()?; child.wait()?; } Ok(())}fn main() -> Result<()> { let services = dashmap::DashMap::new(); for entry in fs::read_dir("./services")? { let s = load_spec(&entry?.path())?; services.insert(s.name.clone(), s); } let mut handles = Vec::new(); for e in services { handles.push(std::thread::spawn(|| run_service(e.1))); } for handle in handles { handle.join().unwrap(); } Ok(())}```

References

  1. Smith, Tom (July 2009), NEO Magazine (60 ed.), United Kingdom: Uncooked Media, p. 80
  2. www.oricon.co.jp ムックのアルバム売り上げランキング Retrieved May 16, 2011


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