The Blue (musical duo)

The Blue is a South Korean musical duo formed in 1992. The duo consists of Son Ji-chang and Kim Min-jong. They were playing leads in hit dramas at the time, and enjoyed explosive popularity among women when they debuted with ballads and dance music. They went their separate ways for a while after their first album, but reunited in 1995 for a second project and produced many chart-toppers.[1]

The Blue
OriginSouth Korea
GenresR&B
Years active1990s, 2009, 2014
LabelsSM Entertainment
Members

Discography

Album

  • 1st The Blue – New Release (1992)
  • The Blue (1995)

EP

  • The Blue – The First Memories (2009)
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)```
gollark: I give you... WHYJIT.
gollark: Trouble is that bundling TCC would require *building* it and that'd increase WHY compile times significantly.
gollark: So how does one actually go around packaging binaries with the program?

References

  1. Lee, Hyo-won (16 March 2009). "Actors Reunite for Music Album". The Korea Times. Retrieved 2012-11-25.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.