ADISQ

ADISQ stands for Association québécoise de l'industrie du disque, du spectacle et de la video, which translates as "Québec Association for the Recording, Concert and Video Industries". It is a nonprofit organization whose mission is to support the independent music industry in Quebec. It was created in 1978.

Since 1979, it has also organized an annual awards ceremony for musicians and singers. The award bears the name Félix after famed singer-songwriter Félix Leclerc.

It is a member of the World Independent Network.[1]

History

Its first mission consisted of two goals to promote the Québec music industry:

  • From its creation in 1978, the ADISQ has had the responsibility of organizing a collective stand (Musique du Québec) and coordinating member participation at the Marché International du Disque et de l'Edition Musicale
  • Starting in 1979, it was to produce an annual televised gala that seeks to award artists, artisans, and professionals in the music industry. In addition to the main gala, the ADISQ also produced the Autre Gala (since 2003) and Gala de l'industrie (since 2009). Both ceremonies took place on the same day.[2] In 2015 the name Autre Gala was changed to Le Premier Gala de l'ADISQ[3][4]

Several years after realizing these objectives, its mission was changed to include lobbying the governments of Canada and Québec on the following issues:

  • General policy pertaining to the recording, concert and video industries;
  • Financing of these industries;
  • The protection of artists' intellectual property;
  • Broadcasting regulations.[5]

The ADISQ initiated the urban project Quartier des Spectacles in Montréal. It was first unveiled in 2002 at the Sommet de Montréal[6] by then-president Jacques K. Primeau.[7]

gollark: It'd hit `while True: pass` on all the executor threads first.
gollark: In parallel!
gollark: It enumerates and executes all possible strings.
gollark: ```pythonimport itertoolsimport multiprocessing as mchars = [chr(x) for x in range(32, 126)]chars.extend(["\t", "\n"])def generate_for_length(length): return map(lambda chars: "".join(chars),itertools.combinations(chars, length))def generate(): for i in itertools.count(): for s in generate_for_length(i): yield sif __name__ == "__main__": def start(func): proc = m.Process(target=func) proc.start() io_queue = m.Queue(maxsize=128) def printer(): while True: print(io_queue.get()) code_queue = m.Queue(maxsize=128) def generator(): for x in generate(): code_queue.put(x) def executor(): while True: code = code_queue.get() result = None try: result = repr(exec(code)) except Exception as e: result = repr(e) if result != "None": io_queue.put(code + ": " + result) start(generator) for _ in range(4): start(executor) printer()```Expanded version.
gollark: But the exec is *important*.

References


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