Seoul Design Foundation

The Seoul Design Foundation was initially proposed on November 20, 2008 by the Seoul Metropolitan Government in order to promote design industry. [1] It launched on March 2, 2009 and is run by direct endowment from the Seoul City. It consists of a group of design experts.

History

In 2015, the Seoul Design Foundation has implemented various projects promoting Seoul’s design industry and spread design culture with its monumental multipurpose complex Dongdaemun Design Plaza (DDP). DDP aims to become the hub of global design.

The initiative aims to strengthen Seoul’s design capacity by unfolding various projects [2] to promote Seoul’s design industry and spread design culture based on its flagship facilities, the Dongdaemun Design Plaza & Park.

It is located at: 3F,9F, Yeonho Bldg., 21-1, Seosomun-dong, Jung-gu, Seoul.

gollark: ```python @bot.command(help="Roll simulated dice (basic NdX syntax, N <= 50, X <= 1e6).") async def roll(ctx, dice): match = re.match("([-0-9]*)d([0-9]+)", dice) if not match: raise ValueError("Invalid dice notation") n, x = match.groups() if n == "": n = 1 n, x = int(n), int(x) if n > 50 or x > 1e6: raise ValueError("N or X exceeds limit") rolls = [ random.randint(1, x) for _ in range(n) ] await ctx.send(f"{sum(rolls)} ({' '.join(map(str, sorted(rolls)))})")```
gollark: Nope.
gollark: Fiona's rolldice, while excellently something, could not be used safely on untrusted input.
gollark: No, it uses one (1) regular expression.
gollark: It is not* biased.

References

  1. 유청모 (2019-12-18). "Colorful light show to illuminate Seoul's winter night". Yonhap News Agency. Retrieved 2020-07-06.
  2. "DDP to light up with the sights of Seoul". koreajoongangdaily.joins.com. Retrieved 2020-07-06.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.