Paola Palma

Paola Palma (born 17 March 1969) is an Italian lyricist, entrepreneur and conductor.[1]

Paola Palma
Born17 March 1969 (1969-03-17)
Caserta, Italy
Occupationlyricist

Life and career

At the beginning of her career Palma worked with Carosello Records[2] which was located in the same building as Top Records, the record company created by her father, Guido Palma, in 1976.

In 1996 she founded Smoking Productions[3] together with Massimo Luca: they produced Gianluca Grignani, Fabrizio Moro,[4] Annalisa Minetti.

In 1998 the song "Senza te o con te", sung by Annalisa Minetti and written by Palma and Massimo Luca, won Sanremo Music Festival both in the newcomers section and in the general charts.[5] Senza te o con te was then translated in Spanish ("Junto a ti o sin ti") for the South American market.

Palma wrote most songs of Treno blu, Minetti's first album; Treno blu was published by Sony Music and it sold 50.000 copies in Italy during the first week, winning the Gold Record.

In 2006 Palma won the Felix Prize assigned during ADISQ Gala in Canada for the song "Canzoni per sempre"[6] (later sung by Raja[7] in 2017).

In 2007 she wrote "Amami per sempre" together with Amalia Gré and Michele Ranauro; the song, sung by Amalia Gré, took part in Sanremo Music Festival.[8][9]

Starting with 2008 Palma has been working as technical consultant for architect Salvador Perez Arroyo[10][11] and she participated to the project of Verbania's new theatre, Il Maggiore.[12]

From 2014 she is national councilor of AFI, the Italian phonographic association.[13][14]

gollark: This is far more readable than foolish "shell scripts", and actually quite fast.
gollark: It's HIGHLY advanced.
gollark: If you want, I can make it compile in parallel, but I haven't done this.
gollark: ```python#!/usr/bin/env python3import os, subprocess, sysDIR = os.path.abspath(os.path.dirname(sys.argv[0]))CC = ["gcc", "-Wall"]CACHE = os.path.join(DIR, "_cache")EXT = ".c"OUT_FILE = os.path.join(DIR, "out")if not os.path.exists(CACHE): os.mkdir(CACHE)changed_any = Falseobject_files = []for thing in os.listdir(DIR): if thing.endswith(EXT): path = os.path.join(DIR, thing) name, _, _ = thing.rpartition(EXT) cache_entry = os.path.join(CACHE, f"{name}.o") try: cache_updated_at = os.stat(cache_entry).st_mtime except FileNotFoundError: cache_updated_at = 0 code_updated_at = os.stat(path).st_mtime if cache_updated_at < code_updated_at: print(thing) subprocess.run(CC + ["-c", "-o", cache_entry, path]) changed_any = True object_files.append(cache_entry)if changed_any or not os.path.exists(OUT_FILE): subprocess.run(CC + ["-o", OUT_FILE] + object_files)else: print("no changes")```
gollark: Correction: 7.

See also

References

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